Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Update dependency msw to v0.49.3 - #153

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/msw-0.x
Open

Update dependency msw to v0.49.3#153
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/msw-0.x

Conversation

@renovate

@renovate renovate Bot commented Mar 7, 2022

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
msw (source) 0.38.2 -> 0.49.3 age adoption passing confidence

Release Notes

mswjs/msw (msw)

v0.49.3

Compare Source

v0.49.3 (2023-01-19)

Bug Fixes

v0.49.2

Compare Source

v0.49.2 (2022-12-13)
Bug Fixes

v0.49.1

Compare Source

v0.49.1 (2022-11-28)

Bug Fixes

v0.49.0

Compare Source

v0.49.0 (2022-11-19)

Features

v0.48.3

Compare Source

v0.48.3 (2022-11-15)

Bug Fixes

v0.48.2

Compare Source

v0.48.2 (2022-11-13)

Bug Fixes

v0.48.1

Compare Source

v0.48.1 (2022-11-10)

Bug Fixes

v0.48.0

Compare Source

v0.48.0 (2022-11-08)

Features

v0.47.4

Compare Source

v0.47.4 (2022-10-04)

Bug Fixes

v0.47.3

Compare Source

v0.47.3 (2022-09-15)

Bug Fixes

v0.47.2

Compare Source

v0.47.2 (2022-09-13)

Bug Fixes

v0.47.1

Compare Source

v0.47.1 (2022-09-10)

Bug Fixes

v0.47.0

Compare Source

v0.47.0 (2022-09-04)

Features

v0.46.1

Compare Source

v0.46.1 (2022-09-01)

Bug Fixes

v0.46.0

Compare Source

v0.46.0 (2022-08-31)

Features
server.listHandlers()
worker.listHandlers()

v0.45.0

Compare Source

v0.45.0 (2022-08-22)

