deps(go): bump the go-minor-and-patch group across 1 directory with 3 updates - #2
Merged
trendvidia merged 1 commit intoMay 7, 2026
Conversation
… updates Bumps the go-minor-and-patch group with 3 updates in the / directory: [github.com/trendvidia/protoregistry](https://github.com/trendvidia/protoregistry), [github.com/trendvidia/protowire-go](https://github.com/trendvidia/protowire-go) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/trendvidia/protoregistry` from 0.70.0 to 0.70.1 - [Release notes](https://github.com/trendvidia/protoregistry/releases) - [Changelog](https://github.com/trendvidia/protoregistry/blob/main/CHANGELOG.md) - [Commits](trendvidia/protoregistry@v0.70.0...v0.70.1) Updates `github.com/trendvidia/protowire-go` from 0.70.2 to 0.70.3 - [Release notes](https://github.com/trendvidia/protowire-go/releases) - [Changelog](https://github.com/trendvidia/protowire-go/blob/main/CHANGELOG.md) - [Commits](trendvidia/protowire-go@v0.70.2...v0.70.3) Updates `google.golang.org/grpc` from 1.80.0 to 1.81.0 - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.80.0...v1.81.0) --- updated-dependencies: - dependency-name: github.com/trendvidia/protoregistry dependency-version: 0.70.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-minor-and-patch - dependency-name: github.com/trendvidia/protowire-go dependency-version: 0.70.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-minor-and-patch - dependency-name: google.golang.org/grpc dependency-version: 1.81.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/go_modules/go-minor-and-patch-c42757c4da
branch
from
May 7, 2026 03:54
eb13adf to
579466f
Compare
This was referenced May 12, 2026
trendvidia
added a commit
that referenced
this pull request
May 14, 2026
Closes the README's schema-resolution-chain item #2: @proto directives in the input document are now compiled into the descriptor registry, alongside whatever -p schema.proto provides. A self-describing PXF file with @proto + @dataset works without any flags — the schema travels with the data, as the v1.0 spec freeze intended. Three of the four @proto body shapes are honoured as schema sources (draft §3.4.5): * named `@proto Name { body }` — sugar wrapped into a standalone .proto (package + message) and fed to protocompile alongside -p * source `@proto """ <.proto> """` — full .proto source file, served to protocompile via an in-memory Accessor * descriptor `@proto b"<base64-FDSet>"` — proto.Unmarshal + protodesc.NewFiles; no compile step * anonymous `@proto { body }` — rejected for now with an actionable error string; its bind-to-next-typeless rule lands in a follow-up. Implementation detail: protocompile.SourceResolver gets a custom Accessor so virtual filenames (`__pxq_indoc_N.proto`) serve from an in-memory map, while regular filenames passed via -p fall through to os.Open. This lets cross-references between in-doc and -p protos work in a single compile pass without temp-file gymnastics. Validation: * 52 Go tests (45 from prior stages + 7 new) covering each of the three working shapes (named, source, descriptor), the anonymous rejection, named-with-no-package edge case, and the combined -p + in-doc resolution. * End-to-end smoke against a self-describing PXF document: the README's quick-start example with @proto trades.v1.Trade + @dataset now does the right thing under `pxf_proto(...)` with no `-p` flag: @type trades.v1.Trade price = ... qty = ... symbol = "..." Follow-ups still queued: anonymous @proto binding, bundled canonical schemas (pxf/*, sbe/*, envelope/v1/*), protoregistry resolution (-s/-n/--schema), and the strict-mode compile-time AST validator.
This was referenced Jul 16, 2026
trendvidia
added a commit
that referenced
this pull request
Jul 16, 2026
trendvidia
added a commit
that referenced
this pull request
Jul 16, 2026
* spec: ratify RFC-001 (issue #56) Status Draft → Ratified (2026-07-16). §13 rows 13/14 now cite their tracking issues (GH #111, #112) — with those filed, every open question is either resolved in the RFC (S1: #11–#16; S2: #15 source grammar, #21 sensitivity, #35 path scheme; S3: #22 engine-expression scope, #23 no dual-emission) or tracked as a separate issue (GH #59, #66–#69, #103, #111, #112). All v1.2 surface is strictly additive; no locked decision blocks an existing port's roadmap (per-port adoption is M9+, gated on the conformance corpus). * docs: record #2 ratification (GH #56, PR #113)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the go-minor-and-patch group with 3 updates in the / directory: github.com/trendvidia/protoregistry, github.com/trendvidia/protowire-go and google.golang.org/grpc.
Updates
github.com/trendvidia/protoregistryfrom 0.70.0 to 0.70.1Changelog
Sourced from github.com/trendvidia/protoregistry's changelog.
Commits
7e4f016release: cut v0.70.1aed460fclient: configurable hierarchical fallback (WithFallback/WithParent/WithGloba...0b22c6eclient: incremental aggregate refreshb3876a9client: replace cross-schema for-loops with namespace-wide aggregates7b110d9client: store descriptors in NamespacedFiles/NamespacedTypes1b5f13fchore: silence golangci-lint findingscf0dd6ddeps: bump protowire-go to v0.70.1259e966initial public releaseUpdates
github.com/trendvidia/protowire-gofrom 0.70.2 to 0.70.3Release notes
Sourced from github.com/trendvidia/protowire-go's releases.
Changelog
Sourced from github.com/trendvidia/protowire-go's changelog.
Commits
d21212erelease: cut v0.70.30d2fc3cMerge pull request #4 from trendvidia/feat/strict-pxf-keysd8bf7b7pxf: enforce identifier-only key for '='/'{}'; reject top-level ':'05eaf42Merge pull request #3 from trendvidia/dependabot/github_actions/actions/setup...b9cf1d8deps(deps): bump actions/setup-go from 5 to 6Updates
google.golang.org/grpcfrom 1.80.0 to 1.81.0Release notes
Sourced from google.golang.org/grpc's releases.
Commits
cb18228Change version to 1.81.0 (#9062)96748f9Cherry-pick #9105 to 1.81.x (#9106)9183222Cherry pick #9055, #9032 to v1.81.x (#9095)5cba6daRevert "deps: update dependencies for all modules (#9065)" (#9067)af8a936deps: update dependencies for all modules (#9065)cdc60dftransport: optimize heap allocations in ready reader and update syscall conne...208d053xds/resolver: pass complete XDSConfig in RPC context for HTTP filters (gRFC A...50fe1cctest: Fix flaky testTestServerStreaming_ClientCallRecvMsgTwicein `end2end...d574badbuild(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 (#9050)b8bf4d0build(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 in /inte...