fix(deps): 🔗 update all dependencies #34
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
19.6.1
->19.7.1
19.6.0
->19.7.1
0.0.7
->0.0.8
0.3.8
->0.5.2
22.10.7
->22.13.4
19.0.7
->19.0.10
19.0.3
->19.0.4
8.20.0
->8.24.1
14.7.5
->15.0.9
11.3.1
->11.5.6
2.0.2
->3.0.0
14.7.5
->15.0.9
15.4.1
->15.4.3
0.473.0
->0.475.0
14.2.21
->15.1.7
9.15.0
->10.4.1
8.5.1
->8.5.2
3.4.17
->4.0.6
3.103.2
->3.109.1
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
fuma-nama/fumadocs (@fumadocs/cli)
v0.0.8
Compare Source
Patch Changes
4be74f6
: Improve CLIopennextjs/opennextjs-cloudflare (@opennextjs/cloudflare)
v0.5.2
Compare Source
Patch Changes
#372
522076b
Thanks @dario-piotrowicz! - add "async mode" togetCloudflareContext
Add an
async
option togetCloudflareContext({async})
to run it in "async mode", the difference being that the returned value is apromise of the Cloudflare context instead of the context itself
The main of this is that it allows the function to also run during SSG (since the missing context can be created on demand).
v0.5.1
Compare Source
Patch Changes
ad895ed
: fix: vercel og patch not moving to right node_modules directoryThere are two separate places where the node_modules could be. One is a package-scoped node_modules which does not always exist - if it doesn't exist, the server functions-scoped node_modules is used.
v0.5.0
Compare Source
Minor Changes
82bb588
: feat: basic in-memory de-duping revalidation queuePatch Changes
2e48d4f
: fix: make sure that fetch cacheset
s are properly awaitedNext.js does not await promises that update the incremental cache for fetch requests,
that is needed in our runtime otherwise the cache updates get lost, so this change
makes sure that the promise is properly awaited via
waitUntil
0c26049
: fix path to file template inopen-next.config.ts
.v0.4.8
Compare Source
Patch Changes
ac8b271
: fix waitUntilCalling
waitUntil
/after
was failing when mulitple requests were handled concurrently.This is fixed by pulling opennextjs/opennextjs-aws#733
761a312
: importrandomUUID
fromnode:crypto
to support NodeJS 18v0.4.7
Compare Source
Patch Changes
420b598
: Fix asset cache patha19b34d
: perf: reduce CPU and memory usage by limiting code to AST parsingf30a5fe
: bump@opennextjs/aws
dependency tohttps://pkg.pr.new/@​opennextjs/aws@727
6791cea
: Use kebab-case for the KV Cache.a630aea
: fix: enable using thedirect
queue for isrThe
direct
mode is not recommended for use in production as it does not de-dupe requests.f30a5fe
: Fix: make sure that the kvCache doesn't serve stale cache values from assets when there is no KV bindingv0.4.6
Compare Source
Patch Changes
9561277
: fix: remove dynamic require for map fileESBuild tries to load all files in the chunks folder with
require("./chunks/" + var)
.This is an error when the folder contains map file.
v0.4.5
Compare Source
Patch Changes
1ccff65
: bump@opennextjs/aws
dependency tohttps://pkg.pr.new/@​opennextjs/aws@724
this bump fixes rewrites to external urls not working when the external urls
point to resources hosted on the Cloudflare network
30374b9
: fix: Drop the module condition from ESBuildBecause Next (via nft) does not use the module condition, ESBuild should not use it.
Otherwise we might end up with missing files and a broken build.
v0.4.4
Compare Source
Patch Changes
6103547
: fix: provide a proper error message when usinggetCloudflareContext
in static routesgetCloudflareContext
can't be used in static routes, currently a misleading errormessage incorrectly tells the developer that they haven't called
initOpenNextCloudflareForDev
in their config file, this change updates such error message to properly clarify what
the issue is (and how to solve it)
0a6191d
: fix the encoding of __NEXT_PRIVATE_STANDALONE_CONFIGda7f8d8
: fix: enable PPR withwrangler dev
714172d
: fix: trailing slash redirect0892679
: fix: inline optional dependencies when bundling the serverv0.4.3
Compare Source
Patch Changes
9d45ee8
: fix the error message of getCloudflareContextHardcode function names that would get mangled otherwise.
ac52954
: bump thewrangler
peer dependency (so to avoid multipleUsing vars defined in .dev.vars
logs during local development)v0.4.2
Compare Source
Patch Changes
1b3a972
: Dump ESBuild metadata tohandler.mjs.meta.json
The ESBuild metadata are written to a file alongside
handler.mjs
in
.open-next/server-functions/default/...
5c90521
: refactor: Make the list of optional dependencies configurable67acb2f
: fix build issues with@opentelemetry
By using the pre-compiled library provided by Next.
3ed6cd1
: fix: syntax errorv0.4.1
Compare Source
Patch Changes
1a2b815
: fix: make sure that theinitOpenNextCloudflareForDev()
logic runs only onceCurrently calling
initOpenNextCloudflareForDev()
in the Next.js config file causesthis initialization logic to run twice, consuming more resources and causing extra
noise in the terminal logs, this change makes sure that the initialization logic
is run only once instead
v0.4.0
Compare Source
Minor Changes
8de2c04
: introduce newinitOpenNextCloudflareForDev
utility and makegetCloudflareContext
synchronousthis change introduces a new
initOpenNextCloudflareForDev
function that must called in the Next.js config file to integrate the Next.js dev server with the open-next Cloudflare adapter.Also makes
getCloudflareContext
synchronous.Additionally the
getCloudflareContext
can now work during local development (next dev
) in the edge runtime (including middlewares).Moving forward we'll recommend that all applications include the use of the
initOpenNextCloudflareForDev
utility in their config file (there is no downside in doing so and it only effect local development).Example:
Patch Changes
4ec334a
: fix: @vercel/og failing due to using the node version.Patches usage of the @vercel/og library to require the edge runtime version, and enables importing of the fallback font.
v0.3.10
Compare Source
Patch Changes
48f863f
: fix: do not requirecaniuse-lite
caniuse-lite
is an optional dependency.27ab1ab
: refactor: use the new regex utility for constructing cross-platform pathsv0.3.9
Compare Source
Patch Changes
67fafeb
: fix top level awaits not working in middlewares by bumping the@opennextjs/aws
packagetypescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.24.1
Compare Source
🩹 Fixes
accessor
methods with a function initializer (#10796)static
accessor
properties (#10814)accessor
property declaration (#10813)accessor
class properties for missing accessibility modifier (#10805)accessor
class properties with a function initializer (#10804)accessor
properties with a function initializer (#10794)accessor
class properties (#10789)any
value assigned as an initializer of anaccessor
property (#10785)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.24.0
Compare Source
🚀 Features
allowConstantLoopConditions
more granular (#10639)🩹 Fixes
allowNumberAndString
isfalse
(#10737)❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.23.0
Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.22.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.21.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
lint-staged/lint-staged (lint-staged)
v15.4.3
Compare Source
Patch Changes
cbfed1d
Thanks @tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.v15.4.2
Compare Source
Patch Changes
8827ebf
Thanks @iiroj! - Change lint-staged's dependencies to use caret (^
) ranges instead of tilde (~
). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.lucide-icons/lucide (lucide-react)
v0.475.0
: New icons 0.475.0Compare Source
New icons 🎨
circle-small
(#2607) by @jamiemlawmars-stroke
(#2607) by @jamiemlawmars
(#2607) by @jamiemlawnon-binary
(#2607) by @jamiemlawtransgender
(#2607) by @jamiemlawvenus-and-mars
(#2607) by @jamiemlawvenus
(#2607) by @jamiemlawv0.474.0
: New icons 0.474.0Compare Source
Modified Icons 🔨
expand
(#2677) by @jguddasvercel/next.js (next)
v15.1.7
Compare Source
v15.1.6
Compare Source
v15.1.5
Compare Source
Core Changes
Credits
Huge thanks to @ijjk, @huozhi, @matmannion and @ztanner for helping!
v15.1.4
Compare Source
Core Changes
Credits
Huge thanks to @ and @ for helping!
v15.1.3
Compare Source
v15.1.2
Compare Source
v15.1.1
Compare Source
v15.1.0
Compare Source
Core Changes
server-source-maps
scenarios to cover Edge runtime: #72288swc_css
: #72602rc
from URL: #72599no-img-element
lint error message: #72410"use cache"
closure args into a single parameter: #72587"use cache"
functions: #72506clientSegmentCache
flag: #72626compiler.define
option: #71802getting-started/react-essentials
path: #722505.6.3
: #72625@capsizecss/metrics
to 3.4.0 for Geist Google Font: #72746enabled
config from server actions transforms: #72755eslint-plugin-react
to 7.37.0: #727595c56b873-20241107
to7ac8e612-20241113
: #72768"use cache"
is used withoutdynamicIO
enabled: #72781legacy-js-api
warning: #726327ac8e612-20241113
to380f5d67-20241113
: #72819revalidate(Tag|Path)
toexpire(Tag|Path)
: #72826prefetch
API: #72861next-size-adjust
meta tag: #72994typedEnv
: #70951next start
: #73105Configuration
📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.