Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(packages): publish packages #143

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/thick-pans-agree.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/next-pwa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ducanh2912/next-pwa

## 10.2.3

### Patch Changes

- [`e5f1d14`](https://github.com/DuCanhGH/next-pwa/commit/e5f1d14828d669e17e694e0a18bcfb2f8231a6b9) Thanks [@DuCanhGH](https://github.com/DuCanhGH)! - fix(core): fixed invalid precache manifest and scope with `basePath`

- A fast backport of https://github.com/serwist/serwist/pull/56.
- This is caused by "/\_next/../public" in modifyURLPrefix not being matched when basePath is set, since the URL is 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!

## 10.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next-pwa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ducanh2912/next-pwa",
"version": "10.2.2",
"version": "10.2.3",
"type": "module",
"description": "PWA for Next.js, powered by Workbox.",
"repository": "https://github.com/DuCanhGH/next-pwa",
Expand Down
Loading