Bump google.golang.org/protobuf from 1.26.0 to 1.27.1 #39

Closed
dependabot[bot] wants to merge 1 commits from dependabot/go_modules/google.golang.org/protobuf-1.27.1 into master
dependabot[bot] commented 2021-09-06 15:19:50 +03:00 (Migrated from github.com)

Bumps google.golang.org/protobuf from 1.26.0 to 1.27.1.

Release notes

Sourced from google.golang.org/protobuf's releases.

v1.27.1

Notable changes since v1.27.0:

  • CL/331149: cmd/protoc-gen-go: fix generation of enum defaults

v1.27.0

Overview

The release provides new functionality for iterating through a message using protobuf reflection. There are some minor changes to the code generator.

Notable changes

New features:

  • CL/309669: testing/protopack: add Message.UnmarshalAbductive

Bug fixes:

  • CL/317430: encoding/prototext: fix skipping of unknown fields
  • CL/321529: internal/impl: support typed nil source for Merge of aberrant messages

Generator changes

  • CL/305574: cmd/protoc-gen-go: remove generation of the ExtensionRangeArray method
  • CL/319649: cmd/protoc-gen-go: avoid referencing remote enum values by name
  • CL/316949: compiler/protogen: relax rules for valid import paths
  • CL/306209: cmd/protoc-gen-go: add protoc suffix

Reflectively ranging over a message

  • CL/236540: reflect: add protopath and protorange packages

The new reflect/protorange package supports recursively ranging through all populated fields of a message. There are many use cases for such a feature. See the examples for inspiration.

Upcoming breakage changes

This release removes generation of the ExtensionRangeArray method, as originally announced since the v1.20.0 release on March 2nd, 2020. Our analysis of the entire public module proxy found no static usages of this method. This method is pseudo-internal to the implementation and we expect removal of it to have no material impact. If something is broken by this change, please file an issue and we can consider re-generating this method in a patch release.

There are no new upcoming breaking changes to announce in this release.

Commits
  • b92717e all: release v1.27.1
  • 177d70e README.md: mention protopath and protorange packages
  • aa432c0 cmd/protoc-gen-go: fix generation of enum defaults
  • 49b6f72 all: start v1.27.0-devel
  • 3f51f05 all: release v1.27.0
  • dc57387 release.bash: make work on Linux
  • 21e33cc reflect/protoregistry: restore conflicting file names check
  • 426f20b release.bash: make work on macOS
  • febffdd reflect/protoregistry: permit conflicting file names
  • 4c193d1 compiler/protogen: relax rules for valid import paths
  • Additional commits viewable 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)
