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

Bump the create-kadena-app group with 17 updates #68

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 17, 2023

Bumps the create-kadena-app group with 17 updates:

Package From To
commander 9.3.0 11.1.0
cross-fetch 3.1.5 4.0.0
yaml 2.1.1 2.3.4
@kadena-dev/eslint-config 0.0.10 1.0.2
@kadena-dev/heft-rig 0.0.10 0.1.0
@rushstack/eslint-config 3.3.0 3.4.1
@rushstack/heft 0.50.6 0.63.2
@types/cross-spawn 6.0.2 6.0.5
@types/debug 4.1.7 4.1.12
@types/heft-jest 1.0.3 1.0.6
@types/mkdirp 1.0.2 2.0.0
@types/node 18.17.1 20.9.1
eslint 8.45.0 8.53.0
prettier 3.0.0 3.1.0
rimraf 5.0.1 5.0.5
ts-node 10.8.2 10.9.1
typescript 5.1.6 5.2.2

Updates commander from 9.3.0 to 11.1.0

Release notes

Sourced from commander's releases.

v11.1.0

Fixed

  • TypeScript: update OptionValueSource to allow any string, to match supported use of custom sources (#1983)
  • TypeScript: add that Command.version() can also be used as getter (#1982)
  • TypeScript: add null return type to Commands.executableDir(), for when not configured (#1965)
  • subcommands with an executable handler and only a short help flag are now handled correctly by the parent's help command (#1930)

Added

  • registeredArguments property on Command with the array of defined Argument (like Command.options for Option) (#2010)
  • TypeScript declarations for Option properties: envVar, presetArg (#2019)
  • TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription (#2019)
  • example file which shows how to configure help to display any custom usage in the list of subcommands (#1896)

Changed

  • (developer) refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors (#1969)

Deprecated

  • Command._args was private anyway, but now available as registeredArguments (#2010)

v11.0.0

Fixed

  • help command works when help option is disabled (#1864)

Changed

  • leading and trailing spaces are now ignored by the .arguments() method (#1874)
  • refine "types" exports for ESM to follow TypeScript guidelines (#1886)
  • Breaking: Commander 11 requires Node.js v16 or higher

v10.0.1

Added

Fixed

  • remove unused Option.optionFlags property from TypeScript definition (#1844)

Changed

  • assume boolean option intended if caller passes string instead of hash to .implies() (#1854)

v10.0.0

Added

... (truncated)

Changelog

Sourced from commander's changelog.

[11.1.0] (2023-10-13)

Fixed

  • TypeScript: update OptionValueSource to allow any string, to match supported use of custom sources (#1983)
  • TypeScript: add that Command.version() can also be used as getter (#1982)
  • TypeScript: add null return type to Commands.executableDir(), for when not configured (#1965)
  • subcommands with an executable handler and only a short help flag are now handled correctly by the parent's help command (#1930)

Added

  • registeredArguments property on Command with the array of defined Argument (like Command.options for Option) (#2010)
  • TypeScript declarations for Option properties: envVar, presetArg (#2019)
  • TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription (#2019)
  • example file which shows how to configure help to display any custom usage in the list of subcommands (#1896)

Changed

  • (developer) refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors (#1969)

Deprecated

  • Command._args was private anyway, but now available as registeredArguments (#2010)

[11.0.0] (2023-06-16)

Fixed

  • help command works when help option is disabled (#1864)

Changed

  • leading and trailing spaces are now ignored by the .arguments() method (#1874)
  • refine "types" exports for ESM to follow TypeScript guidelines (#1886)
  • Breaking: Commander 11 requires Node.js v16 or higher

[10.0.1] (2023-04-15)

Added

Fixed

  • remove unused Option.optionFlags property from TypeScript definition (#1844)

Changed

  • assume boolean option intended if caller passes string instead of hash to .implies() (#1854)

... (truncated)

Commits

Updates cross-fetch from 3.1.5 to 4.0.0

Release notes

Sourced from cross-fetch's releases.

v4.0.0

What's Changed

BREAKING CHANGES

  • Dropped support for Node 10 and 12. (Note: cross-fetch will likely continue working on those versions, but specs tests are not running on those Node versions and no support will be provided if issues come up.)
  • Please check implementation conflicts in the Fetch API tests.

FEATURES

  • Added support for Node 18 and 20.
  • Added support for Service and Cloudflare Workers (Fixes #69, #78, #148) by prioritizing native code over third-party implementation. Fetch API test suite now running against node-fetch, whatwg-fetch, native browser and native node fetch.
  • Upgraded whatwg-fetch to 3.6.2. Please refer to whatwg-fetch release notes between 3.0.0 and 3.6.2 for features and bug fixes.
  • fetch.ponyfill is set to true when custom implementation is used. This improves debuggability.

v3.1.8

What's Changed

  • Restored caret range to node-fetch version for automatic feature and fix updates.

Full Changelog: lquixada/cross-fetch@v3.1.7...v3.1.8

v3.1.7

What's Changed

  • Updated node-fetch version to 2.6.12

Full Changelog: lquixada/cross-fetch@v3.1.6...v3.1.7

v3.1.6

What's Changed

  • Updated node-fetch version to 2.6.11
  • Added caret range to node-fetch version for automatic feature and fix updates.

Full Changelog: lquixada/cross-fetch@v3.1.5...v3.1.6

Changelog

Sourced from cross-fetch's changelog.

4.0.0 (2023-07-03)

Commits
  • 748a312 chore(release): 4.0.0
  • dc7a7e8 chore: improved inline comment on publish script
  • a89e3ce chore: renamed release target to version
  • 058c8ff chore: updated dev dependencies minor versions
  • 71bd113 chore: updated dev dependencies patch versions
  • 5b8eee6 chore: dedupped make release target
  • 762ae72 chore: restored caret range on node-fetch dependency
  • b6c073a chore: fixed README's Table of Content
  • 30581ca chore: added workers feature support on README
  • 3594c29 chore: renamed bin/release to bin/publish
  • Additional commits viewable in compare view

Updates yaml from 2.1.1 to 2.3.4

Release notes

Sourced from yaml's releases.

v2.3.4

  • Do not throw for carriage return in tag shorthand (#501)

v2.3.3

  • Do not throw error on malformed URI escape in tag (#498)

v2.3.2

  • Fix docs typo (#489)
  • Do not require quotes for implicit keys with flow indicators (#494)
  • Update Prettier to v3 & update ESLint config

v2.3.1

  • Drop npm from package.json "engines" config (#476)

v2.3.0

This release corresponds with the release of yaml-types v0.2.0, an expanding library of custom tags or types for use with yaml.

This release contains no changes from v2.3.0-5, and the notes below include all changes from the v2.3.0-x prereleases.

Custom Tag Improvements

  • Add export of createNode() & createPair() to 'yaml/util' (#457)
  • Add static from() methods to simplify tag development, and otherwise make extending custom collections easier (#467)

TypeScript Improvements

  • Add a second optional generic type argument Strict to Document instances. (#441)
  • Add types exports for TypeScript (#463)
  • Export StringifyContext type from 'yaml/util' (#464)

Other New Features

  • Add a toJS(doc, options?) method to nodes (#451, #458)
  • Set explicit tag during createNode() for non-default tags (#464)

Bugfixes

  • Use correct argument order when stringifying flow collection comments (#443)
  • Improve first-line folding for block scalars (#422)

v2.3.0-5

  • Make extending custom collections easier (#467)
  • Fix corner case failure in error pretty-printer (CVE-2023-2251)

v2.3.0-4

New Features

  • Set explicit tag during createNode() for non-default tags (#464)
  • Export StringifyContext type from 'yaml/util' (#464)

... (truncated)

Commits

Updates @kadena-dev/eslint-config from 0.0.10 to 1.0.2

Release notes

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

@​kadena-dev/eslint-config@​1.0.0

Major Changes

  • 242b5687: Separate linting (ESLint) and formatting (Prettier)

    Adds eslint-config-prettier and removes eslint-plugin-prettier. The formatting that Prettier did is removed (also in --fix runs). Apply formatting separately using Prettier (--write or --check).

Minor Changes

  • a3f144f3: Implements the ESLint rule consistent-type-imports into our codebase and updates the currently existing imports/exports.

Patch Changes

  • Updated dependencies [242b5687]
  • Updated dependencies [4d525832]
    • @​kadena-dev/eslint-plugin@​0.0.6

This log was last generated on Fri, 04 Aug 2023 16:10:02 GMT and should not be manually modified.

Changelog

Sourced from @​kadena-dev/eslint-config's changelog.

1.0.2

Patch Changes

  • fa6b84e22: No auto-globals for vitest specs
  • Updated dependencies [1907e5ef2]
  • Updated dependencies [fa6b84e22]
    • @​kadena-dev/eslint-plugin@​0.0.8

1.0.1

Patch Changes

  • fec8dfafd: Upgrade typescript and @types/node dependencies
  • Updated dependencies [831c022c8]
  • Updated dependencies [a664a9535]
  • Updated dependencies [fec8dfafd]
  • Updated dependencies [a664a9535]
    • @​kadena-dev/eslint-plugin@​0.0.7

1.0.0

Major Changes

  • 242b5687: Separate linting (ESLint) and formatting (Prettier)

    Adds eslint-config-prettier and removes eslint-plugin-prettier. The formatting that Prettier did is removed (also in --fix runs). Apply formatting separately using Prettier (--write or --check).

Minor Changes

  • a3f144f3: Implements the ESLint rule consistent-type-imports into our codebase and updates the currently existing imports/exports.

Patch Changes

  • Updated dependencies [242b5687]
  • Updated dependencies [4d525832]
    • @​kadena-dev/eslint-plugin@​0.0.6

This log was last generated on Fri, 04 Aug 2023 16:10:02 GMT and should not be manually modified.

0.1.0

Fri, 04 Aug 2023 16:10:02 GMT

Minor changes

... (truncated)

Commits

Updates @kadena-dev/heft-rig from 0.0.10 to 0.1.0

Updates @rushstack/eslint-config from 3.3.0 to 3.4.1

Changelog

Sourced from @​rushstack/eslint-config's changelog.

3.4.1

Sun, 01 Oct 2023 02:56:30 GMT

Version update only

3.4.0

Tue, 26 Sep 2023 09:30:33 GMT

Minor changes

  • Add an optional patch which can be used to allow ESLint to extend configurations from packages that do not have the "eslint-config-" prefix

3.3.4

Fri, 15 Sep 2023 00:36:58 GMT

Version update only

3.3.3

Tue, 08 Aug 2023 07:10:39 GMT

Version update only

3.3.2

Thu, 15 Jun 2023 00:21:01 GMT

Version update only

3.3.1

Wed, 07 Jun 2023 22:45:16 GMT

Version update only

Commits

Updates @rushstack/heft from 0.50.6 to 0.63.2

Changelog

Sourced from @​rushstack/heft's changelog.

0.63.2

Fri, 10 Nov 2023 18:02:04 GMT

Version update only

0.63.1

Wed, 01 Nov 2023 23:11:35 GMT

Patches

  • Fix line endings in published package.

0.63.0

Mon, 30 Oct 2023 23:36:37 GMT

Minor changes

  • [BREAKING CHANGE] Remove "heft run" short-parameters for "--to" ("-t"), "--to-except" ("-T"), and "--only" ("-o").

Patches

  • Fix an issue with parsing of the "--debug" and "--unmanaged" flags for Heft

0.62.3

Sun, 01 Oct 2023 02:56:29 GMT

Version update only

0.62.2

Sat, 30 Sep 2023 00:20:51 GMT

Version update only

0.62.1

Thu, 28 Sep 2023 20:53:17 GMT

Version update only

0.62.0

Wed, 27 Sep 2023 00:21:38 GMT

Minor changes

  • (BREAKING API CHANGE) Remove the deprecated cancellationToken property of IHeftTaskRunHookOptions. Use abortSignal on that object instead.

0.61.3

Tue, 26 Sep 2023 21:02:30 GMT

Patches

... (truncated)

Commits
  • 8d640b8 Bump versions [skip ci]
  • 898b714 Update changelogs [skip ci]
  • 014d5ec Bump versions [skip ci]
  • 5b1d6ab Update changelogs [skip ci]
  • 9f00293 Bump versions [skip ci]
  • 6eaf681 Update changelogs [skip ci]
  • 8ebb25f Rename function
  • a164382 Remove "heft run" short-parameters for "--to", "--to-except", and "--only"
  • 6fb3ef4 Unify parsing of initial Heft tool parameters and remove argparse
  • 7daaa56 Prevent ambiguous abbreviations of parameters defined on parent tool or action
  • Additional commits viewable in compare view

Updates @types/cross-spawn from 6.0.2 to 6.0.5

Commits

Updates @types/debug from 4.1.7 to 4.1.12

Commits

Updates @types/heft-jest from 1.0.3 to 1.0.6

Commits

Updates @types/mkdirp from 1.0.2 to 2.0.0

Commits

Updates @types/node from 18.17.1 to 20.9.1

Commits

Updates eslint from 8.45.0 to 8.53.0

Release notes

Sourced from eslint's releases.

v8.53.0

Features

  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)

Bug Fixes

  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)

Documentation

  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)

Chores

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])
  • 994596b ci: run tests in Node.js 21 (#17673) (Francesco Trotta)

v8.52.0

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.53.0 - November 3, 2023

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)
  • 994596b ci: run tests in Node.js 21 (#17673) (Francesco Trotta)

v8.52.0 - October 20, 2023

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

v8.51.0 - October 6, 2023

  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624) (Milos Djermanovic)
  • f8c7403 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)

... (truncated)

Commits

Updates prettier from 3.0.0 to 3.1.0

Release notes

Sourced from prettier's releases.

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

🔗 Changelog

3.0.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.1.0

diff

🔗 Release Notes

3.0.3

diff

Add preferUnplugged: true to package.json (#15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json

Allow argument of require() to break (#15256 by @​fisker)

// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
// Prettier 3.0.2
const plugin = require(global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, ".."));
// Prettier 3.0.3
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);

Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @​sosukesuzuki)

... (truncated)

Commits
  • e8ac9f8 Release 3.1.0
  • 6a1d409 chore(deps): update dependency eslint-plugin-regexp to v2 (#15521)
  • f4d93d3 chore(deps): update dependency esbuild to v0.19.5 (#15630)
  • 4fc71a5 chore(deps): update dependency flow-parser to v0.221.0 (#15637)
  • d452f45 chore(deps): update dependency eslint-plugin-jest to v27.6.0 (#15635)
  • eb84a60 chore(deps): update dependency @​types/estree to v1.0.5 (#15625)
  • 2af23ee chore(deps): update dependency webpack to v5.89.0 (#15640)
  • 8f27c73 chore(deps): update dependency eslint-plugin-unicorn to v49 (#15642)
  • cdc5f5a chore(deps): update dependency webpack to v5.89.0 (#15639)
  • 14607ef chore(deps): update dependency eslint-plugin-n to v16.3.1 (#15636)
  • Additional commits viewable in compare view

Updates rimraf from 5.0.1 to 5.0.5

Commits

Updates ts-node from 10.8.2 to 10.9.1

Release notes

Sourced from ts-node's releases.

v10.9.1

Fixed

  • Workaround nodejs bug introduced in 18.6.0 (#1838) @​cspotcode
    • Only affects projects on node >=18.6.0 using --esm
    • Older versions of node and projects without --esm are unaffected

TypeStrong/ts-node@v10.9.0...v10.9.1 https://github.com/TypeStrong/ts-node/milestone/18?closed=1

v10.9.0

Added

  • --project accepts path to a directory containing a tsconfig.json (#1829, #1830) @​cspotcode
    • previously it required an explicit filename
  • Added helpful error message when swc version is too old to support our configuration (#1802) @​cspotcode
  • Added experimentalTsImportSp...

    Description has been truncated

Bumps the create-kadena-app group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [commander](https://github.com/tj/commander.js) | `9.3.0` | `11.1.0` |
| [cross-fetch](https://github.com/lquixada/cross-fetch) | `3.1.5` | `4.0.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.1.1` | `2.3.4` |
| [@kadena-dev/eslint-config](https://github.com/kadena-community/kadena.js/tree/HEAD/packages/tools/eslint-config) | `0.0.10` | `1.0.2` |
| @kadena-dev/heft-rig | `0.0.10` | `0.1.0` |
| [@rushstack/eslint-config](https://github.com/microsoft/rushstack/tree/HEAD/eslint/eslint-config) | `3.3.0` | `3.4.1` |
| [@rushstack/heft](https://github.com/microsoft/rushstack/tree/HEAD/apps/heft) | `0.50.6` | `0.63.2` |
| [@types/cross-spawn](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/cross-spawn) | `6.0.2` | `6.0.5` |
| [@types/debug](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/debug) | `4.1.7` | `4.1.12` |
| [@types/heft-jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/heft-jest) | `1.0.3` | `1.0.6` |
| [@types/mkdirp](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mkdirp) | `1.0.2` | `2.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.17.1` | `20.9.1` |
| [eslint](https://github.com/eslint/eslint) | `8.45.0` | `8.53.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.0` | `3.1.0` |
| [rimraf](https://github.com/isaacs/rimraf) | `5.0.1` | `5.0.5` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.8.2` | `10.9.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.1.6` | `5.2.2` |


Updates `commander` from 9.3.0 to 11.1.0
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v9.3.0...v11.1.0)

Updates `cross-fetch` from 3.1.5 to 4.0.0
- [Release notes](https://github.com/lquixada/cross-fetch/releases)
- [Changelog](https://github.com/lquixada/cross-fetch/blob/v4.x/CHANGELOG.md)
- [Commits](lquixada/cross-fetch@v3.1.5...v4.0.0)

Updates `yaml` from 2.1.1 to 2.3.4
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.1.1...v2.3.4)

Updates `@kadena-dev/eslint-config` from 0.0.10 to 1.0.2
- [Release notes](https://github.com/kadena-community/kadena.js/releases)
- [Changelog](https://github.com/kadena-community/kadena.js/blob/main/packages/tools/eslint-config/CHANGELOG.md)
- [Commits](https://github.com/kadena-community/kadena.js/commits/HEAD/packages/tools/eslint-config)

Updates `@kadena-dev/heft-rig` from 0.0.10 to 0.1.0

Updates `@rushstack/eslint-config` from 3.3.0 to 3.4.1
- [Changelog](https://github.com/microsoft/rushstack/blob/main/eslint/eslint-config/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@rushstack/eslint-config_v3.4.1/eslint/eslint-config)

Updates `@rushstack/heft` from 0.50.6 to 0.63.2
- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/heft/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@rushstack/heft_v0.63.2/apps/heft)

Updates `@types/cross-spawn` from 6.0.2 to 6.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/cross-spawn)

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

Updates `@types/heft-jest` from 1.0.3 to 1.0.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/heft-jest)

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

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

Updates `eslint` from 8.45.0 to 8.53.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.45.0...v8.53.0)

Updates `prettier` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.0.0...3.1.0)

Updates `rimraf` from 5.0.1 to 5.0.5
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v5.0.1...v5.0.5)

Updates `ts-node` from 10.8.2 to 10.9.1
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](TypeStrong/ts-node@v10.8.2...v10.9.1)

Updates `typescript` from 5.1.6 to 5.2.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.1.6...v5.2.2)

---
updated-dependencies:
- dependency-name: commander
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: create-kadena-app
- dependency-name: cross-fetch
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: create-kadena-app
- dependency-name: yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: "@kadena-dev/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: create-kadena-app
- dependency-name: "@kadena-dev/heft-rig"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: "@rushstack/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: "@rushstack/heft"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: "@types/cross-spawn"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: create-kadena-app
- dependency-name: "@types/debug"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: create-kadena-app
- dependency-name: "@types/heft-jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: create-kadena-app
- dependency-name: "@types/mkdirp"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: create-kadena-app
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: create-kadena-app
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: rimraf
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: create-kadena-app
- dependency-name: ts-node
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 17, 2023
Copy link
Author

dependabot bot commented on behalf of github Nov 20, 2023

Superseded by #71.

@dependabot dependabot bot closed this Nov 20, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/create-kadena-app-f097e9f314 branch November 20, 2023 05:57
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants