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

build(deps-dev): bump the ui-dev-deps group in /ui with 11 updates #222

Merged
merged 3 commits into from
Sep 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2024

Bumps the ui-dev-deps group in /ui with 11 updates:

Package From To
@antfu/eslint-config 3.4.1 3.6.2
@codecov/vite-plugin 0.0.1-beta.12 1.0.1
@types/node 22.5.4 22.5.5
@vitest/coverage-v8 2.0.5 2.1.1
@vitest/web-worker 2.0.5 2.1.1
eslint-plugin-react-refresh 0.4.11 0.4.12
terser 5.31.6 5.32.0
typescript 5.5.4 5.6.2
typia 6.9.0 6.10.0
vite 5.4.3 5.4.5
vitest 2.0.5 2.1.1

Updates @antfu/eslint-config from 3.4.1 to 3.6.2

Release notes

Sourced from @​antfu/eslint-config's releases.

v3.6.2

   🐞 Bug Fixes

    View changes on GitHub

v3.6.1

   🐞 Bug Fixes

    View changes on GitHub

v3.6.0

   🐞 Bug Fixes

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

v3.5.1

No significant changes

    View changes on GitHub

v3.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @codecov/vite-plugin from 0.0.1-beta.12 to 1.0.1

Updates @types/node from 22.5.4 to 22.5.5

Commits

Updates @vitest/coverage-v8 from 2.0.5 to 2.1.1

Release notes

Sourced from @​vitest/coverage-v8's releases.

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

v2.1.0

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.

Potential Breaking Change

  • workspace:
    • Correctly resolve workspace globs and file paths  -  by @​sheremet-va in vitest-dev/vitest#6316 (afdcb)
    • This changes how the custom glob pattern in the workspace config is treated. Any file matching the glob is considered a Vitest config file. Any folder matching the glob pattern is treated as a workspace project and is subject to the regular config resolution (single vitest.config.ts or vite.config.ts inside the folder)
    • For example, projects/* will match anything inside the projects folder. If it's a folder, we try to find the config inside that folder (if there is none, it is still treated as a project with the default config). If it's a file, it will be treated as a Vitest config. projects/**/* previously would assume that you only wanted to have folders as projects, but now it will match every single file insideprojects.
    • This change doesn't affect non-glob usage.

   🚀 Features

... (truncated)

