Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@jridgewell/trace-mapping ^0.3.22 -> ^0.3.23 age adoption passing confidence devDependencies patch
@types/node (source) ^20.11.19 -> ^20.11.20 age adoption passing confidence devDependencies patch
@types/react (source) ^18.2.56 -> ^18.2.59 age adoption passing confidence devDependencies patch
@types/semver (source) ^7.5.7 -> ^7.5.8 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^7.0.2 -> ^7.1.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) ^7.0.2 -> ^7.1.0 age adoption passing confidence devDependencies minor
@vue/shared (source) ^3.4.19 -> ^3.4.20 age adoption passing confidence dependencies patch
dotenv ^16.4.4 -> ^16.4.5 age adoption passing confidence devDependencies patch
es5-ext 0.10.62 -> 0.10.63 age adoption passing confidence dependencies patch
eslint (source) ^8.56.0 -> ^8.57.0 age adoption passing confidence devDependencies minor
lightningcss ^1.23.0 -> ^1.24.0 age adoption passing confidence devDependencies minor
miniflare (source) ^3.20240129.3 -> ^3.20240208.0 age adoption passing confidence devDependencies minor
mlly ^1.5.0 -> ^1.6.1 age adoption passing confidence devDependencies minor
pnpm (source) 8.15.3 -> 8.15.4 age adoption passing confidence packageManager patch
preact (source) ^10.19.5 -> ^10.19.6 age adoption passing confidence dependencies patch
sass ^1.71.0 -> ^1.71.1 age adoption passing confidence devDependencies patch
svelte (source) ^4.2.11 -> ^4.2.12 age adoption passing confidence devDependencies patch
terser (source) ^5.27.1 -> ^5.28.1 age adoption passing confidence devDependencies minor
tj-actions/changed-files v42.0.4 -> v42.0.5 age adoption passing confidence action patch
vitepress (source) 1.0.0-rc.43 -> 1.0.0-rc.44 age adoption passing confidence devDependencies patch
vitest (source) ^1.3.0 -> ^1.3.1 age adoption passing confidence devDependencies patch
vue (source) ^3.4.19 -> ^3.4.20 age adoption passing confidence dependencies patch
vue (source) ^3.4.19 -> ^3.4.20 age adoption passing confidence devDependencies patch
vue-router ^4.2.5 -> ^4.3.0 age adoption passing confidence dependencies minor

Release Notes

jridgewell/trace-mapping (@​jridgewell/trace-mapping)

v0.3.23

Compare Source

Full Changelog: jridgewell/trace-mapping@v0.3.22...v0.3.23

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

v7.1.0

Compare Source

🚀 Features
  • eslint-plugin: add *-type-checked-only configs

  • eslint-plugin: [naming-convention] support the auto-accessor syntax

  • eslint-plugin: [consistent-return] add new rule

🩹 Fixes
  • eslint-plugin: [prefer-optional-chan] allow typeof for avoiding reference error

  • eslint-plugin: [no-misused-promises] improve check union types

  • eslint-plugin: [no-use-before-define] fix false positive type reference in as, satisfies

❤️ Thank You
  • Arka Pratim Chaudhuri
  • Josh Goldberg ✨
  • YeonJuan

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

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

v7.1.0

Compare Source

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

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

vuejs/core (@​vue/shared)

v3.4.20

Compare Source

Bug Fixes
motdotla/dotenv (dotenv)

v16.4.5

Compare Source

Changed
  • 🐞 fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814
medikoo/es5-ext (es5-ext)

v0.10.63

Compare Source

eslint/eslint (eslint)

v8.57.0

Compare Source

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#​18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#​18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#​18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#​18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#​18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#​18056) (Milos Djermanovic)

Documentation

Chores

parcel-bundler/lightningcss (lightningcss)

v1.24.0

Compare Source

This release adds support the the light-dark() color function, parses CSS system colors, deduplicates custom properties during minification, merges duplicates @keyframes rules, and fixes some bugs.

light-dark()

The light-dark() function allows you to specify a light mode and dark mode color in a single declaration, without needing to write a separate media query rule. In addition, it uses the color-scheme property to control which theme to use, which allows you to set it programmatically. The color-scheme property also inherits so themes can be nested and the nearest ancestor color scheme applies.

Lightning CSS converts the light-dark() function to use CSS variable fallback when your browser targets don't support it natively. For this to work, you must set the color-scheme property on an ancestor element. The following example shows how you can support both operating system and programmatic overrides for the color scheme.

html {
  color-scheme: light dark;
}

html[data-theme=light] {
  color-scheme: light;
}

html[data-theme=dark] {
  color-scheme: dark;
}

button {
  background: light-dark(#aaa, #​444);
}

compiles to:

html {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light dark;
}

@​media (prefers-color-scheme: dark) {
  html {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
  }
}

html[data-theme="light"] {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

html[data-theme="dark"] {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

button {
  background: var(--lightningcss-light, #aaa) var(--lightningcss-dark, #​444);
}

Check it out in the playground.

CSS system colors

CSS system colors are now supported during parsing, meaning they can be safely deduplicated when merging rules.

.a {
  background: Highlight;
}

.a {
  background: ButtonText;
}

compiles to:

.a{background:buttontext}

Custom property deduplication

CSS custom properties are now deduplicated when merging rules. The last property value always wins.

.a {
  --foo: red;
}

.a {
  --foo: green;
}

minifies to:

.a{--foo:green}

@keyframes deduplication

@keyframes rules are also now deduplicated during minification. The last rule of the same name wins.

@​keyframes a {
  from { opacity: 0 }
  to { opacity: 1 }
}

@​keyframes a {
  from { color: red }
  to { color: blue }
}

compiles to:

@​keyframes a{0%{color:red}to{color:#​00f}}

Other bug fixes

cloudflare/workers-sdk (miniflare)

v3.20240208.0

Compare Source

Minor Changes
unjs/mlly (mlly)

v1.6.1

Compare Source

compare changes

🩹 Fixes
  • parseStaticImport: Omit empty import names (#​232)
❤️ Contributors
  • Patryk Tomczyk

v1.6.0

Compare Source

compare changes

🚀 Enhancements
  • Add declaration type in ESMExport (#​227)
  • utils: Add pathToFileURL (cdcbcb7)
🔥 Performance
  • resolver: Stat absolute paths once in fast path (#​229)
  • resolver: Remove intermediate pcall util (#​230)
  • resolve: Enable fast path for file urls (#​231)
🩹 Fixes
  • resolver: Strictly check input (778bd73)
💅 Refactors
  • resolver: Use pathToFileURL from mlly (982a7a9)
  • Strict type checks (77ebe50)
🏡 Chore
✅ Tests
  • resolver: Add test for node bultins (58407dd)
  • fileURLToPath, pathToFileURL: Add windows specific tests (bfa2bbe)
🤖 CI
❤️ Contributors
pnpm/pnpm (pnpm)

v8.15.4

Compare Source

preactjs/preact (preact)

v10.19.6

Compare Source

tl;dr: This release contains bug fixes for incorrect ordering of unkeyed children.

Fixes

Full Changelog: preactjs/preact@10.19.5...10.19.6

sass/dart-sass (sass)

v1.71.1

Compare Source

Command-Line Interface
  • Ship the musl Linux release with the proper Dart executable.
JavaScript API
  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the
    entrypoint is an ESM module.

Dart API
  • Make passing a null argument to NodePackageImporter() a static error rather
    than just a runtime error.
Embedded Sass
  • In the JS Embedded Host, properly install the musl Linux embedded compiler
    when running on musl Linux.
sveltejs/svelte (svelte)

v4.2.12

Compare Source

Patch Changes
  • fix: properly update svelte:component props when there are spread props (#​10604)
terser/terser (terser)

v5.28.1

Compare Source

(hotfix release)

  • Reverts v5.28.0

v5.28.0

Compare Source

  • Optimise redundant or shrinkable bitwise operations (|, ^, &, >>, <<)
  • Evaluate some BigInt math operations

v5.27.2

Compare Source

  • Recognise this as a reference to the surrounding class in drop_unused. Closes #​1472
tj-actions/changed-files (tj-actions/changed-files)

v42.0.5

Compare Source

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.5

vuejs/vitepress (vitepress)

v1.0.0-rc.44

Compare Source

Reverts
  • types for internal components (e703429)
vitest-dev/vitest (vitest)

v1.3.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/router (vue-router)

v4.3.0

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 26, 2024
@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 82beb43 to ff451da Compare February 26, 2024 08:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff451da to f4aa2d7 Compare February 26, 2024 20:07
@patak-dev patak-dev merged commit 7cfe80d into main Feb 27, 2024
@patak-dev patak-dev deleted the renovate/all-minor-patch branch February 27, 2024 06:28
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants