Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update aqua #94

Merged
merged 1 commit into from Aug 27, 2023
Merged

chore(deps): update aqua #94

merged 1 commit into from Aug 27, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 24, 2023

Mend Renovate

This PR contains the following updates:

Package Update Change
aquaproj/aqua-registry minor v4.40.0 -> v4.42.0
cli/cli minor v2.32.1 -> v2.33.0
fluxcd/flux2 minor v2.0.1 -> v2.1.0
golangci/golangci-lint patch v1.54.1 -> v1.54.2
kubernetes/kubectl patch 1.28.0 -> 1.28.1
stern/stern minor v1.25.0 -> v1.26.0
twpayne/chezmoi minor v2.37.0 -> v2.38.0
weaveworks/eksctl minor v0.153.0 -> v0.154.0

Release Notes

aquaproj/aqua-registry (aquaproj/aqua-registry)

v4.42.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.41.1...v4.42.0

🎉 New Packages

#​14926 exercism/cli: A Go based command line tool for exercism.org @​sheldonhull
#​14881 openziti/zrok: Geo-scale, next-generation sharing platform built on top of OpenZiti

Fixes

#​14928 gabrie30/ghorg: Follow up changes of ghorg v1.9.9
#​14882 sachaos/viddy: Follow up changes of viddy v0.3.7

v4.41.1

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.41.0...v4.41.1

Fixes

#​14842 antonmedv/walk: Rename the package antonmedv/llama to antonmedv/walk

https://github.com/antonmedv/llama is redirected to https://github.com/antonmedv/walk .

The project llama was renamed to walk.

#​14843 goss-org/goss: Follow up changes of goss v0.4.0

v4.41.0

Compare Source

Issues | Pull Requests | aquaproj/aqua-registry@v4.40.0...v4.41.0

🎉 New Packages

#​14733 cockroachdb/cockroach: A distributed SQL database designed for speed, scale, and survival @​takumin
#​14675 takumin/gyaml: Golang YAML Tool @​takumin
#​14732 zitadel/zitadel: ZITADEL - The best of Auth0 and Keycloak combined. Built for the serverless era @​takumin

cli/cli (cli/cli)

v2.33.0: GitHub CLI 2.33.0

Compare Source

Meowdy terminal aficionados! 😸

Before moving onto the freshest gh release notes, I have some GitHub CLI team news to share with the community:

  1. Our dear friend and college @​vilmibm has moved on from GitHub in following his passions for digital humanities 😿

    The core GitHub CLI team could not be happier for Nate as those same passions has brought gh to this point. 😻 So a tremendous unimaginable thanks to our dear friend as he chases the wind with the hopes he continues as part of the GitHub CLI community 💯

  2. We welcome a new GitHub CLI team member: @​andyfeller 😹

    Andy has been a long-time CLI extension advocate within GitHub for some time, maintaining extensions for unique user challenges. Please warmly welcome him as he gets up to speed with supporting our community officially! ❤️

What's Changed

New Contributors

Full Changelog: cli/cli@v2.32.1...v2.33.0

fluxcd/flux2 (fluxcd/flux2)

v2.1.0

Compare Source

Highlights

Flux v2.1.0 is a feature release. Users are encouraged to upgrade for the best experience.

The Flux APIs were extended with new opt-in features in a backwards-compatible manner.

The Flux Git capabilities have been improved with support for Git push options, Git refspec, Gerrit, HTTP/S and SOCKS5 proxies.

The Flux alerting capabilities have been extended with Datadog support.

The Flux controllers come with performance improvements when reconciling Helm repositories with large indexes (80% memory reduction), and when reconciling Flux Kustomizations with thousands of resources (x4 faster server-side apply). The load distribution has been improved when reconciling Flux objects in parallel to reduce CPU and memory spikes.

❤️ Big thanks to all the Flux contributors that helped us with this release!

Deprecations

Flux v2.1.0 comes with support for Kubernetes TLS Secrets when referring to secrets containing TLS certs, and deprecates the usage of caFile, keyFile and certFile keys.

For more details about the TLS changes please see the Kubernetes TLS Secrets section.

Flux v2.1.0 comes with major improvements to the Prometheus monitoring stack. Starting with this version, Flux is leveraging the kube-state-metrics CRD exporter to report metrics containing rich information about Flux reconciliation status e.g. Git revision, Helm chart version, OCI artifacts digests, etc. The gotk_reconcile_condition metrics was deprecated in favor of the gotk_resource_info.

For more details about the new monitoring stack please see the Flux Prometheus metrics documentation and the flux2-monitoring-example repository.

API changes

GitRepository v1

The GitRepository API was extended with the following fields:

  • .spec.proxySecretRef.name is an optional field used to specify the name of a Kubernetes Secret that contains the HTTP/S or SOCKS5 proxy settings.
  • .spec.verify.mode now support one of the following values HEAD, Tag, TagAndHEAD.
Kustomization v1

The Kustomization API was extended with two apply policies IfNotPresent and Ignore.

Changing the apply behaviour for specific Kubernetes resources, can be done using the following annotations:

Annotation Default Values Role
kustomize.toolkit.fluxcd.io/ssa Override - Override
- Merge
- IfNotPresent
- Ignore
Apply policy
kustomize.toolkit.fluxcd.io/force Disabled - Enabled
- Disabled
Recreate policy
kustomize.toolkit.fluxcd.io/prune Enabled - Enabled
- Disabled
Delete policy

