Skip to content

Commit 7fce524

Browse files
authored
Merge branch 'v2' into fix/respect-stale-max-age
2 parents 7105e57 + 722d586 commit 7fce524

188 files changed

Lines changed: 9250 additions & 6341 deletions

File tree

Some content is hidden

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

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "nitro-devcontainer",
55
"forwardPorts": [3000],
6-
"image": "node:20.17.0",
6+
"image": "node:22.11.0",
77
"features": {},
88
"customizations": {
99
"vscode": {

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ body:
99
https://github.com/nuxt/nuxt/issues/new/choose
1010
1111
Please use one of the templates below to create a minimal reproduction :
12-
13-
👉 https://stackblitz.com/github/unjs/nitro/tree/starter
14-
👉 https://codesandbox.io/p/github/unjs/nitro/starter
12+
13+
👉 https://stackblitz.com/github/nitrojs/nitro/tree/starter
14+
👉 https://codesandbox.io/p/github/nitrojs/nitro/starter
1515
- type: textarea
1616
id: bug-env
1717
attributes:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: 📚 Nitro Documentation
4-
url: https://nitro.unjs.io/
4+
url: https://nitro.build/
55
about: Check the documentation for usage of Nuxt 3
66
- name: 💬 Discussions
7-
url: https://github.com/unjs/nitro/discussions
7+
url: https://github.com/nitrojs/nitro/discussions
88
about: Use discussions if you have an idea for improvement and asking questions
99
- name: 🔗 Nuxt related Issues
1010
url: https://github.com/nuxt/nuxt/issues/new/choose

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
- If it is a bug fix, please ensure there is a linked issue with minimal (nitro) reproduction and/or enough context to explain exactly what it is fixing and why this fix is the best option in Nitro.
88
9-
- If it is a security fix, please always report it first as per https://github.com/unjs/nitro/blob/main/SECURITY.md
9+
- If it is a security fix, please always report it first as per https://github.com/nitrojs/nitro/blob/main/SECURITY.md
1010
1111
- If it is a new feature, please ensure it has already been discussed. Keep the scope of changes minimal to what is essential, and try to break down your changes into smaller PRs when possible.
1212

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- run: corepack enable
16+
- run: npm i -g --force corepack && corepack enable
1717
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 20

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
- run: corepack enable
18+
- run: npm i -g --force corepack && corepack enable
1919
- uses: actions/setup-node@v4
2020
with:
2121
node-version: 20
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0
37-
- run: corepack enable
37+
- run: npm i -g --force corepack && corepack enable
3838
- uses: actions/setup-node@v4
3939
with:
4040
node-version: 20
@@ -46,12 +46,12 @@ jobs:
4646
- uses: denoland/setup-deno@v1
4747
if: ${{ matrix.os != 'windows-latest' }}
4848
with:
49-
deno-version: v1.x
49+
deno-version: v2.x
5050
- run: pnpm install
5151
- run: pnpm test:types
5252
if: ${{ matrix.os != 'windows-latest' }}
5353
- run: pnpm build
54-
- run: pnpm vitest-es --coverage
54+
- run: pnpm vitest --coverage
5555
env:
5656
NODE_OPTIONS: --experimental-vm-modules --enable-source-maps
5757
# - uses: codecov/codecov-action@v3

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ staticwebapp.config.json
7171
.eslintcache
7272
playground/firebase.json
7373
.zeabur
74+
.apphosting
7475

7576
test/fixture/functions
7677
.data

CHANGELOG.md

Lines changed: 1863 additions & 1454 deletions
Large diffs are not rendered by default.

README.md

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

88
<!-- /automd -->
99

10-
Create web servers that run anywhere! 📖 [**documentation**](https://nitro.unjs.io)
10+
Create web servers that run anywhere! 📖 [**documentation**](https://nitro.build)
1111

1212
> [!NOTE]
13-
> You are on the v2 branch. Check [main branch](https://github.com/unjs/nitro/tree/main) for v3 development tree.
13+
> You are on the v2 branch. Check [main branch](https://github.com/nitrojs/nitro/tree/main) for v3 development tree.
1414
1515
## Contribution
1616

@@ -31,11 +31,11 @@ Create web servers that run anywhere! 📖 [**documentation**](https://nitro.unj
3131

3232
<!-- automd:contributors license=MIT author="pi0" -->
3333

34-
Published under the [MIT](https://github.com/unjs/nitro/blob/main/LICENSE) license.
35-
Made by [@pi0](https://github.com/pi0) and [community](https://github.com/unjs/nitro/graphs/contributors) 💛
34+
Published under the [MIT](https://github.com/nitrojs/nitro/blob/main/LICENSE) license.
35+
Made by [@pi0](https://github.com/pi0) and [community](https://github.com/nitrojs/nitro/graphs/contributors) 💛
3636
<br><br>
37-
<a href="https://github.com/unjs/nitro/graphs/contributors">
38-
<img src="https://contrib.rocks/image?repo=unjs/nitro" />
37+
<a href="https://github.com/nitrojs/nitro/graphs/contributors">
38+
<img src="https://contrib.rocks/image?repo=nitrojs/nitro" />
3939
</a>
4040

4141
<!-- /automd -->

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## ⚠️ Reporting a Vulnerability
44

5-
To report a vulnerability, please send an email to [security+nitro@unjs.io](mailto:security+nitro@unjs.io) or submit it for a bounty via [Huntr](https://huntr.dev/bounties/disclose/?target=https://github.com/unjs/nitro).
5+
To report a vulnerability, please send an email to [security+nitro@unjs.io](mailto:security+nitro@unjs.io) or submit it for a bounty via [Huntr](https://huntr.dev/bounties/disclose/?target=https://github.com/nitrojs/nitro).
66

77
All security vulnerabilities will be promptly verified and addressed.
88

0 commit comments

Comments
 (0)