Skip to content

fix(deps): update all non-major dependencies - #33

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#33
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Aug 13, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/checkout action minor v5.0.0v5.1.0 age confidence
actions/setup-go action minor v6.1.0v6.5.0 age confidence
alpine (source) final minor 3.22.13.24.1 age confidence
fkirc/skip-duplicate-actions action patch v5.3.1v5.3.2 age confidence
github.com/crossplane/crossplane-runtime require patch v1.20.0v1.20.10 age confidence
github.com/crossplane/crossplane-runtime/v2 require minor v2.2.0v2.3.3 age confidence
github.com/crossplane/upjet/v2 require minor v2.2.1-0.20260610110527-59c45527ebe4v2.4.1 age confidence
github.com/databricks/terraform-provider-databricks require minor v1.110.0v1.123.0 age confidence
github.com/hashicorp/terraform-json require minor v0.27.2v0.28.0 age confidence
github.com/hashicorp/terraform-plugin-framework require minor v1.18.0v1.19.0 age confidence
github.com/hashicorp/terraform-plugin-sdk/v2 require minor v2.39.0v2.40.1 age confidence
golang.org/x/tools indirect minor v0.41.0v0.48.0 age confidence
google.golang.org/grpc require minor v1.79.3v1.82.1 age confidence
k8s.io/api require minor v0.35.3v0.36.3 age confidence
k8s.io/apiextensions-apiserver require minor v0.35.0v0.36.3 age confidence
k8s.io/apimachinery require minor v0.35.3v0.36.3 age confidence
k8s.io/client-go require minor v0.35.3v0.36.3 age confidence
sigs.k8s.io/controller-runtime require minor v0.23.3v0.24.1 age confidence
sigs.k8s.io/controller-tools require minor v0.20.0v0.21.0 age confidence

Release Notes

actions/checkout (actions/checkout)

v5.1.0

Compare Source

v5.0.1

Compare Source

actions/setup-go (actions/setup-go)

v6.5.0

Compare Source

v6.4.0

Compare Source

What's Changed
Enhancement
  • Add go-download-base-url input for custom Go distributions by @​gdams in #​721
Dependency update
Documentation update
New Contributors

Full Changelog: actions/setup-go@v6...v6.4.0

v6.3.0

Compare Source

What's Changed

Full Changelog: actions/setup-go@v6...v6.3.0

v6.2.0

Compare Source

What's Changed
Enhancements
Dependency updates
New Contributors

Full Changelog: actions/setup-go@v6...v6.2.0

fkirc/skip-duplicate-actions (fkirc/skip-duplicate-actions)

v5.3.2

Compare Source

v5.3.2

crossplane/crossplane-runtime (github.com/crossplane/crossplane-runtime)

v1.20.10

Compare Source

What's Changed

Full Changelog: crossplane/crossplane-runtime@v1.20.9...v1.20.10

v1.20.9

Compare Source

What's Changed

Full Changelog: crossplane/crossplane-runtime@v1.20.8...v1.20.9

v1.20.8

Compare Source

What's Changed

Full Changelog: crossplane/crossplane-runtime@v1.20.6...v1.20.8

v1.20.6

Compare Source

What's Changed

Full Changelog: crossplane/crossplane-runtime@v1.20.0...v1.20.6

crossplane/upjet (github.com/crossplane/upjet/v2)

v2.4.1

Compare Source

v2.4.0

This is a minor release that ships several new configuration and runtime capabilities for upjet-based providers, together with a set of bug fixes and security-relevant dependency updates.

