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 major updates (major) #58

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config 2.18.1 -> 3.7.3 age adoption passing confidence
@vitest/coverage-v8 (source) ^1.6.0 -> ^2.1.2 age adoption passing confidence
eslint (source) ^8.57.1 -> ^9.12.0 age adoption passing confidence
happy-dom ^14.11.4 -> ^15.7.4 age adoption passing confidence
vitest (source) ^1.6.0 -> ^2.1.2 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v3.7.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.7.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • Disable antfu/no-top-level-await for markdown snippets  -  by @​antfu (a984c)
    View changes on GitHub

v3.7.1

Compare Source

   🚀 Features
    View changes on GitHub

v3.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • Disable explicit-function-return-type in markdown code  -  by @​antfu (60ffd)
  • Disable ts/explicit-function-return-type in vue files  -  by @​antfu (1788d)
    View changes on GitHub

v3.6.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.6.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.6.0

Compare Source

   🐞 Bug Fixes
  • perfectionist/sort-imports sort types always on top  -  by @​antfu (e2839)
    View changes on GitHub

v3.5.1

Compare Source

No significant changes

    View changes on GitHub

v3.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.4.1

Compare Source

No significant changes

    View changes on GitHub

v3.4.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.3.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.3.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.3.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.2.2

Compare Source

   🐞 Bug Fixes
  • Disable unicorn/consistent-function-scoping for arrow functions  -  by @​antfu (362ab)
    View changes on GitHub

v3.2.1

Compare Source

No significant changes

    View changes on GitHub

v3.2.0

Compare Source

   🚀 Features
  • Move disable rules to the end, remove deprecated rules  -  by @​antfu (c3e2d)
    View changes on GitHub

v3.1.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.0.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.27.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.27.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.26.1

Compare Source

No significant changes

    View changes on GitHub

v2.26.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.24.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.24.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.23.2

Compare Source

No significant changes

    View changes on GitHub

v2.23.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.23.0

Compare Source

   🚀 Features
  • Introduce type options, enable ts/explicit-function-return-type for lib  -  by @​antfu (3dd7b)
   🐞 Bug Fixes
    View changes on GitHub

v2.22.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.22.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.22.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.22.1

Compare Source

No significant changes

    View changes on GitHub

v2.22.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.21.3

Compare Source

No significant changes

    View changes on GitHub

v2.21.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.21.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.21.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.20.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.19.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.19.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.19.0

Compare Source

   🚀 Features
    View changes on GitHub
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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

Configuration

📅 Schedule: Branch creation - "every 1 month" (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.

Copy link

github-actions bot commented Apr 5, 2024

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 14.77% 74 / 501
🔵 Statements 14.77% 74 / 501
🔵 Functions 5% 1 / 20
🔵 Branches 17.39% 4 / 23
File CoverageNo changed files found.
Generated in workflow #678

@renovate renovate bot force-pushed the renovate/major-all-major branch 10 times, most recently from e6e43a9 to 6ceeb15 Compare April 11, 2024 22:14
@renovate renovate bot force-pushed the renovate/major-all-major branch 5 times, most recently from 34fd7f9 to bfad5c8 Compare April 20, 2024 13:29
@renovate renovate bot force-pushed the renovate/major-all-major branch 5 times, most recently from b853f6a to 8687a48 Compare April 29, 2024 12:31
@renovate renovate bot force-pushed the renovate/major-all-major branch 7 times, most recently from 206420c to 35cc937 Compare May 7, 2024 03:47
@renovate renovate bot force-pushed the renovate/major-all-major branch 2 times, most recently from bfb2ed3 to 2d393b0 Compare May 8, 2024 03:44
@renovate renovate bot force-pushed the renovate/major-all-major branch 8 times, most recently from b336aa2 to d26838f Compare September 4, 2024 13:18
@renovate renovate bot force-pushed the renovate/major-all-major branch 8 times, most recently from 63eb4ce to d574041 Compare September 12, 2024 16:14
@renovate renovate bot force-pushed the renovate/major-all-major branch 7 times, most recently from 9a9b7a0 to 3e33039 Compare September 20, 2024 15:45
@renovate renovate bot force-pushed the renovate/major-all-major branch 4 times, most recently from 80273a2 to 068dbd2 Compare September 27, 2024 00:02
@renovate renovate bot force-pushed the renovate/major-all-major branch from 068dbd2 to 9809d0d Compare October 2, 2024 18:37
@renovate renovate bot force-pushed the renovate/major-all-major branch from 9809d0d to 1d55653 Compare October 4, 2024 22: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