Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2024

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
msw (source) 2.1.3 -> 2.11.3 age confidence

Release Notes

mswjs/msw (msw)

v2.11.3

Compare Source

v2.11.3 (2025-09-20)

Bug Fixes

v2.11.2

Compare Source

v2.11.2 (2025-09-10)

Bug Fixes

v2.11.1

Compare Source

v2.11.0

Compare Source

v2.11.0 (2025-08-30)

Features

v2.10.5

Compare Source

v2.10.5 (2025-08-13)

Bug Fixes

v2.10.4

Compare Source

v2.10.4 (2025-07-12)

Bug Fixes

v2.10.3

Compare Source

v2.10.3 (2025-07-04)

Bug Fixes

v2.10.2

Compare Source

v2.10.2 (2025-06-09)

Bug Fixes

v2.10.1

Compare Source

v2.10.1 (2025-06-07)

Bug Fixes

v2.10.0

Compare Source

v2.10.0 (2025-06-07)

Features

v2.9.0

Compare Source

v2.9.0 (2025-06-03)

Features

v2.8.7

Compare Source

v2.8.7 (2025-05-31)

Bug Fixes

v2.8.6

Compare Source

v2.8.6 (2025-05-29)

Bug Fixes

v2.8.5

Compare Source

v2.8.5 (2025-05-27)

Bug Fixes

v2.8.4

Compare Source

v2.8.4 (2025-05-19)

Bug Fixes

v2.8.3

Compare Source

v2.8.3 (2025-05-17)

Bug Fixes

v2.8.2

Compare Source

v2.8.2 (2025-05-09)

Bug Fixes

v2.8.1

Compare Source

v2.8.1 (2025-05-09)

Bug Fixes

v2.8.0

Compare Source

v2.8.0 (2025-05-08)

Features

v2.7.6

Compare Source

v2.7.6 (2025-05-05)

Bug Fixes

v2.7.5

Compare Source

v2.7.5 (2025-04-18)

Bug Fixes

v2.7.4

Compare Source

v2.7.4 (2025-04-12)

Bug Fixes

v2.7.3

Compare Source

v2.7.3 (2025-02-24)

Bug Fixes

v2.7.2

Compare Source

v2.7.2 (2025-02-24)

Bug Fixes

v2.7.1

Compare Source

v2.7.1 (2025-02-20)

Bug Fixes

v2.7.0

Compare Source

v2.7.0 (2024-12-17)

Features

v2.6.9

Compare Source

v2.6.9 (2024-12-16)

Bug Fixes

v2.6.8

Compare Source

v2.6.8 (2024-12-07)
Bug Fixes

v2.6.7

Compare Source

v2.6.7 (2024-12-06)
Bug Fixes

v2.6.6

Compare Source

v2.6.6 (2024-11-22)

Bug Fixes

v2.6.5

Compare Source

v2.6.5 (2024-11-16)
Bug Fixes

v2.6.4

Compare Source

v2.6.4 (2024-11-10)

Bug Fixes

v2.6.3

Compare Source

v2.6.3 (2024-11-10)
Bug Fixes

v2.6.2

Compare Source

v2.6.2 (2024-11-07)

Bug Fixes

v2.6.1

Compare Source

v2.6.1 (2024-11-06)
Bug Fixes

v2.6.0

Compare Source

v2.6.0 (2024-10-29)
Features

v2.5.2

Compare Source

v2.5.2 (2024-10-27)

Bug Fixes

v2.5.1

Compare Source

v2.5.1 (2024-10-24)
Bug Fixes

v2.5.0

Compare Source

v2.5.0 (2024-10-22)

Features

v2.4.13

Compare Source

v2.4.13 (2024-10-22)

Bug Fixes

v2.4.12

Compare Source

v2.4.12 (2024-10-21)

Bug Fixes

v2.4.11

Compare Source

v2.4.11 (2024-10-14)

Bug Fixes

v2.4.10

Compare Source

v2.4.10 (2024-10-11)

Bug Fixes

v2.4.9

Compare Source

v2.4.9 (2024-09-20)

Bug Fixes

v2.4.8

Compare Source

v2.4.8 (2024-09-17)