Bumps [google.golang.org/protobuf](https://github.com/protocolbuffers/protobuf-go) from 1.26.0 to 1.27.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/protocolbuffers/protobuf-go/releases">google.golang.org/protobuf's releases</a>.</em></p> <blockquote> <h2>v1.27.1</h2> <p>Notable changes since <a href="https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.27.0">v1.27.0</a>:</p> <ul> <li><a href="https://golang.org/cl/331149">CL/331149</a>: cmd/protoc-gen-go: fix generation of enum defaults</li> </ul> <h2>v1.27.0</h2> <ul> <li><a href="https://github.com/protocolbuffers/protobuf-go/blob/HEAD/#v1.27-overview">Overview</a></li> <li><a href="https://github.com/protocolbuffers/protobuf-go/blob/HEAD/#v1.27-notable-changes">Notable changes</a> <ul> <li><a href="https://github.com/protocolbuffers/protobuf-go/blob/HEAD/#v1.27-reflection-ranging">Reflectively ranging over a message</a></li> </ul> </li> <li><a href="https://github.com/protocolbuffers/protobuf-go/blob/HEAD/#v1.27-breaking-changes">Upcoming breakage changes</a></li> </ul> <h2>Overview <!-- raw HTML omitted --><!-- raw HTML omitted --></h2> <p>The release provides new functionality for iterating through a message using protobuf reflection. There are some minor changes to the code generator.</p> <h2>Notable changes <!-- raw HTML omitted --><!-- raw HTML omitted --></h2> <p><strong>New features:</strong></p> <ul> <li><a href="https://golang.org/cl/309669">CL/309669</a>: testing/protopack: add Message.UnmarshalAbductive</li> </ul> <p><strong>Bug fixes:</strong></p> <ul> <li><a href="https://golang.org/cl/317430">CL/317430</a>: encoding/prototext: fix skipping of unknown fields</li> <li><a href="https://golang.org/cl/321529">CL/321529</a>: internal/impl: support typed nil source for Merge of aberrant messages</li> </ul> <p><strong>Generator changes</strong></p> <ul> <li><a href="https://golang.org/cl/305574">CL/305574</a>: cmd/protoc-gen-go: remove generation of the ExtensionRangeArray method</li> <li><a href="https://golang.org/cl/319649">CL/319649</a>: cmd/protoc-gen-go: avoid referencing remote enum values by name</li> <li><a href="https://golang.org/cl/316949">CL/316949</a>: compiler/protogen: relax rules for valid import paths</li> <li><a href="https://golang.org/cl/306209">CL/306209</a>: cmd/protoc-gen-go: add protoc suffix</li> </ul> <h3>Reflectively ranging over a message <!-- raw HTML omitted --><!-- raw HTML omitted --></h3> <ul> <li><a href="https://golang.org/cl/236540">CL/236540</a>: reflect: add protopath and protorange packages</li> </ul> <p>The new <a href="https://pkg.go.dev/google.golang.org/protobuf/reflect/protorange"><code>reflect/protorange</code></a> package supports recursively ranging through all populated fields of a message. There are many use cases for such a feature. See <a href="https://pkg.go.dev/google.golang.org/protobuf/reflect/protorange#pkg-examples">the examples for inspiration</a>.</p> <h2>Upcoming breakage changes <!-- raw HTML omitted --><!-- raw HTML omitted --></h2> <p>This release removes generation of the <code>ExtensionRangeArray</code> method, as originally announced since the <a href="https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.20.0#v1.20-breaking-changes">v1.20.0 release on March 2nd, 2020</a>. Our analysis of the <a href="https://proxy.golang.org/">entire public module proxy</a> found no static usages of this method. This method is pseudo-internal to the implementation and we expect removal of it to have no material impact. If something is broken by this change, please file an issue and we can consider re-generating this method in a patch release.</p> <p>There are no <em>new</em> upcoming breaking changes to announce in this release.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/b92717ecb630d4a4824b372bf98c729d87311a4d"><code>b92717e</code></a> all: release v1.27.1</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/177d70e4ab5080081d1a77cd3f80bf14ba710257"><code>177d70e</code></a> README.md: mention protopath and protorange packages</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/aa432c0868a20582dea680ce1339e2a0b1174ae0"><code>aa432c0</code></a> cmd/protoc-gen-go: fix generation of enum defaults</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/49b6f723d34b4fce3d66f28387836fcd9c9c76c1"><code>49b6f72</code></a> all: start v1.27.0-devel</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/3f51f05e40d61e930a5416f1ed7092cef14cc058"><code>3f51f05</code></a> all: release v1.27.0</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/dc573877463cecf21d44511a24554a5dc2e46137"><code>dc57387</code></a> release.bash: make work on Linux</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/21e33cc91079beb975323466e237f2486ea29c10"><code>21e33cc</code></a> reflect/protoregistry: restore conflicting file names check</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/426f20bc78ebadf3c32cd6e7cdaba378ea155521"><code>426f20b</code></a> release.bash: make work on macOS</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/febffdd88e85cb4402205142aaa1a4cc64d0d375"><code>febffdd</code></a> reflect/protoregistry: permit conflicting file names</li> <li><a href="https://github.com/protocolbuffers/protobuf-go/commit/4c193d18ecdd6a8a45541b0c2a6c2ff885f5ea06"><code>4c193d1</code></a> compiler/protogen: relax rules for valid import paths</li> <li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf-go/compare/v1.26.0...v1.27.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.26.0&new-version=1.27.1)](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 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>
dependabot[bot] commented 2021-09-16 15:20:39 +03:00 (Migrated from github.com)

Looks like google.golang.org/protobuf is up-to-date now, so this is no longer needed.

Looks like google.golang.org/protobuf is up-to-date now, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: unistack-org/micro-config-service#39
No description provided.