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): bump the deps-minor group with 20 updates #3346

Merged
merged 9 commits into from
Oct 22, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2024

Bumps the deps-minor group with 20 updates:

Package From To
@changesets/cli 2.27.8 2.27.9
@types/web 0.0.167 0.0.174
textlint 14.2.0 14.2.1
typescript 5.6.2 5.6.3
vite 5.4.8 5.4.9
@wagmi/core 2.13.8 2.13.9
react-toastify 10.0.5 10.0.6
@vitejs/plugin-react 4.3.1 4.3.3
@types/react 18.3.10 18.3.11
eslint-plugin-react-refresh 0.4.12 0.4.13
tailwindcss 3.4.13 3.4.14
bun 1.1.29 1.1.31
@fuels/vm-asm 0.58.0 0.58.2
next 14.2.13 14.2.15
eslint-config-next 14.2.13 14.2.15
typedoc-plugin-markdown 4.2.8 4.2.9
typedoc-plugin-merge-modules 6.0.1 6.0.2
vue 3.5.10 3.5.12
ethers 6.13.2 6.13.4
@graphql-codegen/cli 5.0.2 5.0.3

Updates @changesets/cli from 2.27.8 to 2.27.9

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.9

Patch Changes

Commits

Updates @types/web from 0.0.167 to 0.0.174

Release notes

Sourced from @​types/web's releases.

@​types/web@​0.0.174

index.d.ts

No changes

iterable.d.ts

No changes

@​types/web@​0.0.173

index.d.ts

No changes

iterable.d.ts

No changes

@​types/web@​0.0.172

index.d.ts

New interfaces

  • AbortController
  • AbortSignal
  • AbstractRange
  • AnalyserNode
  • Animation
  • AnimationEffect
  • AnimationEvent
  • AnimationPlaybackEvent
  • AnimationTimeline
  • Attr
  • AudioBuffer
  • AudioBufferSourceNode
  • AudioContext
  • AudioData
  • AudioDecoder
  • AudioDestinationNode
  • AudioEncoder
  • AudioListener
  • AudioNode
  • AudioParam
  • AudioParamMap
  • AudioProcessingEvent
  • AudioScheduledSourceNode
  • AudioWorklet
  • AudioWorkletNode
  • AuthenticatorAssertionResponse
  • AuthenticatorAttestationResponse

... (truncated)

Commits

Updates textlint from 14.2.0 to 14.2.1

Commits
  • 0afaf86 chore(release): v14.2.1 (#1427)
  • f959988 refactor(formatter): import formatter as static (#1426)
  • a1e01ce docs(image): make the border of get-started-steps images transparent (#1425)
  • af5120f docs(textlint): improve docs for linter.lintText (#1424)
  • 14dbe05 fix(deps): update dependency @​babel/cli to ^7.25.6
  • c36fade chore(deps): update peter-evans/create-pull-request action to v7 (#1420)
  • 2daf592 fix(deps): update dependency @​babel/preset-env to ^7.25.4
  • See full diff in compare view

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

Release notes

Sourced from vite's releases.

v5.4.9

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.9 (2024-10-14)

Commits

Updates @wagmi/core from 2.13.8 to 2.13.9

Release notes

Sourced from @​wagmi/core's releases.

@​wagmi/core@​2.13.9

Patch Changes

Changelog

Sourced from @​wagmi/core's changelog.

2.13.9

Patch Changes

Commits

Updates react-toastify from 10.0.5 to 10.0.6

Commits

Updates @vitejs/plugin-react from 4.3.1 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 } })],
}
})

v4.3.2

Ignore directive sourcemap error #369

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 } })],
}
})

4.3.2 (2024-09-29)

Ignore directive sourcemap error #369

Commits

Updates @types/react from 18.3.10 to 18.3.11

Commits

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

Release notes

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

v0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Changelog

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

