Skip to content

Commit 992f519

Browse files
authored
Merge branch 'denoland:main' into throttle-dynamic
2 parents ef76344 + 823ee48 commit 992f519

File tree

1,231 files changed

+27383
-2422
lines changed

Some content is hidden

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

1,231 files changed

+27383
-2422
lines changed

.github/labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ json:
6767
jsonc:
6868
- changed-files:
6969
- any-glob-to-any-file: jsonc/**
70+
math:
71+
- changed-files:
72+
- any-glob-to-any-file: math/**
7073
media-types:
7174
- changed-files:
7275
- any-glob-to-any-file: media_types/**

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Clone repository
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- name: Set up Deno
3535
uses: denoland/setup-deno@v2
@@ -42,6 +42,10 @@ jobs:
4242
deno task test
4343
deno task test:with-unsafe-proto
4444
45+
- name: Run tools tests
46+
run: deno task test:tools
47+
if: matrix.deno == 'canary'
48+
4549
- name: Run timezone-dependent tests
4650
run: |
4751
TZ=Australia/Sydney deno test datetime
@@ -88,15 +92,15 @@ jobs:
8892

8993
steps:
9094
- name: Clone repository
91-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9296

9397
- name: Set up Deno
9498
uses: denoland/setup-deno@v2
9599
with:
96100
cache: true
97101

98102
- name: Set up Node.js
99-
uses: actions/setup-node@v5
103+
uses: actions/setup-node@v6
100104
with:
101105
node-version: ${{ matrix.node }}
102106

@@ -116,7 +120,7 @@ jobs:
116120

117121
steps:
118122
- name: Clone repository
119-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
120124

121125
- name: Set up Deno
122126
uses: denoland/setup-deno@v2
@@ -142,7 +146,7 @@ jobs:
142146
- windows-latest
143147
steps:
144148
- name: Clone repository
145-
uses: actions/checkout@v5
149+
uses: actions/checkout@v6
146150
with:
147151
persist-credentials: false
148152

@@ -172,7 +176,7 @@ jobs:
172176
module: [crypto/_wasm]
173177
steps:
174178
- name: Clone repository
175-
uses: actions/checkout@v5
179+
uses: actions/checkout@v6
176180
with:
177181
# required to check for changes
178182
fetch-depth: 2

.github/workflows/title.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
io(/unstable)?
6161
json(/unstable)?
6262
jsonc(/unstable)?
63+
math(/unstable)?
6364
media-types(/unstable)?
6465
msgpack(/unstable)?
6566
net(/unstable)?
@@ -75,4 +76,5 @@ jobs:
7576
ulid(/unstable)?
7677
uuid(/unstable)?
7778
webgpu(/unstable)?
79+
xml(/unstable)?
7880
yaml(/unstable)?

.github/workflows/version_bump.yml

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

1111
steps:
1212
- name: Clone repository
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Deno
1616
uses: denoland/setup-deno@v2

.github/workflows/workspace_publish.yml

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

1717
steps:
1818
- name: Clone repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Set up Deno
2222
uses: denoland/setup-deno@v2

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ coverage/
1717
.vim
1818
_tmp/
1919
!_tmp/.keep
20+
*.sublime-project
21+
*.sublime-workspace
2022

2123
# tsconfig for bun
2224
/tsconfig.json

0 commit comments

Comments
 (0)