Skip to content

Commit 9cba897

Browse files
Version Packages
1 parent 323448b commit 9cba897

11 files changed

Lines changed: 40 additions & 48 deletions

.changeset/breezy-owls-stand.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/cool-tools-add.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eager-masks-work.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/filter-native-platform-binaries.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/i18n_redirects_with_query_parameters.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slick-crabs-hear.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/thirty-turtles-tan.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/app-pages-router/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# app-pages-router
22

3+
## 0.1.55
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`fad4632ef4278db0a040b3a3948d259c1cf43c05`](https://github.com/opennextjs/opennextjs-aws/commit/fad4632ef4278db0a040b3a3948d259c1cf43c05), [`323448b83f6c292398338f9d6307c113d1246da9`](https://github.com/opennextjs/opennextjs-aws/commit/323448b83f6c292398338f9d6307c113d1246da9), [`8210035cc30720702a6052e22bbf9275ef54c636`](https://github.com/opennextjs/opennextjs-aws/commit/8210035cc30720702a6052e22bbf9275ef54c636), [`3a2b1b9497c531e9f07f66f7a140f152a9d8fc26`](https://github.com/opennextjs/opennextjs-aws/commit/3a2b1b9497c531e9f07f66f7a140f152a9d8fc26), [`e49782af723ec97f1373e654a7e400e1ba3e827e`](https://github.com/opennextjs/opennextjs-aws/commit/e49782af723ec97f1373e654a7e400e1ba3e827e), [`1a75cc712c56448f5d77abb810cf4af259802a28`](https://github.com/opennextjs/opennextjs-aws/commit/1a75cc712c56448f5d77abb810cf4af259802a28), [`92f1f300341321a820e60133eb9ee399b39fc5d1`](https://github.com/opennextjs/opennextjs-aws/commit/92f1f300341321a820e60133eb9ee399b39fc5d1)]:
8+
- @opennextjs/aws@3.10.0
9+
310
## 0.1.54
411

512
### Patch Changes

examples/app-pages-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-pages-router",
3-
"version": "0.1.54",
3+
"version": "0.1.55",
44
"private": true,
55
"scripts": {
66
"openbuild": "node ../../packages/open-next/dist/index.js build --build-command \"npx turbo build\"",

packages/open-next/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# open-next
22

3+
## 3.10.0
4+
5+
### Minor Changes
6+
7+
- [#1122](https://github.com/opennextjs/opennextjs-aws/pull/1122) [`1a75cc712c56448f5d77abb810cf4af259802a28`](https://github.com/opennextjs/opennextjs-aws/commit/1a75cc712c56448f5d77abb810cf4af259802a28) Thanks [@conico974](https://github.com/conico974)! - Add support for SWR (stale-while-revalidate) in `revalidateTag`
8+
9+
Introduces a new optional method `isStale` in the tag cache for both the original and the next modes. The implementation is mandatory for SWR to work.
10+
11+
It also introduces a `RequestCache` utility that can be used to cache things scoped to a request (stored in the OpenNext internal AsyncLocalStorage context)
12+
13+
### BREAKING CHANGE
14+
15+
`writeTags` for the tag cache signature has changed to `writeTags(tags: NextModeTagCacheWriteInput[]): Promise<void>` for Next mode, and `writeTags(tags: OriginalTagCacheWriteInput[]): Promise<void>` for the original mode.
16+
This is breaking only for custom tag cache implementations, if you are using the default one provided by OpenNext, you don't need to do anything.
17+
18+
`globalThis.isNextAfter15` is no longer available in the cache.
19+
20+
### Patch Changes
21+
22+
- [#1121](https://github.com/opennextjs/opennextjs-aws/pull/1121) [`fad4632ef4278db0a040b3a3948d259c1cf43c05`](https://github.com/opennextjs/opennextjs-aws/commit/fad4632ef4278db0a040b3a3948d259c1cf43c05) Thanks [@ntltd](https://github.com/ntltd)! - Fix ISR revalidation to also accept valid Next.js non-200 status codes (307, 308 and 404)
23+
24+
- [#1135](https://github.com/opennextjs/opennextjs-aws/pull/1135) [`323448b83f6c292398338f9d6307c113d1246da9`](https://github.com/opennextjs/opennextjs-aws/commit/323448b83f6c292398338f9d6307c113d1246da9) Thanks [@ktKongTong](https://github.com/ktKongTong)! - fix: handle multiple same-name headers as array in fetch proxyExternalRequest
25+
26+
- [#1132](https://github.com/opennextjs/opennextjs-aws/pull/1132) [`8210035cc30720702a6052e22bbf9275ef54c636`](https://github.com/opennextjs/opennextjs-aws/commit/8210035cc30720702a6052e22bbf9275ef54c636) Thanks [@conico974](https://github.com/conico974)! - add support for prefetch inlining in the cache interceptor
27+
28+
- [#1117](https://github.com/opennextjs/opennextjs-aws/pull/1117) [`3a2b1b9497c531e9f07f66f7a140f152a9d8fc26`](https://github.com/opennextjs/opennextjs-aws/commit/3a2b1b9497c531e9f07f66f7a140f152a9d8fc26) Thanks [@clichedmoog](https://github.com/clichedmoog)! - Auto-filter non-Linux platform-specific native binaries (e.g. @swc/core-darwin-arm64) from Lambda bundles during traced files copy
29+
30+
- [#1118](https://github.com/opennextjs/opennextjs-aws/pull/1118) [`e49782af723ec97f1373e654a7e400e1ba3e827e`](https://github.com/opennextjs/opennextjs-aws/commit/e49782af723ec97f1373e654a7e400e1ba3e827e) Thanks [@tsurumeso](https://github.com/tsurumeso)! - Preserve query parameters during i18n redirects to a localized path
31+
32+
- [#1125](https://github.com/opennextjs/opennextjs-aws/pull/1125) [`92f1f300341321a820e60133eb9ee399b39fc5d1`](https://github.com/opennextjs/opennextjs-aws/commit/92f1f300341321a820e60133eb9ee399b39fc5d1) Thanks [@rikublock](https://github.com/rikublock)! - fix: dereference symlinks when copying public folder
33+
334
## 3.9.16
435

536
### Patch Changes

0 commit comments

Comments
 (0)