Update module github.com/crossplane/upjet to v1.11.1#7
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
January 25, 2025 10:58
d5f0b60 to
87235d5
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
February 12, 2025 04:05
87235d5 to
2861a4a
Compare
Contributor
Author
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
March 13, 2025 03:45
2861a4a to
960c866
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
April 10, 2025 04:13
960c866 to
3071a76
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
April 19, 2025 07:39
3071a76 to
0db15be
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
April 26, 2025 20:11
0db15be to
bd5aba7
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
April 29, 2025 04:07
bd5aba7 to
0d3b1b2
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
May 10, 2025 03:58
0d3b1b2 to
70b69f4
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
August 14, 2025 00:04
70b69f4 to
119884f
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
October 10, 2025 03:43
119884f to
477688b
Compare
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
November 8, 2025 15:43
477688b to
4c5d746
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/github.com-crossplane-upjet-1.x
branch
from
July 16, 2026 03:59
4c5d746 to
660d6a8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.4.0→v1.11.1Release Notes
crossplane/upjet (github.com/crossplane/upjet)
v1.11.1Compare Source
This is a patch release on the
release-1.11branch that ships one new configuration capability and a set of stability and correctness fixes for upjet-based providers.New Features
status.atProviderin upjet-based providers, added theconfig.WithSetupAggregatorTemplateandconfig.WithTerraformedTemplateProviderOptions, allowing upjet-based providers to override the controller setup aggregator and theresource.Terraformedtemplates used during code generation. The change is backward-compatible — providers that do not set these options continue to use the templates shipped with upjet. This mirrors the existingconfig.WithMainTemplateoption and gives provider maintainers full control over the generated files (with the corresponding responsibility to keep customized templates up to date). A newTerraform.ResourceSchematemplate variable is also introduced, supersedingTerraform.SchemaVersionfor terraformed template rendering.Bug Fixes
Fix data race on MR status between async callbacks and the managed reconciler (#674): The async Terraform plugin SDKv2 and framework external clients could race with crossplane-runtime's managed reconciler when calling
SetObservationon the managed resource status. TheCreate/Updateoperations now operate on deep copies of the managed resource to eliminate the race. Also adds atest.racemake target and a dedicated parallel CI job so races are caught earlier. Fixes #472.Prevent Terraform provider panics when the external resource is not found (#687):
InstanceState'sRawConfigandRawPlanare now populated when a Terraform state was previously cached with zero-valuedRawConfig/RawPlanbut the external resource is (no longer) found. This prevents the underlying Terraform provider from panicking when it reads attributes fromRawConfig/RawPlan(for example, the Terraform AWS provider's tagging interceptor), which could occur right after a successfulCreate.Correctly nest dotted map keys populated from secret references (#646): When a
SecretReferencepopulates amap[string]stringmanaged-resource attribute and a secret data key contained dots,fieldpathsplit the key at every dot and produced a wrongly-nested object instead of a flat string-to-string entry. Field paths now use bracket notation (attribute[key.with.dots]) so the full key is preserved as a single path segment. Addresses crossplane-contrib/provider-upjet-aws#1946.Omit XValidation for required fields that have references (#691): When a field is marked required but also has a reference configured, it is satisfiable via its
*Ref/*Selectorfields, so no CELXValidationrequired-parameter rule is emitted for it anymore. This avoids spurious validation errors for fields resolved through references.What's Changed
Full Changelog: crossplane/upjet@v1.11.0...v1.11.1
v1.11.0Compare Source
New Features
Developer Experience Improvements
Technical Improvements
What's Changed
Full Changelog: crossplane/upjet@v1.10.0...v1.11.0
v1.10.4Compare Source
This patch release backports a feature to fix a category of bugs in the providers to the
release-1.10branch that lets upjet-based providers override the controller setup aggregator andresource.Terraformedtemplates. It unblocks providers from resolving a categorical bug involving a map instatus.atProviderby supplying their own terraformed template.Features
Custom controller setup aggregator & terraformed templates (#696, backport of #693): Adds the
config.WithSetupAggregatorTemplateandconfig.WithTerraformedTemplateProviderOptions, mirroring the existingconfig.WithMainTemplateandWithControllerTemplateoptions. These let a provider override the controller setup aggregator (setup.go.tmpl) and the managed-resource terraformed (terraformed.go.tmpl) templates used during code generation. The change is backward-compatible: when a provider does not set these options, upjet's built-in default templates are used. Note that a provider adopting these APIs takes over ownership of the corresponding template and becomes responsible for keeping it in sync with future upjet changes. New documentation for both templates and their variables was added underdocs/.New
Terraform.ResourceSchematerraformed template variable: The terraformed template now exposes the full Terraform Plugin SDK v2 resource schema (*github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.Resource) asTerraform.ResourceSchema, replacing the previousTerraform.SchemaVersion(int) variable. The default template reads{{ .Terraform.ResourceSchema.SchemaVersion }}to implementGetTerraformSchemaVersion, while a custom terraformed template can read any other exported field of the schema.What's Changed
Full Changelog: crossplane/upjet@v1.10.3...v1.10.4
v1.10.3Compare Source
This patch release backports two bug fixes to the
release-1.10branch.Bug Fixes
Prevent Terraform provider panics on cached state for missing resources (#686, backport of #685): When a Terraform state was previously cached in the tracker store with a zero-valued
RawConfig/RawPlanbut the external resource is no longer found duringObserve, these fields could remainnil. This could panic the underlying Terraform provider when it attempted to read an attribute fromRawConfigorRawPlan(for example, the Terraform AWS provider's tagging interceptor inverify.SetTagsDiff). The external client now sets theInstanceState'sRawConfigandRawPlanin this scenario. A regression test reproducing the panic conditions was added.Omit
XValidationfor required fields with references (#690, backport of #684): When a field is marked as required but also has a reference configured, it is satisfiable via the generated*Ref/*Selectormechanisms. Upjet now explicitly sets such fields to non-required inNewReferenceField, so noXValidationrule is emitted for them. Fixes an issue observed in crossplane-contrib/provider-upjet-gcp#952.What's Changed
Full Changelog: crossplane/upjet@v1.10.2...v1.10.3
v1.10.2Compare Source
v1.10.1Compare Source
v1.10.0Compare Source
Critical Race Condition Fix - Conversion Webhooks
Important Stability Improvement: This release resolves a critical race condition in conversion path registration that was causing intermittent failures in provider packages.
Technical Details:
This fix addresses reliability issues that users may have experienced with conversion webhooks, particularly in high-load environments or during rapid resource operations.
Additional Bug Fixes
What's Changed
ts.FrameworkProvideris not nil to avoid panic by @nikimanoledaki in #500New Contributors
Full Changelog: crossplane/upjet@v1.9.0...v1.10.0
v1.9.0Compare Source
This release:
What's Changed
Full Changelog: crossplane/upjet@v1.8.0...v1.9.0
v1.8.1Compare Source
This PR bumps the crossplane-runtime dependency.
What's Changed
Full Changelog: crossplane/upjet@v1.8.0...v1.8.1
v1.8.0Compare Source
This release:
v1.19.0and core crossplane tov1.19.1With these releases, since the crossplane-runtime deprecates some functions that I related to reference resolvers, the users must be careful during the upjet bump in the providers. Because, if the upjet version is directly bumped, then the user can encounter some errors as following during generation:
Therefore, for a safe bump, you need to follow these steps:
v0.0.0-20250424174524-de0e5107ea45. This version refers to this commit. Then, please observe the updated reference resolvers.make generate. You will not get any error.What's Changed
New Contributors
Full Changelog: crossplane/upjet@v1.7.0...v1.8.0
v1.7.0Compare Source
crossplane-runtimeand corecrossplanedependencies tov1.18.0, ensuring compatibility with the latest Crossplane ecosystem and taking advantage of recent improvements and bug fixes.v0.31.0, pass context to panic handlers, introduced by kubernetes/kubernetes#121970.v0.31.0, address deprecations introduced by kubernetes/kubernetes#124263.v0.19.0, address breaking changes introduced by kubernetes-sigs/controller-runtime#2799.What's Changed
Full Changelog: crossplane/upjet@v1.6.0...v1.7.0
v1.6.0Compare Source
This release:
What's Changed
Full Changelog: crossplane/upjet@v1.5.0...v1.6.0
v1.5.1Compare Source
This release contains a bug fix for update reconciliations. Now, we will call runtime conversions before update calls.
What's Changed
Full Changelog: crossplane/upjet@v1.5.0...v1.5.1
v1.5.0Compare Source
What's Changed
New Contributors
Full Changelog: crossplane/upjet@v1.4.0...v1.5.0
v1.4.2Compare Source
v1.4.1Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.