Commits
  • 699055e chore: release v2.1.1
  • 9f1fd18 chore: release v2.1.0
  • b2be23e chore: release v2.1.0-beta.7
  • 8ac7011 chore: release v2.1.0-beta.6
  • da52d23 fix(coverage): use project specific vitenode for uncovered files (#6044)
  • 5932a7f feat(coverage): add --exclude-after-remap (#6309)
  • 34199bd feat(browser): support v8 coverage (#6273)
  • 72056b5 chore: release v2.1.0-beta.5
  • 91dea8c fix(coverage): v8 to warn instead of crash when conversion fails (#6318)
  • 1f6cb59 fix(coverage): v8 to support source maps with multiple sources (#6120)
  • Additional commits viewable in compare view

Updates @vitest/web-worker from 2.0.5 to 2.1.1

Release notes

Sourced from @​vitest/web-worker's releases.

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

v2.1.0

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.

Potential Breaking Change

  • workspace:
    • Correctly resolve workspace globs and file paths  -  by @​sheremet-va in vitest-dev/vitest#6316 (afdcb)
    • This changes how the custom glob pattern in the workspace config is treated. Any file matching the glob is considered a Vitest config file. Any folder matching the glob pattern is treated as a workspace project and is subject to the regular config resolution (single vitest.config.ts or vite.config.ts inside the folder)
    • For example, projects/* will match anything inside the projects folder. If it's a folder, we try to find the config inside that folder (if there is none, it is still treated as a project with the default config). If it's a file, it will be treated as a Vitest config. projects/**/* previously would assume that you only wanted to have folders as projects, but now it will match every single file insideprojects.
    • This change doesn't affect non-glob usage.

   🚀 Features

... (truncated)

Commits
  • 699055e chore: release v2.1.1
  • 9f1fd18 chore: release v2.1.0
  • b2be23e chore: release v2.1.0-beta.7
  • 84a066a chore(deps): update dependency @​antfu/eslint-config to v3 (#6435)
  • 95f0203 feat(mocker): introduce @​vitest/mocker package, allow { spy: true } instead...
  • 8ac7011 chore: release v2.1.0-beta.6
  • 72056b5 chore: release v2.1.0-beta.5
  • 67b086b chore: release v2.1.0-beta.4
  • 73abf30 chore: release v2.1.0-beta.3
  • f41dda4 chore: release v2.1.0-beta.2
  • Additional commits viewable in compare view

Updates eslint-plugin-react-refresh from 0.4.11 to 0.4.12

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.12

  • Support type assertion on default export (fixes #48)
  • Add default export to fix usage with jiti (fixes #50)
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.12

  • Support type assertion on default export (fixes #48)
  • Add default export to fix usage with jiti (fixes #50)
Commits

Updates terser from 5.31.6 to 5.32.0

Changelog

Sourced from terser's changelog.

v5.32.0

  • import("module") can now be input and output from ESTree AST (#1557)
  • BigInt literals can now be input and output from ESTree AST (#1555)
  • typeof an object or array (typeof {} and typeof []) can now be statically evaluated. (#1546)
Commits

Updates typescript from 5.5.4 to 5.6.2

Release notes

Sourced from typescript's releases.

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • e6914a5 Bump version to 5.6.1-rc and LKG
  • 34121c4 Update LKG
  • 2a30c2a Merge remote-tracking branch 'origin/main' into release-5.6
  • 936a79b Expose TypeChecker. getAwaitedType to public (#59268)
  • Additional commits viewable in compare view

Updates typia from 6.9.0 to 6.10.0

Release notes

Sourced from typia's releases.

v6.10.0

From now on, typia setup wizard can detect package manager.

Also, new function typia.llm.application<App>() has come (requested by @​ryoppippi).

It composes LLM function calling application from a native TypeScript interface or class type.

export namespace llm {
  // LLM function calling application schema
  export function application<App extends object>(
    options?: ILlmApplication.IOptions
  ): ILlmApplication;
// Individual type schema
export function schema<T>(): ILlmSchema;
}

What's Changed

Full Changelog: samchon/typia@v6.9.0...v6.10.0

Commits
  • ebf637c Merge pull request #1270 from samchon/ts6.2
  • 4e680d2 Publish v6.10 update with TS 6.2 adjusting
  • efd1039 Merge pull request #1269 from samchon/feature/cli
  • 04c1cbd Merge pull request #1268 from samchon/v6.10
  • 72ffc86 Complement #1245: keep only package-manager-detector.
  • 2ec0c74 Merge pull request #1245 from ryoppippi/feature/improve-cli2
  • fe16cc6 Merge branch 'feature/cli' into feature/improve-cli2
  • 84644be Merge pull request #1267 from samchon/feature/llm-application
  • ac3bf44 Publish next version
  • 166874d Documentation of LLM function callling appllication
  • Additional commits viewable in compare view

Updates vite from 5.4.3 to 5.4.5

Changelog

Sourced from vite's changelog.

5.4.5 (2024-09-13)

5.4.4 (2024-09-11)

Commits

Updates vitest from 2.0.5 to 2.1.1

Release notes

Sourced from vitest's releases.

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

v2.1.0

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.

Potential Breaking Change

  • workspace:
    • Correctly resolve workspace globs and file paths  -  by @​sheremet-va in vitest-dev/vitest#6316 (afdcb)
    • This changes how the custom glob pattern in the workspace config is treated. Any file matching the glob is considered a Vitest config file. Any folder matching the glob pattern is treated as a workspace project and is subject to the regular config resolution (single vitest.config.ts or vite.config.ts inside the folder)
    • For example, projects/* will match anything inside the projects folder. If it's a folder, we try to find the config inside that folder (if there is none, it is still treated as a project with the default config). If it's a file, it will be treated as a Vitest config. projects/**/* previously would assume that you only wanted to have folders as projects, but now it will match every single file insideprojects.
    • This change doesn't affect non-glob usage.

   🚀 Features

... (truncated)

Commits
  • 699055e chore: release v2.1.1
  • 36b5ace fix(workspace): resolve glob pattern once to avoid name collision (#6489)
  • 16aa76c fix(browser): make example test callbacks async (#6484)
  • 9f1fd18 chore: release v2.1.0
  • 94a186e fix(ui): render project name consistently (#6329)
  • ac698b1 fix: expect.getState().testPath always returns correct path (#6472)
  • b2be23e chore: release v2.1.0-beta.7
  • 0b44722 fix: ignore importer when resolving Vitest (#6469)
  • 97773e2 chore: fix edge case in license files bundling (#6460)
  • 7ab0f4a feat(browser): support --inspect-brk (#6434)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from Zxilly as a code owner September 16, 2024 01:05
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2024
Copy link

codecov bot commented Sep 16, 2024

Bundle Report

Bundle size has no change ✅

Copy link

codecov bot commented Sep 16, 2024

Codecov Report

Attention: Patch coverage is 18.18182% with 9 lines in your changes missing coverage. Please review.

✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
ui/src/Tooltip.tsx 0.00% 2 Missing ⚠️
ui/src/tool/color.ts 0.00% 2 Missing ⚠️
ui/src/TreeMap.tsx 0.00% 0 Missing and 1 partial ⚠️
ui/src/explorer/Explorer.tsx 0.00% 0 Missing and 1 partial ⚠️
ui/src/tool/entry.ts 0.00% 0 Missing and 1 partial ⚠️
ui/src/tool/useMouse.ts 0.00% 1 Missing ⚠️
ui/src/tool/utils.ts 0.00% 1 Missing ⚠️

❗ There is a different number of reports uploaded between BASE (d35a663) and HEAD (2fbf218). Click for more details.

HEAD has 2 uploads less than BASE
Flag BASE (d35a663) HEAD (2fbf218)
integration 8 6
Additional details and impacted files
@@             Coverage Diff             @@
##           master     #222       +/-   ##
===========================================
- Coverage   92.44%   70.50%   -21.95%     
===========================================
  Files          87       87               
  Lines        4738     4746        +8     
  Branches      251       28      -223     
===========================================
- Hits         4380     3346     -1034     
- Misses        282     1309     +1027     
- Partials       76       91       +15     
Flag Coverage Δ
integration 65.31% <ø> (-0.15%) ⬇️
ui 4.06% <18.18%> (-89.67%) ⬇️
unit 41.20% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

📢 Thoughts on this report? Let us know!

@Zxilly Zxilly enabled auto-merge (rebase) September 16, 2024 06:47
@Zxilly Zxilly force-pushed the dependabot/npm_and_yarn/ui/ui-dev-deps-0d6450b6d0 branch from 9d79448 to 2e8f610 Compare September 16, 2024 07:22
dependabot bot and others added 3 commits September 16, 2024 15:24
Bumps the ui-dev-deps group in /ui with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `3.4.1` | `3.6.2` |
| @codecov/vite-plugin | `0.0.1-beta.12` | `1.0.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.5.5` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.0.5` | `2.1.1` |
| [@vitest/web-worker](https://github.com/vitest-dev/vitest/tree/HEAD/packages/web-worker) | `2.0.5` | `2.1.1` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.11` | `0.4.12` |
| [terser](https://github.com/terser/terser) | `5.31.6` | `5.32.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.2` |
| [typia](https://github.com/samchon/typia) | `6.9.0` | `6.10.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.3` | `5.4.5` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.5` | `2.1.1` |


Updates `@antfu/eslint-config` from 3.4.1 to 3.6.2
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v3.4.1...v3.6.2)

Updates `@codecov/vite-plugin` from 0.0.1-beta.12 to 1.0.1

Updates `@types/node` from 22.5.4 to 22.5.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitest/coverage-v8` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/coverage-v8)

Updates `@vitest/web-worker` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/web-worker)

Updates `eslint-plugin-react-refresh` from 0.4.11 to 0.4.12
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.11...v0.4.12)

Updates `terser` from 5.31.6 to 5.32.0
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.31.6...v5.32.0)

Updates `typescript` from 5.5.4 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.6.2)

Updates `typia` from 6.9.0 to 6.10.0
- [Release notes](https://github.com/samchon/typia/releases)
- [Commits](samchon/typia@v6.9.0...v6.10.0)

Updates `vite` from 5.4.3 to 5.4.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.5/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.5/packages/vite)

Updates `vitest` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: "@antfu/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@codecov/vite-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ui-dev-deps
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-dev-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: "@vitest/web-worker"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: eslint-plugin-react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-dev-deps
- dependency-name: terser
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: typia
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-dev-deps
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-dev-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@Zxilly Zxilly force-pushed the dependabot/npm_and_yarn/ui/ui-dev-deps-0d6450b6d0 branch from 2e8f610 to f3be833 Compare September 16, 2024 07:24
@Zxilly Zxilly merged commit 2a9421a into master Sep 16, 2024
11 of 13 checks passed
@Zxilly Zxilly deleted the dependabot/npm_and_yarn/ui/ui-dev-deps-0d6450b6d0 branch September 16, 2024 07:25
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant