Skip to content

Commit aa5d23b

Browse files
author
priyawadhwa
authored
CHANGELOG for cosign 1.2 (#668)
Signed-off-by: Priya Wadhwa <[email protected]>
1 parent 1b1cafc commit aa5d23b

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
# Changelog
22

3+
## v1.2.0
4+
5+
### Enhancements
6+
* BREAKING: move `verify-dockerfile` to `dockerfile verify` (https://github.com/sigstore/cosign/pull/662)
7+
* Have the keyless `cosign sign` flow use a single 3LO. (https://github.com/sigstore/cosign/pull/665)
8+
* Allow to `verify-blob` from urls (https://github.com/sigstore/cosign/pull/646)
9+
* Support GCP environments without workload identity (GCB). (https://github.com/sigstore/cosign/pull/652)
10+
* Switch the release cosign container to debug. (https://github.com/sigstore/cosign/pull/649)
11+
* Add logic to detect and use ambient OIDC from exec envs. (https://github.com/sigstore/cosign/pull/644)
12+
* Add `-cert-email` flag to provide the email expected from a fulcio cert to be valid (https://github.com/sigstore/cosign/pull/622)
13+
* Add support for downloading signature from remote (https://github.com/sigstore/cosign/pull/629)
14+
* Add sbom and attestations to triangulate (https://github.com/sigstore/cosign/pull/628)
15+
* Add cosign attachment signing and verification (https://github.com/sigstore/cosign/pull/615)
16+
* Embed CT log public key (https://github.com/sigstore/cosign/pull/607)
17+
* Verify SCTs returned by fulcio (https://github.com/sigstore/cosign/pull/600)
18+
* Add extra replacement variables and GCP's role identifier (https://github.com/sigstore/cosign/pull/597)
19+
* Store attestations in the layer (payload) rather than the annotation. (https://github.com/sigstore/cosign/pull/579)
20+
* Improve documentation about predicate type and change predicate type from provenance to slsaprovenance (https://github.com/sigstore/cosign/pull/583)
21+
* Upgrade in-toto-golang to adapt SLSA Provenance (https://github.com/sigstore/cosign/pull/582)
22+
23+
### Bug Fixes
24+
* Fix verify-dockerfile to allow lowercase FROM (https://github.com/sigstore/cosign/pull/643)
25+
* Fix signing for the cosigned image. (https://github.com/sigstore/cosign/pull/634)
26+
* Make sure generate-key-pair doesn't overwrite existing key-pair (https://github.com/sigstore/cosign/pull/623)
27+
* helm/ci: update helm repo before installing the dependency (https://github.com/sigstore/cosign/pull/598)
28+
* Set the correct predicate type/URI for each supported predicate type. (https://github.com/sigstore/cosign/pull/592)
29+
* Warnings on admissionregistration version (https://github.com/sigstore/cosign/pull/581)
30+
* Remove unnecessary COSIGN_PASSWORD (https://github.com/sigstore/cosign/pull/572)
31+
32+
### Contributors
33+
* Batuhan Apaydın
34+
* Ben Walding
35+
* Carlos Alexandro Becker
36+
* Carlos Tadeu Panato Junior
37+
* Erkan Zileli
38+
* Hector Fernandez
39+
* Jake Sanders
40+
* Jason Hall
41+
* Matt Moore
42+
* Michael Lieberman
43+
* Naveen Srinivasan
44+
* Pradeep Chhetri
45+
* Sambhav Kothari
46+
* dlorenc
47+
* priyawadhwa
48+
49+
350
## v1.1.0
451

552
### Enhancements

release/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ This directory contain the files and scripts to run a cosign release.
77
1. Release notes: Create a PR to update and review release notes in CHANGELOG.md.
88
- Check merged pull requests since the last release and make sure enhancements, bug fixes, and authors are reflected in the notes.
99

10+
You can get a list of pull requests since the last release by substituting in the date of the last release and running:
11+
12+
```
13+
git log --pretty="* %s" --after="YYYY-MM-DD"
14+
```
15+
16+
and a list of authors by running:
17+
18+
```
19+
git log --pretty="* %an" --after="YYYY-MM-DD" | sort -u
20+
```
21+
22+
1023
2. Submit the cloudbuild Job using the following command:
1124

1225
```shell

0 commit comments

Comments
 (0)