Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Update dependency @ducanh2912/next-pwa to v10#109

Open
renovate[bot] wants to merge 1 commit into
stack/renovateluminus-xd/Luminus_XD:stack/renovatefrom
renovate/ducanh2912-next-pwa-10.xluminus-xd/Luminus_XD:renovate/ducanh2912-next-pwa-10.xCopy head branch name to clipboard
Open

Update dependency @ducanh2912/next-pwa to v10#109
renovate[bot] wants to merge 1 commit into
stack/renovateluminus-xd/Luminus_XD:stack/renovatefrom
renovate/ducanh2912-next-pwa-10.xluminus-xd/Luminus_XD:renovate/ducanh2912-next-pwa-10.xCopy head branch name to clipboard

Conversation

@renovate

@renovate renovate Bot commented Dec 10, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@ducanh2912/next-pwa (source) ^9.4.0 -> ^10.0.0 age adoption passing confidence

Release Notes

DuCanhGH/next-pwa (@​ducanh2912/next-pwa)

v10.2.9

Compare Source

Patch Changes
  • f3766a5 Thanks @​DuCanhGH! - chore(deps): updated all dependencies

    • Monthly dependencies maintenance

    • Not so monthly this time...

v10.2.8

Compare Source

Patch Changes

v10.2.7

Compare Source

Patch Changes
  • a1f09b3 Thanks @​DuCanhGH! - chore(next-pwa): removed clean-webpack-plugin

    • This plugin is... unmaintained, and we could use fs.rmSync anyway.

v10.2.6

Compare Source

v10.2.5

Compare Source

Patch Changes
  • e6ce949 Thanks @​DuCanhGH! - fix(core): fixed using fallbacks with files in the public directory

    • Silly mistakes... Sorry for the inconvenience.

v10.2.4

Compare Source

Patch Changes
  • 07c8861 Thanks @​DuCanhGH! - fix(core): fixed invalid precache manifest with assetPrefix

    • Turns out it is much more complex than we thought. To make this work with assetPrefix, distDir, and basePath, we now remove ${publicPath}${publicDirRelativeToOutputPath} from public files in manifestTransforms because assetPrefix is not intended for files that are in the public directory and we also want to remove /_next/${publicDirRelativeToOutputPath} from the URL, since that is not how we resolve files in the public directory.

v10.2.3

Compare Source

Patch Changes
  • e5f1d14 Thanks @​DuCanhGH! - fix(core): fixed invalid precache manifest and scope with basePath

    • A fast backport of serwist/serwist#56.
    • This was caused by "/_next/../public" in modifyURLPrefix not being matched when basePath was set, since the URL was actually "${basePath}/_next/../public/**/*". We now use manifestTransforms instead of modifyURLPrefix.
    • Also, with the refactor to using a context, we mistakenly changed scope from "${scope}" (suffixed with / if originally not) to "${basePath}/${scope}". This reverts that change. Sorry for the inconvenience!

v10.2.2

Compare Source

Patch Changes
  • e583be6 Thanks @​DuCanhGH! - fix(disable): fixed disable not working properly

    • In 10.2.0 and 10.2.1, when disable was set, certain unexpected parts were still processed, causing the resulting app to contain some erroneous JavaScript.
    • This has been fixed in 10.2.2. Although we still run parseOptions, we only do so to get the default options.

v10.2.1

Compare Source

Patch Changes
  • aeb0dc9 Thanks @​DuCanhGH! - fix(mjs): fixed the ESM build crashing

    • This was due to us referencing __dirname, which was undefined in the ESM build...

v10.2.0

Compare Source

Minor Changes
  • f65e6ab Thanks @​DuCanhGH! - refactor(core): create a context

    • We now leverage a context to share the user's options for Webpack, Next.js, next-pwa, TypeScript, etc. across the codebase. This is better than the old approach, which was similar to props drilling, in that it is more readable and less error-prone.
      • I'd like to extend my thanks to the vite-pwa team for this approach! Learned a lot through forking vite-plugin-pwa, that's for sure.
    • Additionally, the codebase now leverages Biome.js instead of Prettier and ESLint. For now, pre-commit hooks using Husky are not available.
    • Edit: Also, an age-old bug in @ducanh2912/next-pwa has been fixed. If you don't provide additionalManifestEntries, @ducanh2912/next-pwa now runs fast-glob on your public folder for you. The old next-pwa, too, did this, but an extra ?? [] in our fork ruined that...

v10.1.0

Compare Source