New Features
  • Runtime Terraform conversions in the CLI-based external client (#​683): The Terraform CLI external client now applies the runtime schema conversions (for example, singleton-list-to-embedded-object) that were previously handled only by the no-fork clients. This unblocks CLI-based providers whose reconciliations failed when converting singleton lists to embedded objects.

  • Separate Terraform import ID via GetImportIDFn (#​677): Added an optional ExternalName.GetImportIDFn field. When set, upjet uses it to produce the ID passed to terraform import, while GetIDFn continues to produce the ID for the refreshed state. This supports providers that store resource IDs in a different format than their import function expects; existing behavior is preserved when it is unset. Fixes #​676.

  • Customizable controller setup aggregator & terraformed templates (#​693): Added the config.WithSetupAggregatorTemplate and config.WithTerraformedTemplate ProviderOptions, allowing providers to override the controller setup aggregator and the resource.Terraformed templates used during code generation. The change is backward-compatible and mirrors the existing config.WithMainTemplate option. A new Terraform.ResourceSchema template variable is also introduced, superseding Terraform.SchemaVersion for terraformed template rendering.

  • Storage version migration support (#​588, #​711): Added support for automatically migrating stored CRD resources to the current storage version when a CRD's storage version changes, avoiding stale versions lingering in etcd across upgrades. #​711 switches this to a dynamic approach that discovers the versions to migrate at runtime instead of relying on static configuration.

Bug Fixes
  • Fix namespaced conversions resolved from the wrong provider in RoundTrip (#​695): registry.GetConversions selected between the cluster- and namespaced-scoped providers using the destination object's namespace, which was still empty at the first conversion stage during RoundTrip, so namespaced resources fell through to the cluster-scoped provider. The namespace is now copied from the source before conversions are resolved, so all conversion stages operate against the correct provider.

  • Fix "unexpected identity change" errors at Observe (Plugin Framework) (#​698): Incomplete or invalid resource identities (for example, cached after a failed Create) could be sent as CurrentIdentity to Terraform's ReadResource RPC, causing subsequent Observe calls to fail with an "unexpected identity change" diagnostic once the original failure was resolved. Such identities are no longer fed back to the provider, eliminating the spurious errors.

  • Prevent Terraform provider panics when the external resource is not found (#​685): InstanceState's RawConfig and RawPlan are now populated when a previously cached state had zero-valued RawConfig/RawPlan but the external resource is (no longer) found. This prevents the underlying Terraform provider from panicking when it reads those attributes (for example, the Terraform AWS provider's tagging interceptor).

  • Omit XValidation for required fields that have references (#​684): When a field is marked required but also has a reference configured, it is satisfiable via its *Ref/*Selector fields, so no CEL XValidation required-parameter rule is emitted for it anymore. This avoids validation errors for fields resolved through references.

  • Do not emit SSA markers on observation (status) fields (#​660): Removed the listType: map markers and injected map-key defaults from generated status.atProvider fields, where server-side apply merge markers do not apply. Fixes #​659.

Dependency & Security Updates

What's Changed

Full Changelog: crossplane/upjet@v2.3.0...v2.4.0

databricks/terraform-provider-databricks (github.com/databricks/terraform-provider-databricks)

v1.123.0

Compare Source

Important Changes
  • Removed plan-time workspace_id reachability validation for unified-provider
    resources (#​5887).

    workspace_id reachability and mismatch errors (e.g. workspace_id mismatch,
    managing workspace-level resources requires a workspace_id) are now reported
    when the resource is applied instead of during terraform plan. Plans no longer
    make workspace-resolution API calls for these checks. This fixes false-positive
    plan failures for principals that can manage a resource but cannot call the
    workspace /Me endpoint, and for provider_config.workspace_id values that are
    only known after apply (for example a workspace_id sourced from another
    resource that is created in the same run). For newly-created workspace-level
    resources this removes plan-time workspace API calls entirely; existing
    resources still refresh at plan (an unavoidable read), which validates the
    workspace they already live in.

New Features and Improvements
  • Add databricks_recipients data source to list Delta Sharing recipient names.
  • Add trace_location to databricks_mlflow_experiment for storing experiment traces in a Unity Catalog schema (#​5869). The block is immutable (ForceNew); table_prefix is optional and, when omitted, server-defaulted, with the resolved value exposed on the read-only effective_table_prefix.
Bug Fixes
  • Fix updating a column comment on a VIEW in databricks_sql_table (#​5855). The provider emitted ALTER VIEW ... ALTER COLUMN ... COMMENT, which Databricks rejects with a PARSE_SYNTAX_ERROR, leaving the change stuck as a perpetual, un-appliable diff. Column comment changes on views are now applied in place via COMMENT ON COLUMN, matching how column comments on tables are updated.
  • Fix databricks_access_control_rule_set drift detection when all grant_rules are removed outside Terraform (#​5589).
Internal Changes
  • A provider-level workspace_id is now consistently validated when a
    workspace-level resource acquires its client, regardless of whether the value
    came from the resource's provider_config block or the provider configuration
    (#​5887).

    Previously a workspace-level provider silently ignored a mismatched
    provider-level workspace_id when a resource omitted provider_config. It now
    surfaces a workspace_id mismatch error at apply, matching the behavior when
    provider_config.workspace_id is set explicitly. For the common case where the
    provider-level workspace_id matches the configured workspace (including when
    it is auto-resolved from host metadata) there is no change.

v1.122.0

Compare Source

New Features and Improvements
  • Add resource and data sources for databricks_postgres_cdf_config.
  • Add data sources for databricks_postgres_cdf_status.
Bug Fixes
  • Fix updating a column comment on a VIEW in databricks_sql_table (#​5855). The provider emitted ALTER VIEW ... ALTER COLUMN ... COMMENT, which Databricks rejects with a PARSE_SYNTAX_ERROR, leaving the change stuck as a perpetual, un-appliable diff. Column comment changes on views are now applied in place via COMMENT ON COLUMN, matching how column comments on tables are updated.

v1.121.0

Compare Source

Important Changes
  • [Backward Incompatible] Resource databricks_mws_ncc_private_endpoint_rule has been refactored in this version to fix multiple bugs in its implementation and behavior. Server-populated attributes are now strictly read-only (writes that previously produced perpetual plan drift now error at plan time), plan churn on previously-Optional output fields is eliminated, and the new Plugin Framework implementation (behind DATABRICKS_TF_ENABLED_PF_RESOURCES) polls the rule's connection_state during Create so a failed or unusable provisioning state surfaces at apply time instead of on the next plan. See Breaking Changes and New Features and Improvements below for specifics.
Breaking Changes
  • Tighten read-only attributes on databricks_mws_ncc_private_endpoint_rule (#​5819). The attributes rule_id, account_id, endpoint_name, vpc_endpoint_id, connection_state, creation_time, updated_time, deactivated, deactivated_at, error_message, and gcp_endpoint.psc_endpoint_uri are now computed-only and can no longer be set in HCL. They are populated by the server in every API response (and psc_endpoint_uri is unconditionally overwritten from the cloud-platform truth on every read), and previous releases accepted writes to these attributes silently while the API ignored or overwrote the values, producing perpetual drift on every plan. Configurations that explicitly assigned any of these attributes must remove the assignment; the value is still available in state after apply.
New Features and Improvements
  • A Plugin Framework implementation of databricks_mws_ncc_private_endpoint_rule is now available behind DATABRICKS_TF_ENABLED_PF_RESOURCES=databricks_mws_ncc_private_endpoint_rule (#​5819). Once opted in, terraform apply waits for the rule to leave CREATING before returning: PENDING and ESTABLISHED succeed, while a CREATE_FAILED, REJECTED, DISCONNECTED, or EXPIRED connection state surfaces as an apply-time error instead of on the next plan. This differs from the SDKv2 implementation, which returns immediately without polling. The Plugin Framework implementation will replace the SDKv2 implementation in a follow-up version.
  • Deprecate the SDKv2 fallback implementations of databricks_library, databricks_quality_monitor, and databricks_share resources, and the databricks_share, databricks_shares, and databricks_volumes data sources. These resources have been served by the Plugin Framework by default since their migration; the SDKv2 implementations remain only as opt-in fallbacks via the USE_SDK_V2_RESOURCES / USE_SDK_V2_DATA_SOURCES environment variables. Setting either environment variable for any of these names now emits a runtime warning (visible with TF_LOG=WARN or higher), and the SDKv2 implementations will be removed in the next major release of the provider.
  • Add resource and data sources for databricks_ai_search_endpoint.
  • Add resource and data sources for databricks_ai_search_index.
  • Add clear_cloud_attributes_on_remove to databricks_cluster (#​5812). When set to true, removing a cloud attributes block (aws_attributes, azure_attributes, gcp_attributes) from the configuration clears it instead of the removal being silently suppressed. The flag defaults to false, preserving the existing diff-suppression behavior that prevents perpetual drift from platform-returned cloud attribute defaults. Keeping a block, even partially specified, is unaffected; only removing the whole block clears.
Bug Fixes
  • Fix import for jobs with >100 tasks (#​5417).
Documentation
  • Added an example to databricks_budget for creating budgets to control Genie usage costs (#​5817).
Exporter
  • Generate code in import.sh more safely (#​5848).
Internal Changes
  • Deprecate instance_profiles attribute, and replace it with roles in databricks_group data source (#​5086)

v1.120.0

Compare Source

New Features and Improvements
  • Add resource and data source for databricks_postgres_data_api.

  • Deprecate the SDKv2 fallback implementations of databricks_library, databricks_quality_monitor, and databricks_share resources, and the databricks_share, databricks_shares, and databricks_volumes data sources. These resources have been served by the Plugin Framework by default since their migration; the SDKv2 implementations remain only as opt-in fallbacks via the USE_SDK_V2_RESOURCES / USE_SDK_V2_DATA_SOURCES environment variables. Setting either environment variable for any of these names now emits a runtime warning (visible with TF_LOG=WARN or higher), and the SDKv2 implementations will be removed in the next major release of the provider.

Bug Fixes
  • Fix permanent permissions drift when user_name casing in databricks_permissions access_control blocks differs from the API response (#​5757).

  • Allow setting user_api_scopes = [] on databricks_app to disable OBO (On-Behalf-Of) user authorization (#​5834).

    The Apps API omits user_api_scopes from its response when OBO is inactive, so a configured empty list previously failed with Provider produced inconsistent result after apply. The provider now preserves a configured empty list in state, mirroring the reconciliation used by databricks_app_space.

Internal Changes
  • Make notification destination acceptance tests robust to the eventual consistency of the notification destinations list API.

v1.119.0

Compare Source

Documentation
  • Document that read-only workspace bindings aren't applicable for non-catalog objects (#​5611)
Internal Changes
  • Run unit tests offline from a pre-warmed Go module cache for PRs that cannot authenticate to the internal Go module proxy (fork and Dependabot PRs), populated by the new "Warm Go Cache" workflow.

v1.118.0

Compare Source

New Features and Improvements
  • Add resource and data sources for databricks_ai_search_endpoint.
  • Add resource and data sources for databricks_ai_search_index.
Bug Fixes
  • Fixed databricks_instance_pool ignoring enable_elastic_disk = false due to omitempty JSON tag, which caused an infinite plan/replace cycle (#​5802).

  • Fix databricks_entitlements to honor provider_config { workspace_id } when used with an account-level provider (#​5680).

  • Fix spurious account_id drift on databricks_mws_ncc_private_endpoint_rule (#​5347). The backend echoes account_id on read; the schema previously marked it as a plain Optional attribute, so once it landed in state (for example via terraform import) the next plan reported account_id = "..." -> null and a subsequent apply failed with cannot update mws ncc private endpoint rule: Update mask must be specified.. Marking account_id as Computed (matching the sibling databricks_mws_network_connectivity_config resource) preserves the server-provided value across refreshes and eliminates the spurious in-place update.

  • Fixed databricks_mws_workspaces failing to update private_access_settings_id and other fields on GCP workspaces (#​5430).

Documentation
  • Added disabled field to task block in databricks_job resource, allowing individual tasks to be disabled (#​5767).
Exporter
  • Rewrote Exporter logging so it works with Databricks Go SDK logging (#​5805).

v1.117.0

Compare Source

Bug Fixes
  • Fix databricks_external_location so that creating a resource with enable_file_events = false is sent in the POST request. Previously the field was silently dropped (Go SDK marshals the bool with omitempty), so the server applied its true default and effective_enable_file_events came back true.

v1.116.0

Compare Source

New Features and Improvements
  • Added principal_id argument to databricks_git_credential resource, enabling management of Git credentials on behalf of service principals.
  • Add support for managing permissions of Agent Bricks resources (#​5708). Reverts #​5582.
Bug Fixes
  • Fix databricks_metastore so that updating external_access_enabled from true to false is sent in the PATCH request. Previously the field was silently dropped from the request body, so the change never reached the API.
  • Fixed destroying of UC objects when workspace binding removed before actual destroy (#​5581).
  • Fixed handling of the case when library is removed outside of Terraform (#​5678).
  • Fix databricks_vector_search_index hardcoded 15-minute creation timeout: increased default to 75 minutes (consistent with databricks_vector_search_endpoint) and made it user-overridable via the timeouts block.
  • Fixed child groups collection in databricks_group data source (#​5679).
Documentation
  • Document that some databricks_mws_* resources on GCP require Google-issued OIDC tokens (not Databricks OAuth) (#​5654).
  • Remove non-existent field from the databricks_vector_search_index doc (#​5605).
  • Documented principal_id argument for databricks_git_credential resource.
Exporter
  • Support alert_task when exporting databricks_job (#​5629).
  • Add support for exporting Agent Bricks resources (#​5704).
Internal Changes
  • Add internal/retrier package for unified retry and backoff handling (#​5746).

  • Pass excludedAttributes=entitlements on SCIM /Me requests (#​5725).

  • workspace_id (provider attribute and provider_config.workspace_id block) now accepts workspace connection IDs in addition to classic numeric workspace IDs. On unified Databricks hosts, the platform gateway disambiguates the value server-side via the X-Databricks-Workspace-Id request header. The previous positive-integer validator has been relaxed to require only a non-empty string.

    Numeric workspace IDs continue to behave exactly as before, including the account-API workspace-deployment lookup. Connection IDs skip that lookup and route directly via the configured host. When the provider is configured at the workspace level (host + token), connection IDs surface a clear error directing the user to reconfigure with account-level credentials, since a workspace-level provider can only operate on a single workspace.

v1.115.0

Compare Source

Bug Fixes
  • Fix databricks_library, databricks_share, and databricks_quality_monitor failing to decode prior state with Error decoding ... from prior state: missing expected { after upgrading from v1.113.0 to v1.114.0 (#​5669). Reverts #​5582.

    Note for users upgrading from v1.114.0: any state written by v1.114.0 for databricks_library, databricks_share, or databricks_quality_monitor encodes provider_config as a single object instead of a list, and terraform plan against the upgraded provider will fail to decode it. Mitigate with a one-time edit of each affected resource instance in your state file: change the provider_config value from the object form to either the list form or null.

    • If you set provider_config explicitly in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": [{"workspace_id": "X"}] (wrap the existing object in a single-element list).
    • If you did NOT set provider_config in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": null. This avoids a one-time replacement plan on databricks_library (where the block-level plan modifier forces replacement on any provider_config diff).

    Users on v1.113.0 are unaffected — their state already matches the restored schema.

  • Fix databricks_service_principal data source failing on account-level provider with cannot populate provider_config for service principal: failed to resolve workspace_id (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_service_principals data source failing on account-level provider with the same cannot populate provider_config for service principals: failed to resolve workspace_id regression (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_mws_workspaces and databricks_mws_credentials data sources failing on account-level provider with cannot populate provider_config for mws workspaces: failed to resolve workspace_id (#​5672). These account-only data sources are now exempted from the post-Read workspace-tracking hook, and provider_config (which had no effect on them) is now deprecated and will be removed in a future major release.

  • Fix databricks_disable_legacy_features_setting failing on account-level provider with cannot populate provider_config for disable legacy features setting: failed to resolve workspace_id: ... Unable to load OAuth Config. This account-only setting is now exempted from the post-Read workspace-tracking hook, and the auto-injected provider_config block is deprecated. The fix is applied at the generic-setting builder level (makeSettingResource in settings/generic_setting.go), so any future accountSetting-based resource inherits the opt-out automatically.

v1.114.2

Compare Source

Release v1.114.2

New Features and Improvements
  • Support adopting pre-existing databricks_postgres_branch and databricks_postgres_endpoint resources via replace_existing = true argument.
Internal Changes
  • Mark effective_file_event_queue as computed with diff suppression in databricks_external_location to prevent Terraform drift when the Unity Catalog backend returns the server-populated field.

v1.114.1

Compare Source

Release v1.114.1

Bug Fixes

Rolls back to v1.113.0 as the stable release.

v1.114.0

Compare Source

Bug Fixes
  • Fix databricks_library, databricks_share, and databricks_quality_monitor failing to decode prior state with Error decoding ... from prior state: missing expected { after upgrading from v1.113.0 to v1.114.0 (#​5669). Reverts #​5582.

    Note for users upgrading from v1.114.0: any state written by v1.114.0 for databricks_library, databricks_share, or databricks_quality_monitor encodes provider_config as a single object instead of a list, and terraform plan against the upgraded provider will fail to decode it. Mitigate with a one-time edit of each affected resource instance in your state file: change the provider_config value from the object form to either the list form or null.

    • If you set provider_config explicitly in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": [{"workspace_id": "X"}] (wrap the existing object in a single-element list).
    • If you did NOT set provider_config in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": null. This avoids a one-time replacement plan on databricks_library (where the block-level plan modifier forces replacement on any provider_config diff).

    Users on v1.113.0 are unaffected — their state already matches the restored schema.

  • Fix databricks_service_principal data source failing on account-level provider with cannot populate provider_config for service principal: failed to resolve workspace_id (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_service_principals data source failing on account-level provider with the same cannot populate provider_config for service principals: failed to resolve workspace_id regression (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_mws_workspaces and databricks_mws_credentials data sources failing on account-level provider with cannot populate provider_config for mws workspaces: failed to resolve workspace_id (#​5672). These account-only data sources are now exempted from the post-Read workspace-tracking hook, and provider_config (which had no effect on them) is now deprecated and will be removed in a future major release.

  • Fix databricks_disable_legacy_features_setting failing on account-level provider with cannot populate provider_config for disable legacy features setting: failed to resolve workspace_id: ... Unable to load OAuth Config. This account-only setting is now exempted from the post-Read workspace-tracking hook, and the auto-injected provider_config block is deprecated. The fix is applied at the generic-setting builder level (makeSettingResource in settings/generic_setting.go), so any future accountSetting-based resource inherits the opt-out automatically.

v1.113.0

Compare Source

Bug Fixes
  • Fix databricks_library, databricks_share, and databricks_quality_monitor failing to decode prior state with Error decoding ... from prior state: missing expected { after upgrading from v1.113.0 to v1.114.0 (#​5669). Reverts #​5582.

    Note for users upgrading from v1.114.0: any state written by v1.114.0 for databricks_library, databricks_share, or databricks_quality_monitor encodes provider_config as a single object instead of a list, and terraform plan against the upgraded provider will fail to decode it. Mitigate with a one-time edit of each affected resource instance in your state file: change the provider_config value from the object form to either the list form or null.

    • If you set provider_config explicitly in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": [{"workspace_id": "X"}] (wrap the existing object in a single-element list).
    • If you did NOT set provider_config in HCL: change "provider_config": {"workspace_id": "X"} to "provider_config": null. This avoids a one-time replacement plan on databricks_library (where the block-level plan modifier forces replacement on any provider_config diff).

    Users on v1.113.0 are unaffected — their state already matches the restored schema.

  • Fix databricks_service_principal data source failing on account-level provider with cannot populate provider_config for service principal: failed to resolve workspace_id (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_service_principals data source failing on account-level provider with the same cannot populate provider_config for service principals: failed to resolve workspace_id regression (#​5664). The data source now supports the api field and skips workspace-tracking when used at account level.

  • Fix databricks_mws_workspaces and databricks_mws_credentials data sources failing on account-level provider with cannot populate provider_config for mws workspaces: failed to resolve workspace_id (#​5672). These account-only data sources are now exempted from the post-Read workspace-tracking hook, and provider_config (which had no effect on them) is now deprecated and will be removed in a future major release.

  • Fix databricks_disable_legacy_features_setting failing on account-level provider with cannot populate provider_config for disable legacy features setting: failed to resolve workspace_id: ... Unable to load OAuth Config. This account-only setting is now exempted from the post-Read workspace-tracking hook, and the auto-injected `provider_co

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from glalanne as a code owner August 13, 2025 21:39
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 922247e to 52c2da5 Compare August 14, 2025 22:44
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6bc7907 to 402aeee Compare September 4, 2025 02:46
@renovate

renovate Bot commented Sep 4, 2025

Copy link
Copy Markdown
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 8 additional dependencies were updated

Details:

Package Change
golang.org/x/sync v0.18.0 -> v0.19.0
golang.org/x/crypto v0.45.0 -> v0.46.0
golang.org/x/mod v0.30.0 -> v0.31.0
golang.org/x/net v0.47.0 -> v0.48.0
golang.org/x/sys v0.38.0 -> v0.39.0
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 -> v0.0.0-20251203150158-8fff8a5912fc
golang.org/x/term v0.37.0 -> v0.38.0
golang.org/x/text v0.31.0 -> v0.32.0

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bcbc56d to d43f69e Compare September 10, 2025 07:59
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d3ee846 to 7a5e6c7 Compare September 18, 2025 19:48
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d44f4ee to 30e3b18 Compare September 29, 2025 16:07
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a72e7b8 to f9dfb70 Compare October 8, 2025 23:01
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b03cf4e to 28b741b Compare October 18, 2025 11:10
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a777000 to 374f29b Compare October 25, 2025 23:53
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b6bf517 to 0cf4148 Compare November 3, 2025 23:46
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 55c955f to 3e25681 Compare November 9, 2025 16:05
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4409313 to 90eba90 Compare November 19, 2025 12:00
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 101da48 to 4dafd1a Compare December 5, 2025 05:04
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 10ec692 to 15d7282 Compare January 27, 2026 00:15
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0f6e079 to 20b6061 Compare February 3, 2026 07:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a96102a to 4ea4901 Compare February 11, 2026 11:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a07ccfd to 421af85 Compare February 20, 2026 16:13
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from afa2547 to 448efc4 Compare March 7, 2026 05:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 548f9e1 to 864bafe Compare March 13, 2026 21:29
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 864bafe to 603cdac Compare March 31, 2026 17:43
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 0f03003 to 4ceda27 Compare April 20, 2026 18:25
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 4ceda27 to f0e52a7 Compare April 23, 2026 19:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 11176bf to 34ebcd9 Compare May 6, 2026 20:10
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 34ebcd9 to 2124f9f Compare May 10, 2026 08:09
@renovate

renovate Bot commented May 22, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: module github.com/crossplane/crossplane-runtime/v2@v2.3.3 requires go >= 1.25.9; switching to go1.25.12
go: downloading go1.25.12 (linux/amd64)
go: module github.com/crossplane/upjet/v2@v2.4.1 requires go >= 1.26.5; switching to go1.26.5
go: downloading go1.26.5 (linux/amd64)
go: downloading k8s.io/apimachinery v0.36.3
go: downloading dario.cat/mergo v1.0.2
go: downloading github.com/crossplane/crossplane-runtime/v2 v2.3.3
go: downloading github.com/crossplane/crossplane-runtime v1.20.10
go: downloading github.com/crossplane/upjet/v2 v2.4.1
go: downloading github.com/pkg/errors v0.9.1
go: downloading sigs.k8s.io/controller-runtime v0.24.1
go: downloading github.com/alecthomas/kingpin/v2 v2.4.0
go: downloading github.com/glalanne/terraform-provider-databricks v0.0.0-20260305041155-6686063ba328
go: downloading google.golang.org/grpc v1.82.1
go: downloading k8s.io/api v0.36.3
go: downloading k8s.io/apiextensions-apiserver v0.36.3
go: downloading k8s.io/client-go v0.36.3
go: downloading github.com/hashicorp/terraform-json v0.28.0
go: downloading github.com/hashicorp/terraform-plugin-framework v1.19.0
go: downloading github.com/hashicorp/terraform-plugin-sdk/v2 v2.40.1
go: downloading k8s.io/klog/v2 v2.140.0
go: downloading k8s.io/kube-openapi v0.0.0-20260427204847-8949caaa1199
go: downloading sigs.k8s.io/structured-merge-diff/v6 v6.4.0
go: downloading github.com/crossplane/crossplane/apis/v2 v2.0.0-20260424160951-8f231230ebb6
go: downloading github.com/spf13/afero v1.15.0
go: downloading google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af
go: downloading github.com/json-iterator/go v1.1.12
go: downloading k8s.io/utils v0.0.0-20260319190234-28399d86e0b5
go: downloading sigs.k8s.io/randfill v1.0.0
go: downloading github.com/evanphx/json-patch/v5 v5.9.11
go: downloading github.com/evanphx/json-patch v5.9.11+incompatible
go: downloading github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b
go: downloading github.com/xhit/go-str2duration/v2 v2.1.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/muvaf/typewriter v0.0.0-20240614220100-70f9d4a54ea0
go: downloading golang.org/x/tools v0.48.0
go: downloading github.com/go-logr/logr v1.4.3
go: downloading golang.org/x/time v0.15.0
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading k8s.io/component-base v0.36.3
go: downloading github.com/hashicorp/go-cty v1.5.0
go: downloading github.com/hashicorp/hcl/v2 v2.24.0
go: downloading github.com/hashicorp/terraform-plugin-go v0.31.0
go: downloading github.com/zclconf/go-cty-yaml v1.1.0
go: downloading github.com/zclconf/go-cty v1.18.1
go: downloading golang.org/x/net v0.57.0
go: downloading github.com/go-logr/zapr v1.3.0
go: downloading go.uber.org/zap v1.27.1
go: downloading gomodules.xyz/jsonpatch/v2 v2.5.0
go: downloading github.com/stretchr/testify v1.11.1
go: downloading github.com/upbound/uptest v0.12.1-0.20260728095952-c230a8044006
go: downloading github.com/fatih/camelcase v1.0.0
go: downloading github.com/iancoleman/strcase v0.3.0
go: downloading github.com/hashicorp/go-version v1.9.0
go: downloading github.com/hashicorp/terraform-plugin-log v0.10.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/mitchellh/go-testing-interface v1.14.1
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/hashicorp/go-uuid v1.0.3
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/mitchellh/go-ps v1.0.0
go: downloading sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730
go: downloading go.yaml.in/yaml/v2 v2.4.4
go: downloading sigs.k8s.io/controller-tools v0.21.0
go: downloading golang.org/x/text v0.40.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/golang/mock v1.6.0
go: downloading golang.org/x/sync v0.22.0
go: downloading github.com/databricks/databricks-sdk-go v0.113.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/prometheus/common v0.67.5
go: downloading github.com/prometheus/procfs v0.20.1
go: downloading golang.org/x/sys v0.47.0
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/spf13/pflag v1.0.10
go: downloading go.opentelemetry.io/otel/trace v1.43.0
go: downloading go.opentelemetry.io/otel v1.43.0
go: downloading github.com/agext/levenshtein v1.2.3
go: downloading github.com/apparentlymart/go-textseg/v15 v15.0.0
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/vmihailenco/msgpack/v5 v5.4.1
go: downloading github.com/vmihailenco/msgpack v4.0.4+incompatible
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/fsnotify/fsnotify v1.10.0
go: downloading github.com/antchfx/htmlquery v1.3.5
go: downloading github.com/tmccombs/hcl2json v0.6.8
go: downloading github.com/yuin/goldmark v1.8.4
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/getkin/kin-openapi v0.144.0
go: downloading github.com/oasdiff/oasdiff v1.26.1
go: downloading golang.org/x/mod v0.38.0
go: downloading github.com/hashicorp/go-hclog v1.6.3
go: downloading github.com/fxamacker/cbor/v2 v2.9.1
go: downloading github.com/spf13/cobra v1.10.2
go: downloading github.com/google/gnostic-models v0.7.1
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading github.com/go-openapi/jsonreference v0.21.5
go: downloading github.com/go-openapi/swag v0.26.0
go: downloading golang.org/x/term v0.45.0
go: downloading golang.org/x/oauth2 v0.36.0
go: downloading golang.org/x/exp v0.0.0-20260112195511-716be5621a96
go: downloading google.golang.org/api v0.267.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
go: downloading github.com/hashicorp/terraform-plugin-framework-validators v0.19.0
go: downloading github.com/hashicorp/terraform-plugin-framework-timetypes v0.5.0
go: downloading github.com/hashicorp/terraform-plugin-testing v1.14.0
go: downloading github.com/hashicorp/go-plugin v1.7.0
go: downloading github.com/vmihailenco/tagparser/v2 v2.0.0
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/antchfx/xpath v1.3.6
go: downloading github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/go-openapi/jsonpointer v0.23.1
go: downloading github.com/oasdiff/yaml v0.1.1
go: downloading github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
go: downloading cloud.google.com/go v0.123.0
go: downloading github.com/wI2L/jsondiff v0.7.1
go: downloading google.golang.org/appengine v1.6.8
go: downloading github.com/fatih/color v1.19.0
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/hashicorp/logutils v1.0.0
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading k8s.io/code-generator v0.36.3
go: downloading k8s.io/gengo/v2 v2.0.0-20251215205346-5ee0d033ba5b
go: downloading github.com/gobuffalo/flect v1.0.3
go: downloading github.com/go-openapi/swag/cmdutils v0.26.0
go: downloading github.com/go-openapi/swag/conv v0.26.0
go: downloading github.com/go-openapi/swag/fileutils v0.26.0
go: downloading github.com/go-openapi/swag/jsonname v0.26.0
go: downloading github.com/go-openapi/swag/jsonutils v0.26.0
go: downloading github.com/go-openapi/swag/loading v0.26.0
go: downloading github.com/go-openapi/swag/mangling v0.26.0
go: downloading github.com/go-openapi/swag/netutils v0.26.0
go: downloading github.com/go-openapi/swag/stringutils v0.26.0
go: downloading github.com/go-openapi/swag/typeutils v0.26.0
go: downloading github.com/go-openapi/swag/yamlutils v0.26.0
go: downloading github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
go: downloading github.com/google/go-querystring v1.1.0
go: downloading cloud.google.com/go/compute/metadata v0.9.0
go: downloading cloud.google.com/go/auth v0.18.1
go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.8
go: downloading github.com/hashicorp/terraform-plugin-framework-jsontypes v0.2.0
go: downloading github.com/hashicorp/terraform-exec v0.25.1
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/hashicorp/yamux v0.1.2
go: downloading github.com/oklog/run v1.2.0
go: downloading github.com/hashicorp/terraform-registry-address v0.4.0
go: downloading gopkg.in/evanphx/json-patch.v4 v4.13.0
go: downloading github.com/oasdiff/yaml3 v0.0.14
go: downloading github.com/yargevad/filepathx v1.0.0
go: downloading github.com/tidwall/gjson v1.18.0
go: downloading github.com/tidwall/sjson v1.2.5
go: downloading github.com/googleapis/gax-go/v2 v2.17.0
go: downloading github.com/google/s2a-go v0.1.9
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0
go: downloading github.com/hashicorp/hc-install v0.9.4
go: downloading github.com/hashicorp/terraform-svchost v0.1.1
go: downloading github.com/tidwall/match v1.2.0
go: downloading github.com/tidwall/pretty v1.2.1
go: downloading github.com/emicklei/go-restful/v3 v3.13.0
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.11
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading go.opentelemetry.io/otel/metric v1.43.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/hashicorp/go-checkpoint v0.5.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/ProtonMail/go-crypto v1.4.1
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading golang.org/x/crypto v0.54.0
go: downloading github.com/hashicorp/go-retryablehttp v0.7.8
go: downloading github.com/cloudflare/circl v1.6.3
go: github.com/glalanne/provider-databricks/apis/cluster/apps/v1alpha1 imports
	github.com/crossplane/crossplane-runtime/v2/apis/common/v1: cannot find module providing package github.com/crossplane/crossplane-runtime/v2/apis/common/v1
go: github.com/glalanne/provider-databricks/apis/namespaced/apps/v1alpha1 imports
	github.com/crossplane/crossplane-runtime/v2/apis/common/v2: cannot find module providing package github.com/crossplane/crossplane-runtime/v2/apis/common/v2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants