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

build(deps-dev): bump msw from 1.3.2 to 2.0.3 #1097

Merged
merged 8 commits into from
Nov 13, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 6, 2023

Bumps msw from 1.3.2 to 2.0.3.

Release notes

Sourced from msw's releases.

v2.0.3 (2023-11-04)

Bug Fixes

  • correctly check "undefined" as response body type (#1824) (a0ec8be311daef0285d8485e315bbb49a9370f44) @​kettanaito
  • Safari: send explicit null response bodies (#1833) (66fb437c0936651cf0bb936f21aa77054b147857) @​kettanaito

v2.0.2 (2023-11-01)

Bug Fixes

  • output a single formatted message to console (#1820) (2ead3922f3ec5a4750e3b9e09e75aeb20f13c736) @​kettanaito
  • prevent one-time handlers from incorrectly marking themselves as used (#1822) (a179b68e2dfd3667999c31b1dbd3870a0b92568c) @​joshkel
  • resolve the "eventTargets" error in JSDOM by dropping "instanceof" (#1813) (f6e5112fa0f1ebbd97fb95bcbda1c47a0cc750f9) @​mattcosta7

v2.0.1 (2023-10-28)

Bug Fixes

  • clone response early for response logging (#1799) (5c5470a0f2204b4164fcc65e210471661208ce4d) @​kunmagg

v2.0.0 (2023-10-23)

[!IMPORTANT] This release is a BREAKING CHANGE. Please follow the Migration guidelines to upgrade. This release took a lot of effort to make, and I expect a bit of that effort on your part while upgrading. Most of the changes are mechanical, and a simple Find/Replace All will get you a long way. For the rest of it, you will learn how to handle requests and responses using the standard JavaScript API. Thank you!

Breaking changes

  • Drops support for Node.js 16. Please upgrade to Node.js 18 or later to use the global Fetch API.
  • Drops support for TypeScript < 4.7.
  • All browser-side exports, like setupWorker, SetupWorkerApi, etc., must be imported from msw/browser now.
  • Renames the rest object to http (rest.get -> http.get).
  • Response resolver call signature is no longer (req, res, ctx) => res() but instead ({ request }) => new Response().
  • The following exports are removed due to no longer being needed:
    • response
    • context and related exports (defaultContext, restContext, graphqlContext).
    • compose and createResponseComposition
  • res.once() is removed in favor of the { once: boolean } option on the request handler.
  • Replaces the .printHandlers() method with .listHandlers().
  • Removes the NetworkError class in favor of the standard Response.error().
  • Moves request error handling from the worker thread to the client thread.
  • Changes the call signature of the Life-cycle Events API to accept a single object argument.
  • Uses crypto.randomUUID() instead of Math.random() in the worker.
  • For the full list of changes and detailed instructions on how to upgrade please see the Migration guidelines.

Features

  • Adopts Fetch API primitives. Represent intercepted requests and mocked responses as Request and Response instances respectively.
  • Supports Node.js v18.
  • Supports ReadableStream as a mocked response body.
  • Supports reading the intercepted request body as FormData.
  • Supports FormData as a mocked response body.

... (truncated)

Commits
  • 461a188 chore(release): v2.0.3
  • a0ec8be fix: correctly check "undefined" as response body type (#1824)
  • 66fb437 fix(Safari): send explicit null response bodies (#1833)
  • 008a8c6 chore(smoke): support workflow_run and workflow_dispatch
  • 057e515 chore(smoke): use manual runs only
  • 5112765 chore(smoke): support workflow_dispatch
  • 009e8fa chore: add "smoke-test/examples" workflow (#1825)
  • dff7fac chore(release): v2.0.2
  • 2ead392 fix: output a single formatted message to console (#1820)
  • a179b68 fix: prevent one-time handlers from incorrectly marking themselves as used (#...
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [msw](https://github.com/mswjs/msw) from 1.3.2 to 2.0.3.
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v1.3.2...v2.0.3)

---
updated-dependencies:
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 6, 2023
@hejtful hejtful self-assigned this Nov 8, 2023
@hejtful hejtful requested a review from kulla November 9, 2023 15:11
@hejtful hejtful marked this pull request as draft November 9, 2023 15:11
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2023

A newer version of msw exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@hejtful hejtful marked this pull request as ready for review November 13, 2023 15:22
Copy link
Member

@kulla kulla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @hejtful!

My comments are mainly small possible improvements. Nothing important which blocks merging. Can all be done in a Follow up PR.

__config__/setup.ts Show resolved Hide resolved
isDefinedBy(
resolver: ResponseResolver<
Record<string, unknown>,
{ payload: Payload<M> }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idea: type can be added here

__tests__/__utils__/handlers.ts Show resolved Hide resolved
__tests__/__utils__/handlers.ts Show resolved Hide resolved
__tests__/schema/user/delete-bots.ts Show resolved Hide resolved
.isDefinedBy((req, res, ctx) => {
const { ids, trashed } = req.body.payload
.isDefinedBy(async ({ request }) => {
const body = (await request.json()) as {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const body = (await request.json()) as {
const body = (await request.json())

__tests__/schema/uuid/set-state.ts Show resolved Hide resolved
@kulla kulla added this pull request to the merge queue Nov 13, 2023
Merged via the queue into main with commit 75f4ec8 Nov 13, 2023
10 checks passed
@kulla kulla deleted the dependabot/npm_and_yarn/msw-2.0.3 branch November 13, 2023 19:08
@kulla kulla mentioned this pull request Nov 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants