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
@unocss/autocomplete (source) 0.61.3 -> 0.62.3 age adoption passing confidence
@unocss/core (source) 0.61.3 -> 0.62.3 age adoption passing confidence
@unocss/preset-mini (source) 0.61.3 -> 0.62.3 age adoption passing confidence
@unocss/rule-utils (source) 0.61.3 -> 0.62.3 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
rollup (source) 4.18.1 -> 4.21.3 age adoption passing confidence
vitest (source) 2.0.1 -> 2.1.0 age adoption passing confidence

Release Notes

unocss/unocss (@​unocss/autocomplete)

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.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.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.0.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.0.4

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 changed the title chore(deps): update all dependencies (non-major) chore(deps): update dependency vitest to v2.0.2 Jul 10, 2024
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from 155a5a8 to 847fabc Compare July 13, 2024 13:27
@renovate renovate bot changed the title chore(deps): update dependency vitest to v2.0.2 chore(deps): update all dependencies (non-major) Jul 13, 2024
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 6 times, most recently from 33e97a0 to 0339563 Compare July 22, 2024 11:23
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 6 times, most recently from 2458e72 to dc008a7 Compare August 1, 2024 10:01
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 2 times, most recently from d7ec3ba to 21576fc Compare August 6, 2024 09:52
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch 4 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 from 19fbb65 to 79d75dd Compare September 12, 2024 10:14
@renovate renovate bot force-pushed the renovate/all-dependencies-(non-major) branch from 79d75dd to 4139aa7 Compare September 12, 2024 16:42
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