Skip to content

Releases: cloudflare/next-on-pages

[email protected]

07 Aug 15:16
12080f6
Compare
Choose a tag to compare

@cloudflare/[email protected]

07 Aug 15:16
12080f6
Compare
Choose a tag to compare

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)

[email protected]

30 Jul 17:22
0a07f34
Compare
Choose a tag to compare

@cloudflare/[email protected]

30 Jul 17:22
0a07f34
Compare
Choose a tag to compare

Patch Changes

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

@cloudflare/[email protected]

29 Jul 17:16
502b4cd
Compare
Choose a tag to compare

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.

[email protected]

10 Jul 12:00
944f7e7
Compare
Choose a tag to compare

@cloudflare/[email protected]

10 Jul 12:00
944f7e7
Compare
Choose a tag to compare

Patch Changes

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

[email protected]

24 Jun 18:57
7a6f16c
Compare
Choose a tag to compare

@cloudflare/[email protected]

24 Jun 18:57
7a6f16c
Compare
Choose a tag to compare

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

@cloudflare/[email protected]

09 May 21:20
fa02080
Compare
Choose a tag to compare

Patch Changes

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