Minor Changes
  • #​130 9ff6c29 Thanks @​DuCanhGH! - feat(next-pwa): re-adjust workboxOptions.exclude defaults

    • This was long overdue, so here we are.
    • Why?
      • This proves to be more sensible than the old defaults.
    • Would this incur a breaking change?
      • Technically yes according to my definitions of a breaking change. It will cause a behavioural change in the built app, unexpectedly so for those who don't pinpoint their dependencies' versions. However, I don't believe this has an impact big enough. This... simply improves the user experience, and it won't cause any build to suddenly fail.

v10.0.2

Compare Source

Patch Changes

v10.0.1

Compare Source

Patch Changes
  • #​127 a4b8926 Thanks @​DuCanhGH! - fix(cache-on-front-end-nav): fixed error 'URL object could not be cloned.'

    • This was due to us trying to send the URL object to our worker through postMessage.

v10.0.0

Compare Source

NOTE: If there's no specific reason to continue using @ducanh2912/next-pwa, consider migrating to @serwist/next. This version (10.0.0) is the LAST PLANNED major version for @ducanh2912/next-pwa. It is now under maintenance mode and will not receive as many feature updates as it used to.

Major Changes
  • 52d2390 Thanks @​DuCanhGH! - chore(backporting): backported some changes from @serwist/next@8.0.0

    • Removed buildExcludes.
      • Simply use workboxOptions.exclude as a replacement.
    • Removed customWorkerDir.
      • Use customWorkerSrc instead.
    • Removed browserslist, swcMinify, watchWorkersInDev.
      • We now create child compilers on Next.js's compiler instead of starting separate Webpack processes.
      • This also means you don't need to have @swc/core installed anymore.
    • Change the default value for dest from ".next" to "public".
      • You should change it to ".next" in your project if there's demand, but I'd recommend using "public" instead.
    • Fixed the custom worker and the fallback worker not working...
      • This was caused by next-pwa's importScripts not being passed to Workbox. I'm seriously sorry...
    • Moved the minimum supported Next.js version from 11.0.0 to 14.0.0.
      • This is to remove the appDir check.
Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekend" (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.

🔕 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.

@vercel

vercel Bot commented Dec 10, 2023

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
luminus-xd ❌ Failed (Inspect) Dec 21, 2024 3:56am

@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 86fdca8 to 5fd6a22 Compare February 4, 2024 06:40
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 5fd6a22 to 74ad9dd Compare February 26, 2024 01:20
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 74ad9dd to 97a67c5 Compare March 2, 2024 09:12
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 97a67c5 to a121c62 Compare March 9, 2024 07:16
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from a121c62 to b0ad307 Compare March 23, 2024 07:17
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from b0ad307 to 3e8dcf9 Compare April 13, 2024 07:19
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 3e8dcf9 to 3254cde Compare April 20, 2024 04:00
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 3254cde to fab5a06 Compare April 27, 2024 05:09
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from fab5a06 to b1c4882 Compare May 12, 2024 13:26
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from b1c4882 to 205bfd4 Compare May 18, 2024 08:19
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 205bfd4 to 7ce631d Compare May 25, 2024 03:46
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 7ce631d to 78a2f5f Compare June 4, 2024 23:20
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 78a2f5f to 0875523 Compare June 8, 2024 06:55
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 0875523 to 356ea71 Compare June 15, 2024 07:10
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from c4bebfe to 065e4c3 Compare July 27, 2024 06:59
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 065e4c3 to c50fd04 Compare July 28, 2024 10:20
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from c50fd04 to 6ca4281 Compare August 3, 2024 01:15
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 6ca4281 to c832ca5 Compare August 10, 2024 05:47
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from c832ca5 to e644c59 Compare August 17, 2024 00:02
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from e644c59 to 750eb67 Compare August 18, 2024 09:56
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 750eb67 to a59c484 Compare August 24, 2024 07:30
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from a59c484 to 3fae771 Compare August 31, 2024 04:52
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 3fae771 to df48e74 Compare September 1, 2024 16:08
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from df48e74 to a1ac7fb Compare September 7, 2024 09:07
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from a1ac7fb to 9018cf9 Compare September 14, 2024 04:52
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from 9018cf9 to c744587 Compare September 21, 2024 03:58
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from c744587 to d515d99 Compare September 28, 2024 10:36
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from d515d99 to bca2875 Compare October 5, 2024 03:57
@renovate
renovate Bot force-pushed the renovate/ducanh2912-next-pwa-10.x branch from bca2875 to 2345fb7 Compare October 12, 2024 07:28
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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.