Features
  • make GraphQL a peer dependency, support GraphQL v15.0 (#​1356) (ca0e2e0)

v0.44.2

Compare Source

v0.44.2 (2022-07-19)

Bug Fixes
  • transfer mocked response as ArrayBuffer to the worker (#​1337) (95be5f8)

v0.44.1

Compare Source

v0.44.1 (2022-07-14)

Bug Fixes

v0.44.0

Compare Source

v0.44.0 (2022-07-13)

Breaking changes
  • req.destination default value is now "" (empty string), previously "document".
  • req.redirect default value is now ""follow", previously "manual".
  • The library no longer exports the parseIsomorphicRequest() function (#​1316). Please use MockedRequest class instead.
Features
Deprecations
  • req.body is deprecated. Please use explicit request body reading methods: req.text(), req.json(), req.arrayBuffer() (other methods, like req.formData() are currently not supported).
rest.post('/user', async (req, res, ctx) => {
  const newUser = await req.json()
})

req.body is still present for compatibility reasons but will be removed in the next releases.

v0.43.1

Compare Source

v0.43.1 (2022-07-07)

Bug Fixes
  • support multiple response cookies using "ctx.cookie()" (#​1311) (66c3ad8)

v0.43.0

Compare Source

v0.43.0 (2022-07-04)

Features
  • send mocked response body as ReadableStream to the worker (#​1288) (78c7d7e)

v0.42.3

Compare Source

v0.42.3 (2022-06-22)

Bug Fixes

v0.42.2

Compare Source

v0.42.2 (2022-06-22)

Bug Fixes
  • setupServer: reference interceptors to support fast refresh (#​1299) (72f0b25)

v0.42.1

Compare Source

v0.42.1 (2022-06-07)

Bug Fixes

v0.42.0

Compare Source

v0.42.0 (2022-05-30)

Features
Bug Fixes

v0.41.1

Compare Source

v0.41.1 (2022-05-27)

Bug Fixes

v0.41.0

Compare Source

v0.41.0 (2022-05-22)

Features

v0.40.2

Compare Source

v0.40.2 (2022-05-20)

Bug Fixes

v0.40.1

Compare Source

v0.40.1 (2022-05-19)

Bug Fixes

v0.40.0

Compare Source

v0.40.0 (2022-05-17)

Breaking changes
  • Returning 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 return req.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
Bug Fixes
  • setupWorker: warn on multiple "worker.start" and "worker.stop" calls (#​1238) (cfe0709)
  • remove console.log from "setRequestCookies" (6f7ed98)
  • set "credentials" to "same-origin" for "ClientRequest" (#​1159) (c3cd80a)

v0.39.2

Compare Source

Bug Fixes

v0.39.1

Compare Source

Bug Fixes

v0.39.0

Compare Source

Breaking changes
Bug Fixes
  • setupWorker: resolve the "start" promise after the worker has activated (#​1146) (f6e709c)

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Dependency updates label Mar 7, 2022
@vercel

vercel Bot commented Mar 7, 2022

Copy link
Copy Markdown

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/vtfk/dust-web/CK9BDfVET9gUhEFEscHNC23LC22C
✅ Preview: https://dust-web-git-renovate-msw-0x-vtfk.vercel.app

@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 444df88 to 4d9d45b Compare March 8, 2022 23:44
@renovate renovate Bot changed the title Update dependency msw to v0.39.0 Update dependency msw to v0.39.1 Mar 8, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 4d9d45b to 54e8dcd Compare March 15, 2022 15:54
@renovate renovate Bot changed the title Update dependency msw to v0.39.1 Update dependency msw to v0.39.2 Mar 15, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 54e8dcd to 8c39f70 Compare May 18, 2022 02:22
@renovate renovate Bot changed the title Update dependency msw to v0.39.2 Update dependency msw to v0.40.0 May 18, 2022
@vercel

vercel Bot commented May 18, 2022

Copy link
Copy Markdown

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

Name Status Preview Comments Updated (UTC)
dust-web ❌ Failed (Inspect) Dec 8, 2024 9:04pm

@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 8c39f70 to 0646fe9 Compare May 19, 2022 22:51
@renovate renovate Bot changed the title Update dependency msw to v0.40.0 Update dependency msw to v0.40.1 May 19, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 0646fe9 to 165e023 Compare May 20, 2022 17:13
@renovate renovate Bot changed the title Update dependency msw to v0.40.1 Update dependency msw to v0.40.2 May 20, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 165e023 to 6474cf9 Compare May 22, 2022 03:40
@renovate renovate Bot changed the title Update dependency msw to v0.40.2 Update dependency msw to v0.41.0 May 22, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 6474cf9 to bd29234 Compare May 28, 2022 00:54
@renovate renovate Bot changed the title Update dependency msw to v0.41.0 Update dependency msw to v0.41.1 May 28, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from bd29234 to 002cb27 Compare May 31, 2022 00:30
@renovate renovate Bot changed the title Update dependency msw to v0.41.1 Update dependency msw to v0.42.0 May 31, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 002cb27 to d8bd426 Compare June 8, 2022 00:12
@renovate renovate Bot changed the title Update dependency msw to v0.42.0 Update dependency msw to v0.42.1 Jun 8, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from bd6bf36 to da3f3d8 Compare July 13, 2022 01:56
@renovate renovate Bot changed the title Update dependency msw to v0.43.1 Update dependency msw to v0.44.0 Jul 13, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from da3f3d8 to c3eef8d Compare July 14, 2022 19:18
@renovate renovate Bot changed the title Update dependency msw to v0.44.0 Update dependency msw to v0.44.1 Jul 14, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from c3eef8d to d915653 Compare July 19, 2022 01:08
@renovate renovate Bot changed the title Update dependency msw to v0.44.1 Update dependency msw to v0.44.2 Jul 19, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from d915653 to c11748a Compare August 22, 2022 02:39
@renovate renovate Bot changed the title Update dependency msw to v0.44.2 Update dependency msw to v0.45.0 Aug 22, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from c11748a to 816c8be Compare August 25, 2022 08:12
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 816c8be to a4a860e Compare August 31, 2022 03:25
@renovate renovate Bot changed the title Update dependency msw to v0.45.0 Update dependency msw to v0.46.0 Aug 31, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from a4a860e to 00f2857 Compare September 1, 2022 16:16
@renovate renovate Bot changed the title Update dependency msw to v0.46.0 Update dependency msw to v0.46.1 Sep 1, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from 00f2857 to be1c4dc Compare September 4, 2022 03:38
@renovate renovate Bot changed the title Update dependency msw to v0.46.1 Update dependency msw to v0.47.0 Sep 4, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from be1c4dc to bac84bb Compare September 10, 2022 01:16
@renovate renovate Bot changed the title Update dependency msw to v0.47.0 Update dependency msw to v0.47.1 Sep 10, 2022
@renovate
renovate Bot force-pushed the renovate/msw-0.x branch from bac84bb to cace975 Compare September 13, 2022 02:38
@renovate renovate Bot changed the title Update dependency msw to v0.47.1 Update dependency msw to v0.47.2 Sep 13, 2022
Dependency update (patch) :)
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants