TexteaInc / json-viewer

not only a JSON viewer
https://viewer.textea.io
MIT License
455 stars 36 forks source link

build(deps-dev): bump the patterns group across 1 directory with 11 updates #512

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 2 months ago

Bumps the patterns group with 11 updates in the / directory:

Package From To
@commitlint/cli 19.4.0 19.4.1
@commitlint/config-angular 19.3.0 19.4.1
@emotion/react 11.13.0 11.13.3
@swc/core 1.7.14 1.7.22
@types/react 18.3.3 18.3.5
@typescript-eslint/parser 8.2.0 8.3.0
expect-type 0.19.0 0.20.0
husky 9.1.4 9.1.5
lint-staged 15.2.9 15.2.10
rollup 4.21.0 4.21.2
vite 5.4.1 5.4.2

Updates @commitlint/cli from 19.4.0 to 19.4.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.4.1

19.4.1 (2024-08-28)

Bug Fixes

New Contributors

Full Changelog: https://github.com/conventional-changelog/commitlint/compare/v19.4.0...v19.4.1

Changelog

Sourced from @​commitlint/cli's changelog.

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

Commits


Updates @commitlint/config-angular from 19.3.0 to 19.4.1

Release notes

Sourced from @​commitlint/config-angular's releases.

v19.4.1

19.4.1 (2024-08-28)

Bug Fixes

New Contributors

Full Changelog: https://github.com/conventional-changelog/commitlint/compare/v19.4.0...v19.4.1

v19.4.0

Features

Chore & Docs

New Contributors

Full Changelog: https://github.com/conventional-changelog/commitlint/compare/v19.3.1...v19.4.0

v19.3.1

19.3.1 (2024-05-13)

Bug Fixes

Chore

... (truncated)

Changelog

Sourced from @​commitlint/config-angular's changelog.

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/config-angular

Commits


Updates @emotion/react from 11.13.0 to 11.13.3

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.13.3

Patch Changes

Commits


Updates @swc/core from 1.7.14 to 1.7.22

Changelog

Sourced from @​swc/core's changelog.

[1.7.22] - 2024-08-30

