release: cut v0.70.0 - #11
Merged
Merged
Conversation
Promote [Unreleased] entries to [0.70.0] – 2026-05-06 in advance of tagging v0.70.0 on this repo. Matches the v0.70.x baseline already shipping across the 9 sibling ports.
trendvidia
added a commit
that referenced
this pull request
Jul 16, 2026
Resolves spec issue #11 (GH #60). - proto/schema/config/v1/config.proto: EngineConfig message. Config is a textproto file (protowire.config.textproto at project root), not a schema-less .proto carrying file options — keeps the no-JSON/YAML principle without burning carrier extension numbers or leaking build config into FileDescriptorSet artifacts. - Discovery: upward walk, nearest config wins, no merging (go.mod model). - Precedence: per-setting CLI flags > --config > PROTOWIRE_CONFIG (file pointer only) > discovered file > defaults (cel, lenient, collect-all). Unknown engine names are startup errors, never fallbacks. - default_mode reuses protowire.schema.v1.ExecutionMode from report.proto; field 6 earmarked for the #62 recursion-depth knob. - New RFC-001 §9.4; §13 row 2 resolved; CHANGELOG updated. - testdata/schema-extensions/08_engine_config.textproto: golden config, verified with stock protoc (parse + --encode/--decode round-trip).
trendvidia
added a commit
that referenced
this pull request
Jul 16, 2026
trendvidia
added a commit
that referenced
this pull request
Jul 16, 2026
Resolves spec issue #11 (GH #60). - proto/schema/config/v1/config.proto: EngineConfig message. Config is a textproto file (protowire.config.textproto at project root), not a schema-less .proto carrying file options — keeps the no-JSON/YAML principle without burning carrier extension numbers or leaking build config into FileDescriptorSet artifacts. - Discovery: upward walk, nearest config wins, no merging (go.mod model). - Precedence: per-setting CLI flags > --config > PROTOWIRE_CONFIG (file pointer only) > discovered file > defaults (cel, lenient, collect-all). Unknown engine names are startup errors, never fallbacks. - default_mode reuses protowire.schema.v1.ExecutionMode from report.proto; field 6 earmarked for the #62 recursion-depth knob. - New RFC-001 §9.4; §13 row 2 resolved; CHANGELOG updated. - testdata/schema-extensions/08_engine_config.textproto: golden config, verified with stock protoc (parse + --encode/--decode round-trip).
trendvidia
added a commit
that referenced
this pull request
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
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: finalize Literal carrier shape (RFC-001 §8.1) Resolves spec issue #15 (GH #64). In-place revision of the unreleased carrier — the deliberate pre-freeze window for wire-shape changes. - EnumLiteral {enum_type, value_name, number}: enum references lower RESOLVED; consumers never re-resolve bare names against a pool (replaces string enum_name). - ListLiteral becomes repeated LiteralValue: elements are values, not arguments — no names, no expressions representable; homogeneous kind required (same enum_type for enum elements); nesting legal. - Message literals stay google.protobuf.Any, with the explicit-typing rule pinned: type from the param declaration or an explicit use-site type name, never inferred from value shape; source spelling deferred to the IETF draft (#3). - RFC-001 §8.1 excerpt + lowering rules prose; §13 row 6 resolved; CHANGELOG notes the protocompile descriptor.pb.go re-vendor follow-up. - Fixtures: 10_literal_args.proto (schema-text: enum ref + list on any-typed params) and 11_literal_carrier_golden.textproto (lowered AnnotationList, all three kinds, protoc encode/decode-verified). * docs: record S1 resolutions (#11–#16) in RFC-001-issues.md Ticks the six open-question boxes and adds a resolution record to each section — GH #60–#65, PR train #94–#99 — with pointers to the follow-up trackers (protocompile#67/#68, GH #102/#103) and the fixtures 07–11.
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.
Summary
[Unreleased]entries inCHANGELOG.mdto[0.70.0] – 2026-05-06.v0.70.xbaseline shipping across the 9 sibling ports.Follow-up (after merge)
v0.70.0at the merge commit.Note for reviewer
Commit needs to be signed — please amend with your GPG key before merging (or merge via squash to re-author from the web UI), since
mainrequires signed commits.Test plan