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 dependencies (non-major) #171

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​eik/cli 2.0.38 -> 2.0.39 age adoption passing confidence
@​warp-ds/eslint-config 1.0.5 -> 1.1.0 age adoption passing confidence
@warp-ds/uno 2.0.0 -> 2.1.0 age adoption passing confidence
fs-extra 11.2.0 -> 11.3.0 age adoption passing confidence
lightningcss 1.25.1 -> 1.29.3 age adoption passing confidence
prettier (source) 3.3.2 -> 3.5.3 age adoption passing confidence
typescript (source) 5.5.3 -> 5.8.2 age adoption passing confidence
unocss (source) 0.61.3 -> 0.65.4 age adoption passing confidence
unzipper 0.12.1 -> 0.12.3 age adoption passing confidence
vite (source) 5.3.3 -> 5.4.14 age adoption passing confidence

Release Notes

warp-ds/drive (@​warp-ds/uno)

v2.1.0

Compare Source

Bug Fixes
Features

v2.0.2

Compare Source

Bug Fixes

v2.0.1

Compare Source

Bug Fixes
jprichardson/node-fs-extra (fs-extra)

v11.3.0

Compare Source

parcel-bundler/lightningcss (lightningcss)

v1.29.3

Compare Source

v1.29.2

Compare Source

v1.29.1

Compare Source

v1.29.0

Compare Source

Added

  • Implement view transitions level 2, including the @view-transition rule, view-transition-class and view-transition-group properties, and class selector features of the view transition pseudo elements. This enables CSS module scoping and better minification when using these features. – #​885
  • Support parsing the @font-feature-values rule – #​840
  • Add a feature flag to explicitly enable or disable transpiling the light-dark() function – parcel-bundler/lightningcss@3043896

Fixed

v1.28.2

Compare Source

Fixes

v1.28.1

Compare Source

v1.28.0

Compare Source

Added

Fixed

v1.27.0

Compare Source

Added

Fixed

v1.26.0

Compare Source

Added

Fixed

prettier/prettier (prettier)

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

microsoft/TypeScript (typescript)

v5.8.2

Compare Source

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2: TypeScript 5.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

unocss/unocss (unocss)

v0.65.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.65.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.65.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.65.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.65.0

Compare Source

If you are interested, please read our upgrade introduction 🌟🌟🌟.
   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.64.1

Compare Source

No significant changes

    View changes on GitHub

v0.64.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v0.63.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.63.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.63.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.63.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.63.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.63.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.63.0

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - "every weekend after 4am" (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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 682637d to f86bf76 Compare March 27, 2024 16:31
@renovate renovate bot changed the title fix(deps): update all dependencies (non-major) chore(deps): update all dependencies (non-major) Mar 27, 2024
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from 16b2b2c to 68b183e Compare April 12, 2024 11:54
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 6 times, most recently from 48aaeda to c41e2ad Compare April 18, 2024 13:14
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from ccda3bb to 7cdd383 Compare April 25, 2024 11:15
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 times, most recently from aa16472 to 59a390b Compare May 5, 2024 15:22
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 times, most recently from 6050374 to 3c01046 Compare May 12, 2024 14:17
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 3 times, most recently from 70fcecd to a71e3e9 Compare May 17, 2024 20:50
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from a71e3e9 to 4a331d5 Compare May 20, 2024 22:05
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from 493549b to c6833ff Compare December 4, 2024 14:26
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from 1fe3a11 to 4744968 Compare December 19, 2024 08:59
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 4744968 to 0875a0d Compare December 25, 2024 12:20
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 times, most recently from a60c22b to d7ae299 Compare January 9, 2025 18:35
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 times, most recently from 7e7f74a to 9d0ec2b Compare January 21, 2025 13:31
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 9d0ec2b to 5903ea5 Compare January 23, 2025 17:07
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 5903ea5 to 4dbe56e Compare January 30, 2025 18:52
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 3 times, most recently from c45b7c3 to 1defac2 Compare February 13, 2025 19:10
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from d799300 to cb37c58 Compare February 28, 2025 17:54
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 3 times, most recently from c7d6c93 to a035d2f Compare March 6, 2025 06:43
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from 6754e74 to 58b7b7f Compare March 13, 2025 19:51
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 58b7b7f to 1f95a33 Compare March 14, 2025 19:06
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