Skip to content

chore(deps): update dependency @serwist/next to v9.5.7#816

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/serwist-next-9.x-lockfile
Open

chore(deps): update dependency @serwist/next to v9.5.7#816
renovate[bot] wants to merge 1 commit intomainfrom
renovate/serwist-next-9.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 27, 2025

This PR contains the following updates:

Package Change Age Confidence
@serwist/next (source) 9.2.39.5.7 age confidence

Release Notes

serwist/serwist (@​serwist/next)

v9.5.7

Compare Source

Patch Changes

v9.5.6

Compare Source

Patch Changes

v9.5.5

Compare Source

Patch Changes

v9.5.4

Patch Changes

v9.5.3

Patch Changes

v9.5.2

Patch Changes

v9.5.1

Compare Source

Patch Changes

v9.5.0

Compare Source

Patch Changes

v9.4.4

Compare Source

Patch Changes

v9.4.3

Compare Source

Patch Changes

v9.4.2

Compare Source

v9.4.1

Compare Source

Patch Changes

v9.4.0

Compare Source

Minor Changes
  • 1271a93 Thanks @​DuCanhGH! - feat(turbo,next): added disable to SerwistProvider
    • This allows disabling @serwist/window when needed.
Patch Changes

v9.3.1

Compare Source

Patch Changes
  • ed4174b Thanks @​DuCanhGH! - feat(next): added config mode

    • This patch adds config mode to @serwist/next, which allows running @serwist/next after building the Next.js application. This change allows @serwist/next to automatically determine and precache prerendered routes. To migrate:

      • Install concurrently, esbuild, and @serwist/cli:

        npm install -D concurrently esbuild @​serwist/cli
      • Remove withSerwist from next.config.js:

        // @​ts-check
        /** @​type {import("next").NextConfig} */
        const nextConfig = {
          reactStrictMode: true,
        };
        
        export default nextConfig;
      • Add serwist.config.js:

        // @​ts-check
        import { serwist } from "@​serwist/next/config";
        
        export default await serwist({
          swSrc: "app/sw.ts",
          swDest: "public/sw.js",
        });

        If you don't want Serwist to precache prerendered routes, set precachePrerendered to false.

      • Change your build script:

        {
          "scripts": {
            "dev": "concurrently 'serwist build --watch' 'next dev'",
            "build": "next build && serwist build"
          }
        }

        If you want the Serwist config file to be somewhere else, add --config path/to/config.js.

      • Add app/serwist.ts to re-export SerwistProvider from @serwist/next:

        "use client";
        export { SerwistProvider } from "@​serwist/next/react";
      • Wrap your app in SerwistProvider:

        // app/layout.tsx
        import type { ReactNode } from "react";
        import { SerwistProvider } from "./serwist";
        
        export default function RootLayout({ children }: { children: ReactNode }) {
          return (
            <html lang="en" dir="ltr">
              <body>
                <SerwistProvider swUrl="/sw.js">{children}</SerwistProvider>
              </body>
            </html>
          );
        }
    • The config mode works with Turbopack. You don't have to install @serwist/turbopack to use this.

  • Updated dependencies [ed4174b]:

v9.3.0

Compare Source

Patch Changes

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.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Dec 27, 2025

📦 Next.js Bundle Analysis for junat.live

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

@codecov
Copy link
Copy Markdown

codecov bot commented Dec 27, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 73.88%. Comparing base (185fd34) to head (4bdf71c).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #816      +/-   ##
==========================================
+ Coverage   71.34%   73.88%   +2.54%     
==========================================
  Files          57       73      +16     
  Lines         813      919     +106     
  Branches      190      215      +25     
==========================================
+ Hits          580      679      +99     
- Misses        233      239       +6     
- Partials        0        1       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch 12 times, most recently from 2247e0a to bfbf656 Compare January 3, 2026 09:40
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch from bfbf656 to 26def23 Compare January 5, 2026 09:37
@renovate renovate bot changed the title chore(deps): update dependency @serwist/next to v9.4.2 chore(deps): update dependency @serwist/next to v9.4.4 Jan 5, 2026
@renovate renovate bot changed the title chore(deps): update dependency @serwist/next to v9.4.4 chore(deps): update dependency @serwist/next to v9.5.0 Jan 5, 2026
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch from 26def23 to a0390e8 Compare January 5, 2026 16:10
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch 2 times, most recently from 7a83369 to 9ad6dfe Compare January 23, 2026 20:05
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch 6 times, most recently from c74e040 to 23dcb62 Compare February 1, 2026 10:55
@renovate renovate bot changed the title chore(deps): update dependency @serwist/next to v9.5.0 chore(deps): update dependency @serwist/next to v9.5.3 Feb 1, 2026
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch 3 times, most recently from fc733e9 to 7e6a8a6 Compare February 1, 2026 21:12
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch from 7e6a8a6 to 4eb1499 Compare February 1, 2026 21:23
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch from 4eb1499 to 73de131 Compare February 15, 2026 11:14
@renovate renovate bot changed the title chore(deps): update dependency @serwist/next to v9.5.3 chore(deps): update dependency @serwist/next to v9.5.6 Feb 15, 2026
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch 2 times, most recently from 7bd92b9 to 5e7cc30 Compare March 1, 2026 21:24
@renovate renovate bot force-pushed the renovate/serwist-next-9.x-lockfile branch from 5e7cc30 to 4bdf71c Compare March 14, 2026 23:46
@renovate renovate bot changed the title chore(deps): update dependency @serwist/next to v9.5.6 chore(deps): update dependency @serwist/next to v9.5.7 Mar 14, 2026
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