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) #204

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
@rollup/plugin-node-resolve (source) 15.2.3 -> 15.3.0 age adoption passing confidence
@unocss/autocomplete (source) 0.61.3 -> 0.63.4 age adoption passing confidence
@unocss/core (source) 0.61.3 -> 0.63.4 age adoption passing confidence
@unocss/preset-mini (source) 0.61.3 -> 0.63.4 age adoption passing confidence
@unocss/rule-utils (source) 0.61.3 -> 0.63.4 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
rollup (source) 4.18.1 -> 4.24.0 age adoption passing confidence
vitest (source) 2.0.1 -> 2.1.3 age adoption passing confidence

Release Notes

rollup/plugins (@​rollup/plugin-node-resolve)

v15.3.0

2024-09-23

Features
  • feat: allow preferBuiltins to be a function (#​1694)

v15.2.4

2024-09-22

Updates
  • chore: remove is-builtin-module (#​1735)
unocss/unocss (@​unocss/autocomplete)

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
   🐞 Bug Fixes
    View changes on GitHub

v0.62.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.62.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.62.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.62.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.62.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.61.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.61.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.61.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.61.6

Compare Source

   🚀 Features
  • preset-mini: Support (float  -  by **end) (#​3997)** and Anthony Fu (clear)-(start)
   🐞 Bug Fixes
    View changes on GitHub

v0.61.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.61.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
prettier/prettier (prettier)

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
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(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:

@​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.

rollup/rollup (rollup)

v4.24.0

Compare Source

2024-10-02

Features
  • Support preserving and transpiling JSX syntax (#​5668)
Pull Requests

v4.23.0

Compare Source

2024-10-01

Features
  • Collect all emitted names and originalFileNames for assets (#​5686)
Pull Requests

v4.22.5

Compare Source

2024-09-27

Bug Fixes
  • Allow parsing of certain unicode characters again (#​5674)
Pull Requests

v4.22.4

Compare Source

2024-09-21

Bug Fixes
  • Fix a vulnerability in generated code that affects IIFE, UMD and CJS bundles when run in a browser context (#​5671)
Pull Requests

v4.22.3

Compare Source

2024-09-21

Bug Fixes
  • Ensure that mutations in modules without side effects are observed while properly handling transitive dependencies (#​5669)
Pull Requests

v4.22.2

Compare Source

2024-09-20

Bug Fixes
  • Revert fix for side effect free modules until other issues are investigated (#​5667)
Pull Requests

v4.22.1

Compare Source

2024-09-20

Bug Fixes
  • Revert #​5644 "stable chunk hashes" while issues are being investigated
Pull Requests

v4.22.0

Compare Source

2024-09-19

Features
  • Add additional known global values to avoid access side effects (#​5651)
Bug Fixes
  • Ensure deterministic chunk hash generation despite async renderChunk hook (#​5644)
  • Improve side effect detection when using "smallest" treeshaking preset when imports are optimized away (#​5658)
Pull Requests

v4.21.3

Compare Source

2024-09-12

Bug Fixes
  • Always respect side effects in left-hand side of optional chain (#​5642)
  • Update stack trace for augmented errors to not hide relevant information (#​5640)
Pull Requests

v4.21.2

Compare Source

2024-08-30

Bug Fixes
  • Handle IIFE/UMD namespace definitions conflicting with a builtin property (#​5605)
Pull Requests

v4.21.1

Compare Source

2024-08-26

Bug Fixes
  • Ensure closeWatcher hook is called when watch mode is aborted via Ctrl+C (#​5618)
  • Do not produce invalid code for import.meta.url in compact mode (#​5624)
  • Do not throw when generating chunk names when preserving modules in Windows (#​5625)
Pull Requests

v4.21.0

Compare Source

2024-08-18

Features
  • Add option to configure directory for virtual modules when preserving modules (#​5602)
Pull Requests

v4.20.0

Compare Source

2024-08-03

Features
  • Allow plugins to specify the original file name when emitting assets (#​5596)
Pull Requests

v4.19.2

Compare Source

2024-08-01

Bug Fixes
  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#​5597)
Pull Requests

v4.19.1

Compare Source

2024-07-27

Bug Fixes
  • Do not remove parantheses when tree-shaking logical expressions (#​5584)
  • Do not ignore side effects in calls left of an optional chaining operator (#​5589)
Pull Requests

v4.19.0

Compare Source

2024-07-20

Features
  • Implement support for decorators (#​5562)
Bug Fixes
  • Improve soucemap generation when tree-shaking logical expressions (#​5581)
Pull Requests
vitest-dev/vitest (vitest)

v2.1.3

Compare Source

   🐞 Bug Fixes

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 6 times, most recently from 9f4cbad to d31edc9 Compare April 12, 2024 09:25
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 6 times, most recently from 19abe09 to b53aa20 Compare April 21, 2024 07:50
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 8 times, most recently from d769767 to 8885434 Compare April 27, 2024 12:45
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 times, most recently from 82f42aa to ca1cfb1 Compare May 3, 2024 17:04
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from 1f32f8f to 161f2c0 Compare May 14, 2024 13:46
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 161f2c0 to 8299dfd Compare May 20, 2024 21:03
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 3 times, most recently from d235ef8 to 518587b Compare August 18, 2024 07:51
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from ec5e6e2 to 19fbb65 Compare August 30, 2024 09:45
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from cf1f0b6 to edd50e9 Compare September 19, 2024 06:35
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 5 times, most recently from ad99af0 to c4e0630 Compare September 23, 2024 20:05
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 8 times, most recently from 1a32529 to 130721c Compare October 4, 2024 04:45
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from b92a86f to c68a23e Compare October 9, 2024 07:47
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from c68a23e to e7aa089 Compare October 14, 2024 20:55
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