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 all non-major dependencies #1538

Merged
merged 1 commit into from
May 20, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@swc/core (source) 1.5.6 -> 1.5.7 age adoption passing confidence devDependencies patch
@uiw/codemirror-theme-atomone (source) 4.22.0 -> 4.22.1 age adoption passing confidence dependencies patch
@uiw/codemirror-theme-github (source) 4.22.0 -> 4.22.1 age adoption passing confidence dependencies patch
buf 1.31.0 -> 1.32.0 age adoption passing confidence minor
github.com/amacneil/dbmate/v2 v2.15.0 -> v2.16.0 age adoption passing confidence require minor
goreleaser 1.26.0 -> 1.26.1 age adoption passing confidence patch
helm 3.14.4 -> 3.15.0 age adoption passing confidence minor
just 1.25.2 -> 1.26.0 age adoption passing confidence minor
kubectl 1.29.4 -> 1.29.5 age adoption passing confidence patch
lefthook 1.6.11 -> 1.6.12 age adoption passing confidence patch
modernc.org/sqlite v1.29.9 -> v1.29.10 age adoption passing confidence require patch
npm-run-all2 6.1.2 -> 6.2.0 age adoption passing confidence devDependencies minor
org.codehaus.mojo:build-helper-maven-plugin (source) 3.5.0 -> 3.6.0 age adoption passing confidence build minor
com.google.code.gson:gson 2.10.1 -> 2.11.0 age adoption passing confidence compile minor
io.grpc:grpc-stub 1.63.0 -> 1.64.0 age adoption passing confidence compile minor
io.grpc:grpc-protobuf 1.63.0 -> 1.64.0 age adoption passing confidence compile minor
io.grpc:grpc-netty 1.63.0 -> 1.64.0 age adoption passing confidence compile minor

Release Notes

swc-project/swc (@​swc/core)

v1.5.7

Compare Source

Documentation
uiwjs/react-codemirror (@​uiw/codemirror-theme-atomone)

v4.22.1

Compare Source

Buy me a coffee

Documentation v4.22.1: https://raw.githack.com/uiwjs/react-codemirror/739df75/index.html\
Comparing Changes: uiwjs/react-codemirror@v4.22.0...v4.22.1

npm i @​uiw/react-codemirror@4.22.1
bufbuild/buf (buf)

v1.32.0

  • Add version v2 for buf.yaml and buf.gen.yaml configuration files.
  • Add buf config migrate to migrate configuration files to the latest version (now v2).
  • Move buf mod init to buf config init. buf mod init is now deprecated.
  • Move buf mod ls-lint-rules to buf config ls-lint-rules. buf mod ls-lint-rules is now
    deprecated.
  • Move buf mod ls-breaking-rules to buf config ls-breaking-rules. buf mod ls-breaking-rules
    is now deprecated.
  • Move buf mod prune to buf dep prune. buf mod prune is now deprecated.
  • Move buf mod update to buf dep update. buf mod update is now deprecated.
  • Move buf mod {clear-cache,cc} to buf registry cc. buf mod {clear-cache,cc} is now
    deprecated.
  • Move buf beta graph to stable as buf dep graph.
  • Change the default visibility of buf push --create-visibility to private when the --create
    flag is set. Users are no longer required to set --create-visibility when running
    buf push --create.
  • Add buf push --label, which allows users to set labels when pushing new commits to the BSR.
  • Add buf push --source-control-url, which allows users to associate commits pushed to the BSR
    with a URL to a source code repository.
  • Add buf push --create-default-label, which allows users to set a default label for a repository
    when calling buf push --create.
  • Add buf push --git-metadata, which automatically sets appropriate --label,
    --source-control-url, and --create-default-label flags based on the current Git repository.
  • Add buf convert --validate to apply protovalidate
    rules to incoming messages specified with --from.
  • Deprecate buf mod open.
  • Delete buf beta migrate-v1beta1 This is now replaced with buf config migrate.
  • Add buf registry sdk version to get the version of a Generated SDK for a module and plugin.
  • Add buf beta registry archive and buf beta registry unarchive commands for archiving and
    unarchiving labels on the BSR.
  • Add support for Protobuf Editions. This allows buf to be used with sources that use edition
    2023, instead of proto2 or proto3 syntax. This also updates the protoc-gen-buf-breaking and
    protoc-gen-buf-lint Protobuf plugins to support files that use edition 2023.
  • Update buf breaking rules to work with Protobuf Editions. To support Editions, some rules have
    been deprecated and replaced with Editions-aware rules. All deprecated rules continue to work
    for existing users.
    • FIELD_SAME_CTYPE has been replaced with FIELD_SAME_CPP_STRING_TYPE, which considers both
      ctype field options and new (pb.cpp).string_type features when deciding on backwards
      compatibility.
    • FIELD_SAME_LABEL has been replaced with three rules that all check "cardinality". The new
      rules can distinguish between maps and other repeated fields and between implicit and explicit
      field presence. The new rules are:
      1. FIELD_SAME_CARDINALITY in the FILE and PACKAGE categories.
      2. FIELD_WIRE_COMPATIBLE_CARDINALITY in the WIRE category.
      3. FIELD_WIRE_JSON_COMPATIBLE_CARDINALITY in the WIRE_JSON category.
    • FILE_SAME_JAVA_STRING_CHECK_UTF8 has been replaced with FIELD_SAME_JAVA_UTF8_VALIDATION,
      which considers both the java_string_check_utf8 file option and (pb.java).utf8_validation
      features when deciding on backwards compatibility.
    • Add to the existing FILE_SAME_SYNTAX rule with a few related rules that can catch the same
      sort of compatibility issues, but in an Editions source file that changes feature values:
      1. MESSAGE_SAME_JSON_FORMAT and ENUM_SAME_JSON_FORMAT catch changes to the json_format
        feature, which controls whether support for the JSON format is best-effort or properly
        supported. When supported, the compiler performs more checks relating to field name
        collisions for the JSON format as well as for FieldMask usage.
      2. FIELD_SAME_UTF8_VALIDATION catches changes to the utf8_validation feature, which
        controls validation of string values.
      3. ENUM_SAME_TYPE catches changes to an enum's type, open vs. closed.
  • Add support for extensions to buf breaking. All existing rules for fields are now applied to
    extensions, except for FIELD_NO_DELETE (and its variants). There are also new
    EXTENSION_NO_DELETE and PACKAGE_EXTENSION_NO_DELETE rules for catching deletions of an
    extension. The new rules are not active by default in existing v1 and v1beta1
    configurations, for backwards-compatibility reasons. Migrate your config to v2 to use them.
  • Add support for top-level extensions to buf lint. It previously only checked extensions that
    were defined inside of messages.
  • Add a new FIELD_NOT_REQUIRED lint rule that prevents use of required in proto2 files and of
    features.field_presence = LEGACY_REQUIRED in Editions files. This new rule is not active by
    default in existing v1 and v1beta1 configurations, for backwards-compatibility reasons.
    Migrate your config to v2 to use them.
