Skip to content

Commit

Permalink
deps: bump @bufbuild/protobuf from 1.6.0 to 1.7.2 (#167)
Browse files Browse the repository at this point in the history
Bumps [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) from 1.6.0 to 1.7.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/bufbuild/protobuf-es/releases"><code>@​bufbuild/protobuf</code>'s releases</a>.</em></p>
<blockquote>
<h2>v1.7.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix name collision with import in generated code by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/688">bufbuild/protobuf-es#688</a></li>
<li>Add missing extension to import of descriptor-set for module resolution NodeNext by <a href="https://github.com/tehwalris"><code>@​tehwalris</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/690">bufbuild/protobuf-es#690</a></li>
<li>Fix proto3 extension presence for singular, non-optional scalar by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/689">bufbuild/protobuf-es#689</a></li>
<li>Fix typing for proto2 required fields with target=dts by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/691">bufbuild/protobuf-es#691</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/tehwalris"><code>@​tehwalris</code></a> made their first contribution in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/690">bufbuild/protobuf-es#690</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/bufbuild/protobuf-es/compare/v1.7.1...v1.7.2">https://github.com/bufbuild/protobuf-es/compare/v1.7.1...v1.7.2</a></p>
<h2>v1.7.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Avoid parsing feature-set defaults at module initialization by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/683">bufbuild/protobuf-es#683</a></li>
<li>Fix printing large 64-bit integers in <code>@​bufbuild/protoplugin</code> by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/682">bufbuild/protobuf-es#682</a></li>
<li>Fix parsing JSON null in proto2 by <a href="https://github.com/timostamm"><code>@​timostamm</code></a> in <a href="https://redirect.github.com/bufbuild/protobuf-es/pull/685">bufbuild/protobuf-es#685</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/bufbuild/protobuf-es/compare/v1.7.0...v1.7.1">https://github.com/bufbuild/protobuf-es/compare/v1.7.0...v1.7.1</a></p>
<h2>v1.7.0</h2>
<h2>What's Changed</h2>
<p>This release adds support for extensions, a Protobuf language feature that allows to extend a message with an additional field.</p>
<p>For example:</p>
<pre lang="proto"><code>syntax = &quot;proto2&quot;;
<p>message User {
extensions 100 to 200;
}</p>
<p>extend User {
optional uint32 age = 100;
}
</code></pre></p>
<p>For the extension <code>age</code>, we generate a new export <code>const age: Extension&lt;User, number&gt;</code>. You can set the extension field with the function <code>setExtension</code>:</p>
<pre lang="ts"><code>import { setExtension } from &quot;@bufbuild/protobuf&quot;;
import { User, age } from &quot;./example_pb.js&quot;;
<p>const user = new User();
setExtension(user, age, 77);
</code></pre></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/31daf8c6778e165e55bec03c48bce95fe801adc9"><code>31daf8c</code></a> Release 1.7.2 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/699">#699</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/07ebb3e8ef335dfa7b2fbd5b7516974a15b29e2b"><code>07ebb3e</code></a> Bump prettier from 3.1.1 to 3.2.4 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/697">#697</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/eeb911a5bf73c5100eebeaa89929bdd434ef8e4b"><code>eeb911a</code></a> Fix proto3 extension presence for singular, non-optional scalar (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/689">#689</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/8a021d7079760eec7f98c7627ee0a96bf360bd0b"><code>8a021d7</code></a> Add missing extension to import of descriptor-set for module resolution NodeN...</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/c912f62c5a3718ac1624477d4fdb3dc94982da16"><code>c912f62</code></a> Release 1.7.1 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/686">#686</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/f52e9d8b0b7bf08d9ce585066df57ec5ebcb1adc"><code>f52e9d8</code></a> Fix parsing JSON null in proto2 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/685">#685</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/175bc97672dde1076e64c0e11eb34bd1f1abf671"><code>175bc97</code></a> Avoid parsing feature-set defaults at module initialization (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/683">#683</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/db0bd03b9056ed489cb6ed53fdf9f3624d77b2fb"><code>db0bd03</code></a> Release 1.7.0 (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/678">#678</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/10884a23c8879c7c33a843862b6968a491e93cf3"><code>10884a2</code></a> Use Map instead of record objects in createRegistryFromDescriptors (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/670">#670</a>)</li>
<li><a href="https://github.com/bufbuild/protobuf-es/commit/5a226edcd6186ff6c3dd1ebd81d565ce76be9249"><code>5a226ed</code></a> Support extensions (<a href="https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf/issues/666">#666</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/bufbuild/protobuf-es/commits/v1.7.2/packages/protobuf">compare view</a></li>
</ul>
</details>
<br />


[![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)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 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)


</details>
  • Loading branch information
dependabot[bot] authored Feb 2, 2024
1 parent a44b3f6 commit c7dbdba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit c7dbdba

Please sign in to comment.