[PR #140] [CLOSED] ⬆️ Bump @nuxtjs/pwa from 3.0.0-beta.16 to 3.0.0-beta.17 #2437

Closed
opened 2026-03-17 00:08:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/140
Author: @dependabot-preview[bot]
Created: 9/7/2019
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/nuxtjs/pwa-3.0.0-beta.17


📝 Commits (1)

  • a4cf54e ⬆️ Bump @nuxtjs/pwa from 3.0.0-beta.16 to 3.0.0-beta.17

📊 Changes

2 files changed (+40 additions, -573 deletions)

View changed files

📝 package-lock.json (+39 -572)
📝 package.json (+1 -1)

📄 Description

Bumps @nuxtjs/pwa from 3.0.0-beta.16 to 3.0.0-beta.17.

Release notes

Sourced from @nuxtjs/pwa's releases.

v3.0.0-beta.17

Summary

This release contains LOTS of internal improvements!

  • Starting with this release, PWA module is a single package (no longer depending on @nuxtjs/meta, ...)
  • Package install size reduced from 17.1MB to 1.42MB thanks to https://github.com/nuxt-community/jimp-compact
  • Now you can provide all module related options under pwa key in nuxt.config.js: (except one signal module) and older option may be deprecated in future versions.
export default {
  modules: [
    '@nuxtjs/pwa'
  ],
  pwa: {
    icon: {},
    manifest: {},
    meta: {},
    workbox: {},
  }
}

Bug Fixes

  • icon: handle situation where the iconSrc is null or undefined (#187) (66be874)
Changelog

Sourced from @nuxtjs/pwa's changelog.

3.0.0-beta.17 (2019-09-05)

Features

Commits
  • def02bc chore(release): 3.0.0-beta.17
  • 622f8ce chore: remove extra hash-sum dependency
  • e87a5aa test: update snapshot
  • 4e6999d chore: update dependencies
  • c5b4450 chore(deps): update all non-major dependencies (#230)
  • 9370c2a chore(deps): update all non-major dependencies (#228)
  • 25efaf1 chore(deps): update all non-major dependencies (#226)
  • b098f6e chore: fix lint error
  • 5e37b58 feat: use jimp-compact
  • 39b3279 chore(deps): update nuxt-edge to 2.9.2
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yml file in this repo:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/140 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 9/7/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/nuxtjs/pwa-3.0.0-beta.17` --- ### 📝 Commits (1) - [`a4cf54e`](https://github.com/hoppscotch/hoppscotch/commit/a4cf54e913fc719092748c88ad5f315afb647fd0) :arrow_up: Bump @nuxtjs/pwa from 3.0.0-beta.16 to 3.0.0-beta.17 ### 📊 Changes **2 files changed** (+40 additions, -573 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+39 -572) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [@nuxtjs/pwa](https://github.com/nuxt-community/pwa-module) from 3.0.0-beta.16 to 3.0.0-beta.17. <details> <summary>Release notes</summary> *Sourced from [@nuxtjs/pwa's releases](https://github.com/nuxt-community/pwa-module/releases).* > ## v3.0.0-beta.17 > ### Summary > > This release contains **LOTS** of internal improvements! > > - Starting with this release, PWA module is a single package (no longer depending on `@nuxtjs/meta`, ...) > - Package install size reduced from `17.1MB` to `1.42MB` thanks to [https://github.com/nuxt-community/jimp-compact](jimp-compact) > - Now you can provide all module related options under `pwa` key in `nuxt.config.js`: (except one signal module) and older option may be deprecated in future versions. > > ```js > export default { > modules: [ > '@nuxtjs/pwa' > ], > pwa: { > icon: {}, > manifest: {}, > meta: {}, > workbox: {}, > } > } > ``` > > ### Bug Fixes > > * **icon:** handle situation where the iconSrc is `null` or `undefined` ([#187](https://github-redirect.dependabot.com/nuxt-community/pwa-module/issues/187)) ([66be874](https://github.com/nuxt-community/pwa-module/commit/66be874)) > </details> <details> <summary>Changelog</summary> *Sourced from [@nuxtjs/pwa's changelog](https://github.com/nuxt-community/pwa-module/blob/dev/CHANGELOG.md).* > ## [3.0.0-beta.17](https://github.com/nuxt-community/pwa-module/compare/v3.0.0-beta.16...v3.0.0-beta.17) (2019-09-05) > > > ### Features > > * `pwa.` scopped options ([010fe0e](https://github.com/nuxt-community/pwa-module/commit/010fe0e)) > * use `jimp-compact` ([5e37b58](https://github.com/nuxt-community/pwa-module/commit/5e37b58)) </details> <details> <summary>Commits</summary> - [`def02bc`](https://github.com/nuxt-community/pwa-module/commit/def02bc5efbda1bf6dbe67fc583d10a42c51cfc0) chore(release): 3.0.0-beta.17 - [`622f8ce`](https://github.com/nuxt-community/pwa-module/commit/622f8ceab8bea15a568ef974d3f0d794312ad29d) chore: remove extra hash-sum dependency - [`e87a5aa`](https://github.com/nuxt-community/pwa-module/commit/e87a5aa6996271a9ebfdcc4d449302a20cff4602) test: update snapshot - [`4e6999d`](https://github.com/nuxt-community/pwa-module/commit/4e6999d04b510ca09ea6d2593cf5245cef8b3d32) chore: update dependencies - [`c5b4450`](https://github.com/nuxt-community/pwa-module/commit/c5b4450d42ccfc46548996709214f38b6d651458) chore(deps): update all non-major dependencies ([#230](https://github-redirect.dependabot.com/nuxt-community/pwa-module/issues/230)) - [`9370c2a`](https://github.com/nuxt-community/pwa-module/commit/9370c2aad76db8ef8351c0a56d631b96aee65e19) chore(deps): update all non-major dependencies ([#228](https://github-redirect.dependabot.com/nuxt-community/pwa-module/issues/228)) - [`25efaf1`](https://github.com/nuxt-community/pwa-module/commit/25efaf1995c38ad27bfefe4c250cc6bda49678ca) chore(deps): update all non-major dependencies ([#226](https://github-redirect.dependabot.com/nuxt-community/pwa-module/issues/226)) - [`b098f6e`](https://github.com/nuxt-community/pwa-module/commit/b098f6e0c61262464c54bf618a65c2c9ced90961) chore: fix lint error - [`5e37b58`](https://github.com/nuxt-community/pwa-module/commit/5e37b58a3c6b07062ab012d3c53641e2d9e7302a) feat: use `jimp-compact` - [`39b3279`](https://github.com/nuxt-community/pwa-module/commit/39b3279e2e893a621d516eaddcb62a47b6afc4ae) chore(deps): update nuxt-edge to 2.9.2 - Additional commits viewable in [compare view](https://github.com/nuxt-community/pwa-module/compare/v3.0.0-beta.16...v3.0.0-beta.17) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=@nuxtjs/pwa&package-manager=npm_and_yarn&previous-version=3.0.0-beta.16&new-version=3.0.0-beta.17)](https://dependabot.com/compatibility-score.html?dependency-name=@nuxtjs/pwa&package-manager=npm_and_yarn&previous-version=3.0.0-beta.16&new-version=3.0.0-beta.17) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in the `.dependabot/config.yml` file in this repo: - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 00:08:35 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#2437
No description provided.