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

chore(deps): update all non-major dependencies #121

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@iconify-json/simple-icons ^1.2.11 -> ^1.2.23 age adoption passing confidence dependencies patch
@playwright/test (source) 1.48.2 -> 1.50.1 age adoption passing confidence devDependencies minor
@types/node (source) ^22.9.0 -> ^22.13.1 age adoption passing confidence devDependencies minor
actions/setup-node v4.1.0 -> v4.2.0 age adoption passing confidence action minor
consola ^3.2.3 -> ^3.4.0 age adoption passing confidence devDependencies minor
eslint (source) ^9.14.0 -> ^9.19.0 age adoption passing confidence devDependencies minor
pathe ^2.0.0 -> ^2.0.2 age adoption passing confidence devDependencies patch
pkg-types ^1.2.1 -> ^1.3.1 age adoption passing confidence devDependencies minor
pnpm (source) 9.13.2 -> 9.15.5 age adoption passing confidence packageManager minor
tinyexec ^0.3.1 -> ^0.3.2 age adoption passing confidence devDependencies patch
turbo (source) ^2.3.0 -> ^2.4.0 age adoption passing confidence devDependencies minor
typescript (source) ^5.6.3 -> ^5.7.3 age adoption passing confidence devDependencies minor

Release Notes

microsoft/playwright (@​playwright/test)

v1.50.1

Compare Source

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Compare Source

actions/setup-node (actions/setup-node)

v4.2.0

Compare Source

unjs/consola (consola)

v3.4.0

Compare Source

compare changes

🚀 Enhancements
  • Use upstream @clack/prompts (#​332)
🩹 Fixes
  • Calculate box width without escape sequence chars (#​336)
💅 Refactors
📦 Build
  • Update exports for node16 typescript resolution (#​331)
🏡 Chore
❤️ Contributors
  • Pooya Parsa (@​pi0)
  • Yongqi <yongqi14@​qq.com>

v3.3.3

Compare Source

compare changes

📦 Build
  • Revert "build: update exports for node16 typescript resolution" (2065136)
❤️ Contributors

v3.3.2

Compare Source

compare changes

📦 Build
  • Patch string-width for node 14 support (421c663)
  • Update exports for node16 typescript resolution (18bc852)
❤️ Contributors

v3.3.1

Compare Source

compare changes

🩹 Fixes
  • fancy: Fallback whenIntl is unavailable (#​326)
❤️ Contributors

v3.3.0

Compare Source

compare changes

🚀 Enhancements
  • utils: formatTree utility (#​223)
  • Export prompt option types (#​301)
  • Support report error cause (#​308)
  • prompt: Configurable cancel strategy (#​325)
  • formatTree: Support max depth (#​267)
🩹 Fixes
  • Use initial in select and multiselect prompts (#​232)
  • Make box title color same as border (#​236)
📖 Documentation
📦 Build
  • Fix subpath types (#​265)
  • Add require condition for browser builds (#​243)
🌊 Types
  • Fix prompt with select type return value type (#​238)
🏡 Chore
🎨 Styles
🤖 CI
  • Use conventional commit for autofix (#​217)
❤️ Contributors
eslint/eslint (eslint)

v9.19.0

Compare Source

v9.18.0

Compare Source

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

unjs/pathe (pathe)

v2.0.2

Compare Source

compare changes

🩹 Fixes
  • format: Allow calls with partial arguments (#​198)
  • Use node:path export types (#​199)
  • extname: Handle inputs ending with dot (#​203)
🏡 Chore
  • Enable strict typescript compilation (#​200)
  • Update deps (c284a3d)
❤️ Contributors

v2.0.1

Compare Source

compare changes

🩹 Fixes
  • Mixed posix/win32 namespaces (#​197)
❤️ Contributors
unjs/pkg-types (pkg-types)

v1.3.1

Compare Source

compare changes

🩹 Fixes
🏡 Chore
❤️ Contributors

v1.3.0

Compare Source

compare changes

🚀 Enhancements
  • types: Add packageManager field to PackageJson (#​204)
🏡 Chore
🤖 CI
  • Enable tests on windows (#​205)
❤️ Contributors
pnpm/pnpm (pnpm)

v9.15.5: pnpm 9.15.5

Compare Source

Patch Changes

  • Verify that the package name is valid when executing the publish command.
  • When running pnpm install, the preprepare and postprepare scripts of the project should be executed #​8989.
  • Quote args for scripts with shell-quote to support new lines (on POSIX only) #​8980.
  • Proxy settings should be respected, when resolving Git-hosted dependencies #​6530.
  • Replace strip-ansi with the built-in util.stripVTControlCharacters #​9009.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.4: pnpm 9.15.4

Compare Source

Patch Changes

  • Ensure that recursive pnpm update --latest <pkg> updates only the specified package, with dedupe-peer-dependents=true.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.3

Compare Source

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

v9.15.0

Compare Source

v9.14.4

Compare Source

v9.14.3

Compare Source

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen config help if that's undesired.


  • 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 requested a review from danielroe as a code owner November 15, 2024 21:50
Copy link

vercel bot commented Nov 15, 2024

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

Name Status Preview Comments Updated (UTC)
examples ❌ Failed (Inspect) Feb 4, 2025 11:07am

@renovate renovate bot changed the title chore(deps): update devdependency eslint to ^9.15.0 chore(deps): update all non-major dependencies Nov 18, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f246be7 to 0d9982d Compare November 18, 2024 18:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0d9982d to 5db7c0c Compare November 19, 2024 15:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5db7c0c to f8739f0 Compare November 19, 2024 18:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f8739f0 to 99c4b51 Compare November 20, 2024 03:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 99c4b51 to 4d408b9 Compare November 20, 2024 11:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4d408b9 to 5e4a65a Compare November 21, 2024 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5e4a65a to 1158b20 Compare November 22, 2024 18:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1158b20 to 60d4fba Compare November 23, 2024 02:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 60d4fba to e238c5b Compare November 23, 2024 08:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e238c5b to faaf14d Compare November 25, 2024 09:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from faaf14d to 08823f9 Compare November 25, 2024 23:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 08823f9 to e30e1ba Compare November 26, 2024 06:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e30e1ba to d3231a3 Compare November 27, 2024 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d3231a3 to cf7ffae Compare November 28, 2024 06:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 35e6308 to 15e5aa6 Compare January 23, 2025 02:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15e5aa6 to 0b47d17 Compare January 23, 2025 11:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0b47d17 to fe52684 Compare January 23, 2025 14:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe52684 to acdc5f8 Compare January 23, 2025 19:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from acdc5f8 to 031bfc4 Compare January 24, 2025 19:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 031bfc4 to 31db57a Compare January 27, 2025 06:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 31db57a to b54a440 Compare January 27, 2025 11:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b54a440 to 8393209 Compare January 28, 2025 02:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8393209 to 12c6caa Compare January 31, 2025 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 12c6caa to 49548c3 Compare January 31, 2025 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49548c3 to e5b2cbb Compare February 2, 2025 10:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e5b2cbb to d3d884d Compare February 2, 2025 18:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d3d884d to 7c8f0ed Compare February 4, 2025 03:33
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