v2.4.0-rc.1Pre-release
Added 4
- A new RUNTIME-ACTIVE printer column was added to ProviderRevision and FunctionRevision
- Crossplane now watches required resources that composition functions depend on, so changes to required resources reconcile XRs that require them in real-time
- Providers with safe-start capability now scale their runtime Deployment to zero replicas until activated, reducing resource consumption for inactive providers
- A new RuntimeActive condition on ProviderRevision and FunctionRevision indicates whether the runtime is intentionally scaled to zero or has been scaled up
Changed 9
- Crossplane CLI is no longer published to releases.crossplane.io and is now published only to cli.crossplane.io under the binary name crossplane instead of crank
- Package revision names are now derived from both the package digest and the package's metadata.generation, so any change to a package's spec produces a new PackageRevision
- Package runtime objects are now applied with server-side apply under the pkg.crossplane.io/runtime field manager instead of merge patch
- Fields removed from a DeploymentRuntimeConfig are now removed from the live runtime object instead of lingering
- Crossplane no longer replaces array additions that it doesn't declare, such as injected sidecar containers or extra volumes added out of band
- The RUNTIME printer column on ProviderRevision and FunctionRevision was renamed to RUNTIME-HEALTHY
- The type label on engine_watches_started_total and engine_watches_stopped_total metrics changed from ComposedResource to Dependency
- The spec.replicas field in DeploymentRuntimeConfig is now read as how many replicas to run while running rather than a demand to always be running
- Crossplane container images are now built with nixpkgs' buildGoModule to include the full Go dependency list in the binary, making them scannable by vulnerability scanners
Fixed 1
- Changing a package's runtimeConfigRef now produces a new revision instead of reusing the existing revision with stale runtime settings
❗ Important
Crossplane version v2.4.0-rc.1 is a release candidate intended to collect input from the community and offer users an opportunity to experiment with Crossplane in non-production environments before the official release of version v2.4.0.
[!WARNING] This is a pre-release; do not use it in production environments!
To install Crossplane with this release:
helm repo add crossplane-stable https://charts.crossplane.io/stable --force-update
helm install crossplane --namespace crossplane-system --create-namespace crossplane-stable/crossplane --devel
🚨 Notable and Breaking Changes
- ⚠️ The Crossplane CLI is no longer published to
releases.crossplane.io. New CLI releases go only tocli.crossplane.io, under the binary namecrossplanerather thancrank. This completes the CLI's move to https://github.com/crossplane/cli, which was announced in thev2.3.0release notes and dual published to both locations forv2.3.0to ease the transition.- f you are using custom installation scripts or CI steps that download the CLI directly from
releases.crossplane.io, update them to usecli.crossplane.io, and update any firewall or proxy rule that allowsreleases.crossplane.ioto now allowcli.crossplane.ioinstead.- Users of the
install.shscript as their installation procedure are unaffected.
- Users of the
- The CLI now follows its own release schedule, so a CLI release will not accompany every core Crossplane release and the two version numbers have diverged.
- Documentation and installation instructions for the Crossplane CLI can be found on https://docs.crossplane.io/cli/latest/.
- f you are using custom installation scripts or CI steps that download the CLI directly from
- Package revision names are now derived from both the package digest and the package's
metadata.generation, so any change to a package's spec produces a newPackageRevision. #7473- This fixes the long standing issue where changing a package's
runtimeConfigRefreused the existing revision, along with its stale runtime settings. #5068 - When upgrading to
v2.4, every installed package gets a new revision, with a new name, on its first reconcile. - ⚠️ The
PodsforProvidersandFunctionswill be restarted for this new revision.
- This fixes the long standing issue where changing a package's
- Package runtime objects (
Deployment,ServiceAccount,Service, and TLSSecrets) are now applied with server-side apply under thepkg.crossplane.io/runtimefield manager, replacing the previous merge patch applicator. #7563- A field you remove from a
DeploymentRuntimeConfigis now removed from the live runtime object, rather than lingering until that object is replaced. #4817 - Additions that Crossplane doesn't declare are left alone rather than replaced along with the array that held them, e.g. an injected sidecar container or an extra volume added out of band now survives a reconcile.
- A field you remove from a
- The
RUNTIMEprinter column onProviderRevisionandFunctionRevisionwas renamed toRUNTIME-HEALTHY, and a newRUNTIME-ACTIVEcolumn was added. #7586- Update any tooling that reads
kubectl get providerrevisionorkubectl get functionrevisionoutput by column position.
- Update any tooling that reads
- The
typelabel on theengine_watches_started_totalandengine_watches_stopped_totalmetrics changed fromComposedResourcetoDependency, now that a single watch mechanism covers both composed and required resources. #7572- Update any dashboards or alerts that filter on that label value.
🎉 Highlights
- Watching required resources: Composition functions can require resources they don't compose, but Crossplane didn't watch them, so a change to a required resource didn't reconcile the XRs that required it until their next poll. Crossplane now tracks the resources each XR depends on and drives watches from that. A change to a required resource now reconciles the XRs that required it the same way a change to a composed resource does. This works when realtime compositions are enabled, which is the default. See
design/one-pager-watching-required-resources.mdand #7572. - Safe-start provider runtimes scale to zero until activated: A provider with the safe-start capability runs no managed resource controllers while all of its
ManagedResourceDefinitionsare inactive, so there is no reason to run its pods. Crossplane now creates such a provider's runtimeDeploymentwith zero replicas and scales it up once its first MRD becomes active, such as through a matchingManagedResourceActivationPolicy. Installing a broad set of providers no longer costs you a running pod for each one that has nothing to reconcile yet. #7586- A new
RuntimeActivecondition onProviderRevisionandFunctionRevisionmakes this visible. It isFalsewith reasonAwaitingActivationwhile the runtime is intentionally scaled to zero andTrueonce it has been scaled up.RuntimeHealthystays healthy in both cases, and the package'sHealthycondition surfaces the awaiting state with the same reason. - Scaling to zero takes precedence over an explicit
spec.replicasin aDeploymentRuntimeConfig, which is now read as how many replicas to run while running, rather than a demand to always be running. #7639
- A new
- Vulnerability-scannable container images: Crossplane container images are now built with nixpkgs'
buildGoModule, which includes the full Go dependency list into the binary. Scanners such asgrypeandtrivypreviously were only able to discover the Crossplane main module and the Go standard library, so CVEs in our third-party dependencies were not visible to them. Now Crossplane and its complete set of dependencies are visible to security scanner tools. #7549 - More reliable package runtime management: Server-side apply for package runtime objects means a field you remove from a
DeploymentRuntimeConfigis now actually removed from the liveDeploymentinstead of lingering (#7563, fixing #4817). Deactivating a revision also no longer deletes a runtimeDeploymentthat another revision controls, which could happen when aDeploymentRuntimeConfigpins a stabledeploymentTemplate.metadata.name(#7561). - Hardening across composition and package paths: Several changes tighten paths where a caller could reach further than intended. The composed resource garbage collector now only deletes resources whose controller reference points back to the XR, so
spec.resourceRefscan no longer be used to make the composite controller delete arbitrary resources (#7627). The claim to XR syncers now strip XR machinery fields such asresourceRefsand thecrossplanestanza, which a claim could otherwise smuggle through an XRD schema that setsx-kubernetes-preserve-unknown-fields: true(#7626). - Version-aware docs search: Searching from an older version of the docs, such as
/v1.20/, used to return results from all versions, potentially returning features and APIs that don't exist in the version you're actually reading. Search is now scoped to the version you're on, results carry a clearly visible version badge, and pages from older versions show a banner explaining that, with a link to latest. Thanks to @haarchri for this one in crossplane/docs#1051, so give it a try at https://docs.crossplane.io. - Security fixes in dependencies: The Go version Crossplane builds/runs with was bumped to pick up standard library CVE fixes, alongside a steady stream of security updates to Crossplane's Go dependencies across this release cycle.
- Other notable improvements:
- Several fixes to the render engine that backs
crossplane render: an XRD schema can now be supplied tocrossplane internal render(#7452), requirements are returned even when a function returns a fatal result (#7455), a namespace is set on injected resource references only for cluster-scoped XRs, matching the real reconciler (#7523), and an input XR fetched from a real cluster keeps its own UID so its observed resources are read correctly, with clear errors when observed resources don't line up with the XR (#7544). - The
sha256files published with release binaries are now calculated after Nix strips the binary, so amd64 checksums match what you download. They didn't forv2.2.0throughv2.3.1, and CI now verifies checksums before uploading artifacts. #7660 - A composed
Usageno longer gets a redundant owner update on every reconcile, which could repeatedly trigger composition reconciliation and eventually open the XR circuit breaker. #7591 - The deletion protection field index now uses a separator that can't appear in a group, kind, name, or namespace, so two distinct resources can no longer collide and block a deletion that should be allowed. #7508
- Sorting of
spec.resourceRefsnow includes the namespace, so references stay stable when composed resources share a name across namespaces. #7341
- Several fixes to the render engine that backs
📖 Full Changelog
- chore(deps): bump crossplane-runtime to v2.4.0-rc.0 by @jbw976 in https://github.com/crossplane/crossplane/pull/7393
- build: add release-2.3 to renovate baseBranches by @jbw976 in https://github.com/crossplane/crossplane/pull/7395
- ci: Run checks on the apis module by @adamwg in https://github.com/crossplane/crossplane/pull/7396
- Make Renovate security updates bypass throttles by @phisco in https://github.com/crossplane/crossplane/pull/7391
- docs: add Stone Payments to ADOPTERS.md by @gadsilva in https://github.com/crossplane/crossplane/pull/7388
- build: Install Earthly in Renovate container via flake URL by @jbw976 in https://github.com/crossplane/crossplane/pull/7404
- build: put Nix profile bin on PATH in Renovate entrypoint by @jbw976 in https://github.com/crossplane/crossplane/pull/7405
- chore(deps): Bump Go to 1.25.10 to fix stdlib CVEs (main) by @jbw976 in https://github.com/crossplane/crossplane/pull/7414
- chore: bump releases table and renovate baseBranches after v2.3 release by @jbw976 in https://github.com/crossplane/crossplane/pull/7418
- chore(deps): update module golang.org/x/crypto to v0.52.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7423
- fix(ci): match release tags only when computing build version by @jbw976 in https://github.com/crossplane/crossplane/pull/7431
- build: tag the apis/ Go submodule on every release by @jbw976 in https://github.com/crossplane/crossplane/pull/7444
- Update install.sh to point at the new CLI release bucket by @adamwg in https://github.com/crossplane/crossplane/pull/7441
- fix(render): allow xrd schema to be supplied for
internal renderby @jcogilvie in https://github.com/crossplane/crossplane/pull/7452 - README: add sig-v2-migration to list of SIGs by @jbw976 in https://github.com/crossplane/crossplane/pull/7462
- Move error types from xerrors to relevant packages by @adamwg in https://github.com/crossplane/crossplane/pull/7465
- fix(render): return requirements even on fatal errors by @jcogilvie in https://github.com/crossplane/crossplane/pull/7455
- fix: add namespace to resourceref stable sort by @LorenzBischof in https://github.com/crossplane/crossplane/pull/7341
- redact secret stringData before emitting to pipeline inspector by @netliomax25-code in https://github.com/crossplane/crossplane/pull/7476
- chore(deps): update actions/stale digest to eb5cf3a (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7379
- chore(deps): update actions/create-github-app-token digest to fee1f7d (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7310
- chore(deps): update gomod2nix digest to 1201ddd (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7128
- chore(deps): update module golang.org/x/sys to v0.44.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7435
- chore(deps): update module golang.org/x/net to v0.55.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7434
- chore(deps): update bufbuild/buf-action digest to fd21066 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7380
- ci(renovate): disable the per-hour PR creation throttle by @jbw976 in https://github.com/crossplane/crossplane/pull/7482
- chore(deps): update actions/checkout digest to df4cb1c (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7483
- chore(deps): update mheap/require-checklist-action digest to 9c8100a (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7487
- chore(deps): update github/codeql-action digest to 8aad20d (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7486
- chore(deps): update codecov/codecov-action digest to 0fb7174 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7485
- chore(deps): update cachix/install-nix-action digest to 8aa0397 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7484
- chore(deps): update korthout/backport-action action to v4.5.2 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7491
- fix(deps): update module github.com/google/go-containerregistry to v0.21.6 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7490
- chore(deps): update actions/checkout action to v6.0.3 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7489
- chore(deps): update negz/create-tag digest to 39bae1e (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7488
- chore(deps): update renovatebot/github-action action to v46.1.15 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7492
- fix(deps): update module github.com/alecthomas/kong to v1.15.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7493
- fix(deps): update module github.com/crossplane/crossplane/apis/v2 to v2.3.2 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7495
- fix(deps): update module github.com/aws/smithy-go to v1.27.2 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7494
- fix(deps): update module golang.org/x/sync to v0.21.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7497
- chore(deps): update actions/create-github-app-token action to v3 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7499
- fix(deps): update module google.golang.org/grpc to v1.81.1 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7498
- chore(deps): update cachix/cachix-action action to v17 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7501
- fix(deps): update module github.com/masterminds/semver/v3 to v3.5.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7496
- chore(deps): update docker/login-action action to v4 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7504
- chore(deps): update dependency renovate to v43 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7503
- chore(deps): update codecov/codecov-action action to v7 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7502
- chore(deps): update nick-fields/retry action to v4 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7507
- chore(deps): update github artifact actions to v7 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7506
- chore(deps): update dependency renovate to v43.222.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7505
- render: Set namespace on injected resource refs only for cluster-scoped XRs by @adamwg in https://github.com/crossplane/crossplane/pull/7523
- chore(deps): update dependency renovate to v43.230.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7509
- pkg: include package generation in revision ID by @RonaldLePape in https://github.com/crossplane/crossplane/pull/7473
- chore(deps): update module github.com/sigstore/cosign/v3 to v3.0.6 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7551
- Update ADOPTERS.md by @cazeaux in https://github.com/crossplane/crossplane/pull/7533
- chore(deps): update module github.com/sigstore/rekor to v1.5.2 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7552
- chore(deps): update module github.com/sigstore/timestamp-authority/v2 to v2.1.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7567
- build(nix): build with buildGoModule so images are vulnerability-scannable by @phisco in https://github.com/crossplane/crossplane/pull/7549
- docs: fix duplicated word in crossplane-v2 proposal by @s3onghyun in https://github.com/crossplane/crossplane/pull/7526
- chore(deps): update module github.com/sigstore/sigstore-go to v1.2.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7580
- chore(deps): update dependency renovate to v43.272.1 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7593
- fix: avoid repeated owner updates for composed Usages by @youssefcamao in https://github.com/crossplane/crossplane/pull/7591
- chore(deps): update dependency renovate to v43.272.8 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7595
- render: Don't overwrite the input XR's UID if it has one and validate observed resources by @adamwg in https://github.com/crossplane/crossplane/pull/7544
- Watch required resources to reconcile the XRs that require them by @negz in https://github.com/crossplane/crossplane/pull/7572
- fix(deps): combined security bumps (grpc, x/net, x/text) (main) by @lsviben in https://github.com/crossplane/crossplane/pull/7617
- chore(deps): update module golang.org/x/net to v0.56.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7602
- Do not delete package runtime deployments owned by another revision by @truongnht in https://github.com/crossplane/crossplane/pull/7561
- chore(deps): update module golang.org/x/text to v0.39.0 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7603
- Make check-diff CI verify generated files are committed by @phisco in https://github.com/crossplane/crossplane/pull/7213
- fix(ci): serialize Nix builds in Renovate entrypoint by @alliasgher in https://github.com/crossplane/crossplane/pull/7564
- use unambiguous separator for usage index key by @netliomax25-code in https://github.com/crossplane/crossplane/pull/7508
- test(e2e): use DefaultPollInterval in remaining wait.For calls by @amarkdotdev in https://github.com/crossplane/crossplane/pull/7547
- feat(pkg): scale safe-start provider runtimes to zero until their first MRD is activated by @haarchri in https://github.com/crossplane/crossplane/pull/7586
- chore(renovate): group security-fix PRs into one per branch by @phisco in https://github.com/crossplane/crossplane/pull/7641
- Scale safe-start runtimes to zero even when a DRC sets replicas by @negz in https://github.com/crossplane/crossplane/pull/7639
- build: give every Go build its own writable HOME by @jbw976 in https://github.com/crossplane/crossplane/pull/7652
- chore(deps): update vulnerable dependencies [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7645
- fix(composite): only garbage collect resources we control by @phisco in https://github.com/crossplane/crossplane/pull/7627
- pkg: Use the real DAG in dependency resolver tests by @adamwg in https://github.com/crossplane/crossplane/pull/7655
- chore(deps): update dependency renovate to v43.287.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7625
- fix(ci): make the flake.lock schedule reachable and cover release branches by @jbw976 in https://github.com/crossplane/crossplane/pull/7661
- build: Calculate checksums after the nix fixup phase by @adamwg in https://github.com/crossplane/crossplane/pull/7660
- chore(deps): update dependency renovate to v43.288.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7664
- adopters: add Julius Baer by @erost in https://github.com/crossplane/crossplane/pull/7657
- chore(deps): update actions/stale digest to 1e223db (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7663
- chore(deps): update actions/checkout digest to d23441a (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7662
- lint: Tell the goconst linter to ignore tests by @adamwg in https://github.com/crossplane/crossplane/pull/7669
- chore(deps): update buildpulse/buildpulse-action action to v3 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7500
- chore(deps): update module github.com/sigstore/sigstore-go to v1.2.1 [security] (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7670
- chore(deps): update cachix/install-nix-action digest to 630ae54 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7672
- fix(deps): update module github.com/crossplane/crossplane/apis/v2 to v2.3.4 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7681
- chore(deps): update bufbuild/buf-action digest to 8c6a16e (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7671
- chore(deps): update docker/login-action digest to dbcb813 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7673
- chore(deps): update github/codeql-action digest to f205ea1 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7674
- fix(deps): update module github.com/google/go-containerregistry to v0.21.8 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7682
- fix(deps): update module github.com/aws/smithy-go to v1.27.6 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7680
- chore(deps): update korthout/backport-action action to v4.6.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7686
- Fix 4817 runtime ssa deployment by @RonaldLePape in https://github.com/crossplane/crossplane/pull/7563
- ci: skip BuildPulse flake publishing when credentials are absent by @phisco in https://github.com/crossplane/crossplane/pull/7691
- fix(ci): prioritize flake.lock maintenance updates by @jbw976 in https://github.com/crossplane/crossplane/pull/7695
- chore(deps): update renovatebot/github-action action to v46.2.1 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7694
- chore(deps): update github/codeql-action digest to d1ba80a (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7693
- chore(deps): update actions/checkout action to v7 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7690
- fix(claim): don't propagate XR machinery fields from claims by @phisco in https://github.com/crossplane/crossplane/pull/7626
- build: point docker-client at docker_29 in the nix overlay by @jbw976 in https://github.com/crossplane/crossplane/pull/7701
- chore(deps): lock file maintenance (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7696
- fix(ci): pin which Nix Renovate's post-upgrade tasks use by @jbw976 in https://github.com/crossplane/crossplane/pull/7709
- fix(deps): update module github.com/alecthomas/kong to v1.16.0 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7687
- build: bump pinned nixpkgs channel from nixos-25.11 to nixos-26.05 by @jbw976 in https://github.com/crossplane/crossplane/pull/7715
- Update the Netclab adopter entry by @mbakalarski in https://github.com/crossplane/crossplane/pull/7718
- pkg: Make deactivated revisions relinquish control of runtime resources by @adamwg in https://github.com/crossplane/crossplane/pull/7714
- chore(deps): update dependency renovate to v44 (main) by @crossplane-renovate[bot] in https://github.com/crossplane/crossplane/pull/7698
- drop secret last-applied annotation from pipeline inspector output by @phisco in https://github.com/crossplane/crossplane/pull/7726
- chore(deps): bump crossplane-runtime to v2.4.0-rc.1 by @jbw976 in https://github.com/crossplane/crossplane/pull/7735
New Contributors
- @gadsilva made their first contribution in https://github.com/crossplane/crossplane/pull/7388
- @LorenzBischof made their first contribution in https://github.com/crossplane/crossplane/pull/7341
- @netliomax25-code made their first contribution in https://github.com/crossplane/crossplane/pull/7476
- @RonaldLePape made their first contribution in https://github.com/crossplane/crossplane/pull/7473
- @cazeaux made their first contribution in https://github.com/crossplane/crossplane/pull/7533
- @s3onghyun made their first contribution in https://github.com/crossplane/crossplane/pull/7526
- @youssefcamao made their first contribution in https://github.com/crossplane/crossplane/pull/7591
- @truongnht made their first contribution in https://github.com/crossplane/crossplane/pull/7561
- @alliasgher made their first contribution in https://github.com/crossplane/crossplane/pull/7564
- @amarkdotdev made their first contribution in https://github.com/crossplane/crossplane/pull/7547
- @erost made their first contribution in https://github.com/crossplane/crossplane/pull/7657
Full Changelog: https://github.com/crossplane/crossplane/compare/v2.3.0...v2.4.0-rc.1