Skip to content

Commit db3cdf4

Browse files
build(release): 2.0.5 [skip ci]
## [2.0.5](v2.0.4...v2.0.5) (2025-05-02) ### Bug Fixes * **deps:** bump the production-dependencies group with 3 updates ([#240](#240)) ([d64d7d7](d64d7d7))
1 parent d64d7d7 commit db3cdf4

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

dist/main.cjs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33638,6 +33638,11 @@ var require_sqlite_cache_store = __commonJS({
3363833638
}
3363933639
this.#db = new DatabaseSync(opts?.location ?? ":memory:");
3364033640
this.#db.exec(`
33641+
PRAGMA journal_mode = WAL;
33642+
PRAGMA synchronous = NORMAL;
33643+
PRAGMA temp_store = memory;
33644+
PRAGMA optimize;
33645+
3364133646
CREATE TABLE IF NOT EXISTS cacheInterceptorV${VERSION7} (
3364233647
-- Data specific to us
3364333648
id INTEGER PRIMARY KEY AUTOINCREMENT,
@@ -33657,9 +33662,8 @@ var require_sqlite_cache_store = __commonJS({
3365733662
staleAt INTEGER NOT NULL
3365833663
);
3365933664

33660-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION7}_url ON cacheInterceptorV${VERSION7}(url);
33661-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION7}_method ON cacheInterceptorV${VERSION7}(method);
33662-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION7}_deleteAt ON cacheInterceptorV${VERSION7}(deleteAt);
33665+
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION7}_getValuesQuery ON cacheInterceptorV${VERSION7}(url, method, deleteAt);
33666+
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION7}_deleteByUrlQuery ON cacheInterceptorV${VERSION7}(deleteAt);
3366333667
`);
3366433668
this.#getValuesQuery = this.#db.prepare(`
3366533669
SELECT
@@ -33836,7 +33840,7 @@ var require_sqlite_cache_store = __commonJS({
3383633840
this.#deleteByUrlQuery.run(this.#makeValueUrl(key));
3383733841
}
3383833842
#prune() {
33839-
if (this.size <= this.#maxCount) {
33843+
if (Number.isFinite(this.#maxCount) && this.size <= this.#maxCount) {
3384033844
return 0;
3384133845
}
3384233846
{
@@ -41375,7 +41379,7 @@ async function waitForAccessToken(request2, clientId, clientType, verification)
4137541379
return waitForAccessToken(request2, clientId, clientType, verification);
4137641380
}
4137741381
if (errorType === "slow_down") {
41378-
await wait(verification.interval + 5);
41382+
await wait(verification.interval + 7);
4137941383
return waitForAccessToken(request2, clientId, clientType, verification);
4138041384
}
4138141385
throw error;
@@ -42345,7 +42349,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri
4234542349
return sendRequestWithRetries(state, request2, options, createdAt, retries);
4234642350
}
4234742351
}
42348-
var VERSION6 = "7.2.0";
42352+
var VERSION6 = "7.2.1";
4234942353
function createAppAuth(options) {
4235042354
if (!options.appId) {
4235142355
throw new Error("[@octokit/auth-app] appId option is required");
@@ -42694,14 +42698,10 @@ var main_default = main(
4269442698
/*! Bundled license information:
4269542699

4269642700
undici/lib/fetch/body.js:
42697-
(*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
42698-
42699-
undici/lib/websocket/frame.js:
42700-
(*! ws. MIT License. Einar Otto Stangvik <[email protected]> *)
42701-
4270242701
undici/lib/web/fetch/body.js:
4270342702
(*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
4270442703

42704+
undici/lib/websocket/frame.js:
4270542705
undici/lib/web/websocket/frame.js:
4270642706
(*! ws. MIT License. Einar Otto Stangvik <[email protected]> *)
4270742707

dist/post.cjs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33404,6 +33404,11 @@ var require_sqlite_cache_store = __commonJS({
3340433404
}
3340533405
this.#db = new DatabaseSync(opts?.location ?? ":memory:");
3340633406
this.#db.exec(`
33407+
PRAGMA journal_mode = WAL;
33408+
PRAGMA synchronous = NORMAL;
33409+
PRAGMA temp_store = memory;
33410+
PRAGMA optimize;
33411+
3340733412
CREATE TABLE IF NOT EXISTS cacheInterceptorV${VERSION3} (
3340833413
-- Data specific to us
3340933414
id INTEGER PRIMARY KEY AUTOINCREMENT,
@@ -33423,9 +33428,8 @@ var require_sqlite_cache_store = __commonJS({
3342333428
staleAt INTEGER NOT NULL
3342433429
);
3342533430

33426-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION3}_url ON cacheInterceptorV${VERSION3}(url);
33427-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION3}_method ON cacheInterceptorV${VERSION3}(method);
33428-
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION3}_deleteAt ON cacheInterceptorV${VERSION3}(deleteAt);
33431+
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION3}_getValuesQuery ON cacheInterceptorV${VERSION3}(url, method, deleteAt);
33432+
CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION3}_deleteByUrlQuery ON cacheInterceptorV${VERSION3}(deleteAt);
3342933433
`);
3343033434
this.#getValuesQuery = this.#db.prepare(`
3343133435
SELECT
@@ -33602,7 +33606,7 @@ var require_sqlite_cache_store = __commonJS({
3360233606
this.#deleteByUrlQuery.run(this.#makeValueUrl(key));
3360333607
}
3360433608
#prune() {
33605-
if (this.size <= this.#maxCount) {
33609+
if (Number.isFinite(this.#maxCount) && this.size <= this.#maxCount) {
3360633610
return 0;
3360733611
}
3360833612
{
@@ -40917,14 +40921,10 @@ post(import_core2.default, request_default).catch((error) => {
4091740921
/*! Bundled license information:
4091840922

4091940923
undici/lib/fetch/body.js:
40920-
(*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
40921-
40922-
undici/lib/websocket/frame.js:
40923-
(*! ws. MIT License. Einar Otto Stangvik <[email protected]> *)
40924-
4092540924
undici/lib/web/fetch/body.js:
4092640925
(*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
4092740926

40927+
undici/lib/websocket/frame.js:
4092840928
undici/lib/web/websocket/frame.js:
4092940929
(*! ws. MIT License. Einar Otto Stangvik <[email protected]> *)
4093040930
*/

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "create-github-app-token",
33
"private": true,
44
"type": "module",
5-
"version": "2.0.4",
5+
"version": "2.0.5",
66
"description": "GitHub Action for creating a GitHub App Installation Access Token",
77
"scripts": {
88
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0 --packages=bundle",

0 commit comments

Comments
 (0)