Update dev dependencies #172
                
     Closed
            
            
          
  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:
2.27.1->2.27.101.43.1->1.49.05.32.1->5.62.320.12.8->20.17.918.3.1->18.3.1418.3.0->18.3.24.2.1->4.3.43.2.5->3.4.22.2.1->2.2.25.4.5->5.7.25.2.11->5.4.11^0.28.7->^0.29.03.58.0->3.93.03.23.6->3.23.8Release Notes
changesets/changesets (@changesets/cli)
v2.27.10Compare Source
v2.27.9Compare Source
Patch Changes
#1458
400ab7bThanks @benmccann! - Moved@types/semvertodevDependencies#1462
689e541Thanks @benmccann! - removeoutdentdependencyv2.27.8Compare Source
v2.27.7Compare Source
Patch Changes
#1047
d108fa6Thanks @patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.#1400
dd6e5bbThanks @Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspaceUpdated dependencies [
d108fa6,dd6e5bb,dd6e5bb]:v2.27.6Compare Source
Patch Changes
#1392
f295b3eThanks @bluwy! - Replacemeowdependency withmrito reduce the number of transitive dependencies#1390
6a3452eThanks @bluwy! - Displaychangeset status --verbosein list form and removetty-tabledependencyv2.27.5Compare Source
Patch Changes
#1370
5e9d33aThanks @Andarist! - Fixed a regression that causedchangeset versionto fail on packages having a dev dependency on a skipped package.Updated dependencies [
5e9d33a]:v2.27.4Compare Source
Patch Changes
#1361
954a16aThanks @jakebailey! - Ensure thatversion/tagdo not touch private packages with when versioning/tagging is turned off usingversionPackagesconfig#1369
d729d8cThanks @Andarist! -changeset tagshould now correctly skip tags that exist on the remoteUpdated dependencies [
954a16a]:v2.27.3Compare Source
Patch Changes
18c966aThanks @Andarist! - Fixed an issue withchangeset statusexecuted withoutsinceargument. It should now correctly use the configured base branch as the default value.v2.27.2Compare Source
Patch Changes
#1354
69be7dcThanks @Andarist! - Fixed an issue withchangeset statusincorrectly returning an error status in two cases:privatePackage.versionwas set tofalse#1351
c6da182Thanks @TheHolyWaffle! - Fix an issue with not applying a custom.prettierrcconfiguration withprettier@>= 3.1.1Updated dependencies [
c6da182]:microsoft/playwright (@playwright/test)
v1.49.0Compare Source
v1.48.2Compare Source
v1.48.1Compare Source
Highlights
https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height
Browser Versions
This version was also tested against the following stable channels:
v1.48.0Compare Source
v1.47.2Compare Source
Highlights
https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions
Browser Versions
This version was also tested against the following stable channels:
v1.47.1Compare Source
v1.47.0Compare Source
v1.46.1Compare Source
v1.46.0Compare Source
v1.45.3Compare Source
v1.45.2Compare Source
v1.45.1Compare Source
v1.45.0Compare Source
v1.44.1Compare Source
Highlights
https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using
video: 'on'with VSCode extension the browser got closedhttps://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report
Browser Versions
This version was also tested against the following stable channels:
v1.44.0Compare Source
New APIs
Accessibility assertions
expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
expect(locator).toHaveRole() checks if the element has the specified ARIA role:
Locator handler
noWaitAfteroption.timesoption in page.addLocatorHandler() to specify maximum number of times the handler should be run.Miscellaneous options
multipartoption inapiRequestContext.fetch()now acceptsFormDataand supports repeating fields with the same name.expect(callback).toPass({ intervals })can now be configured byexpect.toPass.inervalsoption globally in testConfig.expect or per project in testProject.expect.expect(page).toHaveURL(url)now supportsignoreCaseoption.testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.
Reporter API
outputFile. The same option can also be specified asPLAYWRIGHT_BLOB_OUTPUT_FILEenvironment variable that might be more convenient on CI/CD.includeProjectInTestNameoption.Command line
--last-failedCLI option for running only tests that failed in the previous run.First run all tests:
$ npx playwright test Running 103 tests using 5 workers ... 2 failed [chromium] › my-test.spec.ts:8:5 › two ───────────────────────────────────────────────────────── [chromium] › my-test.spec.ts:13:5 › three ────────────────────────────────────────────────────── 101 passed (30.0s)Now fix the failing tests and run Playwright again with
--last-failedoption:$ npx playwright test --last-failed Running 2 tests using 2 workers 2 passed (1.2s)Browser Versions
This version was also tested against the following stable channels:
TanStack/query (@tanstack/react-query)
v5.62.3Compare Source
v5.62.2Compare Source
Version 5.62.2 - 12/3/24, 7:29 AM
Changes
Fix
175757a) by Nick LucasPackages
v5.62.1Compare Source
Version 5.62.1 - 12/2/24, 6:40 PM
Changes
Fix
d9d2728) by ParbezChore
b7bad3d) by ArnoudTest
queryObserver(#8304) (12b6782) by Sol LeePackages
v5.62.0Compare Source
Version 5.62.0 - 11/29/24, 1:03 PM
Changes
Feat
0fa1f01) by Nick LucasChore
f245792) by ArnoudPackages
v5.61.5Compare Source
Version 5.61.5 - 11/27/24, 8:09 AM
Changes
Fix
422c879) by Nick LucasCi
d28de3c) by Leonardo MontiniPackages
v5.61.4Compare Source
Version 5.61.4 - 11/26/24, 1:39 PM
Changes
Fix
3b7556f) by Jonathan ToungChore
dfe2cd1) by renovate[bot]8b0756a) by Arnoudef0b7b2) by Dominik Dorfmeisterecc17d5) by renovate[bot]c69f302) by Lachlan Collins5cd9611) by Lachlan CollinsPackages
v5.61.3Compare Source
v5.61.0Compare Source
Version 5.61.0 - 11/20/24, 1:01 PM
Changes
Feat
5731a3a) by ArnoudFix
3fa4b7c) by Dominik DorfmeisterDocs
6a9edbf) by ArnoudPackages
v5.60.6Compare Source
Version 5.60.6 - 11/19/24, 10:17 AM
Changes
Refactor
7d36089) by @kangju2000Other
fadfbde) by AmmarPackages
v5.60.5Compare Source
Version 5.60.5 - 11/15/24, 6:06 PM
Changes
Fix
4a2e838)Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.