desko27 / react-call

⚛️ 📡 Call your React components
https://react-call.desko.dev
MIT License
453 stars 7 forks source link

Bump the minors group with 11 updates #20

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps the minors group with 11 updates:

Package From To
@biomejs/biome 1.9.2 1.9.4
@faker-js/faker 9.0.3 9.1.0
@react-symbols/icons 1.2.6 1.2.7
@types/node 22.7.4 22.8.6
@types/react 18.3.10 18.3.12
@types/react-dom 18.3.0 18.3.1
@vitejs/plugin-react 4.3.2 4.3.3
tailwindcss 3.4.13 3.4.14
typescript 5.6.2 5.6.3
vite 5.4.8 5.4.10
vite-plugin-dts 4.2.3 4.3.0

Updates @biomejs/biome from 1.9.2 to 1.9.4

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.4

Analyzer

Bug fixes

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix #4121. Respect line width when printing multiline strings. Contributed by @​ah-yu

Linter

New features

Bug Fixes

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.4 (2024-10-17)

Analyzer

Bug fixes

  • Implement GraphQL suppression action. Contributed by @​vohoanglong0107

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

  • The syntax rule noTypeOnlyImportAttributes now ignores .cts files (#4361).

    Since TypeScript 5.3, type-only imports can be associated to an import attribute in CommonJS-enabled files. See the TypeScript docs.

    The following code is no longer reported as a syntax error:

    import type { TypeFromRequire } from "pkg" with {
        "resolution-mode": "require"
    };
    

    Note that this is only allowed in files ending with the cts extension.

    Contributed by @​Conaclos

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Editors

Formatter

Bug fixes

... (truncated)

Commits


Updates @faker-js/faker from 9.0.3 to 9.1.0

Release notes

Sourced from @​faker-js/faker's releases.

v9.1.0

What's Changed

... (truncated)

Changelog

Sourced from @​faker-js/faker's changelog.

9.1.0 (2024-10-26)

New Locales

Features

Changed Locales

Bug Fixes

  • food: use arrayElement instead of fake for adjective (#3178) (a8dfa2f)
  • location: fix US ZIP code anomalies for zipCode({state}) (#3180) (df59724)
  • location: update valid ZIP ranges for FL and VA (#3167) (e271d4a)
Commits


Updates @react-symbols/icons from 1.2.6 to 1.2.7

Commits
  • cddc18a Merge pull request #41 from pheralb/next
  • 1fbb13e 🧑‍🚀 Add @types/node globally + update workspace dependencies
  • fe9a43d 🎨 Add light/dark theme + custom theme switcher & update UI components with ne...
  • 8ff9fdd 🚀 Update library with new icons & folders
  • d1c19c2 🧑‍🚀 Update dependencies
  • a0a8399 📦 Add new folder icons
  • 1382482 📦 Add new icons
  • 23fb969 ⚙️ Update name imports
  • 98ed284 ⚙️ Update camelCase name icons
  • 7032281 📦 Add change-case utility + update camelCase custom function
  • Additional commits viewable in compare view


Updates @types/node from 22.7.4 to 22.8.6

Commits


Updates @types/react from 18.3.10 to 18.3.12

Commits


Updates @types/react-dom from 18.3.0 to 18.3.1

Commits


Updates @vitejs/plugin-react from 4.3.2 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }

return { plugins: [react({ babel: { plugins: babelPlugins } })], } })

Commits


Updates tailwindcss from 3.4.13 to 3.4.14

Release notes

Sourced from tailwindcss's releases.

v3.4.14

Fixed

  • Don't set display: none on elements that use hidden="until-found" (#14625)
Changelog

Sourced from tailwindcss's changelog.

[3.4.14] - 2024-10-15

Fixed

  • Don't set display: none on elements that use hidden="until-found" (#14625)
Commits


Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff in compare view


Updates vite from 5.4.8 to 5.4.10

Release notes

Sourced from vite's releases.

v5.4.10

Please refer to CHANGELOG.md for details.

v5.4.9

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.10 (2024-10-23)

  • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412

5.4.9 (2024-10-14)

Commits


Updates vite-plugin-dts from 4.2.3 to 4.3.0

Release notes

Sourced from vite-plugin-dts's releases.

v4.3.0

Please refer to CHANGELOG.md for details.

v4.2.4

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite-plugin-dts's changelog.

4.3.0 (2024-10-22)

Features

  • upgrade api-extractor and typescript (#390) (94cdb59)

4.2.4 (2024-10-11)

Bug Fixes

  • provide default baseUrl and correctly parse tsconfig paths (#386) (dc3cbfe), closes #330 #330
  • should re-emit all source files when change in watch mode (a7e1c0c), closes #383
Commits
  • 35574d4 release: v4.3.0
  • 94cdb59 feat: upgrade api-extractor and typescript (#390)
  • 6c35975 release: v4.2.4
  • dc3cbfe fix: provide default baseUrl and correctly parse tsconfig paths (#386)
  • a7e1c0c fix: should re-emit all source files when change in watch mode
  • See full diff 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 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
vercel[bot] commented 1 week ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-call ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 1, 2024 10:29am