Skip to content

Commit ff30ad6

Browse files
committed
Merge remote-tracking branch 'origin/main' into release-4.1
2 parents 410ceec + b2da0b8 commit ff30ad6

File tree

90 files changed

+3556
-1431
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+3556
-1431
lines changed

.api-reports/api-report-cache.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ type StorageType = Record<string, any>;
914914
export { StoreObject }
915915

916916
// @public (undocumented)
917-
type StoreObjectValueMaybeReference<StoreVal> = StoreVal extends Array<Record<string, any>> ? StoreVal extends Array<infer Item> ? [
917+
type StoreObjectValueMaybeReference<StoreVal> = StoreVal extends ReadonlyArray<Record<string, any>> ? StoreVal extends ReadonlyArray<infer Item> ? [
918918
Item
919919
] extends [Record<string, any>] ? ReadonlyArray<AsStoreObject<Item> | Reference> : never : never : StoreVal extends Record<string, any> ? AsStoreObject<StoreVal> | Reference : StoreVal;
920920

.api-reports/api-report-testing.api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ export namespace MockLink {
4343
variables?: TVariables | VariableMatcher<TVariables>;
4444
}
4545
// (undocumented)
46-
export interface MockedResponse<out TData = Record<string, any>, out TVariables extends OperationVariables = Record<string, any>> {
46+
export interface MockedResponse<
47+
/** @ts-ignore */
48+
out TData = Record<string, any>, out TVariables extends OperationVariables = Record<string, any>> {
4749
// (undocumented)
4850
delay?: number | MockLink.DelayFunction;
4951
// (undocumented)

.api-reports/api-report.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2590,7 +2590,7 @@ export interface StoreObject {
25902590
// Warning: (ae-forgotten-export) The symbol "AsStoreObject" needs to be exported by the entry point index.d.ts
25912591
//
25922592
// @public (undocumented)
2593-
type StoreObjectValueMaybeReference<StoreVal> = StoreVal extends Array<Record<string, any>> ? StoreVal extends Array<infer Item> ? [
2593+
type StoreObjectValueMaybeReference<StoreVal> = StoreVal extends ReadonlyArray<Record<string, any>> ? StoreVal extends ReadonlyArray<infer Item> ? [
25942594
Item
25952595
] extends [Record<string, any>] ? ReadonlyArray<AsStoreObject<Item> | Reference> : never : never : StoreVal extends Record<string, any> ? AsStoreObject<StoreVal> | Reference : StoreVal;
25962596

.github/workflows/api-extractor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v5
1616
with:
1717
node-version: ">=23.6.0"
1818

.github/workflows/arethetypeswrong.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v5
1919
with:
2020
node-version: ">=23.6.0"
2121
- name: Install dependencies (with cache)

.github/workflows/change-prerelease-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Check out the repository, using the Github Actions Bot app's token so
3333
# that we can push later.
3434
- name: Checkout repo
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
token: ${{ steps.github-actions-bot-app-token.outputs.token }}
3838
# Checkout release branch entered when workflow was kicked off
@@ -42,7 +42,7 @@ jobs:
4242
fetch-depth: 0
4343

4444
- name: Setup Node.js
45-
uses: actions/setup-node@v4
45+
uses: actions/setup-node@v5
4646
with:
4747
node-version: ">=23.6.0"
4848

.github/workflows/cleanup-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: add label
21-
uses: actions/github-script@v7.0.1
21+
uses: actions/github-script@v8.0.0
2222
with:
2323
script: |
2424
const script = (await import('${{ github.workspace }}/.github/workflows/cleanup-checks.mjs')).setup({context,core,github,exec,glob,io})
@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Setup Node.js
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v5
3838
with:
3939
node-version: ">=23.6.0"
4040

@@ -56,7 +56,7 @@ jobs:
5656
run: npm run update-size-limits
5757

5858
- name: Commit changes back
59-
uses: stefanzweifel/git-auto-commit-action@v5
59+
uses: stefanzweifel/git-auto-commit-action@v6
6060
with:
6161
commit_message: "Clean up Prettier, Size-limit, and Api-Extractor"
6262
push_options: ""

.github/workflows/close-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Close Stale Issues
23-
uses: actions/stale@v9.0.0
23+
uses: actions/stale@v10.1.0
2424
with:
2525
# # Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.
2626
# repo-token: # optional, default is ${{ github.token }}

.github/workflows/compare-build-output.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
# Fetch entire git history so we have the parent commit to compare against
1616
fetch-depth: 0
1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v5
1919
with:
2020
node-version: ">=23.6.0"
2121
- name: Install dependencies (with cache)

.github/workflows/docmodel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v5
1616
with:
1717
node-version: ">=23.6.0"
1818

0 commit comments

Comments
 (0)