amacneil/dbmate (github.com/amacneil/dbmate/v2)

v2.16.0

Compare Source

What's Changed

Full Changelog: amacneil/dbmate@v2.15.0...v2.16.0

goreleaser/goreleaser (goreleaser)

v1.26.1

Changelog

Security updates
Bug fixes
Documentation updates
Build process updates

Full Changelog: goreleaser/goreleaser@v1.26.0...v1.26.1

Helping out

This release is only possible thanks to all the support of some awesome people!

Want to be one of them?
You can sponsor, get a Pro License or contribute with code.

Where to go next?

GoReleaser logo

helm/helm (helm)

v3.15.0: Helm v3.15.0

Helm v3.15.0 is a feature release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • Opt-in to hiding secrets when running dry-run for install and upgrade
  • Added robustness to wait checks

Installation and Upgrading

Download Helm v3.15.0. The common platform binaries are here:

The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with bash.

What's Next

  • 3.15.1 is the next patch release and will be on June 12, 2024.
  • 3.16.0 is the next feature release and will be on September 11, 2024.

Changelog

  • Updating to k8s 1.30 c4e37b3 (Matt Farina)
  • bump version to v3.15.0 d7afa3b (Matt Farina)
  • bump version to 7743467 (Matt Farina)
  • Fix namespace on kubeconfig error 214fb6e (Calvin Krist)
  • Update testdata PKI with keys that have validity until 3393 (Fixes #​12880) 1b75d48 (Dirk Müller)
  • chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 dac23c8 (dependabot[bot])
  • chore(deps): bump github/codeql-action from 3.24.7 to 3.24.10 167d576 (dependabot[bot])
  • chore: remove repetitive words dd37787 (deterclosed)
  • Modified how created annotation is populated based on package creation time 0a69a0d (Andrew Block)
  • chore(deps): bump github.com/docker/docker aaaf112 (dependabot[bot])
  • chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 7f53529 (dependabot[bot])
  • Enabling hide secrets on install and upgrade dry run 25c4738 (Matt Farina)
  • chore(deps): bump github/codeql-action from 3.24.6 to 3.24.7 ff94e93 (dependabot[bot])
  • Fixing all the linting errors d58d7b3 (Robert Sirchia)
  • Add a note about --dry-run displaying secrets a23dd9e (Matt Farina)
  • chore(deps): bump golang.org/x/term from 0.15.0 to 0.18.0 275f2ab (dependabot[bot])
  • Updating .gitignore 8b424ba (Robert Sirchia)
  • chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6 e22d881 (dependabot[bot])
  • chore(deps): bump github/codeql-action from 3.24.3 to 3.24.5 4f200fa (dependabot[bot])
  • Some fixes 764557c (Matt Farina)
  • chore(deps): bump github/codeql-action from 3.23.1 to 3.24.3 5bc97b9 (dependabot[bot])
  • chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 e6db0ec (dependabot[bot])
  • add error messages 8d19bcb (George Jenkins)
  • Fix: Ignore alias validation error for index load 68294fd (George Jenkins)
  • validation fix 8e6a514 (Matt Farina)
  • bug: add proxy support for oci getter 94c1dea (Ricardo Maraschini)
  • chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0 cbab6d6 (dependabot[bot])
  • chore(deps): bump github/codeql-action from 3.23.0 to 3.23.1 de332ae (dependabot[bot])
  • chore(deps): bump github.com/containerd/containerd from 1.7.11 to 1.7.12 a2dd34b (dependabot[bot])
  • Update architecture detection method 57a1bb8 (weidongkl)
  • chore(deps): bump github/codeql-action from 3.22.11 to 3.23.0 8cab7c1 (dependabot[bot])
  • chore(deps): bump github.com/DATA-DOG/go-sqlmock from 1.5.0 to 1.5.2 5f9533f (dependabot[bot])
  • Improve release action 4790bb9 (George Jenkins)
  • chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0 f980ad3 (dependabot[bot])
  • Fix grammatical error c25736c (Matt Carr)
  • Updated for review comments d2cf8c6 (MichaelMorris)
  • Add robustness to wait status checks fc74964 (MichaelMorris)
  • refactor: create a helper for checking if a release is uninstalled f908379 (Alex Petrov)
  • fix: reinstall previously uninstalled chart with --keep-history 9e198fa (Alex Petrov)
casey/just (just)

v1.26.0

Compare Source

Added
Misc
evilmartians/lefthook (lefthook)

v1.6.12

Compare Source

1.6.11 (2024-05-13)

1.6.10 (2024-04-10)

1.6.9 (2024-04-09)

1.6.8 (2024-04-02)

1.6.7 (2024-03-15)

1.6.6 (2024-03-14)

1.6.5 (2024-03-04)

1.6.4 (2024-02-28)

1.6.3 (2024-02-27)

1.6.2 (2024-02-26)

1.6.1 (2024-01-24)

1.6.0 (2024-01-22)

1.5.7 (2024-01-17)

1.5.6 (2024-01-12)

1.5.5 (2023-11-30)

1.5.4 (2023-11-27)

1.5.3 (2023-11-22)

  • fix: don't check checksum file when explicitly calling lefthook install (#​572) by @​mrexox
  • chore: skip summary separator if nothing is printed (#​575) by @​mrexox
  • docs: update info about root option by @​mrexox

1.5.2 (2023-10-9)

1.5.1 (2023-10-6)

1.5.0 (2023-09-21)

1.4.11 (2023-09-13)

1.4.10 (2023-09-04)

1.4.9 (2023-08-15)

1.4.8 (2023-07-31)

1.4.7 (2023-07-24)

1.4.6 (2023-07-18)

1.4.5 (2023-07-12)

1.4.4 (2023-07-10)

1.4.3 (2023-06-19)

1.4.2 (2023-06-13)

1.4.1 (2023-05-22)

1.4.0 (2023-05-18)

1.3.13 (2023-05-11)

1.3.12 (2023-04-28)

1.3.11 (2023-04-27)

1.3.10

1.3.9 (2023-04-04)

1.3.8 (2023-03-23)

1.3.7 (2023-03-20)

1.3.6 (2023-03-16)

1.3.5 (2023-03-15)

1.3.4 (2023-03-13)

  • fix: don't extra extend config if lefthook-local.yml is missing (#​444) by @​mrexox

1.3.3 (2023-03-01)

1.3.2 (2023-02-27)

1.3.1 (2023-02-27)

1.3.0 (2023-02-22)

1.2.9 (2023-02-13)

1.2.8 (2023-01-23)

1.2.7 (2023-01-10)


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested review from alecthomas and a team as code owners May 20, 2024 01:08
@renovate renovate bot requested review from matt2e and removed request for a team May 20, 2024 01:08
@matt2e matt2e merged commit 7aff5c6 into main May 20, 2024
25 checks passed
@matt2e matt2e deleted the renovate/all-minor-patch branch May 20, 2024 01:27
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.

None yet

1 participant