Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 24, 2025
1 parent 71d737c commit 036469f
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 34 deletions.
9 changes: 0 additions & 9 deletions .changeset/orange-impalas-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-carrots-build.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/sweet-kiwis-agree.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-olives-try.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/app-pages-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# app-pages-router

## 0.1.6

### Patch Changes

- Updated dependencies [[`7eda030388880d8ad25d3f4692e24bac31b7ec4f`](https://github.com/opennextjs/opennextjs-aws/commit/7eda030388880d8ad25d3f4692e24bac31b7ec4f), [`e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050`](https://github.com/opennextjs/opennextjs-aws/commit/e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050), [`1981a47dd3dbc77066d2bf5cad5d5d406fecb010`](https://github.com/opennextjs/opennextjs-aws/commit/1981a47dd3dbc77066d2bf5cad5d5d406fecb010), [`b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5`](https://github.com/opennextjs/opennextjs-aws/commit/b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5)]:
- @opennextjs/aws@3.4.1

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-pages-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-pages-router",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"scripts": {
"openbuild": "node ../../packages/open-next/dist/index.js build --build-command \"npx turbo build\"",
Expand Down
7 changes: 7 additions & 0 deletions examples/app-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# app-router

## 0.1.6

### Patch Changes

- Updated dependencies [[`7eda030388880d8ad25d3f4692e24bac31b7ec4f`](https://github.com/opennextjs/opennextjs-aws/commit/7eda030388880d8ad25d3f4692e24bac31b7ec4f), [`e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050`](https://github.com/opennextjs/opennextjs-aws/commit/e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050), [`1981a47dd3dbc77066d2bf5cad5d5d406fecb010`](https://github.com/opennextjs/opennextjs-aws/commit/1981a47dd3dbc77066d2bf5cad5d5d406fecb010), [`b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5`](https://github.com/opennextjs/opennextjs-aws/commit/b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5)]:
- @opennextjs/aws@3.4.1

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/app-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-router",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"scripts": {
"openbuild": "node ../../packages/open-next/dist/index.js build --streaming --build-command \"npx turbo build\"",
Expand Down
23 changes: 23 additions & 0 deletions packages/open-next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# open-next

## 3.4.1

### Patch Changes

- [#708](https://github.com/opennextjs/opennextjs-aws/pull/708) [`7eda030388880d8ad25d3f4692e24bac31b7ec4f`](https://github.com/opennextjs/opennextjs-aws/commit/7eda030388880d8ad25d3f4692e24bac31b7ec4f) Thanks [@sommeeeer](https://github.com/sommeeeer)! - fix: add early return for downplayed aws-sdk errors

In the logger adapter:

An issue was identified where downplayed errors from the aws-sdk client (f.ex NoSuchKey from S3) would not return from the function early. This caused unnecessary invocation of `console.error` outside the conditional.

- [#704](https://github.com/opennextjs/opennextjs-aws/pull/704) [`e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050`](https://github.com/opennextjs/opennextjs-aws/commit/e5678b39e0f3c21d3e30d08a89f5cb0acdd3d050) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure edge function entries are properly awaited

- [#702](https://github.com/opennextjs/opennextjs-aws/pull/702) [`1981a47dd3dbc77066d2bf5cad5d5d406fecb010`](https://github.com/opennextjs/opennextjs-aws/commit/1981a47dd3dbc77066d2bf5cad5d5d406fecb010) Thanks [@vicb](https://github.com/vicb)! - refactor(cache): deprecate global disableDynamoDBCache and disableIncrementalCache

In the cache adapter:

- `globalThis.disableDynamoDBCache` is deprecated and will be removed.
use `globalThis.openNextConfig.dangerous?.disableTagCache` instead.
- `globalThis.disableIncrementalCache` is deprecated and will be removed.
use `globalThis.openNextConfig.dangerous?.disableIncrementalCache` instead.

- [#709](https://github.com/opennextjs/opennextjs-aws/pull/709) [`b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5`](https://github.com/opennextjs/opennextjs-aws/commit/b4ad0f0e0f6069ca87f3b72c23d655cedebc86e5) Thanks [@conico974](https://github.com/conico974)! - fix: stableIncrementalCache is only used for Next.js >= 14.1

## 3.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/open-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"access": "public"
},
"name": "@opennextjs/aws",
"version": "3.4.0",
"version": "3.4.1",
"bin": {
"open-next": "./dist/index.js"
},
Expand Down

0 comments on commit 036469f

Please # to comment.