From c7dbdba85e57be93a816064ed56dadccd18e24af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:28:28 +0000 Subject: [PATCH] deps: bump @bufbuild/protobuf from 1.6.0 to 1.7.2 (#167) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) from 1.6.0 to 1.7.2.
Release notes

Sourced from @​bufbuild/protobuf's releases.

v1.7.2

What's Changed

New Contributors

Full Changelog: https://github.com/bufbuild/protobuf-es/compare/v1.7.1...v1.7.2

v1.7.1

What's Changed

Full Changelog: https://github.com/bufbuild/protobuf-es/compare/v1.7.0...v1.7.1

v1.7.0

What's Changed

This release adds support for extensions, a Protobuf language feature that allows to extend a message with an additional field.

For example:

syntax = "proto2";

message User { extensions 100 to 200; }

extend User { optional uint32 age = 100; }

For the extension age, we generate a new export const age: Extension<User, number>. You can set the extension field with the function setExtension:

import { setExtension } from "@bufbuild/protobuf";
import { User, age } from "./example_pb.js";

const user = new User(); setExtension(user, age, 77);

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@bufbuild/protobuf&package-manager=npm_and_yarn&previous-version=1.6.0&new-version=1.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@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)
--- package-lock.json | 8 ++++---- protocol/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c2f97e512..6fc2c406a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -853,9 +853,9 @@ "dev": true }, "node_modules/@bufbuild/protobuf": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-1.6.0.tgz", - "integrity": "sha512-hp19vSFgNw3wBBcVBx5qo5pufCqjaJ0Cfk5H/pfjNOfNWU+4/w0QVOmfAOZNRrNWRrVuaJWxcN8P2vhOkkzbBQ==" + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-1.7.2.tgz", + "integrity": "sha512-i5GE2Dk5ekdlK1TR7SugY4LWRrKSfb5T1Qn4unpIMbfxoeGKERKQ59HG3iYewacGD10SR7UzevfPnh6my4tNmQ==" }, "node_modules/@connectrpc/connect": { "version": "1.3.0", @@ -7619,7 +7619,7 @@ "license": "Apache-2.0", "dependencies": { "@arcjet/logger": "1.0.0-alpha.7", - "@bufbuild/protobuf": "1.6.0", + "@bufbuild/protobuf": "1.7.2", "@connectrpc/connect": "1.3.0", "typeid-js": "0.3.0" }, diff --git a/protocol/package.json b/protocol/package.json index 41ced8ca1..1c9cafe95 100644 --- a/protocol/package.json +++ b/protocol/package.json @@ -33,7 +33,7 @@ }, "dependencies": { "@arcjet/logger": "1.0.0-alpha.7", - "@bufbuild/protobuf": "1.6.0", + "@bufbuild/protobuf": "1.7.2", "@connectrpc/connect": "1.3.0", "typeid-js": "0.3.0" },