Skip to content

Commit 5e7f48e

Browse files
Version Packages
1 parent 1ed738f commit 5e7f48e

File tree

10 files changed

+57
-49
lines changed

10 files changed

+57
-49
lines changed

.changeset/khaki-dragons-build.md

-5
This file was deleted.

.changeset/lucky-ghosts-knock.md

-5
This file was deleted.

.changeset/six-icons-knock.md

-5
This file was deleted.

.changeset/sour-pandas-buy.md

-31
This file was deleted.

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.17
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1ed738fed4184fe1f509c17d87239a6ec89cd014`](https://github.com/opennextjs/opennextjs-aws/commit/1ed738fed4184fe1f509c17d87239a6ec89cd014), [`3b979a2c18f2cf3f930f89587158fda29645fbbc`](https://github.com/opennextjs/opennextjs-aws/commit/3b979a2c18f2cf3f930f89587158fda29645fbbc), [`de53c4d2458f22d056320b71bd28567b8ac6ec04`](https://github.com/opennextjs/opennextjs-aws/commit/de53c4d2458f22d056320b71bd28567b8ac6ec04), [`64ee6845dd38d8b543ecbe1cda807ae1f9a37a16`](https://github.com/opennextjs/opennextjs-aws/commit/64ee6845dd38d8b543ecbe1cda807ae1f9a37a16)]:
8+
- @opennextjs/aws@3.6.0
9+
310
## 0.1.16
411

512
### Patch Changes

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.16",
3+
"version": "0.1.17",
44
"private": true,
55
"scripts": {
66
"openbuild": "node ../../packages/open-next/dist/index.js build --build-command \"npx turbo build\"",

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.17
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1ed738fed4184fe1f509c17d87239a6ec89cd014`](https://github.com/opennextjs/opennextjs-aws/commit/1ed738fed4184fe1f509c17d87239a6ec89cd014), [`3b979a2c18f2cf3f930f89587158fda29645fbbc`](https://github.com/opennextjs/opennextjs-aws/commit/3b979a2c18f2cf3f930f89587158fda29645fbbc), [`de53c4d2458f22d056320b71bd28567b8ac6ec04`](https://github.com/opennextjs/opennextjs-aws/commit/de53c4d2458f22d056320b71bd28567b8ac6ec04), [`64ee6845dd38d8b543ecbe1cda807ae1f9a37a16`](https://github.com/opennextjs/opennextjs-aws/commit/64ee6845dd38d8b543ecbe1cda807ae1f9a37a16)]:
8+
- @opennextjs/aws@3.6.0
9+
310
## 0.1.16
411

512
### Patch Changes

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.16",
3+
"version": "0.1.17",
44
"private": true,
55
"scripts": {
66
"openbuild": "node ../../packages/open-next/dist/index.js build --streaming --build-command \"npx turbo build\"",

packages/open-next/CHANGELOG.md

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

3+
## 3.6.0
4+
5+
### Minor Changes
6+
7+
- [#843](https://github.com/opennextjs/opennextjs-aws/pull/843) [`64ee6845dd38d8b543ecbe1cda807ae1f9a37a16`](https://github.com/opennextjs/opennextjs-aws/commit/64ee6845dd38d8b543ecbe1cda807ae1f9a37a16) Thanks [@conico974](https://github.com/conico974)! - Introduce support for the composable cache
8+
9+
BREAKING CHANGE: The interface for the Incremental cache has changed. The new interface use a Cache type instead of a boolean to distinguish between the different types of caches. It also includes a new Cache type for the composable cache. The new interface is as follows:
10+
11+
```ts
12+
export type CacheEntryType = "cache" | "fetch" | "composable";
13+
14+
export type IncrementalCache = {
15+
get<CacheType extends CacheEntryType = "cache">(
16+
key: string,
17+
cacheType?: CacheType
18+
): Promise<WithLastModified<CacheValue<CacheType>> | null>;
19+
set<CacheType extends CacheEntryType = "cache">(
20+
key: string,
21+
value: CacheValue<CacheType>,
22+
isFetch?: CacheType
23+
): Promise<void>;
24+
delete(key: string): Promise<void>;
25+
name: string;
26+
};
27+
```
28+
29+
NextModeTagCache also get a new function `getLastRevalidated` used for the composable cache:
30+
31+
```ts
32+
getLastRevalidated(tags: string[]): Promise<number>;
33+
```
34+
35+
### Patch Changes
36+
37+
- [#844](https://github.com/opennextjs/opennextjs-aws/pull/844) [`1ed738fed4184fe1f509c17d87239a6ec89cd014`](https://github.com/opennextjs/opennextjs-aws/commit/1ed738fed4184fe1f509c17d87239a6ec89cd014) Thanks [@conico974](https://github.com/conico974)! - Fix middleware search params with multiple values
38+
39+
- [#833](https://github.com/opennextjs/opennextjs-aws/pull/833) [`3b979a2c18f2cf3f930f89587158fda29645fbbc`](https://github.com/opennextjs/opennextjs-aws/commit/3b979a2c18f2cf3f930f89587158fda29645fbbc) Thanks [@conico974](https://github.com/conico974)! - pass revalidate for ISR/SSG cache
40+
41+
- [#839](https://github.com/opennextjs/opennextjs-aws/pull/839) [`de53c4d2458f22d056320b71bd28567b8ac6ec04`](https://github.com/opennextjs/opennextjs-aws/commit/de53c4d2458f22d056320b71bd28567b8ac6ec04) Thanks [@james-elicx](https://github.com/james-elicx)! - fix edge middleware path on windows
42+
343
## 3.5.8
444

545
### Patch Changes

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.5.8",
6+
"version": "3.6.0",
77
"bin": {
88
"open-next": "./dist/index.js"
99
},

0 commit comments

Comments
 (0)