Bug Fixes

v2.4.7

Compare Source

v2.4.7 (2024-09-15)

Bug Fixes

v2.4.6

Compare Source

v2.4.6 (2024-09-13)

Bug Fixes

v2.4.5

Compare Source

v2.4.5 (2024-09-11)

Bug Fixes

v2.4.4

Compare Source

v2.4.4 (2024-09-08)

Bug Fixes

v2.4.3

Compare Source

v2.4.3 (2024-09-07)

Bug Fixes

v2.4.2

Compare Source

v2.4.2 (2024-09-04)

Bug Fixes

v2.4.1

Compare Source

v2.4.1 (2024-08-29)

Bug Fixes

v2.4.0

Compare Source

v2.4.0 (2024-08-28)

Features

v2.3.5

Compare Source

v2.3.5 (2024-08-02)

Bug Fixes

v2.3.4

Compare Source

v2.3.4 (2024-07-23)

Bug Fixes

v2.3.3

Compare Source

v2.3.3 (2024-07-23)
Bug Fixes

v2.3.2

Compare Source

v2.3.2 (2024-07-19)

Bug Fixes

v2.3.1

Compare Source

v2.3.1 (2024-06-01)

Bug Fixes

v2.3.0

Compare Source

v2.3.0 (2024-05-08)

[!WARNING]
This release changes how MSW treats unhandled exceptions in response resolvers. Previously, they were treated as request errors. Starting with this release, unhandled resolver exceptions will be coerced to 500 Unhandled Exception mocked error responses produced by the library. Please note that you must not intentionally throw errors in your resolvers. Please use Response.error() to mock request/network errors. Unhandled exceptions are considered unintended and will be treated as if they happen on the actual server.

Features
server.events.on('unhandledException', ({ request, error }) => {
  console.log('%s %s errored! See details below.', request.method, request.url)
  console.error(error)
})
Bug Fixes

v2.2.14

Compare Source

v2.2.14 (2024-04-17)

Bug Fixes

v2.2.13

Compare Source

v2.2.13 (2024-03-27)

Bug Fixes

v2.2.12

Compare Source

v2.2.12 (2024-03-27)

Bug Fixes

v2.2.11

Compare Source

v2.2.11 (2024-03-26)

Bug Fixes

v2.2.10

Compare Source

v2.2.10 (2024-03-22)

Bug Fixes

v2.2.9

Compare Source

v2.2.9 (2024-03-20)

Bug Fixes

v2.2.8

Compare Source

v2.2.8 (2024-03-19)

Bug Fixes

v2.2.7

Compare Source

v2.2.7 (2024-03-18)

Bug Fixes

v2.2.6

Compare Source

v2.2.6 (2024-03-17)

Bug Fixes

v2.2.5

Compare Source

v2.2.5 (2024-03-17)

Bug Fixes

v2.2.4

Compare Source

v2.2.4 (2024-03-16)

Bug Fixes

v2.2.3

Compare Source

v2.2.3 (2024-03-08)

Bug Fixes

v2.2.2

Compare Source

v2.2.2 (2024-02-28)

Bug Fixes

v2.2.1

Compare Source

v2.2.1 (2024-02-17)

Bug Fixes

v2.2.0

Compare Source

v2.2.0 (2024-02-12)

Features
Bug Fixes

v2.1.7

Compare Source

v2.1.7 (2024-02-06)

Bug Fixes

Special thanks to @​willdawsonme for investigating these issues.

v2.1.6

Compare Source

v2.1.6 (2024-02-05)

Bug Fixes

v2.1.5

Compare Source

v2.1.5 (2024-01-25)

Bug Fixes

v2.1.4

Compare Source

v2.1.4 (2024-01-23)