Bug Fixes

  • (es/minifier) Iterate object properties in reverse direction while inlining property access (#9507) (f584ef7)

[1.7.21] - 2024-08-28

Bug Fixes

[1.7.19] - 2024-08-28

Bug Fixes

  • (es/minifier) Track if a var is used with in (#9508) (7d6269e)

Features

Miscellaneous Tasks

  • (es/codegen) Bump minimum required swc_allocator version to 0.1.8 (#9492) (5258763)

Refactor

[1.7.17] - 2024-08-23

Bug Fixes

... (truncated)

Commits
  • 6290dd3 chore: Publish 1.7.22 with swc_core v0.102.2
  • 2c505bf chore: Update changelog
  • 4313e27 chore: Publish 1.7.22-nightly-20240830.1 with swc_core v0.102.2
  • d0dd531 chore: Publish crates with swc_core v0.102.2
  • 222aca1 chore: Enable html publish pipeline
  • f584ef7 fix(es/minifier): Iterate object properties in reverse direction while inlini...
  • 8c0d79d chore: Update changelog
  • 32f13d7 chore: Publish 1.7.21 with swc_core v0.102.1
  • 391fa54 chore: Update changelog
  • 5da0e25 chore: Publish 1.7.21-nightly-20240828.1 with swc_core v0.102.1
  • Additional commits viewable in compare view


Updates @types/react from 18.3.3 to 18.3.5

Commits


Updates @typescript-eslint/parser from 8.2.0 to 8.3.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.3.0

8.3.0 (2024-08-26)

🚀 Features

  • eslint-plugin: [no-deprecation] add rule (#9783)
  • typescript-estree: replace globby w/ fast-glob (#9518)
  • typescript-estree: reload project service once when file config isn't found (#9853)

🩹 Fixes

  • ast-spec: use Expression in argument of ThrowStatement (#9632)
  • eslint-plugin: [no-unnecessary-template-expression] add missing parentheses in autofix (#8673)
  • eslint-plugin: [no-unnecessary-type-parameters] check mapped alias type arguments (#9741)
  • utils: add missing TSSatisfiesExpression in RuleListenerBaseSelectors (#9832)
  • utils: add TSDeclareFunction to functionTypeTypes (#9788)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.3.0 (2024-08-26)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits


Updates expect-type from 0.19.0 to 0.20.0

Release notes

Sourced from expect-type's releases.

v0.20.0

Breaking changes

This change updates how overloaded functions are treated. Now, .parameters gives you a union of the parameter-tuples that a function can take. For example, given the following type:

type Factorize = {
  (input: number): number[]
  (input: bigint): bigint[]
}

Behvaiour before:

expectTypeOf<Factorize>().parameters.toEqualTypeOf<[bigint]>()

Behaviour now:

expectTypeOf<Factorize>().parameters.toEqualTypeOf<[number] | [bigint]>()

There were similar changes for .returns, .parameter(...), and .toBeCallableWith. Also, overloaded functions are now differentiated properly when using .branded.toEqualTypeOf (this was a bug that it seems nobody found).

See #83 for more details or look at the updated docs (including a new section called "Overloaded functions", which has more info on how this behaviour differs for TypeScript versions before 5.3).

What's Changed

Full Changelog: https://github.com/mmkal/expect-type/compare/v0.19.0...v0.20.0

v0.20.0-0

Breaking changes

... (truncated)

Commits


Updates husky from 9.1.4 to 9.1.5

Release notes

Sourced from husky's releases.

v9.1.5

What's Changed

New Contributors

Full Changelog: https://github.com/typicode/husky/compare/v9.1.4...v9.1.5

Commits


Updates lint-staged from 15.2.9 to 15.2.10

Release notes

Sourced from lint-staged's releases.

v15.2.10

Patch Changes

Changelog

Sourced from lint-staged's changelog.

15.2.10

Patch Changes

Commits
  • 163112f chore(changeset): release
  • 829575c Merge pull request #1471 from lint-staged/updates
  • 893ca84 refactor: remove unused parameter default
  • a661f46 build(deps): migrate to ESLint 9
  • e3f283b build(deps): update minor dependencies
  • 35483b9 docs: add some more concrete command examples to the README
  • See full diff in compare view


Updates rollup from 4.21.0 to 4.21.2

Release notes

Sourced from rollup's releases.

v4.21.2

4.21.2

2024-08-30

Bug Fixes

  • Handle IIFE/UMD namespace definitions conflicting with a builtin property (#5605)

Pull Requests

v4.21.1

4.21.1

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

Changelog

Sourced from rollup's changelog.

4.21.2

2024-08-30

Bug Fixes

  • Handle IIFE/UMD namespace definitions conflicting with a builtin property (#5605)

Pull Requests

4.21.1

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

Commits


Updates vite from 5.4.1 to 5.4.2

Changelog

Sourced from vite's changelog.

5.4.2 (2024-08-20)

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
netlify[bot] commented 2 months ago

Deploy Preview for any-viewer ready!

Name Link
Latest commit 04807b29f02e815e3c54ddfa5efd17dbd6d8f780
Latest deploy log https://app.netlify.com/sites/any-viewer/deploys/66d533a430b94800084c750d
Deploy Preview https://deploy-preview-512--any-viewer.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

socket-security[bot] commented 2 months ago

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@commitlint/cli@19.4.1 None 0 31.2 kB escapedcat
npm/@commitlint/config-angular@19.4.1 None 0 6.17 kB escapedcat
npm/@commitlint/lint@19.4.1 None 0 14 kB escapedcat
npm/@commitlint/rules@19.4.1 None 0 70.6 kB escapedcat
npm/@emotion/react@11.13.3 None 0 824 kB emotion-release-bot
npm/@rollup/rollup-android-arm-eabi@4.21.2 None 0 1.48 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-android-arm64@4.21.2 None 0 2.1 MB lukastaegert
npm/@rollup/rollup-darwin-arm64@4.21.2 None 0 2.21 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-darwin-x64@4.21.2 None 0 2.36 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-arm-gnueabihf@4.21.2 None 0 2.21 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-arm-musleabihf@4.21.2 None 0 2.21 MB lukastaegert
npm/@rollup/rollup-linux-arm64-gnu@4.21.2 None 0 2.22 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-arm64-musl@4.21.2 None 0 2.12 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-powerpc64le-gnu@4.21.2 None 0 2.76 MB lukastaegert
npm/@rollup/rollup-linux-riscv64-gnu@4.21.2 None 0 2.31 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-s390x-gnu@4.21.2 None 0 3.86 MB lukastaegert
npm/@rollup/rollup-linux-x64-gnu@4.21.2 None 0 2.48 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-linux-x64-musl@4.21.2 None 0 2.47 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-win32-arm64-msvc@4.21.2 None 0 2.73 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-win32-ia32-msvc@4.21.2 None 0 2.49 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@rollup/rollup-win32-x64-msvc@4.21.2 None 0 3.3 MB guybedford, lukastaegert, rich_harris, ...1 more
npm/@swc/core-darwin-arm64@1.7.22 None 0 37.9 MB kdy1
npm/@swc/core-darwin-x64@1.7.22 None 0 41.7 MB kdy1
npm/@swc/core-linux-arm-gnueabihf@1.7.22 None 0 26.4 MB kdy1
npm/@swc/core-linux-arm64-gnu@1.7.22 None 0 45.1 MB kdy1, kwonoj
npm/@swc/core-linux-arm64-musl@1.7.22 None 0 56 MB kdy1
npm/@swc/core-linux-x64-gnu@1.7.22 None 0 52.1 MB kdy1, kwonoj
npm/@swc/core-linux-x64-musl@1.7.22 None 0 63.8 MB kdy1
npm/@swc/core-win32-arm64-msvc@1.7.22 None 0 35.8 MB kdy1, kwonoj
npm/@swc/core-win32-ia32-msvc@1.7.22 None 0 29.9 MB kdy1, kwonoj
npm/@swc/core-win32-x64-msvc@1.7.22 None 0 55.7 MB kdy1, kwonoj
npm/@swc/core@1.7.22 environment, filesystem, shell 0 119 kB kdy1, kwonoj
npm/@types/react@18.3.5 None 0 438 kB types
npm/@typescript-eslint/parser@8.3.0 None 0 18.8 kB bradzacher, jameshenry
npm/expect-type@0.20.0 None 0 109 kB mmkale
npm/husky@9.1.5 None 0 0 B
npm/lint-staged@15.2.10 None 0 122 kB okonet
npm/rollup@4.21.2 None 0 2.27 MB eventualbuddha, lukastaegert, rich_harris, ...2 more
npm/vite@5.4.2 None 0 3.26 MB antfu, patak, soda, ...2 more

🚮 Removed packages: npm/@commitlint/cli@19.4.0), npm/@commitlint/config-angular@19.3.0), npm/@commitlint/lint@19.2.2), npm/@commitlint/rules@19.0.3), npm/@emotion/react@11.13.0), npm/@rollup/rollup-android-arm-eabi@4.21.0), npm/@rollup/rollup-android-arm64@4.21.0), npm/@rollup/rollup-darwin-arm64@4.21.0), npm/@rollup/rollup-darwin-x64@4.21.0), npm/@rollup/rollup-linux-arm-gnueabihf@4.21.0), npm/@rollup/rollup-linux-arm-musleabihf@4.21.0), npm/@rollup/rollup-linux-arm64-gnu@4.21.0), npm/@rollup/rollup-linux-arm64-musl@4.21.0), npm/@rollup/rollup-linux-powerpc64le-gnu@4.21.0), npm/@rollup/rollup-linux-riscv64-gnu@4.21.0), npm/@rollup/rollup-linux-s390x-gnu@4.21.0), npm/@rollup/rollup-linux-x64-gnu@4.21.0), npm/@rollup/rollup-linux-x64-musl@4.21.0), npm/@rollup/rollup-win32-arm64-msvc@4.21.0), npm/@rollup/rollup-win32-ia32-msvc@4.21.0), npm/@rollup/rollup-win32-x64-msvc@4.21.0), npm/@swc/core-darwin-arm64@1.7.14), npm/@swc/core-darwin-x64@1.7.14), npm/@swc/core-linux-arm-gnueabihf@1.7.14), npm/@swc/core-linux-arm64-gnu@1.7.14), npm/@swc/core-linux-arm64-musl@1.7.14), npm/@swc/core-linux-x64-gnu@1.7.14), npm/@swc/core-linux-x64-musl@1.7.14), npm/@swc/core-win32-arm64-msvc@1.7.14), npm/@swc/core-win32-ia32-msvc@1.7.14), npm/@swc/core-win32-x64-msvc@1.7.14), npm/@swc/core@1.7.14), npm/@types/react@18.3.3), npm/@typescript-eslint/parser@8.2.0), npm/expect-type@0.19.0), npm/husky@9.1.4), npm/lint-staged@15.2.9), npm/rollup@4.21.0), npm/vite@5.4.1)

View full report↗︎

dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.