Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps the bench group with 3 updates in the / directory: @bufbuild/protoc-gen-es, google-protobuf and grpc-web.

Updates @bufbuild/protoc-gen-es from 2.7.0 to 2.9.0

Release notes

Sourced from @​bufbuild/protoc-gen-es's releases.

v2.9.0

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.8.0...v2.9.0

v2.8.0

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.7.0...v2.8.0

Commits

Updates @bufbuild/protobuf from 2.7.0 to 2.9.0

Release notes

Sourced from @​bufbuild/protobuf's releases.

v2.9.0

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.8.0...v2.9.0

v2.8.0

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.7.0...v2.8.0

Commits

Updates google-protobuf from 3.21.4 to 4.0.0

Release notes

Sourced from google-protobuf's releases.

v4.0.0

What's Changed

  • Backport: binary proto serialization/deserialization changes and enable protobuf Editions 2023 (breaking change)
  • Backport: Fix JSPB binary utf8 decoding and validate by default (breaking change)
  • Do not ignore descriptor extensions
  • Limit global resolution to globalThis by (breaking change)
Changelog

Sourced from google-protobuf's changelog.

"""Generates package naming variables for use with rules_pkg."""

load("@​bazel_tools//tools/cpp:toolchain_utils.bzl", "find_cpp_toolchain") load("@​rules_pkg//pkg:providers.bzl", "PackageVariablesInfo")

_PROTOBUF_JAVASCRIPT_VERSION = "4.0.0"

def _package_naming_impl(ctx): values = {} values["version"] = _PROTOBUF_JAVASCRIPT_VERSION

if ctx.attr.platform != "":
    values["platform"] = ctx.attr.platform
    return PackageVariablesInfo(values = values)

infer from the current cpp toolchain.

toolchain = find_cpp_toolchain(ctx) cpu = toolchain.cpu system_name = toolchain.target_gnu_system_name

rename cpus to match what we want artifacts to be

if cpu == "systemz": cpu = "s390_64" elif cpu == "aarch64": cpu = "aarch_64" elif cpu == "ppc64": cpu = "ppcle_64"

use the system name to determine the os and then create platform names

if "apple" in system_name: values["platform"] = "osx-" + cpu elif "linux" in system_name: values["platform"] = "linux-" + cpu elif "mingw" in system_name: if cpu == "x86_64": values["platform"] = "win64" else: values["platform"] = "win32" else: values["platform"] = "unknown"

return PackageVariablesInfo(values = values)

package_naming = rule( implementation = _package_naming_impl, attrs = { # Necessary data dependency for find_cpp_toolchain. "_cc_toolchain": attr.label( default = Label("@​bazel_tools//tools/cpp:current_cc_toolchain"), ),

... (truncated)

Commits
  • 861c802 Bump module versions for 4.0.0 release
  • 0db1d6b enable builds on macos x86_64 and aarch64 runners
  • 78f5b15 Prepare 4.0.0 release
  • 100c10b Update windows build from windows-2019 -> 2022 image
  • e6d7638 Limit global resolution to globalThis
  • 3050f03 Do not ignore descriptor extensions
  • 4ce9069 Enable protobuf edition 2023 support
  • f418f58 Bump protoc version to 31.1
  • 28bf5df Bump protobuf version to 31.0
  • 0768cc9 Fix path for rules_pkg providers.bzl load
  • Additional commits viewable in compare view

Updates grpc-web from 1.5.0 to 2.0.2

Release notes

Sourced from grpc-web's releases.

Release 2.0.2

What's Changed

  • #1507 Use regular enums for compatibility with TypeScript 5.9+

Full Changelog: grpc/grpc-web@2.0.1...2.0.2

Release 2.0.1

What's Changed

Full Changelog: grpc/grpc-web@2.0.0...2.0.1

Release 2.0.0

This is the 2.0.0 release of gRPC-Web! :)

Please see the notes for the previous releases here. Please consult grpc.io for all information regarding this product.

This release contains improvements and bug fixes listed below.

Major Features

Other Changes

  • #1496 Rework release workflows using Github runners (replacing Zig)
  • #1494 Updates Closure compiler (20250820.0.0) and library
  • #1463 fix: format of typescript definition @​nnnnoel
  • #1456 Bazel bzlmod support for grpc-web. @​gonzojive
  • #1452 Update protobuf-JS 3.14.0 -> 3.21.4
  • #1441 Upgrade to Bazel 6.5.0

Full Changelog: grpc/grpc-web@1.5.0...2.0.0

Changelog

Sourced from grpc-web's changelog.

2.0.2

  • #1507 Use regular enums for compatibility with TypeScript 5.9+

2.0.1

  • #1501 Update workflow to use Ubuntu 22.04 and static link libstdc++/libgcc

2.0.0

Major Features

Other Changes

  • #1496 Rework release workflows using Github runners (replacing Zig)
  • #1494 Updates Closure compiler (20250820.0.0) and library
  • #1463 fix: format of typescript definition @​nnnnoel
  • #1456 Bazel bzlmod support for grpc-web. @​gonzojive
  • #1452 Update protobuf-JS 3.14.0 -> 3.21.4
  • #1441 Upgrade to Bazel 6.5.0
Commits
Maintainer changes

This version was pushed to npm by vuhag123, a new releaser for grpc-web since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 1, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/bench-6adc938fe6 branch 2 times, most recently from 6794ae2 to e72c509 Compare October 1, 2025 14:38
Bumps the bench group with 3 updates in the / directory: [@bufbuild/protoc-gen-es](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es), [google-protobuf](https://github.com/protocolbuffers/protobuf-javascript) and [grpc-web](https://github.com/grpc/grpc-web).


Updates `@bufbuild/protoc-gen-es` from 2.7.0 to 2.9.0
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.9.0/packages/protoc-gen-es)

Updates `@bufbuild/protobuf` from 2.7.0 to 2.9.0
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.9.0/packages/protobuf)

Updates `google-protobuf` from 3.21.4 to 4.0.0
- [Release notes](https://github.com/protocolbuffers/protobuf-javascript/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf-javascript/blob/main/protobuf_javascript_release.bzl)
- [Commits](protocolbuffers/protobuf-javascript@v3.21.4...v4.0.0)

Updates `grpc-web` from 1.5.0 to 2.0.2
- [Release notes](https://github.com/grpc/grpc-web/releases)
- [Changelog](https://github.com/grpc/grpc-web/blob/master/CHANGELOG.md)
- [Commits](grpc/grpc-web@1.5.0...2.0.2)

---
updated-dependencies:
- dependency-name: "@bufbuild/protoc-gen-es"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bench
- dependency-name: "@bufbuild/protobuf"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bench
- dependency-name: google-protobuf
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: bench
- dependency-name: grpc-web
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: bench
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/bench-6adc938fe6 branch from e72c509 to 544cd3a Compare October 3, 2025 13:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants