Skip to content

chore(deps): update helm release external-secrets to v0.18.2#85

Merged
botty-mcbottington[bot] merged 1 commit intomainfrom
renovate/external-secrets-0.x
Jul 15, 2025
Merged

chore(deps): update helm release external-secrets to v0.18.2#85
botty-mcbottington[bot] merged 1 commit intomainfrom
renovate/external-secrets-0.x

Conversation

@botty-mcbottington
Copy link
Copy Markdown
Contributor

@botty-mcbottington botty-mcbottington bot commented Mar 10, 2025

This PR contains the following updates:

Package Update Change
external-secrets minor 0.14.3 -> 0.18.2

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

external-secrets/external-secrets (external-secrets)

v0.18.2

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.18.2
NOTE - the following UBI images are not currently working (broken build process).
Image: ghcr.io/external-secrets/external-secrets:v0.18.2-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.18.2-ubi-boringssl

What's Changed
New Contributors

Full Changelog: external-secrets/external-secrets@v0.18.1...v0.18.2

v0.18.1

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.18.1
Image: ghcr.io/external-secrets/external-secrets:v0.18.1-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.18.1-ubi-boringssl

What's Changed

Full Changelog: external-secrets/external-secrets@v0.18.0...v0.18.1

v0.18.0

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.18.0
Image: ghcr.io/external-secrets/external-secrets:v0.18.0-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.18.0-ubi-boringssl

Potential Breaking Changes

This version includes a massive refactor of the AWS providers. Now, they are finally using V2 and thus opened some regions and are more maintainable. Massive thanks goes to @​Ilhan-Personal for this work. We really appreciate all the effort that went into this. Thank you!

Further update has been done to 1Password provider SDK. Now, GetSecretMap functions the same way as 1Password connect. Which is that it uses extract to filter for files or other values.

What's Changed
New Contributors

Full Changelog: external-secrets/external-secrets@v0.17.0...v0.18.0

v0.17.0

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.17.0
Image: ghcr.io/external-secrets/external-secrets:v0.17.0-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.17.0-ubi-boringssl

BREAKING CHANGE

v0.17.0 Stops serving v1beta1 apis. You need to update your manifests from v1beta1 to v1 prior to updating from v0.16 to v0.17.

The only change needed is upgrading your manifests to v1 (i.e. removing the beta1 from v1beta1).

Be sure to do that to all your manifests prior to bumping to v0.17.0! v0.16.2 already supports v1 so this process should be smooth.

What's Changed
New Contributors

Full Changelog: external-secrets/external-secrets@v0.16.2...v0.17.0

v0.16.2

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.16.2
Image: ghcr.io/external-secrets/external-secrets:v0.16.2-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.16.2-ubi-boringssl

BREAKING CHANGE

When updating to v0.16.2, if you leverage Generators with refreshInterval: 0 or any refreshPolicy to not update it, this version WILL FORCE THAT VALUE TO BE UPDATED.

Apologies to the user base, we did not expect this breaking change behavior out of these contributions. 🙇 🙏

What's Changed
New Contributors

Full Changelog: external-secrets/external-secrets@v0.16.1...v0.16.2

v0.16.1

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.16.1
Image: ghcr.io/external-secrets/external-secrets:v0.16.1-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.16.1-ubi-boringssl

What's Changed

Full Changelog: external-secrets/external-secrets@v0.16.0...v0.16.1

Guide to Promoting to 0.16
Pre Upgrade checks
Make sure you are not using any v1alpha1 resources across all of your infrastructure.

You can do that by performing manual inspection on your manifests, tooling, etc.

Make sure there are no storedVersions on v1alpha1 for externalsecrets, clusterexternalsecrets, secretstores and clustersecretstores crds:

Run the following command:

kubectl get crd \
    externalsecrets.external-secrets.io\
    secretstores.external-secrets.io\
    clustersecretstores.external-secrets.io\
    clusterexternalsecrets.external-secrets.io\
    -o jsonpath='{.items[*].status.storedVersions[?(@​=="v1alpha1")]}' | \
    grep -q v1alpha1 && echo "NOT SAFE! REMOVE v1alpha1 FROM YOUR STORED VERSIONS" || echo "Safe to Continue"

If that command returns not safe, remove v1alpha1 from your stored versions. Make sure this status is persisted after you verify these commands.

kubectl patch --subresource=status crd externalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd secretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clusterexternalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clustersecretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
Upgrading
CRDs as part of external-secrets installation

If you're installing external-secrets CRDs with helm (installCRDs=true - the default), all you need to do is

helm repo update
helm upgrade <your_app_name> external-secrets/external

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTQuMCIsInVwZGF0ZWRJblZlciI6IjQxLjMyLjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->

@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch 3 times, most recently from ef9c904 to 07c112a Compare March 16, 2025 19:03
@botty-mcbottington botty-mcbottington bot changed the title Update Helm release external-secrets to v0.14.4 chore(deps): update helm release external-secrets to v0.14.4 Mar 16, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 07c112a to 8f91d21 Compare March 19, 2025 12:12
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.14.4 chore(deps): update helm release external-secrets to v0.15.0 Mar 19, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 8f91d21 to 826899e Compare March 29, 2025 00:29
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.15.0 chore(deps): update helm release external-secrets to v0.15.1 Mar 29, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch 2 times, most recently from e4a2506 to 1ea47e9 Compare April 7, 2025 12:13
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 1ea47e9 to 6349f10 Compare April 14, 2025 18:10
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.15.1 chore(deps): update helm release external-secrets to v0.16.0 Apr 14, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 6349f10 to 060a6d2 Compare April 16, 2025 12:12
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.16.0 chore(deps): update helm release external-secrets to v0.16.1 Apr 16, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 060a6d2 to 5e767b3 Compare May 7, 2025 18:11
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.16.1 chore(deps): update helm release external-secrets to v0.16.2 May 7, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 5e767b3 to d8141fc Compare May 15, 2025 06:11
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.16.2 chore(deps): update helm release external-secrets to v0.17.0 May 15, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from d8141fc to 76dfbd7 Compare June 18, 2025 00:32
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.17.0 chore(deps): update helm release external-secrets to v0.18.0 Jun 18, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 76dfbd7 to 86aeffd Compare June 26, 2025 12:13
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.18.0 chore(deps): update helm release external-secrets to v0.18.1 Jun 26, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from 86aeffd to b841f2f Compare July 3, 2025 18:10
@botty-mcbottington botty-mcbottington bot changed the title chore(deps): update helm release external-secrets to v0.18.1 chore(deps): update helm release external-secrets to v0.18.2 Jul 3, 2025
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch 5 times, most recently from 94a7448 to b1b4e2b Compare July 14, 2025 18:13
@botty-mcbottington botty-mcbottington bot force-pushed the renovate/external-secrets-0.x branch from b1b4e2b to 75ab920 Compare July 15, 2025 00:35
@botty-mcbottington botty-mcbottington bot merged commit a4b08f8 into main Jul 15, 2025
2 checks passed
@botty-mcbottington botty-mcbottington bot deleted the renovate/external-secrets-0.x branch July 15, 2025 06:12
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