The IfNotPresent policy instructs the controller to only apply the Kubernetes resources if they are not present on the cluster.
This policy can be used for Kubernetes Secrets and ValidatingWebhookConfigurations managed by cert-manager,
where Flux creates the resources with fields that are later on mutated by other controllers.

ImageUpdateAutomation v1beta1

The ImageUpdateAutomation was extended with the following fields:

  • .spec.git.push.refspec is an optional field used to specify a Git refspec used when pushing commits upstream.
  • .spec.git.push.options is an optional field used to specify the Git push options to be sent to the Git server when pushing commits upstream.
Kubernetes TLS Secrets

All the Flux APIs that accept TLS data have been modified to adopt Secrets of type
kubernetes.io/tls. This includes:

  • HelmRepository: The field .spec.secretRef has been deprecated in favor of a new field .spec.certSecretRef.
  • OCIRepository: Support for the caFile, keyFile and certFile keys in the Secret specified in .spec.certSecretRef have been deprecated in favor of ca.crt, tls.key and tls.crt.
  • ImageRepository: Support for thecaFile, keyFile and certFile keys in the Secret specified in .spec.certSecretRef have been deprecated in favor of ca.crt, tls.key and tls.crt.
  • GitRepository: CA certificate can now be provided in the Secret specified in .spec.secretRef using the ca.crt key, which takes precedence over the caFile key.

Upgrade procedure

Upgrade Flux from v2.0.x to v2.1.0 either by rerunning bootstrap or by using the Flux GitHub Action.

To upgrade Flux from v0.x to v2.1.0 please follow the Flux GA upgrade procedure.

Kubernetes compatibility

This release is compatible with the following Kubernetes versions:

Kubernetes version Minimum required
v1.25 >= 1.25.0
v1.26 >= 1.26.0
v1.27 >= 1.27.1
v1.28 >= 1.28.0

Note that Flux may work on older versions of Kubernetes e.g. 1.21, but we don't recommend running end-of-life versions in production nor do we offer support for these versions.

New Documentation

Components changelog

CLI Changelog

golangci/golangci-lint (golangci/golangci-lint)

v1.54.2

Compare Source

  1. updated linters:
    • errname: from 0.1.10 to 0.1.12
    • ginkgolinter: from 0.13.3 to 0.13.5
    • go-errorlint: from 1.4.3 to 1.4.4
    • godot: from 1.4.11 to 1.4.14
    • gosec: from 2.16.0 to 2.17.0
    • musttag: from 0.7.1 to 0.7.2
    • nilnil: from 0.1.5 to 0.1.7
    • staticcheck: from 0.4.3 to 0.4.5
    • usestdlibvars: from 1.23.0 to 1.24.0
    • govet: add missing directive and slog passes
kubernetes/kubectl (kubernetes/kubectl)

v1.28.1

Compare Source

stern/stern (stern/stern)

v1.26.0

Compare Source

⚡ Notable Changes

Add new template functions

The following template functions have been added in v1.26.0:

  • extractJSONParts: Parse string as JSON and concatenate the given keys
  • tryExtractJSONParts: Attempt to parse string as JSON and concatenate the given keys, returning text on failure

Changes

twpayne/chezmoi (twpayne/chezmoi)

v2.38.0

Compare Source

Changelog

Other
  • 0ce82b3 chore: Update dependencies
  • 7b300e4 chore: Miscellaneous website improvements
  • 166feaf docs: Linuxbrew -> Homebrew
  • d00de72 feat: Add gitHubReleases and gitHubTags
  • a51179e feat: Support nushell scripts on Windows
  • 7d143c3 docs: Improve documentation on using separate source files
  • ba985c9 chore: Reformat long lines
  • 5e8d2b3 feat: Add promptChoice and promptChoiceOnce template functions
  • 29e8c30 fix: Fix minor issues with promptBool docs and errors
  • f0efc5c chore: Generate release notes from git log, not GitHub
  • 3c72387 chore: Remove dependency on go.uber.org/multierr
  • 424189b chore: Use io/fs.Skip{All,Dir} sentinel errors
  • dbc1b4b chore: Bump golangci-lint to version 1.54.0
  • 3f636c1 chore: Build with Go 1.21.0
  • 187f734 chore: Update dependencies
  • a028598 feat: Restore --autotemplate flag to add command
  • 4e67850 docs: Document --source-path flag
  • 4fc3203 fix: Fix race condition in concurrent parsing of externals
weaveworks/eksctl (weaveworks/eksctl)

v0.154.0: eksctl 0.154.0 (permalink)

Compare Source

Release v0.154.0

🐛 Bug Fixes

  • Fix error message for Bottlerocket validation (#​6967)
  • Don't wait for aws-efs-csi-driver addon if cluster has no nodegroups (#​6960)

🧰 Maintenance

  • Bring Windows integration test runtime down to less than half (#​6965)

📝 Documentation

  • Add references to Enterprise support with Flux on Gitops page (#​6968)

Configuration

📅 Schedule: Branch creation - "after 4pm on thursday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (squash) August 24, 2023 17:38
@renovate renovate bot merged commit 95721f7 into main Aug 27, 2023
4 checks passed
@renovate renovate bot deleted the renovate/aqua branch August 27, 2023 17:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant