nvidia-riva / websocket-bridge

Websockets <-> Riva proxy service. Audiocodes compatible.
MIT License
13 stars 11 forks source link

Bump google-protobuf from 3.21.1 to 3.21.2 #76

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps google-protobuf from 3.21.1 to 3.21.2.

Release notes

Sourced from google-protobuf's releases.

v3.21.2

This is a hotfix release for #141

Changelog

Sourced from google-protobuf's changelog.

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

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

_PROTOBUF_JAVASCRIPT_VERSION = "3.21.2"

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

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"),), }, toolchains=["@​bazel_tools//tools/cpp:toolchain_type"],

... (truncated)

Commits
  • e34549d Merge pull request #144 from dibenede/prepare-release
  • 60cbddd Bump version to 3.21.2
  • 64c19f8 Merge pull request #143 from dibenede/disable-optimizations
  • 0466dbc Add comment about default optimization level
  • c58937a Return to using default closure optimization level
  • See full diff in compare view


Dependabot compatibility score

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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)