Skip to content

Commit b00e780

Browse files
committedNov 14, 2023
deps: @sigstore/sign@2.2.0
1 parent 4613774 commit b00e780

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed
 

‎node_modules/@sigstore/sign/dist/witness/tlog/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ const entry_1 = require("./entry");
2222
exports.DEFAULT_REKOR_URL = 'https://rekor.sigstore.dev';
2323
class RekorWitness {
2424
constructor(options) {
25+
this.entryType = options.entryType;
2526
this.tlog = new client_1.TLogClient({
2627
...options,
2728
rekorBaseURL: options.rekorBaseURL || /* istanbul ignore next */ exports.DEFAULT_REKOR_URL,
2829
});
2930
}
3031
async testify(content, publicKey) {
31-
const proposedEntry = (0, entry_1.toProposedEntry)(content, publicKey);
32+
const proposedEntry = (0, entry_1.toProposedEntry)(content, publicKey, this.entryType);
3233
const entry = await this.tlog.createEntry(proposedEntry);
3334
return toTransparencyLogEntry(entry);
3435
}

‎node_modules/@sigstore/sign/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sigstore/sign",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Sigstore signing library",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -27,9 +27,9 @@
2727
},
2828
"devDependencies": {
2929
"@sigstore/jest": "^0.0.0",
30-
"@sigstore/mock": "^0.4.0",
30+
"@sigstore/mock": "^0.6.0",
3131
"@sigstore/rekor-types": "^2.0.0",
32-
"@types/make-fetch-happen": "^10.0.0"
32+
"@types/make-fetch-happen": "^10.0.3"
3333
},
3434
"dependencies": {
3535
"@sigstore/bundle": "^2.1.0",

‎package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3883,9 +3883,9 @@
38833883
}
38843884
},
38853885
"node_modules/@sigstore/sign": {
3886-
"version": "2.1.0",
3887-
"resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.1.0.tgz",
3888-
"integrity": "sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw==",
3886+
"version": "2.2.0",
3887+
"resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz",
3888+
"integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==",
38893889
"inBundle": true,
38903890
"dependencies": {
38913891
"@sigstore/bundle": "^2.1.0",

0 commit comments

Comments
 (0)
Please sign in to comment.