Skip to content

Commit

Permalink
Merge branch 'main' into vercel-node-runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
smaeda-ks authored Jan 26, 2023
2 parents 5c6c601 + 917c7e6 commit 49d2c3c
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 81 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v2.1.0

[compare changes](https://github.com/unjs/nitro/compare/v2.0.0...v2.1.0)


### 🚀 Enhancements

- Add `shouldBypassCache` option to cache utils ([#874](https://github.com/unjs/nitro/pull/874))
- **cache:** Allow async `getKey` option ([#878](https://github.com/unjs/nitro/pull/878))

### 🩹 Fixes

- **scan:** Do not dedup middleware handlers ([#880](https://github.com/unjs/nitro/pull/880))
- **externals:** Use portable symlinks ([#882](https://github.com/unjs/nitro/pull/882))

### 📖 Documentation

- **deployment:** Heroku with nginx ([#873](https://github.com/unjs/nitro/pull/873))
- **netlify:** Clarify placement of `_redirects` file ([#870](https://github.com/unjs/nitro/pull/870))
- **digitalocean:** Update deployment guide ([#862](https://github.com/unjs/nitro/pull/862))

### 🏡 Chore

- Update dependencies ([963c587](https://github.com/unjs/nitro/commit/963c587))

### ❤️ Contributors

- Pooya Parsa <pooya@pi0.io>
- Daniel Roe <daniel@roe.dev>
- MiniDigger < Martin>
- Christopher Lis
- Ola Alsaker <ola.alsaker@gmail.com>
- Adeyemi Adetayo <adeyemiadetayo07@gmail.com>

## v2.0.0

[compare changes](https://github.com/unjs/nitro/compare/v2.0.0-rc.1...v2.0.0)
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nitropack",
"version": "2.0.0",
"version": "2.1.0",
"description": "Build and Deploy Universal JavaScript Servers",
"repository": "unjs/nitro",
"license": "MIT",
Expand Down Expand Up @@ -54,7 +54,7 @@
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-wasm": "^6.1.2",
"@rollup/pluginutils": "^5.0.2",
"@vercel/nft": "^0.22.6",
Expand All @@ -64,7 +64,7 @@
"chokidar": "^3.5.3",
"consola": "^2.15.3",
"cookie-es": "^0.5.0",
"defu": "^6.1.1",
"defu": "^6.1.2",
"destr": "^1.2.2",
"dot-prop": "^7.2.0",
"esbuild": "^0.17.4",
Expand All @@ -73,14 +73,14 @@
"fs-extra": "^11.1.0",
"globby": "^13.1.3",
"gzip-size": "^7.0.0",
"h3": "^1.0.2",
"h3": "^1.1.0",
"hookable": "^5.4.2",
"http-proxy": "^1.18.1",
"is-primitive": "^3.0.1",
"jiti": "^1.16.2",
"klona": "^2.0.6",
"knitwork": "^1.0.0",
"listhen": "^1.0.1",
"listhen": "^1.0.2",
"mime": "^3.0.0",
"mlly": "^1.1.0",
"mri": "^1.2.0",
Expand All @@ -101,7 +101,7 @@
"source-map-support": "^0.5.21",
"std-env": "^3.3.1",
"ufo": "^1.0.1",
"unenv": "^1.0.1",
"unenv": "^1.0.2",
"unimport": "^2.0.1",
"unstorage": "^1.0.1"
},
Expand All @@ -113,7 +113,7 @@
"@types/node-fetch": "^2.6.2",
"@types/semver": "^7.3.13",
"@types/serve-static": "^1.15.0",
"@vitest/coverage-c8": "^0.28.1",
"@vitest/coverage-c8": "^0.28.2",
"c8": "^7.12.0",
"changelogen": "^0.4.1",
"edge-runtime": "2.0.3",
Expand All @@ -125,9 +125,9 @@
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"unbuild": "^1.1.1",
"vitest": "^0.28.1"
"vitest": "^0.28.2"
},
"packageManager": "pnpm@7.25.0",
"packageManager": "pnpm@7.26.0",
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
Expand Down
Loading

0 comments on commit 49d2c3c

Please sign in to comment.