Skip to content

Latest commit

 

History

History
211 lines (168 loc) · 12.7 KB

CHANGELOG.md

File metadata and controls

211 lines (168 loc) · 12.7 KB

v0.7.2

What's Changed

  • chore(deps): Update cached requirement from 0.42.0 to 0.44.0 by @dependabot in sigstore#277
  • chore(deps): Bump actions/checkout from 3.5.2 to 3.5.3 by @dependabot in sigstore#278
  • chore(deps): update picky dependency by @flavio in sigstore#279

Full Changelog: https://github.com/sigstore/sigstore-rs/compare/v0.7.1...v0.7.2

v0.7.1

What's Changed

  • fix: ensure cosign client can be sent between threads by @flavio in sigstore#275

Full Changelog: https://github.com/sigstore/sigstore-rs/compare/v0.7.0...v0.7.1

v0.7.0

What's Changed

  • Fix typo in SignatureLayer::new doc comment by @danbev in sigstore#170
  • feat: replace example dependency docker_credential by @Xynnn007 in sigstore#172
  • Clean up readme by @lukehinds in sigstore#173
  • chore(deps): Update rstest requirement from 0.15.0 to 0.16.0 by @dependabot in sigstore#174
  • Fix typo in simple_signing.rs by @danbev in sigstore#175
  • Introduce SignedArtifactBundle by @danbev in sigstore#171
  • chore(deps): Update base64 requirement from 0.13.0 to 0.20.0 by @dependabot in sigstore#177
  • chore(deps): Bump actions/checkout from 3.1.0 to 3.2.0 by @dependabot in sigstore#180
  • chore(deps): Update serial_test requirement from 0.9.0 to 0.10.0 by @dependabot in sigstore#182
  • chore(deps): Update cached requirement from 0.40.0 to 0.41.0 by @dependabot in sigstore#181
  • Fix typo in SecretBoxCipher doc comment by @danbev in sigstore#179
  • chore(deps): Update cached requirement from 0.41.0 to 0.42.0 by @dependabot in sigstore#185
  • chore(deps): Bump actions/checkout from 3.2.0 to 3.3.0 by @dependabot in sigstore#183
  • chore(deps): Update base64 requirement from 0.20.0 to 0.21.0 by @dependabot in sigstore#184
  • Add cosign verify-bundle example by @danbev in sigstore#186
  • Fix incorrect base64_signature doc comment by @danbev in sigstore#188
  • Fix typos in tuf/mod.rs by @danbev in sigstore#195
  • chore(deps): Update serial_test requirement from 0.10.0 to 1.0.0 by @dependabot in sigstore#200
  • fix: show actual response status field by @ctron in sigstore#197
  • Update target -> target_name for consistency by @danbev in sigstore#196
  • fix: make the fields accessible by @ctron in sigstore#202
  • Add verify-bundle example to README.md by @danbev in sigstore#203
  • fix: make fields of hash accessible by @ctron in sigstore#205
  • Improve public key output and add file output by @Gronner in sigstore#194
  • Add TokenProvider::Static doc comment by @danbev in sigstore#208
  • Changed the type of LogEntry.body from String to Body by @Neccolini in sigstore#207
  • Fix errors/warnings reported by clippy by @danbev in sigstore#210
  • Add fine-grained features to control the compilation by @Xynnn007 in sigstore#189
  • fix: bring tuf feature out of rekor and add related docs by @Xynnn007 in sigstore#211
  • chore: update crypto deps by @flavio in sigstore#204
  • Replace x509-parser with x509-cert by @Xynnn007 in sigstore#212
  • Fix: Wrong parameter order inside documentation example. by @vembacher in sigstore#215
  • Remove lines about timestamp in lib.rs by @naveensrinivasan in sigstore#213
  • Fix ed25519 version conflict by @vembacher in sigstore#223
  • Support compiling to wasm32 architectures by @lulf in sigstore#221
  • Fix link to contributor doc in readme by @oliviacrain in sigstore#225
  • refactor: derive Clone trait by @flavio in https://gitub.com/sigstore/sigstore-rs/pull/227
  • fix: correct typo in verify/main.rs by @danbev in sigstore#228
  • chore(deps): Update tough requirement from 0.12 to 0.13 by @dependabot in sigstore#237
  • chore(deps): Bump actions/checkout from 3.3.0 to 3.4.0 by @dependabot in sigstore#240
  • dep: update picky version to git rid of ring by @Xynnn007 in sigstore#226
  • chore(deps): Bump actions/checkout from 3.4.0 to 3.5.0 by @dependabot in sigstore#245
  • fix: make LogEntry Body an enum by @danbev in sigstore#244
  • Add verify-blob example by @danbev in sigstore#239
  • Introduce Newtype OciReference into API for OCI image references. by @vembacher in sigstore#216
  • Swap over to using CDN to fetch TUF metadata by @haydentherapper in sigstore#251
  • chore(deps): Bump actions/checkout from 3.5.0 to 3.5.2 by @dependabot in sigstore#252
  • upgrade 'der' to 0.7.5 by @dmitris in sigstore#257
  • remove unused 'clock' feature for chrono by @dmitris in sigstore#258
  • update pkcs1 from 0.4.0 to 0.7.5 by @dmitris in sigstore#260
  • use 2021 Rust edition by @dmitris in sigstore#261
  • chore(deps): Update serial_test requirement from 1.0.0 to 2.0.0 by @dependabot in sigstore#264
  • update scrypt to 0.11.0, adapt for API change (fix #231) by @dmitris in sigstore#268
  • upgrade ed25519-dalek to 2.0.0-rc.2 by @dmitris in sigstore#263
  • chore(deps): Update openidconnect requirement from 2.3 to 3.0 by @dependabot in sigstore#265
  • chore(deps): Update rstest requirement from 0.16.0 to 0.17.0 by @dependabot in sigstore#271
  • Update crypto deps by @flavio in sigstore#269
  • Update create_log_entry example to create key pair. by @jvanz in sigstore#206

New Contributors

Full Changelog: https://github.com/sigstore/sigstore-rs/compare/v0.6.0...v0.7.0h

v0.6.0

Fixes

  • Fix typo in cosign/mod.rs doc comment by @danbev in sigstore#148
  • Fix typo in KeyPair trait doc comment by @danbev in sigstore#149
  • Update cached requirement from 0.39.0 to 0.40.0 by @dependabot in sigstore#154
  • Fix typos in PublicKeyVerifier doc comments by @danbev in sigstore#155
  • Fix: CI error for auto deref by @Xynnn007 in sigstore#160
  • Fix typo and grammar in signature_layers.rs by @danbev in sigstore#161
  • Remove unused imports in examples/rekor by @danbev in sigstore#162
  • Update link to verification example by @danbev in sigstore#156
  • Fix typos in from_encrypted_pem doc comments by @danbev in sigstore#164
  • Fix typos in doc comments by @danbev in sigstore#163
  • Update path to fulcio-cert in verify example by @danbev in sigstore#168

Enhancements

  • Add getter functions for LogEntry fields by @lkatalin in sigstore#147
  • Add TreeSize alias to Rekor by @avery-blanchard in sigstore#151
  • Updates for parsing hashedrekord LogEntry by @lkatalin in sigstore#152
  • Add certificate based verification by @flavio in sigstore#159
  • Add support for OCI Image signing (spec v1.0) by @Xynnn007 in sigstore#158

Contributors

  • Avery Blanchard (@avery-blanchardmade)
  • Daniel Bevenius (@danbev)
  • Flavio Castelli (@flavio)
  • Lily Sturmann (@lkatalin)
  • Xynnn (@Xynnn007)

v0.5.3

Fixes

Others

  • Rework Rekor module structure and enable doc tests (sigstore#145)

Contributors

  • Flavio Castelli (@flavio)
  • Lily Sturmann (@lkatalin)

v0.5.2

Fixes

Contributors

  • Flavio Castelli (@flavio)

v0.5.1

Fixes

  • fix verification of signatures produced with PKI11 (sigstore#142)

Others

Contributors

  • Flavio Castelli (@flavio)
  • Xynnn (@Xynnn007)

v0.5.0

Enhancements

Others

Contributors

  • Bob Callaway (@bobcallaway)
  • Bob McWhirter (@bobmcwhirter)
  • Flavio Castelli (@flavio)
  • Luke Hinds (@lukehinds)
  • Xynnn (@Xynnn007)

v0.4.0

Enhancements

Documention

Others

Contributors

  • Carlos Tadeu Panato Junior (@cpanato)
  • Flavio Castelli (@flavio)
  • Jyotsna (@jyotsna-penumaka)
  • Lily Sturmann (@lkatalin)
  • Luke Hinds (@lukehinds)
  • Tony Arcieri (@tarcieri)
  • Xynnn_ (@Xynnn007)