Open
Conversation
efed63e to
b1f188f
Compare
b1f188f to
1c37cad
Compare
1c37cad to
eed9ebf
Compare
eed9ebf to
f3fa4e8
Compare
f3fa4e8 to
7b7d7c9
Compare
7b7d7c9 to
cc62138
Compare
cc62138 to
b4c65b2
Compare
b4c65b2 to
4001522
Compare
4001522 to
c025549
Compare
c025549 to
8676b47
Compare
8676b47 to
704d00f
Compare
704d00f to
b94de24
Compare
b94de24 to
2b3be04
Compare
2b3be04 to
6f96016
Compare
6f96016 to
de90bca
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
^0.35.0→^0.49.0Release Notes
mswjs/msw (msw)
v0.49.3Compare Source
v0.49.3 (2023-01-19)
Bug Fixes
6a94b8c) @chrisguttandinv0.49.2Compare Source
v0.49.2 (2022-12-13)
Bug Fixes
globalThis.fetchinctx.fetchutility (#1490) (42cdbc7) @Toxiapo @kettanaitov0.49.1Compare Source
v0.49.1 (2022-11-28)
Bug Fixes
c268796) @gduliscouet-ubitransportv0.49.0Compare Source
v0.49.0 (2022-11-19)
Features
af0277d) @wtchnmv0.48.3Compare Source
v0.48.3 (2022-11-15)
Bug Fixes
a06a944) @kettanaitostatusesdependency during the build (#1458) (99d49f9) @mattcosta7 @kettanaitov0.48.2Compare Source
v0.48.2 (2022-11-13)
Bug Fixes
f8d15b4) @kettanaitov0.48.1Compare Source
v0.48.1 (2022-11-10)
Bug Fixes
91b2902) @cksal0805v0.48.0Compare Source
v0.48.0 (2022-11-08)
Features
85ba844) @Toxiapo @kettanaito670dda7) @mucsi96 @kettanaito41798eb) @ivanhofer @kettanaitov0.47.4Compare Source
v0.47.4 (2022-10-04)
Bug Fixes
package.jsonexportsfield (#1395) (3902b8c) @ivanhofer @kettanaito933a9d6) @jkieboom @kettanaito78d155f) @snaka @kettanaitov0.47.3Compare Source
v0.47.3 (2022-09-15)
Bug Fixes
41d8c08)v0.47.2Compare Source
v0.47.2 (2022-09-13)
Bug Fixes
c90eafb)v0.47.1Compare Source
v0.47.1 (2022-09-10)
Bug Fixes
638fad9)v0.47.0Compare Source
v0.47.0 (2022-09-04)
Features
exportsmap in package.json (#1383) (5e1c1a6)v0.46.1Compare Source
v0.46.1 (2022-09-01)
Bug Fixes
8436515)v0.46.0Compare Source
v0.46.0 (2022-08-31)
Features
62f7c4d)631f629)18f5778)v0.45.0Compare Source
v0.45.0 (2022-08-22)
Features
ca0e2e0)v0.44.2Compare Source
v0.44.2 (2022-07-19)
Bug Fixes
95be5f8)v0.44.1Compare Source
v0.44.1 (2022-07-14)
Bug Fixes
6a3f442)v0.44.0Compare Source
v0.44.0 (2022-07-13)
Breaking changes
req.destinationdefault value is now""(empty string), previously"document".req.redirectdefault value is now""follow", previously"manual".parseIsomorphicRequest()function (#1316). Please useMockedRequestclass instead.Features
fc7f00c). This means the addition of a few properties on thereqinstance:req.priority, indicates a priority of request relatively to other requests (default"auto");req.text(), reads the request body as plain text;req.json(), reads the request body as JSON;req.arrayBuffer(), reads the request body asArrayBuffer;req.clone(), clones a request instance (i.e. so its body could be read multiple times).6990c3a)Deprecations
req.bodyis deprecated. Please use explicit request body reading methods:req.text(),req.json(),req.arrayBuffer()(other methods, likereq.formData()are currently not supported).v0.43.1Compare Source
v0.43.1 (2022-07-07)
Bug Fixes
66c3ad8)v0.43.0Compare Source
v0.43.0 (2022-07-04)
Features
78c7d7e)v0.42.3Compare Source
v0.42.3 (2022-06-22)
Bug Fixes
496154d)v0.42.2Compare Source
v0.42.2 (2022-06-22)
Bug Fixes
72f0b25)v0.42.1Compare Source
v0.42.1 (2022-06-07)
Bug Fixes
442f48d)v0.42.0Compare Source
v0.42.0 (2022-05-30)
Features
2176577)Bug Fixes
61a755a)v0.41.1Compare Source
v0.41.1 (2022-05-27)
Bug Fixes
b020270)v0.41.0Compare Source
v0.41.0 (2022-05-22)
Features
00e9c58)v0.40.2Compare Source
v0.40.2 (2022-05-20)
Bug Fixes
5378416)v0.40.1Compare Source
v0.40.1 (2022-05-19)
Bug Fixes
3bca5be)v0.40.0Compare Source
v0.40.0 (2022-05-17)
Breaking changes
undefined, or early returns, from response resolvers, now does not perform request as-is, and is instead treated as a handler that didn't do anything. Please returnreq.passthrough()if you wish to bypass a request.rest.get('/resource', (req, res, ctx) => { // I want to perform this intercepted request as-is. - return + return req.passthrough() })Features
5c90799)b70266f)53aa3a1)4e1b1ad)ab3d399)b1004a6)Bug Fixes
cfe0709)6f7ed98)c3cd80a)v0.39.2Compare Source
Bug Fixes
v0.39.1Compare Source
Bug Fixes
v0.39.0Compare Source
Breaking changes
Bug Fixes
v0.38.2Compare Source
Bug Fixes
v0.38.1Compare Source
Bug Fixes
v0.38.0Compare Source
Features
onUnhandledRequestin a custom callback (#1096):v0.36.8Compare Source
Bug Fixes
v0.36.7Compare Source
Bug Fixes
localStorageaccess (#1071) (99ae530)node-fetchto 2.6.7 to fix a security vulnerability (#1072) (72a34f6)v0.36.5Compare Source
Bug Fixes
Content-Typeheader value (#1064) (7796418)v0.36.4Compare Source
Bug fixes
v0.36.3Compare Source
Bug fixes
x-msw-request-idrequest header (#713, #1022, #1024).Internal
x-msw-request-idheader on the request (#1024). Relies on therequest.idset by the interceptors (Node.js) or therequestIdgenerated by the worker (browser).v0.36.2Compare Source
Bug fixes
rest.all()request handler (#1020, #1021).v0.36.1Compare Source
Bug fixes
v0.36.0Compare Source
Breaking changes
/foo/bar?);/foo/bar+).string | string[](#999).RequestParamsgeneric now follows theRequestBodyTypegeneric, changing its order (#999):RequestParamstype (#999). Please use thePathParamstype instead.document.baseURI(previouslylocation.origin) in a browser-like environments (#1007, #1008).Features
rest.all()request handler (#896). This handler captures all REST API requests regardless of method.SetupWorkerApiandSetupServerApifrom the browser and Node.js modules respectively (#994).Bug fixes
typescriptas apeerDependencyto control supported TypeScript versions (#985).graphql.operationhandler producing a warning unable to intercept anonymous operations (#918, #904).inquirerdependency version to 8.1.5 to propagate the fix for theUnexpected token “?”issue when using MSW CLI (#917).TypeError: Failed to execute 'XXX' on 'Response': body stream already readerror when reading the original response body in the fallback mode (mswjs/interceptors#152).Internal
@mswjs/cookiesand@mswjs/interceptorsas external packages so that their updates propagate to you automatically upon new installations ofmsw.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.
This PR was generated by Mend Renovate. View the repository job log.