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 #1018

Merged
merged 2 commits into from
Nov 18, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Nov 16, 2024

This PR contains the following updates:

Package Type Update Change
@eslint/js (source) devDependencies minor ^9.14.0 -> ^9.15.0
@lmdb/lmdb-win32-x64 optionalDependencies patch 3.1.5 -> 3.1.6
@playwright/test (source) peerDependencies minor ^1.48.2 -> ^1.49.0
@playwright/test (source) devDependencies minor ^1.48.2 -> ^1.49.0
@rollup/rollup-darwin-arm64 (source) optionalDependencies minor 4.25.0 -> 4.27.3
@rollup/rollup-darwin-x64 (source) optionalDependencies minor 4.25.0 -> 4.27.3
@rollup/rollup-win32-x64-msvc (source) optionalDependencies minor 4.25.0 -> 4.27.3
@sveltejs/kit (source) devDependencies patch ^2.8.0 -> ^2.8.1
@sveltejs/vite-plugin-svelte (source) devDependencies patch ^4.0.0 -> ^4.0.1
@typescript-eslint/rule-tester (source) devDependencies minor ^8.14.0 -> ^8.15.0
@typescript-eslint/utils (source) dependencies minor ^8.14.0 -> ^8.15.0
@vitest/browser (source) devDependencies patch ^2.1.4 -> ^2.1.5
@vitest/coverage-v8 (source) devDependencies patch ^2.1.4 -> ^2.1.5
@vitest/eslint-plugin devDependencies patch ^1.1.8 -> ^1.1.10
@vitest/ui (source) devDependencies patch ^2.1.4 -> ^2.1.5
angular-eslint (source) devDependencies patch ^18.4.0 -> ^18.4.1
eslint (source) devDependencies minor ^9.14.0 -> ^9.15.0
eslint-plugin-jsdoc devDependencies minor ^50.4.3 -> ^50.5.0
eslint-plugin-playwright devDependencies minor ^2.0.1 -> ^2.1.0
husky devDependencies patch ^9.1.6 -> ^9.1.7
magic-string dependencies patch ^0.30.12 -> ^0.30.13
marked (source) devDependencies patch ^15.0.0 -> ^15.0.1
sass devDependencies minor ^1.80.6 -> ^1.81.0
sass devDependencies minor ^1.80.6 -> ^1.81.0
shiki (source) devDependencies minor ^1.22.2 -> ^1.23.1
svelte (source) devDependencies minor ^5.1.15 -> ^5.2.3
svelte (source) peerDependencies minor ^5.1.15 -> ^5.2.3
svelte-check devDependencies patch ^4.0.7 -> ^4.0.9
tailwindcss (source) devDependencies patch ^3.4.14 -> ^3.4.15
typedoc-plugin-mdn-links devDependencies patch ^3.3.7 -> ^3.3.8
typescript-eslint (source) devDependencies minor ^8.14.0 -> ^8.15.0
vitest (source) devDependencies patch ^2.1.4 -> ^2.1.5

Release Notes

eslint/eslint (@​eslint/js)

v9.15.0

Compare Source