0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)
Commits
  • 268df3b Support for Arbitrary Module Identifiers syntax (fixes #52) [publish]
  • cb7cecd Support for react-redux connect (fixes #51)
  • See full diff in compare view

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 bun from 1.1.29 to 1.1.31

Release notes

Sourced from bun's releases.

Bun v1.1.31

To install:

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.31:

bun upgrade

Read Bun v1.1.31's release notes on Bun's blog

Thanks to 19 contributors!

Bun v1.1.30

To install:

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

... (truncated)

Commits

Updates @fuels/vm-asm from 0.58.0 to 0.58.2

Updates next from 14.2.13 to 14.2.15

Release notes

Sourced from next's releases.

v14.2.15

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • support breadcrumb style catch-all parallel routes #65063
  • Provide non-dynamic segments to catch-all parallel routes #65233
  • Fix client reference access causing metadata missing #70732
  • feat(next/image): add support for decoding prop #70298
  • feat(next/image): add images.localPatterns config #70529
  • fix(next/image): handle undefined images.localPatterns config in images-manifest.json
  • fix: Do not omit alt on getImgProps return type, ImgProps #70608
  • [i18n] Routing fix #70761

Credits

Huge thanks to @​ztanner, @​agadzik, @​huozhi, @​styfle, @​icyJoseph and @​wyattjoh for helping!

v14.2.14

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix: clone response in first handler to prevent race (#70082) (#70649)
  • Respect reexports from metadata API routes (#70508) (#70647)
  • Externalize node binary modules for app router (#70646)
  • Fix revalidateTag() behaviour when invoked in server components (#70446) (#70642)
  • Fix prefetch bailout detection for nested loading segments (#70618)
  • Add missing node modules to externals (#70382)
  • Feature: next/image: add support for images.remotePatterns.search (#70302)

Credits

Huge thanks to @​styfle, @​ztanner, @​ijjk, @​huozhi and @​wyattjoh for helping!

Commits

Updates eslint-config-next from 14.2.13 to 14.2.15

Release notes

Sourced from eslint-config-next's releases.

v14.2.15

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • support breadcrumb style catch-all parallel routes #65063
  • Provide non-dynamic segments to catch-all parallel routes #65233
  • Fix client reference access causing metadata missing #70732
  • feat(next/image): add support for decoding prop #70298
  • feat(next/image): add images.localPatterns config #70529
  • fix(next/image): handle undefined images.localPatterns config in images-manifest.json
  • fix: Do not omit alt on getImgProps return type, ImgProps #70608
  • [i18n] Routing fix #70761

Credits

Huge thanks to @​ztanner, @​agadzik, @​huozhi, @​styfle, @​icyJoseph and @​wyattjoh for helping!

v14.2.14

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix: clone response in first handler to prevent race (#70082) (#70649)
  • Respect reexports from metadata API routes (#70508) (#70647)
  • Externalize node binary modules for app router (#70646)
  • Fix revalidateTag() behaviour when invoked in server components (#70446) (#70642)
  • Fix prefetch bailout detection for nested loading segments (#70618)
  • Add missing node modules to externals (#70382)
  • Feature: next/image: add support for images.remotePatterns.search (#70302)

Credits

Huge thanks to @​styfle, @​ztanner, @​ijjk, @​huozhi and @​wyattjoh for helping!

Commits

Updates typedoc-plugin-markdown from 4.2.8 to 4.2.9

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Patch Changes

  • Expose @return block tags on declarations (#694)
  • Add parentheses on function names in type declaration table views (#696)
Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.2.9 (2024-10-01)

Patch Changes

  • Expose @return block tags on declarations (#694)
  • Add parentheses on function names in type declaration table views (#696)
Commits

Updates typedoc-plugin-merge-modules from 6.0.1 to 6.0.2

Release notes

Sourced from typedoc-plugin-merge-modules's releases.

6.0.2

Fixed

  • Category descriptions and group descriptions were missing in the generated documentation when TypeDoc was run with an entryPointStrategy different than "merge" or "packages".
Changelog

Sourced from typedoc-plugin-merge-modules's changelog.

[6.0.2] - 2024-10-13

Fixed

  • Category descriptions and group descriptions were missing in the generated documentation when TypeDoc was run with an entryPointStrategy different than "merge" or "packages".
Commits

Updates vue from 3.5.10 to 3.5.12

Release notes

Sourced from vue's releases.

v3.5.12

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.11

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.12 (2024-10-11)

Bug Fixes

Performance Improvements

  • reactivity: avoid unnecessary recursion in removeSub (#12135) (ec917cf)

3.5.11 (2024-10-03)

Bug Fixes

  • compiler-sfc: do not skip TSSatisfiesExpression when transforming props destructure (#12062) (2328b05), closes #12061
  • reactivity: prevent overwriting next property during batch processing (#12075) (d3f5e6e), closes #12072
  • scheduler: job ordering when the post queue is flushing (#12090) (577edca)
  • types: correctly infer TypeProps when it is any (#12073) (57315ab), closes #12058
  • types: should not intersect PublicProps with Props (#12077) (

Bumps the deps-minor group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.8` | `2.27.9` |
| [@types/web](https://github.com/microsoft/TypeScript-DOM-Lib-Generator) | `0.0.167` | `0.0.174` |
| [textlint](https://github.com/textlint/textlint) | `14.2.0` | `14.2.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.8` | `5.4.9` |
| [@wagmi/core](https://github.com/wevm/wagmi/tree/HEAD/packages/core) | `2.13.8` | `2.13.9` |
| [react-toastify](https://github.com/fkhadra/react-toastify) | `10.0.5` | `10.0.6` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.1` | `4.3.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.10` | `18.3.11` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.12` | `0.4.13` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.13` | `3.4.14` |
| [bun](https://github.com/oven-sh/bun) | `1.1.29` | `1.1.31` |
| @fuels/vm-asm | `0.58.0` | `0.58.2` |
| [next](https://github.com/vercel/next.js) | `14.2.13` | `14.2.15` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.13` | `14.2.15` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.2.8` | `4.2.9` |
| [typedoc-plugin-merge-modules](https://github.com/krisztianb/typedoc-plugin-merge-modules) | `6.0.1` | `6.0.2` |
| [vue](https://github.com/vuejs/core) | `3.5.10` | `3.5.12` |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.13.2` | `6.13.4` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `5.0.2` | `5.0.3` |


Updates `@changesets/cli` from 2.27.8 to 2.27.9
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@types/web` from 0.0.167 to 0.0.174
- [Release notes](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/releases)
- [Commits](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/compare/@types/[email protected]...@types/[email protected])

Updates `textlint` from 14.2.0 to 14.2.1
- [Release notes](https://github.com/textlint/textlint/releases)
- [Commits](textlint/textlint@v14.2.0...v14.2.1)

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

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

Updates `@wagmi/core` from 2.13.8 to 2.13.9
- [Release notes](https://github.com/wevm/wagmi/releases)
- [Changelog](https://github.com/wevm/wagmi/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/wevm/wagmi/commits/@wagmi/[email protected]/packages/core)

Updates `react-toastify` from 10.0.5 to 10.0.6
- [Release notes](https://github.com/fkhadra/react-toastify/releases)
- [Commits](fkhadra/react-toastify@v10.0.5...v10.0.6)

Updates `@vitejs/plugin-react` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.3/packages/plugin-react)

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

Updates `eslint-plugin-react-refresh` from 0.4.12 to 0.4.13
- [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.12...v0.4.13)

Updates `tailwindcss` from 3.4.13 to 3.4.14
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.14/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.13...v3.4.14)

Updates `bun` from 1.1.29 to 1.1.31
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](oven-sh/bun@bun-v1.1.29...bun-v1.1.31)

Updates `@fuels/vm-asm` from 0.58.0 to 0.58.2

Updates `next` from 14.2.13 to 14.2.15
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.13...v14.2.15)

Updates `eslint-config-next` from 14.2.13 to 14.2.15
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.15/packages/eslint-config-next)

Updates `typedoc-plugin-markdown` from 4.2.8 to 4.2.9
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-markdown)

Updates `typedoc-plugin-merge-modules` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/krisztianb/typedoc-plugin-merge-modules/releases)
- [Changelog](https://github.com/krisztianb/typedoc-plugin-merge-modules/blob/master/CHANGELOG.md)
- [Commits](krisztianb/typedoc-plugin-merge-modules@v6.0.1...v6.0.2)

Updates `vue` from 3.5.10 to 3.5.12
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.10...v3.5.12)

Updates `ethers` from 6.13.2 to 6.13.4
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v6.13.2...v6.13.4)

Updates `@graphql-codegen/cli` from 5.0.2 to 5.0.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@types/web"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: textlint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@wagmi/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: react-toastify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: eslint-plugin-react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: bun
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@fuels/vm-asm"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: typedoc-plugin-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: typedoc-plugin-merge-modules
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: vue
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: ethers
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
- dependency-name: "@graphql-codegen/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

vercel bot commented Oct 20, 2024

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

Name Status Preview Comments Updated (UTC)
fuels-template ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 21, 2024 11:28pm
ts-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 21, 2024 11:28pm

Copy link

codspeed-hq bot commented Oct 20, 2024

CodSpeed Performance Report

Merging #3346 will not alter performance

Comparing dependabot/npm_and_yarn/deps-minor-cdffb0aaa9 (e56e980) with master (bf47c3d)

Summary

✅ 18 untouched benchmarks

maschad
maschad previously approved these changes Oct 21, 2024
@maschad maschad enabled auto-merge (squash) October 21, 2024 16:54
arboleya
arboleya previously approved these changes Oct 21, 2024
Torres-ssf
Torres-ssf previously approved these changes Oct 21, 2024
Copy link
Contributor

Coverage Report:

Lines Branches Functions Statements
75.92%(-0.06%) 70.04%(-0.03%) 75.03%(-0.06%) 76.05%(-0.06%)
Changed Files:
Ok File (✨=New File) Lines Branches Functions Statements
🔴 packages/account/src/account.ts 78.82%
(-2.88%)
63.51%
(-0.87%)
80%
(-4.21%)
78.61%
(-2.82%)

@maschad maschad merged commit 28e9ed8 into master Oct 22, 2024
24 checks passed
@maschad maschad deleted the dependabot/npm_and_yarn/deps-minor-cdffb0aaa9 branch October 22, 2024 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore Issue is a chore
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants