Skip to content

Comments

chore(deps): update dependency @cloudflare/next-on-pages to v1.13.16#58

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/cloudflare-next-on-pages-1.x
Open

chore(deps): update dependency @cloudflare/next-on-pages to v1.13.16#58
renovate[bot] wants to merge 1 commit intomainfrom
renovate/cloudflare-next-on-pages-1.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 9, 2024

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/next-on-pages 1.11.21.13.16 age confidence

Release Notes

cloudflare/next-on-pages (@​cloudflare/next-on-pages)

v1.13.16

Compare Source

Patch Changes
  • 024b161: Deprecate package and pin next and vercel peer dependencies

v1.13.15

Compare Source

Patch Changes
  • 7933c1a: Ignore invalid favicon.ico.rsc nodejs functions being generated by the Vercel CLI (since 46.1.0)

v1.13.14

Compare Source

Patch Changes
  • 2f21b3a: Fix the incorrect application of overrides without a specified path

v1.13.13

Compare Source

Patch Changes
  • 3eb97bb: ignore invalid rsc lambdas created for prerendered functions

    As of vercel@​44.5.4 incorrect lambda rsc functions get generated for prerendered routes, the changes here make sure that such routes get ignored

v1.13.12

Compare Source

Patch Changes
  • 3d651bc: fix internal usage of global instead of globalThis (which causes some reference errors)

v1.13.11

Compare Source

Patch Changes

v1.13.10

Compare Source

Patch Changes
  • 5778900: Allow Wrangler v4 as a peer dependency

v1.13.9

Compare Source

Patch Changes
  • 6b981ee: chore: Extract module name in dynamic imports so that esbuild doesn't minify them

v1.13.8

Compare Source

Patch Changes
  • 52f0113: chore: Extract module name in dynamic imports

v1.13.7

Compare Source

Patch Changes
  • e1d65f4: fix Next.js calling a non-bound waitUntil function
  • edd4fea: Allow import of node:* and cloudflare:* in worker custom entrypoint

v1.13.6

Compare Source

Patch Changes
  • d879acd: Mark async_hooks as external.

v1.13.5

Compare Source

Patch Changes
  • 930a79f: fix: webpack chunks not deduping with sentry (#​886)

    (duplicated changeset needed because the 1.13.4 npm release doesn't properly work)

v1.13.4

Compare Source

Patch Changes
  • 18e0e46: Fix the Webpack chunk deduplication when Sentry is used, as it changes the AST node structure for Webpack chunks.

v1.13.3

Compare Source

Patch Changes
  • d1dce9e: Fix prerendered dynamic ISR functions with catch-all segments
  • e890632: Provide __NEXT_BUILD_ID env var to functions, making them compatible with Next v14.2.8 and newer.

v1.13.2

Compare Source

Patch Changes
  • 968171a: Fix autogenerated content also getting appended to the original public/_headers file

  • 2115b9e: fix: implement route specific global scoping strategy

    currently routes all share the same global scope, this can be problematic and cause
    race conditions and failures

    One example of this is the following code that is present in route function files:

    self.webpackChunk_N_E = ...

    and

    self.webpackChunk_N_E.push(...)

    this indicates that an in-memory global collection of the webpack chunks is shared by all routes,
    this combined with the fact that chunks can have their own module state this can easily cause routes to conflict with each other at runtime.

    So, in order to solve the above issue, all route functions are wrapped in a function which accepts as parameters, thus overrides, the self, globalThis and global symbols. The symbols
    will be resolved with proxies that redirect setters to route-scoped in-memory maps and
    getters to the above mentioned map's values and fallback to the original symbol values otherwise
    (i.e. globalThis will be overridden by a proxy that, when setting values, sets them in a separate
    location and, when getting values, gets them from said location if present there or from the real
    globalThis otherwise)

v1.13.1

Compare Source

Patch Changes
  • 8c04184: fix typescript declaration files not getting properly built

v1.13.0

Compare Source

Minor Changes
  • 4bd4c19: Use request.cf.regionCode for x-vercel-ip-country-region for keeping behavior consistent with documentation

  • 78accfd: Add support for custom worker entrypoints.

    Example:

    import nextOnPagesHandler from '@​cloudflare/next-on-pages/fetch-handler';
    
    export default {
      async fetch(request, env, ctx) {
        // do something before running the next-on-pages handler
    
        const response = await nextOnPagesHandler.fetch(request, env, ctx);
    
        // do something after running the next-on-pages handler
    
        return response;
      },
    } as ExportedHandler<{ ASSETS: Fetcher }>;
Patch Changes
  • 2527917: Account for the Vercel CLI no longer generating prerender configs for dynamic ISR functions.

v1.12.1

Compare Source

Patch Changes
  • 9dd9fe4: make sure headers set in middlewares are accessibly by layouts and pages
  • 97d7981: Support for pre-rendered API functions.

v1.12.0

Compare Source

Minor Changes
  • c2b173c: Fix: The city name for the location of the requester's public IP address must be encoded according to RFC3986.
  • 2d55e8f: Optimized cache tags manifest loading; cache updates do not block responses
  • fa751e3: add support for the revalidate option in fetch
Patch Changes
  • d3caf91: Middleware move permanently fix

v1.11.3

Compare Source

Patch Changes
  • 317e872: Fix hanging promise caused by fetch patch symbol

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from cungminh2710 as a code owner May 9, 2024 22:38
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from ac8b6db to 43733fb Compare May 10, 2024 00:37
@cungminh2710 cungminh2710 enabled auto-merge (squash) May 10, 2024 23:13
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.11.3 chore(deps): update dependency @cloudflare/next-on-pages to v1.12.0 Jun 24, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 43733fb to 38618e6 Compare June 24, 2024 19:36
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 38618e6 to 776d4f9 Compare July 10, 2024 14:17
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.12.0 chore(deps): update dependency @cloudflare/next-on-pages to v1.12.1 Jul 10, 2024
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.12.1 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.0 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 776d4f9 to 7364c9c Compare July 29, 2024 18:44
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.0 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.1 Jul 30, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 7364c9c to a2766e4 Compare July 30, 2024 18:28
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.1 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.2 Aug 7, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from a2766e4 to 817a1a8 Compare August 7, 2024 17:14
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.2 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.3 Sep 21, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 817a1a8 to bcb4f29 Compare September 21, 2024 16:24
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.3 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.5 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from bcb4f29 to c23e3c6 Compare October 4, 2024 22:09
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from c23e3c6 to 93142d3 Compare November 28, 2024 13:24
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.5 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.6 Nov 28, 2024
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 93142d3 to 0c3beed Compare December 9, 2024 11:33
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.6 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.7 Dec 9, 2024
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.7 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.8 Feb 20, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 0c3beed to 336f22d Compare February 20, 2025 16:48
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.8 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.9 Mar 7, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch 2 times, most recently from e347d55 to 3f5088f Compare March 11, 2025 16:38
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.9 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.10 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 3f5088f to 6f2f47a Compare March 31, 2025 20:00
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.10 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.11 Mar 31, 2025
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.11 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.12 Apr 1, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 6f2f47a to 1d1731e Compare April 1, 2025 17:02
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 1d1731e to 1abd558 Compare July 24, 2025 16:30
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.12 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.13 Jul 24, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 1abd558 to 8fd6f98 Compare August 19, 2025 17:50
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.13 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.14 Aug 19, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 8fd6f98 to efc0d71 Compare August 31, 2025 09:09
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.14 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.15 Aug 31, 2025
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/next-on-pages to v1.13.15 chore(deps): update dependency @cloudflare/next-on-pages to v1.13.16 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from efc0d71 to 1914267 Compare September 6, 2025 23:55
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from 1914267 to c8f8c9f Compare September 25, 2025 14:18
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from c8f8c9f to fcf97ee Compare December 31, 2025 13:33
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch 2 times, most recently from 4b3e19c to a6ab7dc Compare January 19, 2026 17:53
@renovate renovate bot force-pushed the renovate/cloudflare-next-on-pages-1.x branch from a6ab7dc to b412a2c Compare February 12, 2026 16:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants