release: cut v1.0.0#17
Merged
Merged
Conversation
Promote [Unreleased] → [1.0.0] — 2026-05-13. Bump package.json + package-lock.json from 0.75.0 to 1.0.0. First major-version cut. Implements the three one-time spec changes from the protowire v1.0 freeze line (STABILITY.md in the spec repo) in lockstep with protowire, protowire-go, and protowire-java. Headline changes (full detail in the [1.0.0] section): - @table → @dataset rename (draft §3.4.4). Public API follows: TableDirective → DatasetDirective, TableRow → DatasetRow, TableReader → DatasetReader, Document.tables → Document.datasets, Result.tables() → Result.datasets(). Hard cutover, no alias. - @proto directive (draft §3.4.5). New ProtoDirective interface + ProtoShape union ("anonymous" | "named" | "source" | "descriptor"); Document.protos / Result.protos(). Four body shapes lexically distinguished. - Reserved directive names expanded from 5 to 13 (draft §3.4.6). Parser + decoder reject @table, @Datasource, @view, @procedure, @function, @permissions as spec-reserved. Wire format: breaking. v1.0.0 documents are NOT decodable by pre-v1.0 ports; pre-v1.0 documents using @table are NOT decodable by v1.0.0. This is the major bump. After merge, tag v1.0.0 on main; the publish.yml workflow fires on `v*.*.*` tag push and publishes @trendvidia/protowire to npm with provenance attestation via OIDC.
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
First major-version cut. Implements the three one-time spec changes from the protowire v1.0 freeze line (STABILITY.md) in lockstep with
protowire,protowire-go, andprotowire-java. Breaking — there is no alias period; v1.0 is itself the major bump.Promotes the existing [Unreleased] section (landed in #16) to [1.0.0] — 2026-05-13 and bumps
package.json+package-lock.jsonfrom0.75.0to1.0.0.Headline changes
@table→@datasetrename (draft §3.4.4). Public API rename surface:TableDirective→DatasetDirective,TableReader→DatasetReader,Document.tables→Document.datasets,Result.tables()→Result.datasets().@protodirective added (draft §3.4.5). Four body shapes lexically distinguished ("anonymous" | "named" | "source" | "descriptor").Wire format
Breaking. v1.0.0 documents are not decodable by pre-v1.0 ports; pre-v1.0 documents using
@tableare not decodable by v1.0.0.After merge
Tag
v1.0.0on main.publish.ymlfires onv*.*.*tag push and publishes@trendvidia/protowire@1.0.0to npm with provenance attestation via OIDC. The VS Code extension's embedded parser refresh in the spec repo (scripts/refresh_vscode_parser_pkg.sh) picks up the v1.0.0 artifact afterward.Companion releases (in flight):