Skip to content

Commit c3e87a9

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into wasm-dmeanpw
2 parents 0f171a0 + 4aa1c69 commit c3e87a9

File tree

15,908 files changed

+1158861
-142519
lines changed

Some content is hidden

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

15,908 files changed

+1158861
-142519
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This pull request:
1212

1313
> Does this pull request have any related issues?
1414
15-
This pull request:
15+
This pull request has the following related issues:
1616

17-
- resolves #{{TODO: add issue number}}
17+
- #{{TODO: add related issue number}}
1818

1919
## Questions
2020

@@ -34,6 +34,26 @@ No.
3434
3535
- [ ] Read, understood, and followed the [contributing guidelines][contributing].
3636

37+
### AI Assistance
38+
39+
> When authoring the changes proposed in this PR, did you use any kind of AI assistance?
40+
41+
- [ ] Yes
42+
- [ ] No
43+
44+
If you answered "yes" above, how did you use AI assistance?
45+
46+
- [ ] Code generation (e.g., when writing an implementation or fixing a bug)
47+
- [ ] Test/benchmark generation
48+
- [ ] Documentation (including examples)
49+
- [ ] Research and understanding
50+
51+
#### Disclosure
52+
53+
> If you answered "yes" to using AI assistance, please provide a short disclosure indicating how you used AI assistance. This helps reviewers determine how much scrutiny to apply when reviewing your contribution. Example disclosures: "This PR was written primarily by Claude Code." or "I consulted ChatGPT to understand the codebase, but the proposed changes were fully authored manually by myself.".
54+
55+
{{TODO: add disclosure if applicable}}
56+
3757
* * *
3858

3959
@stdlib-js/reviewers

.github/workflows/check_commit_metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# Checkout the repository:
5252
- name: 'Checkout repository'
5353
# Pin action to full length commit SHA
54-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
54+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5555
with:
5656
# Ensure we have access to the scripts directory:
5757
sparse-checkout: |

.github/workflows/check_contributing_guidelines_acceptance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Checkout the repository:
7171
- name: 'Checkout repository'
7272
# Pin action to full length commit SHA
73-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
73+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7474
with:
7575
# Ensure we have access to the scripts directory:
7676
sparse-checkout: |

.github/workflows/check_duplicate_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# Checkout the repository:
6363
- name: 'Checkout repository'
6464
# Pin action to full length commit SHA
65-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
65+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6666
with:
6767
# Ensure we have access to the scripts directory:
6868
sparse-checkout: |

.github/workflows/check_licenses.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# Checkout the repository:
6060
- name: 'Checkout repository'
6161
# Pin action to full length commit SHA
62-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
62+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6363
with:
6464
# Specify whether to remove untracked files before checking out the repository:
6565
clean: false
@@ -81,7 +81,7 @@ jobs:
8181
# Install Node.js:
8282
- name: 'Install Node.js'
8383
# Pin action to full length commit SHA
84-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
84+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
8585
with:
8686
node-version: '20' # 'lts/*'
8787
timeout-minutes: 5
@@ -128,7 +128,7 @@ jobs:
128128
# Upload the log file:
129129
- name: 'Upload log file'
130130
# Pin action to full length commit SHA
131-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
131+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
132132
if: always()
133133
with:
134134
# Define a name for the uploaded artifact:

.github/workflows/check_required_files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
# Create a comment on the pull request informing the user whether the pull request is missing required files:
198198
- name: 'Create a comment on the pull request informing the user whether the pull request is missing required files'
199199
# Pin action to full length commit SHA
200-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
200+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
201201
with:
202202
# Specify the issue or pull request number:
203203
issue-number: ${{ inputs.pull_request_number }}

.github/workflows/check_tracking_issue_closure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# Checkout the repository:
5858
- name: 'Checkout repository'
5959
# Pin action to full length commit SHA
60-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
60+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6161
with:
6262
# Ensure we have access to the scripts directory:
6363
sparse-checkout: |

.github/workflows/cleanup_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Find and update the '## Coverage Report' comment in the PR
5454
- name: 'Update coverage comment in PR'
5555
# Pin action to full length commit SHA
56-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
56+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5757
with:
5858
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
5959
script: |

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
# Checkout the repository:
9494
- name: 'Checkout repository'
9595
# Pin action to full length commit SHA
96-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
96+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9797
with:
9898
# Specify whether to remove untracked files before checking out the repository:
9999
clean: false
@@ -121,7 +121,7 @@ jobs:
121121
# Install Node.js:
122122
- name: 'Install Node.js'
123123
# Pin action to full length commit SHA
124-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
124+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
125125
with:
126126
node-version: '20' # 'lts/*'
127127
timeout-minutes: 5

.github/workflows/create_address_commit_comment_issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Checkout the repository:
5454
- name: 'Checkout repository'
5555
# Pin action to full length commit SHA
56-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
56+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5757
with:
5858
# Ensure we have access to the scripts directory:
5959
sparse-checkout: |

0 commit comments

Comments
 (0)