Features
  • 01557ce feat: Implement Language#normalizeLanguageOptions() (#​19104) (Nicholas C. Zakas)
  • 2edc0e2 feat: add meta.defaultOptions (#​17656) (Josh Goldberg ✨)
  • bdec50e feat: fix no-useless-computed-key false negative with __proto__ (#​19123) (Milos Djermanovic)
  • 3087c9e feat: add meta object to @eslint/js plugin (#​19095) (Francesco Trotta)
Bug Fixes
Documentation
  • d927920 docs: fix styles in no-js mode (#​18916) (Tanuj Kanti)
  • 09bc2a8 docs: Update README (GitHub Actions Bot)
  • 39089c8 docs: add no-useless-computed-key examples with object patterns (#​19109) (Milos Djermanovic)
  • 895c60f docs: add missing messageId property and suggestion properties (#​19122) (fnx)
  • 298625e docs: Change CLI -c to use flat config (#​19103) (Nicholas C. Zakas)
  • 522d8a3 docs: add deprecation on indent, quotes and semi rule types (#​19090) (Marco Pasqualetti)
Chores
kriszyp/lmdb-js (@​lmdb/lmdb-win32-x64)

v3.1.6

Compare Source

microsoft/playwright (@​playwright/test)

v1.49.0

Compare Source

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner
Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary
What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See issue #​33566 for more details.

Other breaking changes
  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.
Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

See issue #​33566 for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.

import { defineConfig, devices } from '@​playwright/test';

export default defineConfig({
  projects: [
    {
      name: 'chromium',
      use: { ...devices['Desktop Chrome'], channel: 'chromium' },
    },
  ],
});
Miscellaneous
  • <canvas> elements inside a snapshot now draw a preview.
  • New method tracing.group() to visually group actions in the trace.
  • Playwright docker images switched from Node.js v20 to Node.js v22 LTS.
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
rollup/rollup (@​rollup/rollup-darwin-arm64)

v4.27.3

Compare Source

2024-11-18

Bug Fixes
  • Revert object property tree-shaking for now (#​5736)
Pull Requests

v4.27.2

Compare Source

2024-11-15

Bug Fixes
  • Ensure unused variables in patterns are always deconflicted if rendered (#​5728)
Pull Requests

v4.27.1

Compare Source

2024-11-15

Bug Fixes
  • Fix some situations where parameter declarations could put Rollup into an infinite loop (#​5727)
Pull Requests

v4.27.0

Compare Source

2024-11-15

Features
  • Tree-shake unused properties in object literals (#​5420)
Bug Fixes
  • Change hash length limit to 21 to avoid inconsistent hash length (#​5423)
Pull Requests

v4.26.0

Compare Source

2024-11-13

Features
  • Allow to avoid await bundle.close() via explicit resource management in TypeScript (#​5721)
Pull Requests
sveltejs/kit (@​sveltejs/kit)

v2.8.1

Compare Source

Patch Changes
  • fix: only add nonce to script-src-elem, style-src-attr and style-src-elem CSP directives when unsafe-inline is not present (#​11613)

  • fix: support HTTP/2 in dev and production. Revert the changes from #​12907 to downgrade HTTP/2 to TLS as now being unnecessary (#​12989)

sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v4.0.1

Compare Source

Patch Changes
  • removed references to compiler options no longer available in svelte5 (#​1010)
typescript-eslint/typescript-eslint (@​typescript-eslint/rule-tester)

v8.15.0

Compare Source

🚀 Features
  • rule-tester: run method - avoid to infer type parameter from tests param (#​10324)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.15.0

Compare Source

🚀 Features
  • rule-tester: run method - avoid to infer type parameter from tests param (#​10324)
  • utils: add new optional language field to FlatConfig.Config type (#​10326)
🩹 Fixes
  • utils: add defaultOptions to meta in rule (#​10339)
  • add missing peer dependencies (#​9744)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (@​vitest/browser)

v2.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.1.10

Compare Source

Bug Fixes

v1.1.9

Compare Source

Features
angular-eslint/angular-eslint (angular-eslint)

v18.4.1

Compare Source

This was a version bump only for angular-eslint to align it with other projects, there were no code changes.

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.5.0

Compare Source

Features
playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v2.1.0

Compare Source

Features
  • Add test.fail.only as a valid chain (c067ad2)
typicode/husky (husky)

v9.1.7

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

rich-harris/magic-string (magic-string)

v0.30.13

Compare Source

Features

v0.30.12

Compare Source

Performance Improvements
markedjs/marked (marked)

v15.0.1

Compare Source

Bug Fixes
sass/dart-sass (sass)

v1.81.0

Compare Source

  • Fix a few cases where deprecation warnings weren't being emitted for global
    built-in functions whose names overlap with CSS calculations.

  • Add support for the CSS round() calculation with a single argument, as long
    as that argument might be a unitless number.

v1.80.7

Compare Source

Embedded Host
  • Don't treat 0 as undefined for the green and blue channels in the
    LegacyColor constructor.
shikijs/shiki (shiki)

v1.23.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.23.0

Compare Source

   🚀 Features
    View changes on GitHub
sveltejs/svelte (svelte)

v5.2.3

Compare Source

Patch Changes
  • fix: ensure dynamic call expressions correctly generate output (#​14345)

v5.2.2

Compare Source

Patch Changes
  • fix: treat property accesses of literals as pure (#​14325)

v5.2.1

Compare Source

Patch Changes
  • fix: mark pseudo classes nested inside :not as used (#​14303)

  • fix: disallow invalid attributes for <svelte:window> and <svelte:document> (#​14228)

  • fix: ensure props passed to components via mount are updateable (#​14210)

  • fix: mark subtree dynamic for img with loading attribute (#​14317)

  • fix: avoid relying on Node specifics within compiler (#​14314)

v5.2.0

Compare Source

Minor Changes
  • feat: better inlining of static attributes (#​14269)

v5.1.17

Compare Source

Patch Changes
  • fix: account for :has(...) as part of :root (#​14229)

  • fix: prevent nested pseudo class from being marked as unused (#​14229)

  • fix: use strict equality for key block comparisons in runes mode (#​14285)

  • fix: bump is-reference dependency to fix import.meta bug (#​14286)

v5.1.16

Compare Source

Patch Changes
  • fix: don't wrap pseudo classes inside :global(...) with another :global(...) during migration (#​14267)

  • fix: bail on named slots with that have reserved keywords during migration (#​14278)

sveltejs/language-tools (svelte-check)

v4.0.9

Compare Source

  • fix: detect shadowed variables/types during type hoisting (#​2590)

v4.0.8

Compare Source

  • fix: fall back to any instead of unknown for untyped $props (#​2582)
  • fix: robustify and fix file writing (#​2584)
  • fix: hoist types related to $props rune if possible (#​2571)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)
Gerrit0/typedoc-plugin-mdn-links (typedoc-plugin-mdn-links)

v3.3.8

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.15.0

Compare Source

🚀 Features
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#​10333)
  • eslint-plugin: new rule no-unsafe-type-assertion (#​10051)
  • eslint-plugin: added related-getter-setter-pairs rule (#​10192)
🩹 Fixes
  • add missing peer dependencies (#​9744)
❤️ Thank You

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

@github-actions github-actions bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from c04d626 to d98438b Compare November 18, 2024 07:49
Copy link

codecov bot commented Nov 18, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 92.09%. Comparing base (fb64c95) to head (92e71f8).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1018   +/-   ##
=======================================
  Coverage   92.09%   92.09%           
=======================================
  Files          94       94           
  Lines        2531     2531           
  Branches      421      421           
=======================================
  Hits         2331     2331           
  Misses        130      130           
  Partials       70       70           
Flag Coverage Δ
e2e 83.00% <ø> (ø)
unit 85.79% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


🚨 Try these New Features:

@github-actions github-actions bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6798eae to 8b64f90 Compare November 18, 2024 19:14
@quentinderoubaix quentinderoubaix merged commit 5f57a97 into main Nov 18, 2024
18 checks passed
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.

1 participant