Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions node_modules/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@
/minipass-pipeline/node_modules/*
!/minipass-pipeline/node_modules/minipass
!/minipass-sized
!/minipass-sized/node_modules/
/minipass-sized/node_modules/*
!/minipass-sized/node_modules/minipass
!/minipass
!/minizlib
!/ms
Expand Down
2 changes: 1 addition & 1 deletion node_modules/ci-info/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ci-info",
"version": "4.3.1",
"version": "4.4.0",
"description": "Get details about the current Continuous Integration environment",
"main": "index.js",
"typings": "index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions node_modules/ci-info/vendors.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"env": "AGOLA_GIT_REF",
"pr": "AGOLA_PULL_REQUEST_ID"
},
{
"name": "Alpic",
"constant": "ALPIC",
"env": "ALPIC_HOST"
},
{
"name": "Appcircle",
"constant": "APPCIRCLE",
Expand Down
26 changes: 13 additions & 13 deletions node_modules/is-cidr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "is-cidr",
"version": "6.0.1",
"version": "6.0.2",
"description": "Check if a string is an IP address in CIDR notation",
"author": "silverwind <me@silverwind.io>",
"contributors": [
Expand All @@ -20,19 +20,19 @@
"node": ">=20"
},
"dependencies": {
"cidr-regex": "5.0.1"
"cidr-regex": "^5.0.1"
},
"devDependencies": {
"@types/node": "24.5.2",
"eslint": "9.36.0",
"eslint-config-silverwind": "105.1.0",
"typescript": "5.9.2",
"typescript-config-silverwind": "10.0.1",
"updates": "16.7.2",
"versions": "13.1.2",
"vite": "7.1.7",
"vite-config-silverwind": "6.0.2",
"vitest": "3.2.4",
"vitest-config-silverwind": "10.2.0"
"@types/node": "25.0.10",
"eslint": "9.39.2",
"eslint-config-silverwind": "118.0.0",
"typescript": "5.9.3",
"typescript-config-silverwind": "14.0.0",
"updates": "17.0.8",
"versions": "14.0.3",
"vite": "7.3.1",
"vite-config-silverwind": "6.0.9",
"vitest": "4.0.18",
"vitest-config-silverwind": "10.6.1"
}
}
12 changes: 8 additions & 4 deletions node_modules/lru-cache/dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,8 @@ class LRUCache {
const cb = (v, updateCache = false) => {
const { aborted } = ac.signal;
const ignoreAbort = options.ignoreFetchAbort && v !== undefined;
const proceed = options.ignoreFetchAbort ||
!!(options.allowStaleOnFetchAbort && v !== undefined);
if (options.status) {
if (aborted && !updateCache) {
options.status.fetchAborted = true;
Expand All @@ -1175,7 +1177,7 @@ class LRUCache {
}
}
if (aborted && !ignoreAbort && !updateCache) {
return fetchFail(ac.signal.reason);
return fetchFail(ac.signal.reason, proceed);
}
// either we didn't abort, and are still here, or we did, and ignored
const bf = p;
Expand Down Expand Up @@ -1205,9 +1207,10 @@ class LRUCache {
options.status.fetchRejected = true;
options.status.fetchError = er;
}
return fetchFail(er);
// do not pass go, do not collect $200
return fetchFail(er, false);
};
const fetchFail = (er) => {
const fetchFail = (er, proceed) => {
const { aborted } = ac.signal;
const allowStaleAborted = aborted && options.allowStaleOnFetchAbort;
const allowStale = allowStaleAborted || options.allowStaleOnFetchRejection;
Expand All @@ -1216,7 +1219,8 @@ class LRUCache {
if (this.#valList[index] === p) {
// if we allow stale on fetch rejections, then we need to ensure that
// the stale value is not removed from the cache when the fetch fails.
const del = !noDelete || bf.__staleWhileFetching === undefined;
const del = !noDelete ||
!proceed && bf.__staleWhileFetching === undefined;
if (del) {
this.#delete(k, 'fetch');
}
Expand Down
2 changes: 1 addition & 1 deletion node_modules/lru-cache/dist/commonjs/index.min.js

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions node_modules/lru-cache/dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1160,6 +1160,8 @@ export class LRUCache {
const cb = (v, updateCache = false) => {
const { aborted } = ac.signal;
const ignoreAbort = options.ignoreFetchAbort && v !== undefined;
const proceed = options.ignoreFetchAbort ||
!!(options.allowStaleOnFetchAbort && v !== undefined);
if (options.status) {
if (aborted && !updateCache) {
options.status.fetchAborted = true;
Expand All @@ -1172,7 +1174,7 @@ export class LRUCache {
}
}
if (aborted && !ignoreAbort && !updateCache) {
return fetchFail(ac.signal.reason);
return fetchFail(ac.signal.reason, proceed);
}
// either we didn't abort, and are still here, or we did, and ignored
const bf = p;
Expand Down Expand Up @@ -1202,9 +1204,10 @@ export class LRUCache {
options.status.fetchRejected = true;
options.status.fetchError = er;
}
return fetchFail(er);
// do not pass go, do not collect $200
return fetchFail(er, false);
};
const fetchFail = (er) => {
const fetchFail = (er, proceed) => {
const { aborted } = ac.signal;
const allowStaleAborted = aborted && options.allowStaleOnFetchAbort;
const allowStale = allowStaleAborted || options.allowStaleOnFetchRejection;
Expand All @@ -1213,7 +1216,8 @@ export class LRUCache {
if (this.#valList[index] === p) {
// if we allow stale on fetch rejections, then we need to ensure that
// the stale value is not removed from the cache when the fetch fails.
const del = !noDelete || bf.__staleWhileFetching === undefined;
const del = !noDelete ||
!proceed && bf.__staleWhileFetching === undefined;
if (del) {
this.#delete(k, 'fetch');
}
Expand Down
2 changes: 1 addition & 1 deletion node_modules/lru-cache/dist/esm/index.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions node_modules/lru-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "11.2.4",
"version": "11.2.5",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-lru-cache.git"
"url": "git+ssh://git@github.com/isaacs/node-lru-cache.git"
},
"devDependencies": {
"@types/node": "^24.3.0",
Expand Down
2 changes: 1 addition & 1 deletion node_modules/minipass-fetch/lib/body.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'
const { Minipass } = require('minipass')
const MinipassSized = require('minipass-sized')
const { MinipassSized } = require('minipass-sized')

const Blob = require('./blob.js')
const { BUFFER } = Blob
Expand Down
4 changes: 2 additions & 2 deletions node_modules/minipass-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minipass-fetch",
"version": "5.0.0",
"version": "5.0.1",
"description": "An implementation of window.fetch in Node.js using Minipass streams",
"license": "MIT",
"main": "lib/index.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"minipass": "^7.0.3",
"minipass-sized": "^1.0.3",
"minipass-sized": "^2.0.0",
"minizlib": "^3.0.1"
},
"optionalDependencies": {
Expand Down
69 changes: 69 additions & 0 deletions node_modules/minipass-sized/dist/commonjs/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MinipassSized = exports.SizeError = void 0;
const minipass_1 = require("minipass");
const isBufferEncoding = (enc) => typeof enc === 'string';
class SizeError extends Error {
expect;
found;
code = 'EBADSIZE';
constructor(found, expect, from) {
super(`Bad data size: expected ${expect} bytes, but got ${found}`);
this.expect = expect;
this.found = found;
Error.captureStackTrace(this, from ?? this.constructor);
}
get name() {
return 'SizeError';
}
}
exports.SizeError = SizeError;
class MinipassSized extends minipass_1.Minipass {
found = 0;
expect;
constructor(options) {
const size = options?.size;
if (typeof size !== 'number' ||
size > Number.MAX_SAFE_INTEGER ||
isNaN(size) ||
size < 0 ||
!isFinite(size) ||
size !== Math.floor(size)) {
throw new Error('invalid expected size: ' + size);
}
//@ts-ignore
super(options);
if (options.objectMode) {
throw new TypeError(`${this.constructor.name} streams only work with string and buffer data`);
}
this.expect = size;
}
write(chunk, encoding, cb) {
const buffer = Buffer.isBuffer(chunk) ? chunk
: typeof chunk === 'string' ?
Buffer.from(chunk, isBufferEncoding(encoding) ? encoding : 'utf8')
: chunk;
if (typeof encoding === 'function') {
cb = encoding;
encoding = null;
}
if (!Buffer.isBuffer(buffer)) {
this.emit('error', new TypeError(`${this.constructor.name} streams only work with string and buffer data`));
return false;
}
this.found += buffer.length;
if (this.found > this.expect)
this.emit('error', new SizeError(this.found, this.expect));
return super.write(chunk, encoding, cb);
}
emit(ev, ...args) {
if (ev === 'end') {
if (this.found !== this.expect) {
this.emit('error', new SizeError(this.found, this.expect, this.emit));
}
}
return super.emit(ev, ...args);
}
}
exports.MinipassSized = MinipassSized;
//# sourceMappingURL=index.js.map
3 changes: 3 additions & 0 deletions node_modules/minipass-sized/dist/commonjs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
64 changes: 64 additions & 0 deletions node_modules/minipass-sized/dist/esm/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import { Minipass } from 'minipass';
const isBufferEncoding = (enc) => typeof enc === 'string';
export class SizeError extends Error {
expect;
found;
code = 'EBADSIZE';
constructor(found, expect, from) {
super(`Bad data size: expected ${expect} bytes, but got ${found}`);
this.expect = expect;
this.found = found;
Error.captureStackTrace(this, from ?? this.constructor);
}
get name() {
return 'SizeError';
}
}
export class MinipassSized extends Minipass {
found = 0;
expect;
constructor(options) {
const size = options?.size;
if (typeof size !== 'number' ||
size > Number.MAX_SAFE_INTEGER ||
isNaN(size) ||
size < 0 ||
!isFinite(size) ||
size !== Math.floor(size)) {
throw new Error('invalid expected size: ' + size);
}
//@ts-ignore
super(options);
if (options.objectMode) {
throw new TypeError(`${this.constructor.name} streams only work with string and buffer data`);
}
this.expect = size;
}
write(chunk, encoding, cb) {
const buffer = Buffer.isBuffer(chunk) ? chunk
: typeof chunk === 'string' ?
Buffer.from(chunk, isBufferEncoding(encoding) ? encoding : 'utf8')
: chunk;
if (typeof encoding === 'function') {
cb = encoding;
encoding = null;
}
if (!Buffer.isBuffer(buffer)) {
this.emit('error', new TypeError(`${this.constructor.name} streams only work with string and buffer data`));
return false;
}
this.found += buffer.length;
if (this.found > this.expect)
this.emit('error', new SizeError(this.found, this.expect));
return super.write(chunk, encoding, cb);
}
emit(ev, ...args) {
if (ev === 'end') {
if (this.found !== this.expect) {
this.emit('error', new SizeError(this.found, this.expect, this.emit));
}
}
return super.emit(ev, ...args);
}
}
//# sourceMappingURL=index.js.map
3 changes: 3 additions & 0 deletions node_modules/minipass-sized/dist/esm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
Loading
Loading