chore(deps): update all non-major dependencies #74
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.29.0
->4.29.1
4.29.0
->4.29.1
6.1.5
->6.2.2
Release Notes
typescript-eslint/typescript-eslint
v4.29.1
Compare Source
Note: Version bump only for package @typescript-eslint/parser
googlechrome/workbox
v6.2.2
Compare Source
Workbox v6.2.2 fixes a few bugs introduced in the v6.2.0 release.
🐛 What's Fixed?
Validation fix for plugin functions passed to
runtimeCaching
in the build tools. [#2901]Ensure that our
tsc
configuration transpiles newer language features down to the ES2017target
level. [#2902]Update to our
lerna
configuration to use the--exact
tag when publishing tonpm
, to ensure that all the mutual dependencies in the monorepo use exact version matches, and not^
versions. [#2904]v6.2.1
Compare Source
v6.2.0
Compare Source
Workbox v6.2.0. It includes a number of bug fixes and internal refactoring described below.
Our intention is not to include any breaking changes in v6.2.0, and we've made an effort to maintain the same public interfaces and general behaviors while rewriting some of Workbox's internals.
🎉 What's New?
workbox-build TypeScript rewrite
The
workbox-build
module has been rewritten in TypeScript, following the earlier migration of theworkbox-cli
module. (workbox-webpack-plugin
has not yet been migrated.) Developers who useworkbox-build
from their own TypeScript code should benefit from the official, accurate type definitions that are now published alongsideworkbox-build
. [#2867]Build tool option validation
As part of this change,
workbox-build
now uses the TypeScript definitions as the source of truth when validating the configuration options developers provide. Previously,joi
was used for validation with its own set of schema, and this would sometimes lead to mismatches between what the validation logic thought was okay and what the code actually expected. Developers who inspect the validation errors returned byworkbox-build
will likely see different error strings in v6.2.0. We expect that moving forward, using TypeScript as the source of truth will lead to fewer of those mismatches.This change applies to bothworkbox-cli
andworkbox-webpack-plugin
, as well, which rely onworkbox-build
under the hood.IndexedDB code migration
Another refactoring is the replacement of our previous custom IndexedDB logic with the
idb
library. No developer-visible changes are expected due to this migration. [#2838]Multiple controlling events during a page's lifetime
Following this change,
worbox-window
'scontrolling
event is fired each time the underlyingoncontrollerchange
event happens. Multiplecontrolling
events can occur on a long-lived page in which multiple service worker updates take place.isExternal: true
will be set when the service worker that takes control is "external," which will always be the case for multiple updates.Previously,
controlling
would only be fired once per lifetime of the page, which does not match the documented behavior. This change is considered a bug fix to match the expected behavior, and developers are encouraged to test their logic to ensure that they were not relying on the previous, buggy behavior. [#2817]TrustedScriptURL support in workbox-window
Developers who have opted-in to the CSP policy
"require-trusted-types-for 'script'"
and who are using TypeScript would have previously had trouble usingTrustedScriptURL
s inworkbox-window
. This release improves that support. [#2872]rangeRequests option in runtimeCaching
Setting
rangeRequests: true
inside of aruntimeCaching
configuration entry will add the RangeRequestsPlugin to the service worker generated by Workbox's build tools. [#2871]🐛 What's Fixed?
workbox-core
HandlerDidErrorCallbackParam
type definition is now exported alongside the other relevant TypeScript types. [#2886]workbox-webpack-plugin
webpack
'seval-cheap-source-map
is used along with theInjectManifest
plugin. [#2847]workbox-window
ports
was missing on theWorkboxMessageEvent
. It's been added, mirroring the value of the underlyingMessageEvent
, when used in anonmessage
handler. [#2874]The
WorkboxEventMap
type definition is now exported alongside the other relevant TypeScript types. [#2870]Thanks!
Thank you @rockwalrus for contributing a PR [#2857] that went into this release!
Configuration
📅 Schedule: 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by WhiteSource Renovate. View repository job log here.