Bug Fixes

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 changed the title Update dependency msw to v2.1.4 Update dependency msw to v2.1.5 Jan 25, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 16fc4b9 to 802e162 Compare January 25, 2024 17:39
@renovate renovate bot changed the title Update dependency msw to v2.1.5 Update dependency msw to v2.1.6 Feb 5, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 802e162 to 3110701 Compare February 5, 2024 13:00
@renovate renovate bot changed the title Update dependency msw to v2.1.6 Update dependency msw to v2.1.7 Feb 6, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch 2 times, most recently from 917d9d2 to 7725d43 Compare February 12, 2024 12:34
@renovate renovate bot changed the title Update dependency msw to v2.1.7 Update dependency msw to v2.2.0 Feb 12, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch 2 times, most recently from 460b068 to 0d28260 Compare February 17, 2024 04:35
@renovate renovate bot changed the title Update dependency msw to v2.2.0 Update dependency msw to v2.2.1 Feb 17, 2024
@renovate renovate bot changed the title Update dependency msw to v2.2.1 Update dependency msw to v2.2.2 Feb 28, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch 5 times, most recently from a9efa3a to bf34412 Compare March 3, 2024 10:42
@renovate renovate bot changed the title Update dependency msw to v2.2.2 Update dependency msw to v2.2.3 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from bf34412 to b3ab8b7 Compare March 8, 2024 01:44
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from b3ab8b7 to acef962 Compare March 16, 2024 04:24
@renovate renovate bot changed the title Update dependency msw to v2.2.3 Update dependency msw to v2.2.4 Mar 16, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from acef962 to c46e6c8 Compare March 17, 2024 02:19
@renovate renovate bot changed the title Update dependency msw to v2.2.4 Update dependency msw to v2.2.5 Mar 17, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from c46e6c8 to 94afdc4 Compare March 17, 2024 14:11
@renovate renovate bot changed the title Update dependency msw to v2.2.5 Update dependency msw to v2.2.6 Mar 17, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 94afdc4 to 15ea9a8 Compare March 18, 2024 01:53
@renovate renovate bot changed the title Update dependency msw to v2.2.6 Update dependency msw to v2.2.7 Mar 18, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 15ea9a8 to a97e466 Compare March 19, 2024 04:59
@renovate renovate bot changed the title Update dependency msw to v2.2.7 Update dependency msw to v2.2.8 Mar 19, 2024
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from a97e466 to 7c301bb Compare March 20, 2024 04:25
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.8.5 chore(deps): update dependency msw to v2.8.6 May 29, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 9a70f15 to 3354562 Compare May 31, 2025 14:48
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.8.6 chore(deps): update dependency msw to v2.8.7 May 31, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 3354562 to e3dcc7f Compare June 3, 2025 03:23
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.8.7 chore(deps): update dependency msw to v2.9.0 Jun 3, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from e3dcc7f to 49bf7d6 Compare June 7, 2025 08:03
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.9.0 chore(deps): update dependency msw to v2.10.0 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 49bf7d6 to 3689a6c Compare June 7, 2025 12:11
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.0 chore(deps): update dependency msw to v2.10.1 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 3689a6c to 65ba1cc Compare June 9, 2025 04:27
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.1 chore(deps): update dependency msw to v2.10.2 Jun 9, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch 2 times, most recently from a5ad5c0 to 6bd08ca Compare July 4, 2025 17:08
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.2 chore(deps): update dependency msw to v2.10.3 Jul 4, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 6bd08ca to e467053 Compare July 12, 2025 03:53
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.3 chore(deps): update dependency msw to v2.10.4 Jul 12, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch 3 times, most recently from 4049b78 to 1332ecd Compare August 13, 2025 22:54
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.4 chore(deps): update dependency msw to v2.10.5 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 1332ecd to 23ea8a7 Compare August 19, 2025 12:02
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 23ea8a7 to befe0ea Compare August 31, 2025 12:05
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.10.5 chore(deps): update dependency msw to v2.11.0 Aug 31, 2025
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.11.0 chore(deps): update dependency msw to v2.11.1 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from befe0ea to 31f191f Compare August 31, 2025 18:39
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from 31f191f to a1a2031 Compare September 10, 2025 19:05
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.11.1 chore(deps): update dependency msw to v2.11.2 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/msw-2.x-lockfile branch from a1a2031 to 21d88bb Compare September 20, 2025 14:15
@renovate renovate bot changed the title chore(deps): update dependency msw to v2.11.2 chore(deps): update dependency msw to v2.11.3 Sep 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants