-
Notifications
You must be signed in to change notification settings - Fork 0
fix: disable BuildKit provenance attestation in release workflow #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,10 +6,9 @@ import { type Observable } from "rxjs"; | |||||||||||||||
| * Use numeric values so they serialize correctly over gRPC. | ||||||||||||||||
| */ | ||||||||||||||||
| enum Algorithm { | ||||||||||||||||
| ALGORITHM_UNSPECIFIED = 0, | ||||||||||||||||
| FROST_ED25519 = 1, | ||||||||||||||||
| FROST_SCHNORR_SECP256K1 = 2, | ||||||||||||||||
| CGGMP24_ECDSA_SECP256K1 = 3, | ||||||||||||||||
| FROST_ED25519 = 0, | ||||||||||||||||
| FROST_SCHNORR_SECP256K1 = 1, | ||||||||||||||||
| CGGMP24_ECDSA_SECP256K1 = 2, | ||||||||||||||||
|
Comment on lines
+9
to
+11
|
||||||||||||||||
| FROST_ED25519 = 0, | |
| FROST_SCHNORR_SECP256K1 = 1, | |
| CGGMP24_ECDSA_SECP256K1 = 2, | |
| ALGORITHM_UNSPECIFIED = 0, | |
| FROST_ED25519 = 1, | |
| FROST_SCHNORR_SECP256K1 = 2, | |
| CGGMP24_ECDSA_SECP256K1 = 3, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The enum value changes here are wire-breaking for protobuf: previously
FROST_ED25519was 1, etc., and now those meanings are shifted onto 0/1/2. Any existing clients/servers built against the previous .proto (and any persisted numeric values, e.g.algorithmstored in Redis metadata) will be misinterpreted. In proto3, it’s also strongly recommended to keep a 0-value likeALGORITHM_UNSPECIFIEDto avoid “missing field defaults to a real algorithm”. Consider restoringALGORITHM_UNSPECIFIED = 0and keeping existing numeric values stable, adding these doc comments without renumbering.