Skip to content

Commit d325eef

Browse files
angular-robotjosephperrott
authored andcommitted
build: lock file maintenance (#2867)
See associated pull request for more information. PR Close #2867
1 parent e668ff1 commit d325eef

File tree

14 files changed

+405
-248
lines changed

14 files changed

+405
-248
lines changed

.github/local-actions/branch-manager/main.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57160,7 +57160,7 @@ var RequestError = class extends Error {
5716057160
};
5716157161

5716257162
//
57163-
var VERSION2 = "0.0.0-development";
57163+
var VERSION2 = "10.0.3";
5716457164
var defaults_default = {
5716557165
headers: {
5716657166
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -60479,15 +60479,17 @@ function normalizePaginatedListResponse(response) {
6047960479
data: []
6048060480
};
6048160481
}
60482-
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data);
60482+
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data) || "total_commits" in response.data;
6048360483
if (!responseNeedsNormalization)
6048460484
return response;
6048560485
const incompleteResults = response.data.incomplete_results;
6048660486
const repositorySelection = response.data.repository_selection;
6048760487
const totalCount = response.data.total_count;
60488+
const totalCommits = response.data.total_commits;
6048860489
delete response.data.incomplete_results;
6048960490
delete response.data.repository_selection;
6049060491
delete response.data.total_count;
60492+
delete response.data.total_commits;
6049160493
const namespaceKey = Object.keys(response.data)[0];
6049260494
const data = response.data[namespaceKey];
6049360495
response.data = data;
@@ -60498,6 +60500,7 @@ function normalizePaginatedListResponse(response) {
6049860500
response.data.repository_selection = repositorySelection;
6049960501
}
6050060502
response.data.total_count = totalCount;
60503+
response.data.total_commits = totalCommits;
6050160504
return response;
6050260505
}
6050360506
function iterator(octokit, route, parameters) {
@@ -60517,6 +60520,16 @@ function iterator(octokit, route, parameters) {
6051760520
url = ((normalizedResponse.headers.link || "").match(
6051860521
/<([^<>]+)>;\s*rel="next"/
6051960522
) || [])[1];
60523+
if (!url && "total_commits" in normalizedResponse.data) {
60524+
const parsedUrl = new URL(normalizedResponse.url);
60525+
const params4 = parsedUrl.searchParams;
60526+
const page = parseInt(params4.get("page") || "1", 10);
60527+
const per_page = parseInt(params4.get("per_page") || "250", 10);
60528+
if (page * per_page < normalizedResponse.data.total_commits) {
60529+
params4.set("page", String(page + 1));
60530+
url = parsedUrl.toString();
60531+
}
60532+
}
6052060533
return { value: normalizedResponse };
6052160534
} catch (error2) {
6052260535
if (error2.status !== 409)

.github/local-actions/labels-sync/main.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38507,7 +38507,7 @@ var RequestError = class extends Error {
3850738507
};
3850838508

3850938509
//
38510-
var VERSION2 = "0.0.0-development";
38510+
var VERSION2 = "10.0.3";
3851138511
var defaults_default = {
3851238512
headers: {
3851338513
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -38989,15 +38989,17 @@ function normalizePaginatedListResponse(response) {
3898938989
data: []
3899038990
};
3899138991
}
38992-
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data);
38992+
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data) || "total_commits" in response.data;
3899338993
if (!responseNeedsNormalization)
3899438994
return response;
3899538995
const incompleteResults = response.data.incomplete_results;
3899638996
const repositorySelection = response.data.repository_selection;
3899738997
const totalCount = response.data.total_count;
38998+
const totalCommits = response.data.total_commits;
3899838999
delete response.data.incomplete_results;
3899939000
delete response.data.repository_selection;
3900039001
delete response.data.total_count;
39002+
delete response.data.total_commits;
3900139003
const namespaceKey = Object.keys(response.data)[0];
3900239004
const data = response.data[namespaceKey];
3900339005
response.data = data;
@@ -39008,6 +39010,7 @@ function normalizePaginatedListResponse(response) {
3900839010
response.data.repository_selection = repositorySelection;
3900939011
}
3901039012
response.data.total_count = totalCount;
39013+
response.data.total_commits = totalCommits;
3901139014
return response;
3901239015
}
3901339016
function iterator(octokit, route, parameters) {
@@ -39027,6 +39030,16 @@ function iterator(octokit, route, parameters) {
3902739030
url = ((normalizedResponse.headers.link || "").match(
3902839031
/<([^<>]+)>;\s*rel="next"/
3902939032
) || [])[1];
39033+
if (!url && "total_commits" in normalizedResponse.data) {
39034+
const parsedUrl = new URL(normalizedResponse.url);
39035+
const params = parsedUrl.searchParams;
39036+
const page = parseInt(params.get("page") || "1", 10);
39037+
const per_page = parseInt(params.get("per_page") || "250", 10);
39038+
if (page * per_page < normalizedResponse.data.total_commits) {
39039+
params.set("page", String(page + 1));
39040+
url = parsedUrl.toString();
39041+
}
39042+
}
3903039043
return { value: normalizedResponse };
3903139044
} catch (error) {
3903239045
if (error.status !== 409)

.github/local-actions/lock-closed/main.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38507,7 +38507,7 @@ var RequestError = class extends Error {
3850738507
};
3850838508

3850938509
//
38510-
var VERSION2 = "0.0.0-development";
38510+
var VERSION2 = "10.0.3";
3851138511
var defaults_default = {
3851238512
headers: {
3851338513
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -38989,15 +38989,17 @@ function normalizePaginatedListResponse(response) {
3898938989
data: []
3899038990
};
3899138991
}
38992-
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data);
38992+
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data) || "total_commits" in response.data;
3899338993
if (!responseNeedsNormalization)
3899438994
return response;
3899538995
const incompleteResults = response.data.incomplete_results;
3899638996
const repositorySelection = response.data.repository_selection;
3899738997
const totalCount = response.data.total_count;
38998+
const totalCommits = response.data.total_commits;
3899838999
delete response.data.incomplete_results;
3899939000
delete response.data.repository_selection;
3900039001
delete response.data.total_count;
39002+
delete response.data.total_commits;
3900139003
const namespaceKey = Object.keys(response.data)[0];
3900239004
const data = response.data[namespaceKey];
3900339005
response.data = data;
@@ -39008,6 +39010,7 @@ function normalizePaginatedListResponse(response) {
3900839010
response.data.repository_selection = repositorySelection;
3900939011
}
3901039012
response.data.total_count = totalCount;
39013+
response.data.total_commits = totalCommits;
3901139014
return response;
3901239015
}
3901339016
function iterator(octokit, route, parameters) {
@@ -39027,6 +39030,16 @@ function iterator(octokit, route, parameters) {
3902739030
url = ((normalizedResponse.headers.link || "").match(
3902839031
/<([^<>]+)>;\s*rel="next"/
3902939032
) || [])[1];
39033+
if (!url && "total_commits" in normalizedResponse.data) {
39034+
const parsedUrl = new URL(normalizedResponse.url);
39035+
const params = parsedUrl.searchParams;
39036+
const page = parseInt(params.get("page") || "1", 10);
39037+
const per_page = parseInt(params.get("per_page") || "250", 10);
39038+
if (page * per_page < normalizedResponse.data.total_commits) {
39039+
params.set("page", String(page + 1));
39040+
url = parsedUrl.toString();
39041+
}
39042+
}
3903039043
return { value: normalizedResponse };
3903139044
} catch (error2) {
3903239045
if (error2.status !== 409)

.github/ng-renovate/yarn.lock

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2599,11 +2599,11 @@ __metadata:
25992599
linkType: hard
26002600

26012601
"@types/node@npm:*, @types/node@npm:>=13.7.0":
2602-
version: 24.0.1
2603-
resolution: "@types/node@npm:24.0.1"
2602+
version: 24.0.3
2603+
resolution: "@types/node@npm:24.0.3"
26042604
dependencies:
26052605
undici-types: "npm:~7.8.0"
2606-
checksum: 10c0/91cd50d1ac32a2172cbc67b65c78391fbd469b24743e3665427aa60bebaf4620cb9ac2e91c09a8081a78d08855c00faca659c287c1725ce8ca5e80ece3a20520
2606+
checksum: 10c0/9c3c4e87600d1cf11e291c2fd4bfd806a615455463c30a0ef6dc9c801b3423344d9b82b8084e3ccabce485a7421ebb61a66e9676181bd7d9aea4759998a120d5
26072607
languageName: node
26082608
linkType: hard
26092609

@@ -3696,11 +3696,11 @@ __metadata:
36963696
linkType: hard
36973697

36983698
"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1":
3699-
version: 1.4.4
3700-
resolution: "end-of-stream@npm:1.4.4"
3699+
version: 1.4.5
3700+
resolution: "end-of-stream@npm:1.4.5"
37013701
dependencies:
37023702
once: "npm:^1.4.0"
3703-
checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975
3703+
checksum: 10c0/b0701c92a10b89afb1cb45bf54a5292c6f008d744eb4382fa559d54775ff31617d1d7bc3ef617575f552e24fad2c7c1a1835948c66b3f3a4be0a6c1f35c883d8
37043704
languageName: node
37053705
linkType: hard
37063706

@@ -6328,12 +6328,12 @@ __metadata:
63286328
linkType: hard
63296329

63306330
"pump@npm:^3.0.0":
6331-
version: 3.0.2
6332-
resolution: "pump@npm:3.0.2"
6331+
version: 3.0.3
6332+
resolution: "pump@npm:3.0.3"
63336333
dependencies:
63346334
end-of-stream: "npm:^1.1.0"
63356335
once: "npm:^1.3.1"
6336-
checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f
6336+
checksum: 10c0/ada5cdf1d813065bbc99aa2c393b8f6beee73b5de2890a8754c9f488d7323ffd2ca5f5a0943b48934e3fcbd97637d0337369c3c631aeb9614915db629f1c75c9
63376337
languageName: node
63386338
linkType: hard
63396339

@@ -7936,13 +7936,20 @@ __metadata:
79367936
languageName: node
79377937
linkType: hard
79387938

7939-
"zod@npm:3.25.64, zod@npm:^3.23.0":
7939+
"zod@npm:3.25.64":
79407940
version: 3.25.64
79417941
resolution: "zod@npm:3.25.64"
79427942
checksum: 10c0/00d76093a999e377e4ffd037fa7185e861c35917e8c4272f514115c206a0654995168f57fb71708b11e0a9243206d988b7f63b543404e1796402e50d346a6bd7
79437943
languageName: node
79447944
linkType: hard
79457945

7946+
"zod@npm:^3.23.0":
7947+
version: 3.25.67
7948+
resolution: "zod@npm:3.25.67"
7949+
checksum: 10c0/80a0cab3033272c4ab9312198081f0c4ea88e9673c059aa36dc32024906363729db54bdb78f3dc9d5529bd1601f74974d5a56c0a23e40c6f04a9270c9ff22336
7950+
languageName: node
7951+
linkType: hard
7952+
79467953
"zwitch@npm:^2.0.0":
79477954
version: 2.0.4
79487955
resolution: "zwitch@npm:2.0.4"

bazel/pnpm-lock.yaml

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

github-actions/branch-manager/main.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38507,7 +38507,7 @@ var RequestError = class extends Error {
3850738507
};
3850838508

3850938509
//
38510-
var VERSION2 = "0.0.0-development";
38510+
var VERSION2 = "10.0.3";
3851138511
var defaults_default = {
3851238512
headers: {
3851338513
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -38989,15 +38989,17 @@ function normalizePaginatedListResponse(response) {
3898938989
data: []
3899038990
};
3899138991
}
38992-
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data);
38992+
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data) || "total_commits" in response.data;
3899338993
if (!responseNeedsNormalization)
3899438994
return response;
3899538995
const incompleteResults = response.data.incomplete_results;
3899638996
const repositorySelection = response.data.repository_selection;
3899738997
const totalCount = response.data.total_count;
38998+
const totalCommits = response.data.total_commits;
3899838999
delete response.data.incomplete_results;
3899939000
delete response.data.repository_selection;
3900039001
delete response.data.total_count;
39002+
delete response.data.total_commits;
3900139003
const namespaceKey = Object.keys(response.data)[0];
3900239004
const data = response.data[namespaceKey];
3900339005
response.data = data;
@@ -39008,6 +39010,7 @@ function normalizePaginatedListResponse(response) {
3900839010
response.data.repository_selection = repositorySelection;
3900939011
}
3901039012
response.data.total_count = totalCount;
39013+
response.data.total_commits = totalCommits;
3901139014
return response;
3901239015
}
3901339016
function iterator(octokit, route, parameters) {
@@ -39027,6 +39030,16 @@ function iterator(octokit, route, parameters) {
3902739030
url = ((normalizedResponse.headers.link || "").match(
3902839031
/<([^<>]+)>;\s*rel="next"/
3902939032
) || [])[1];
39033+
if (!url && "total_commits" in normalizedResponse.data) {
39034+
const parsedUrl = new URL(normalizedResponse.url);
39035+
const params = parsedUrl.searchParams;
39036+
const page = parseInt(params.get("page") || "1", 10);
39037+
const per_page = parseInt(params.get("per_page") || "250", 10);
39038+
if (page * per_page < normalizedResponse.data.total_commits) {
39039+
params.set("page", String(page + 1));
39040+
url = parsedUrl.toString();
39041+
}
39042+
}
3903039043
return { value: normalizedResponse };
3903139044
} catch (error) {
3903239045
if (error.status !== 409)

github-actions/feature-request/main.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38510,7 +38510,7 @@ var RequestError = class extends Error {
3851038510
};
3851138511

3851238512
//
38513-
var VERSION2 = "0.0.0-development";
38513+
var VERSION2 = "10.0.3";
3851438514
var defaults_default = {
3851538515
headers: {
3851638516
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -38992,15 +38992,17 @@ function normalizePaginatedListResponse(response) {
3899238992
data: []
3899338993
};
3899438994
}
38995-
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data);
38995+
const responseNeedsNormalization = "total_count" in response.data && !("url" in response.data) || "total_commits" in response.data;
3899638996
if (!responseNeedsNormalization)
3899738997
return response;
3899838998
const incompleteResults = response.data.incomplete_results;
3899938999
const repositorySelection = response.data.repository_selection;
3900039000
const totalCount = response.data.total_count;
39001+
const totalCommits = response.data.total_commits;
3900139002
delete response.data.incomplete_results;
3900239003
delete response.data.repository_selection;
3900339004
delete response.data.total_count;
39005+
delete response.data.total_commits;
3900439006
const namespaceKey = Object.keys(response.data)[0];
3900539007
const data = response.data[namespaceKey];
3900639008
response.data = data;
@@ -39011,6 +39013,7 @@ function normalizePaginatedListResponse(response) {
3901139013
response.data.repository_selection = repositorySelection;
3901239014
}
3901339015
response.data.total_count = totalCount;
39016+
response.data.total_commits = totalCommits;
3901439017
return response;
3901539018
}
3901639019
function iterator(octokit, route, parameters) {
@@ -39030,6 +39033,16 @@ function iterator(octokit, route, parameters) {
3903039033
url = ((normalizedResponse.headers.link || "").match(
3903139034
/<([^<>]+)>;\s*rel="next"/
3903239035
) || [])[1];
39036+
if (!url && "total_commits" in normalizedResponse.data) {
39037+
const parsedUrl = new URL(normalizedResponse.url);
39038+
const params = parsedUrl.searchParams;
39039+
const page = parseInt(params.get("page") || "1", 10);
39040+
const per_page = parseInt(params.get("per_page") || "250", 10);
39041+
if (page * per_page < normalizedResponse.data.total_commits) {
39042+
params.set("page", String(page + 1));
39043+
url = parsedUrl.toString();
39044+
}
39045+
}
3903339046
return { value: normalizedResponse };
3903439047
} catch (error) {
3903539048
if (error.status !== 409)

0 commit comments

Comments
 (0)