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

Update module github.com/bufbuild/buf to v1.43.0 #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 5, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/bufbuild/buf v1.26.1 -> v1.43.0 age adoption passing confidence

Release Notes

bufbuild/buf (github.com/bufbuild/buf)

v1.43.0

Compare Source

  • Add new experimental LSP support under buf beta lsp.

v1.42.0

Compare Source

  • Add support for custom lint and breaking change plugins. See
    our launch blog post
    for more details!
  • Add buf dep graph --format flag that defaults to dot, and adds the option json, to print
    the dependency graph in JSON format.
  • Fix bugs in buf format where trailing comments on commas in message literals were not properly
    propagated to the formatted proto, empty message literals were not properly indented, and
    compound strings in options added an extra newline before trailing commas.

v1.41.0

Compare Source

  • Add HTTP/3 support for gRPC with buf curl.
  • Fix issue where errors from protoc plugins may be overwritten when executing plugins in parallel.

v1.40.1

Compare Source

  • Fix issue with buf lint where comment ignores in the shape of // buf:lint:ignore <RULE_ID> <extra comment>
    were not recognized due to the extra comment.

v1.40.0

Compare Source

  • Add concept of a default lint or breaking rule, which is printed out as a property when running
    buf config ls-{breaking,lint}-rules. Default rules are those rules which are run if no lint
    or breaking rules are explicitly configured in your buf.yaml.
  • Rename DEFAULT lint rule category to STANDARD. With the concept of default rules being introduced,
    having a category named DEFAULT is confusing, as while it happens that all the rules in the DEFAULT
    lint category are also default rules, the name has become overloaded. As with all buf changes, this
    change is backwards-compatible: the DEFAULT lint category continues to work, and always will. We
    recommend changing to STANDARD, however.

v1.39.0

Compare Source

  • Fix git input handling of relative HEAD refs without branch names.
  • Add includes key to module configurations in v2 buf.yaml, accepting a list of directories.
    • If includes is specified, a proto file is considered in the module only if it is in one of the
      directories specified.
    • If both includes and excludes keys are specified for a module, a proto file is considered
      part of this module if it is contained in any of the include paths and not in any of the exclude
      paths.
  • Allow multiple module configurations in the same v2 buf.yaml to have the same directory path.

v1.38.0

Compare Source

  • Add --http3 flag to buf curl which forces buf curl to use HTTP/3 as the transport.
  • Fix issue with directory inputs for v2 workspaces where the specified directory was not itself
    a path to a module, but contained directories with modules, and the modules would not build.
  • Stop creating empty buf.lock files when buf dep update does not find new dependencies
    to update and there is no existing buf.lock.
  • Update buf push to push the license file or doc file (e.g. README.md, LICENSE) in the
    same directory as buf.yaml if a module does not have a license file or doc file in the
    module's directory.
  • Fix constraints of --path flag for lint and breaking rules to avoid resolving all files
    within a module. This change can result in a performance improvement for large workspaces.

v1.37.0

Compare Source

  • Add STABLE_PACKAGE_NO_IMPORT_UNSTABLE lint rule which disallows files from stable packages
    to import files from unstable packages.
  • Fix plugin push failures when pushing an image built with containerd image store.

v1.36.0

Compare Source

  • Add --list-services and --list-methods flags to buf curl, which trigger the command to list
    known services or methods in the RPC schema, instead of invoking an RPC method.
  • Add clean as a top-level option in buf.gen.yaml, matching the buf generate --clean flag. If
    set to true, this will delete the directories, jar files, or zip files set to out for each
    plugin.
  • Fix git input handling of annotated tags.
  • Update buf registry login to complete the login flow in the browser by default. This allows
    users to login with their browser and have the token automatically provided to the CLI.
  • Add buf registry organization {create, delete, info, update} commands to manage BSR
    organizations. Remove buf beta registry organization commands.
  • Add buf registry module {create, delete, deprecate, info, undeprecate, update} commands to
    manage BSR modules. Remove buf beta registry repository commands.
  • Add buf registry label {archive, info, list, unarchive} commands to manage BSR module labels.
    Remove buf beta registry label commands and buf beta registry {archive, unarchive}.
  • Add buf registry commit {add-label, info, list, resolve} to manage BSR module commits. Remove
    buf beta registry commit commands.

v1.35.1

Compare Source

  • Fix the git input parameter ref to align with the git notion of a ref. This allows for the use
    of branch names, tag names, and commit hashes.
  • Fix unexpected buf build errors with absolute path directory inputs without workspace and/or
    module configurations (e.g. buf.yaml, buf.work.yaml) and proto file paths set to the --path flag.

v1.35.0

Compare Source

  • Add buf generate --clean flag that will delete the directories, jar files, or zip files that the
    plugins will write to, prior to generation. Allows cleaning of existing assets without having
    to call rm -rf.
  • Deprecate --username flag on and username prompt on buf registry login. A username is no longer
    required to log in.

v1.34.0

Compare Source

  • Add buf config ls-modules command to list configured modules.
  • Fix issue where buf generate would succeed on missing insertion points and
    panic on empty insertion point files.
  • Update buf generate to allow the use of Editions syntax when doing local code
    generation by proxying to a protoc binary (for languages where code gen is
    implemented inside of protoc instead of in a plugin: Java, C++, Python, etc).
  • Allow use of an array of strings for the protoc_path property of for buf.gen.yaml,
    where the first array element is the actual path and other array elements are extra
    arguments that are passed to protoc each time it is invoked.

v1.33.0

Compare Source

  • Allow user to override --source-control-url and --create-default-label when using
    --git-metadata with buf push.
  • Fix buf push --git-metadata when local tags point to different objects than
    the remote tags.
  • Fix issue where comment ignores were not respected for PROTOVALIDATE lint rule violations.
  • Add buf beta registry label {create,get,list} to replace buf beta registry {draft, tag}
    commands.
  • Update buf beta commit {get,list} command outputs to display create time and stop
    displaying associated tags.
  • Change the behavior of buf beta commit list <buf.build/owner/repository> when the
    reference is empty. It now lists commits in the repository instead of listing commits
    of the default label.
  • Update output of buf format to canonicalize the punctuation used in message literals
    in option values. The output now always uses { and } instead of < and >; it
    adds : separators between field names and message values if the source omitted them,
    and it removes unnecessary separators between fields (, and ; are allowed, but
    neither is needed).
  • Update buf format -w so that it does not touch files whose contents don't actually
    change. This eliminates noisy notifications to file-system-watcher tools that are
    watching the directory that contains proto sources.
  • Update buf generate to work with plugins provided by protoc for versions v24.0
    to v25.3. Editions support was experimental in these releases, and the plugins
    advertise incomplete support for editions, which triggers buf to report an error.
    With this fix, these plugins can be used again as long as none of the input files use
    editions syntax.
  • Add buf push --exclude-unnamed flag to exclude unnamed modules when pushing to the BSR.

v1.32.2

Compare Source

  • Update buf generate to warn instead of error when proto3 optional is required but not
    supported by a plugin.

v1.32.1

Compare Source

  • Fix archive and git inputs so that --path and --exclude-path paths are relative to
    the #subdir rather than the root of the input. This fixes an unintended behavior change
    that was introduced in v1.32.0.
  • Add module input for protoc-gen-buf-lint and protoc-gen-buf-breaking to allow
    users to specify the module for v2 configuration files.

v1.32.0

Compare Source

  • 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.

v1.31.0

Compare Source

  • Update dependencies.

v1.30.1

Compare Source

  • Fix issue where buf lint incorrectly reports an error for (buf.validate.field).repeated
    is set for a repeated validation rule.

v1.30.0

Compare Source

  • Update buf generate so it populates the recently-added
    source_file_descriptors
    field of the CodeGeneratorRequest message. This provides the plugin with access to options
    that are configured to only be retained in source and not at runtime (via
    field option).
    Descriptors in the proto_file field will not include any options configured this way
    for the files named in file_to_generate field.
  • Add --exclude-source-retention-options flag to buf build, which
    causes options configured to only be retained in source to be stripped
    from the output descriptors.

v1.29.0

Compare Source

  • Add support for yaml format. All commands that take image inputs, output images,
    or convert between message formats, now take yaml as a format, in addition to
    the existing binpb and txtpb formats. Some examples:
    • buf build -o image.yaml
    • buf ls-files image.yaml
    • buf convert --type foo.Bar --from input.binpb --to output.yaml
  • The yaml and json formats now accept two new options: use_proto_names and
    use_enum_numbers. This affects output serialization. Some examples:
    • buf convert --type foo.Bar --from input.binpb --to output.yaml#use_proto_names=true
    • buf convert --type foo.Bar --from input.binpb --to -#format=yaml,use_enum_numbers=true
  • Fix issue where buf format would inadvertently mangle files that used
    the expanded Any syntax
    in option values.

v1.28.1

Compare Source

  • The buf curl command has been updated to support the use of multiple schemas.
    This allows users to specify multiple --schema flags and/or to use both --schema
    and --reflect flags at the same time. The result is that additional sources can
    be consulted to resolve an element. This can be useful when the result of an RPC
    contains extensions or values in google.protobuf.Any messages that are not defined
    in the same schema that defines the RPC service.
  • Fix issue where buf lint incorrectly reports error when (buf.validate.field).required
    is set for an optional field in proto3.

v1.28.0

Compare Source

  • Add lint rules for protovalidate. buf lint
    will now verify that your protovalidate rules are valid. A single rule PROTOVALIDATE has been
    added to the DEFAULT group - given that protovalidate is net new, this does not represent
    a breaking change.
  • Update buf beta price with the latest pricing information.
  • Display a warning when reading a buf.lock with dependencies with b1 or b3 digests. b1 and b3
    digests will be deprecated in a future version. Run buf mod update to update dependency digests.

v1.27.2

Compare Source

  • Fix issue where buf build and other commands may fail when handling certain
    archives created on macOS that contain files with extended attributes.

v1.27.1

Compare Source

  • Fix issue in v1.27.0 where --path did not work with workspaces under certain scenarios.

v1.27.0

Compare Source

  • Fix issue where buf generate --exclude-path was not properly excluding paths
    for remote modules.
  • Fix issue where buf curl had a user agent that did not properly place the
    extension as a suffix.
  • Update buf beta price with the latest pricing information.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

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


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the automated label Oct 5, 2023
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.27.0 Update module github.com/bufbuild/buf to v1.27.1 Oct 17, 2023
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 5680940 to 5a8cd45 Compare October 17, 2023 00:54
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 5a8cd45 to c9f9ca9 Compare October 27, 2023 22:34
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.27.1 Update module github.com/bufbuild/buf to v1.27.2 Oct 27, 2023
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.27.2 Update module github.com/bufbuild/buf to v1.28.0 Nov 10, 2023
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch 2 times, most recently from cd8e51a to cc0c663 Compare November 13, 2023 15:57
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.28.0 Update module github.com/bufbuild/buf to v1.28.1 Nov 15, 2023
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from cc0c663 to 169a323 Compare November 15, 2023 18:24
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 169a323 to 1010b7d Compare January 24, 2024 21:49
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.28.1 Update module github.com/bufbuild/buf to v1.29.0 Jan 24, 2024
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.29.0 Update module github.com/bufbuild/buf to v1.30.0 Mar 7, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 1010b7d to 1f7dcfa Compare March 7, 2024 23:20
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.30.0 Update module github.com/bufbuild/buf to v1.30.1 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 1f7dcfa to 79f8d26 Compare April 3, 2024 23:43
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 79f8d26 to 2da0019 Compare April 23, 2024 17:24
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.30.1 Update module github.com/bufbuild/buf to v1.31.0 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 2da0019 to 6e30b8b Compare May 9, 2024 09:30
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 6e30b8b to 3a869b0 Compare May 16, 2024 19:25
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.31.0 Update module github.com/bufbuild/buf to v1.32.0 May 16, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 3a869b0 to 5794ac0 Compare May 22, 2024 01:17
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.32.0 Update module github.com/bufbuild/buf to v1.32.1 May 22, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 5794ac0 to 902c2a1 Compare May 28, 2024 19:33
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.32.1 Update module github.com/bufbuild/buf to v1.32.2 May 28, 2024
Copy link
Contributor Author

renovate bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 42 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.23.1
github.com/google/go-cmp v0.5.9 -> v0.6.0
github.com/google/go-containerregistry v0.16.1 -> v0.20.2
github.com/google/uuid v1.3.1 -> v1.6.0
github.com/opencontainers/runtime-spec v1.1.0 -> v1.2.0
golang.org/x/sync v0.3.0 -> v0.8.0
golang.org/x/sys v0.12.0 -> v0.25.0
google.golang.org/grpc v1.58.3 -> v1.67.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 -> v1.5.1
google.golang.org/protobuf v1.31.0 -> v1.34.3-0.20240906163944-03df6c145d96
github.com/Microsoft/go-winio v0.6.1 -> v0.6.2
github.com/bufbuild/protocompile v0.6.0 -> v0.14.1
github.com/docker/cli v24.0.5+incompatible -> v27.3.1+incompatible
github.com/docker/distribution v2.8.2+incompatible -> v2.8.3+incompatible
github.com/docker/docker v24.0.5+incompatible -> v27.3.1+incompatible
github.com/docker/docker-credential-helpers v0.8.0 -> v0.8.2
github.com/docker/go-connections v0.4.0 -> v0.5.0
github.com/felixge/fgprof v0.9.3 -> v0.9.5
github.com/go-chi/chi/v5 v5.0.10 -> v5.1.0
github.com/go-logr/logr v1.2.4 -> v1.4.2
github.com/gofrs/uuid/v5 v5.0.0 -> v5.3.0
github.com/golang/protobuf v1.5.3 -> v1.5.4
github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 -> v0.0.0-20240929191954-255acd752d31
github.com/klauspost/compress v1.16.7 -> v1.17.10
github.com/opencontainers/image-spec v1.1.0-rc4 -> v1.1.0
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 -> v0.0.0-20240102092130-5ac0b6a4141c
github.com/rs/cors v1.9.0 -> v1.11.1
github.com/spf13/cobra v1.7.0 -> v1.8.1
github.com/vbatts/tar-split v0.11.5 -> v0.11.6
go.opentelemetry.io/otel v1.16.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.16.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.16.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.16.0 -> v1.30.0
go.uber.org/zap v1.25.0 -> v1.27.0
golang.org/x/crypto v0.12.0 -> v0.27.0
golang.org/x/mod v0.12.0 -> v0.21.0
golang.org/x/oauth2 v0.11.0 -> v0.22.0
golang.org/x/term v0.11.0 -> v0.24.0
golang.org/x/text v0.12.0 -> v0.18.0
golang.org/x/time v0.3.0 -> v0.5.0
golang.org/x/tools v0.11.0 -> v0.25.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 -> v0.0.0-20240924160255-9d4c2d233b61
sigs.k8s.io/yaml v1.3.0 -> v1.4.0

@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 902c2a1 to 082c9b8 Compare June 13, 2024 19:03
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.32.2 Update module github.com/bufbuild/buf to v1.33.0 Jun 13, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 082c9b8 to e10539d Compare June 21, 2024 22:34
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.33.0 Update module github.com/bufbuild/buf to v1.34.0 Jun 21, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from e10539d to a14459d Compare July 14, 2024 07:46
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from a14459d to ff48a00 Compare July 22, 2024 22:23
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.34.0 Update module github.com/bufbuild/buf to v1.35.0 Jul 22, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from ff48a00 to d295959 Compare July 24, 2024 23:26
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.35.0 Update module github.com/bufbuild/buf to v1.35.1 Jul 24, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from d295959 to 6f27581 Compare August 6, 2024 21:25
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.35.1 Update module github.com/bufbuild/buf to v1.36.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 6f27581 to 7b35776 Compare August 16, 2024 19:38
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.36.0 Update module github.com/bufbuild/buf to v1.37.0 Aug 16, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 7b35776 to f9edf5c Compare August 22, 2024 16:23
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.37.0 Update module github.com/bufbuild/buf to v1.38.0 Aug 22, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from f9edf5c to e6d7566 Compare August 28, 2024 01:53
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.38.0 Update module github.com/bufbuild/buf to v1.39.0 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from e6d7566 to 140fbe2 Compare September 5, 2024 01:00
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.39.0 Update module github.com/bufbuild/buf to v1.40.0 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 140fbe2 to 326a413 Compare September 7, 2024 01:19
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.40.0 Update module github.com/bufbuild/buf to v1.40.1 Sep 7, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 326a413 to f499d63 Compare September 11, 2024 23:13
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.40.1 Update module github.com/bufbuild/buf to v1.41.0 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from f499d63 to 85bb08f Compare September 18, 2024 23:18
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.41.0 Update module github.com/bufbuild/buf to v1.42.0 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/github.com-bufbuild-buf-1.x branch from 85bb08f to b9599ff Compare September 30, 2024 21:33
@renovate renovate bot changed the title Update module github.com/bufbuild/buf to v1.42.0 Update module github.com/bufbuild/buf to v1.43.0 Sep 30, 2024
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.

0 participants