Skip to content

Commit 02c3acf

Browse files
Version Packages
1 parent 6ff03ec commit 02c3acf

File tree

9 files changed

+54
-40
lines changed

9 files changed

+54
-40
lines changed

Diff for: .changeset/healthy-elephants-scream.md

-7
This file was deleted.

Diff for: .changeset/nasty-boats-boil.md

-5
This file was deleted.

Diff for: .changeset/pink-papayas-smoke.md

-25
This file was deleted.

Diff for: examples/app-pages-router/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# app-pages-router
22

3+
## 0.1.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`6ff03ec8d50ada5eb04de11b14ae670382707f30`](https://github.com/opennextjs/opennextjs-aws/commit/6ff03ec8d50ada5eb04de11b14ae670382707f30), [`867defe3ceacdd1079594202eae1f82391bdcd89`](https://github.com/opennextjs/opennextjs-aws/commit/867defe3ceacdd1079594202eae1f82391bdcd89), [`b59027a5899d25dd5263d1a272b33ec23fb683d3`](https://github.com/opennextjs/opennextjs-aws/commit/b59027a5899d25dd5263d1a272b33ec23fb683d3)]:
8+
- @opennextjs/aws@3.5.0
9+
310
## 0.1.7
411

512
### Patch Changes

Diff for: examples/app-pages-router/package.json

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

Diff for: examples/app-router/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# app-router
22

3+
## 0.1.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`6ff03ec8d50ada5eb04de11b14ae670382707f30`](https://github.com/opennextjs/opennextjs-aws/commit/6ff03ec8d50ada5eb04de11b14ae670382707f30), [`867defe3ceacdd1079594202eae1f82391bdcd89`](https://github.com/opennextjs/opennextjs-aws/commit/867defe3ceacdd1079594202eae1f82391bdcd89), [`b59027a5899d25dd5263d1a272b33ec23fb683d3`](https://github.com/opennextjs/opennextjs-aws/commit/b59027a5899d25dd5263d1a272b33ec23fb683d3)]:
8+
- @opennextjs/aws@3.5.0
9+
310
## 0.1.7
411

512
### Patch Changes

Diff for: examples/app-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-router",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"private": true,
55
"scripts": {
66
"openbuild": "node ../../packages/open-next/dist/index.js build --streaming --build-command \"npx turbo build\"",

Diff for: packages/open-next/CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# open-next
22

3+
## 3.5.0
4+
5+
### Minor Changes
6+
7+
- [#740](https://github.com/opennextjs/opennextjs-aws/pull/740) [`6ff03ec8d50ada5eb04de11b14ae670382707f30`](https://github.com/opennextjs/opennextjs-aws/commit/6ff03ec8d50ada5eb04de11b14ae670382707f30) Thanks [@vicb](https://github.com/vicb)! - refactor: lastModified moved to ALS
8+
9+
BREAKING CHANGE: `lastModified` is moved to ALS as a number from a global map indexed by `requestId`
10+
11+
- [#733](https://github.com/opennextjs/opennextjs-aws/pull/733) [`b59027a5899d25dd5263d1a272b33ec23fb683d3`](https://github.com/opennextjs/opennextjs-aws/commit/b59027a5899d25dd5263d1a272b33ec23fb683d3) Thanks [@vicb](https://github.com/vicb)! - refactor: `waitUntil` passed around via ALS and `OpenNextHandler` signature has changed
12+
13+
BREAKING CHANGE: `waitUntil` is passed around via ALS to fix #713.
14+
15+
`globalThis.openNextWaitUntil` is no more available, you can access `waitUntil`
16+
on the ALS context: `globalThis.__openNextAls.getStore()`
17+
18+
The `OpenNextHandler` signature has changed: the second parameter was a `StreamCreator`.
19+
It was changed to be of type `OpenNextHandlerOptions` which has both a `streamCreator` key
20+
and a `waitUntil` key.
21+
22+
If you use a custom wrapper, you need to update the call to the handler as follow:
23+
24+
```ts
25+
// before
26+
globalThis.openNextWaitUntil = myWaitUntil;
27+
handler(internalEvent, myStreamCreator);
28+
29+
// after
30+
handler(internalEvent, {
31+
streamCreator: myStreamCreator,
32+
waitUntil: myWaitUntil,
33+
});
34+
```
35+
36+
### Patch Changes
37+
38+
- [#727](https://github.com/opennextjs/opennextjs-aws/pull/727) [`867defe3ceacdd1079594202eae1f82391bdcd89`](https://github.com/opennextjs/opennextjs-aws/commit/867defe3ceacdd1079594202eae1f82391bdcd89) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add and expose new `CachedFetchValue` type
39+
340
## 3.4.2
441

542
### Patch Changes

Diff for: packages/open-next/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"access": "public"
44
},
55
"name": "@opennextjs/aws",
6-
"version": "3.4.2",
6+
"version": "3.5.0",
77
"bin": {
88
"open-next": "./dist/index.js"
99
},

0 commit comments

Comments
 (0)