File tree 3 files changed +8
-4
lines changed 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,10 @@ All versions prior to 0.9.0 are untracked.
58
58
* ** BREAKING API CHANGE** : ` Verifier.verify(...) ` now takes a ` sigstore.models.Bundle ` ,
59
59
instead of a ` VerificationMaterials ` ([ #937 ] ( https://github.com/sigstore/sigstore-python/pull/937 ) )
60
60
61
+ * ** BREAKING CLI CHANGE** : ` sigstore sign ` now emits ` {input}.sigstore.json `
62
+ by default instead of ` {input}.sigstore ` , per the client specification
63
+ ([ #1007 ] ( https://github.com/sigstore/sigstore-python/pull/1007 ) )
64
+
61
65
* sigstore-python now requires inclusion proofs in all signing and verification
62
66
flows, regardless of bundle version of input types. Inputs that do not
63
67
have an inclusion proof (such as detached materials) cause an online lookup
Original file line number Diff line number Diff line change @@ -162,8 +162,8 @@ OpenID Connect options:
162
162
False)
163
163
164
164
Output options:
165
- --no-default-files Don't emit the default output files ({input}.sigstore)
166
- (default: False)
165
+ --no-default-files Don't emit the default output files
166
+ ({input}.sigstore.json) ( default: False)
167
167
--signature FILE, --output-signature FILE
168
168
Write a single signature to the given file; does not
169
169
work with multiple input files (default: None)
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ def _parser() -> argparse.ArgumentParser:
283
283
"--no-default-files" ,
284
284
action = "store_true" ,
285
285
default = _boolify_env ("SIGSTORE_NO_DEFAULT_FILES" ),
286
- help = "Don't emit the default output files ({input}.sigstore)" ,
286
+ help = "Don't emit the default output files ({input}.sigstore.json )" ,
287
287
)
288
288
output_options .add_argument (
289
289
"--signature" ,
@@ -559,7 +559,7 @@ def _sign(args: argparse.Namespace) -> None:
559
559
output_dir .mkdir (parents = True , exist_ok = True )
560
560
561
561
if not bundle and not args .no_default_files :
562
- bundle = output_dir / f"{ file .name } .sigstore"
562
+ bundle = output_dir / f"{ file .name } .sigstore.json "
563
563
564
564
if not args .overwrite :
565
565
extants = []
You can’t perform that action at this time.
0 commit comments