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

chore(deps): bump the create-kadena-app group with 14 updates #142

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 5, 2024

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

Package From To
@changesets/cli 2.26.2 2.27.1
commander 11.1.0 12.0.0
yaml 2.3.4 2.4.1
@kadena-dev/eslint-config 1.0.2 1.0.3
@rushstack/eslint-config 3.4.1 3.6.8
@rushstack/heft 0.50.7 0.66.2
@types/cross-spawn 6.0.5 6.0.6
@types/node 20.9.0 20.12.4
chalk 4.1.2 5.3.0
eslint 8.53.0 8.57.0
prettier 3.0.3 3.2.5
prettier-plugin-packagejson 2.4.6 2.4.14
ts-node 10.9.1 10.9.2
typescript 5.2.2 5.4.4

Updates @changesets/cli from 2.26.2 to 2.27.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.1

Patch Changes

  • #1267 86cfff1 Thanks @​Andarist! - Make ./bin.js available through package.json#exports to fix compatibility with changesets/action.

@​changesets/cli@​2.27.0

Minor Changes

Patch Changes

  • #1053 90a870a Thanks @​paescuj! - Replace the dependency is-ci with ci-info.

  • Updated dependencies [a971652, dfd4cca]:

    • @​changesets/assemble-release-plan@​6.0.0
    • @​changesets/get-dependents-graph@​2.0.0
    • @​changesets/apply-release-plan@​7.0.0
    • @​changesets/get-release-plan@​4.0.0
    • @​changesets/changelog-git@​0.2.0
    • @​changesets/config@​3.0.0
    • @​changesets/errors@​0.2.0
    • @​changesets/logger@​0.1.0
    • @​changesets/types@​6.0.0
    • @​changesets/write@​0.3.0
    • @​changesets/read@​0.6.0
    • @​changesets/git@​3.0.0
    • @​changesets/pre@​2.0.0
Commits

Updates commander from 11.1.0 to 12.0.0

Release notes

Sourced from commander's releases.

v12.0.0

Added

  • .addHelpOption() as another way of configuring built-in help option (#2006)
  • .helpCommand() for configuring built-in help command (#2087)

Fixed

  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

Changed

  • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
  • Breaking: throw an error if add an option with a flag which is already in use (#2055)
  • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
  • replace non-standard JSDoc of @api private with documented @private (#1949)
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
  • refactor internal implementation of built-in help option (#2006)
  • refactor internal implementation of built-in help command (#2087)

Deprecated

  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)

Removed

  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

v12.0.0-1

Added

... (truncated)

Changelog

Sourced from commander's changelog.

[12.0.0] (2024-02-03)

Added

  • .addHelpOption() as another way of configuring built-in help option (#2006)
  • .helpCommand() for configuring built-in help command (#2087)

Fixed

  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

Changed

  • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
  • Breaking: throw an error if add an option with a flag which is already in use (#2055)
  • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
  • replace non-standard JSDoc of @api private with documented @private (#1949)
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
  • refactor internal implementation of built-in help option (#2006)
  • refactor internal implementation of built-in help command (#2087)

Deprecated

  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)

Removed

  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

[12.0.0-1] (2024-01-20)

... (truncated)

Commits
  • 83c3f4e Bump version to 12.0.0
  • e3192a1 Merge pull request #2140 from tj/release/12.x
  • 608eaf0 Update CHANGELOG for v12 (#2133)
  • 3f44d29 Update dependencies preparing for release (#2132)
  • 4d832b2 Merge remote-tracking branch 'origin/develop' into release/12.x
  • b53109b Add links in CHANGELOG
  • 90f3c8a 12.0.0-1
  • eed665d Add 12.0.0-1 changes to CHANGELOG
  • 09244af Refactor help option implementation to hold actual Option (#2006)
  • ff08a02 Refactor help command implementation to hold actual Command (#2087)
  • Additional commits viewable in compare view

Updates yaml from 2.3.4 to 2.4.1

Release notes

Sourced from yaml's releases.

v2.4.1

  • cst: Do not drop trailing newline after line comment in block-map if followed by unindented block-seq value (#525)
  • Stringify flow collection comments in parent (#528)
  • Do not skip folding lines after the first in indented block scalars (#529)

v2.4.0

  • Add a command-line tool (#523)
  • Use the lineWidth option for line breaking in flow collections (#522)
Commits
  • 4aa56d3 2.4.1
  • e651ce1 chore: Refresh lockfile
  • 1775f13 test: Drop unused import to satisfy TS
  • 40903db fix(cst): Do not drop trailing newline after line comment in block-map if fol...
  • 46a816e fix: Do not skip folding lines after the first in indented block scalars (fix...
  • 750adbe fix: Stringify flow collection comments in parent (fixes #528)
  • e07998c ci: Move update action to yaml-playground, where it has write access
  • 5ba73d1 ci: Update yaml-playground build & BrowserStack tests (#524)
  • 8d8cfb7 2.4.0
  • e6a5e28 feat: Add CLI tool (#523)
  • Additional commits viewable in compare view

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

Release notes

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

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

Patch Changes

  • 1db01bbc6: Improve developer experience and use Typescript power to infer types of variables
Changelog

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

1.0.3

Patch Changes

  • 1db01bbc6: Improve developer experience and use Typescript power to infer types of variables
Commits

Updates @rushstack/eslint-config from 3.4.1 to 3.6.8

Changelog

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

3.6.8

Fri, 29 Mar 2024 05:46:41 GMT

Version update only

3.6.7

Thu, 28 Mar 2024 18:11:12 GMT

Version update only

3.6.6

Wed, 27 Mar 2024 19:47:21 GMT

Version update only

3.6.5

Wed, 20 Mar 2024 02:09:14 GMT

Version update only

3.6.4

Sat, 17 Feb 2024 06:24:35 GMT

Version update only

3.6.3

Wed, 07 Feb 2024 01:11:18 GMT

Version update only

3.6.2

Thu, 25 Jan 2024 23:03:57 GMT

Version update only

3.6.1

Wed, 24 Jan 2024 07:38:34 GMT

Version update only

3.6.0

Tue, 16 Jan 2024 18:30:10 GMT

Minor changes

3.5.1

Fri, 15 Dec 2023 01:10:06 GMT

... (truncated)

Commits

Updates @rushstack/heft from 0.50.7 to 0.66.2

Changelog

Sourced from @​rushstack/heft's changelog.

0.66.2

Tue, 19 Mar 2024 15:10:18 GMT

Version update only

0.66.1

Fri, 15 Mar 2024 00:12:40 GMT

Patches

  • Fix internal error when run 'heft clean'

0.66.0

Tue, 05 Mar 2024 01:19:24 GMT

Minor changes

  • Add new metrics value bootDurationMs to track the boot overhead of Heft before the action starts executing the subtasks. Update the start time used to compute taskTotalExecutionMs to be the beginning of operation graph execution. Fix the value of taskTotalExecutionMs field to be in milliseconds instead of seconds. Add new metrics value totalUptimeMs to track how long watch mode sessions are kept alive.

0.65.10

Sun, 03 Mar 2024 20:58:12 GMT

Version update only

0.65.9

Sat, 02 Mar 2024 02:22:23 GMT

Version update only

0.65.8

Fri, 01 Mar 2024 01:10:08 GMT

Version update only

0.65.7

Thu, 29 Feb 2024 07:11:45 GMT

Version update only

0.65.6

Wed, 28 Feb 2024 16:09:27 GMT

Version update only

0.65.5

Sat, 24 Feb 2024 23:02:51 GMT

Version update only

0.65.4

... (truncated)

Commits
  • 047c6b3 Bump versions [skip ci]
  • c30f58a Update changelogs [skip ci]
  • 2854080 Upgrade monorepo to TypeScript 5.4.2
  • bf6ec22 Bump versions [skip ci]
  • 781133f Update changelogs [skip ci]
  • 14b0c9d Add setStartTime() function when run clean action.
  • 997b685 Bump versions [skip ci]
  • 3b62596 Update changelogs [skip ci]
  • 5909707 Merge pull request #4564 from dmichon-msft/heft-telemetry-fix
  • 8095e85 Bump versions [skip ci]
  • Additional commits viewable in compare view

Updates @types/cross-spawn from 6.0.5 to 6.0.6

Commits

Updates @types/node from 20.9.0 to 20.12.4

Commits

Updates chalk from 4.1.2 to 5.3.0

Release notes

Sourced from chalk's releases.

v5.3.0

  • Add sideEffects field to package.json 5aafc0a
  • Add support for Gitea Actions (#603) 29b8569

chalk/chalk@v5.2.0...v5.3.0

v5.2.0

  • Improve Deno compatibility (#579) 7443e9f
  • Detect true-color support for GitHub Actions (#579) 7443e9f
  • Detect true-color support for Kitty terminal (#579) 7443e9f
  • Fix test for Azure DevOps environment (#579) 7443e9f

chalk/chalk@v5.1.2...v5.2.0

v5.1.2

  • Fix exported styles names (#569) a34bcf6

chalk/chalk@v5.1.1...v5.1.2

v5.1.1

  • Improved the names of exports introduced in 5.1.0 (#567) 6e0df05
    • We of course preserved the old names.

chalk/chalk@v5.1.0...v5.1.1

v5.1.0

  • Expose style names (#566) d7d7571

chalk/chalk@v5.0.1...v5.1.0

v5.0.1

  • Add main field to package.json for backwards compatibility with some developer tools 85f7e96

chalk/chalk@v5.0.0...v5.0.1

v5.0.0

Breaking

  • This package is now pure ESM. Please read this.
    • If you use TypeScript, you need to use TypeScript 4.7 or later. Why.
    • If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.
    • The Chalk issue tracker is not a support channel for your favorite build/bundler tool.
    • It's totally fine to stay on Chalk v4. It's been stable for years.
  • Require Node.js 12.20 fa16f4e
  • Move some properties off the default export to individual named exports:
    • chalk.InstanceChalk
    • chalk.supportsColorsupportsColor
    • chalk.stderrchalkStderr
    • chalk.stderr.supportsColorsupportsColorStderr
  • Remove .keyword(), .hsl(), .hsv(), .hwb(), and .ansi() coloring methods (#433) 4cf2e40

... (truncated)

Commits

Updates eslint from 8.53.0 to 8.57.0

Release notes

Sourced from eslint's releases.

v8.57.0

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)

Documentation

  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)

Chores

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v8.56.0

Features

  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri)

Bug Fixes

  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)

Documentation

  • 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)

Chores

  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864) (Milos Djermanovic)
  • 60a531a chore: package.json update for @​eslint/js release (Jenkins)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot])
  • 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨)
  • 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas)
  • f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然)
  • 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然)
  • 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然)
  • fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta)

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.57.0 - February 23, 2024

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v9.0.0-beta.0 - February 9, 2024

  • e40d1d7 chore: upgrade @​eslint/js@​9.0.0-beta.0 (#18108) (Milos Djermanovic)
  • 9870f93 chore: package.json update for @​eslint/js release (Jenkins)
  • 2c62e79 chore: upgrade @​eslint/eslintrc@​3.0.1 (#18107) (Milos Djermanovic)
  • 81f0294 chore: upgrade [email protected] (#18106) (Milos Djermanovic)
  • 5e2b292 chore: upgrade [email protected] (#18105) (Milos Djermanovic)
  • 9163646 feat!: Rule Tester checks for missing placeholder data in the message (#18073) (fnx)
  • 53f0f47 feat: Add loadESLint() API method for v9 (#18097) (Nicholas C. Zakas)
  • f1c7e6f docs: Switch to Ethical Ads (#18090) (Strek)
  • 15c143f docs: JS Foundation -> OpenJS Foundation in PR template (#18092) (Nicholas C. Zakas)
  • c4d26fd fix: use-isnan doesn't report on SequenceExpressions (#18059) (StyleShit)
  • 6ea339e docs: add stricter rule test validations to v9 migration guide (#18085) (Milos Djermanovic)
  • ce838ad chore: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#18045) (renovate[bot])
  • 3c816f1 docs: use relative link from CLI to core concepts (#18083) (Milos Djermanovic)
  • 54df731 chore: update dependency markdownlint-cli to ^0.39.0 (#18084) (renovate[bot])
  • 9458735 docs: fix malformed eslint config comments in rule examples (#18078) (Francesco Trotta)
  • 07a1ada docs: link from --fix CLI doc to the relevant core concept (#18080) (Bryan Mishkin)
  • 8f06a60 chore: update dependency shelljs to ^0.8.5 (#18079) (Francesco Trotta)
  • b844324 docs: Update team responsibilities (#18048) (Nicholas C. Zakas)
  • aadfb60 docs: document languageOptions and other v9 changes for context (#18074) (fnx)
  • 3c4d51d feat!: default for enforceForClassMembers in no-useless-computed-key (#18054) (Francesco Trotta)
  • 47e60f8 feat!: Stricter rule test validations (#17654) (fnx)
  • 1a94589 feat!: no-unused-vars default caughtErrors to 'all' (#18043) (Josh Goldberg ✨)
  • 857e242 docs: tweak explanation for meta.docs rule properties (#18057) (Bryan Mishkin)
  • 10485e8 docs: recommend messageId over message for reporting rule violations (#18050) (Bryan Mishkin)
  • 98b5ab4 docs: Update README (GitHub Actions Bot)
  • 93ffe30 chore: update dependency file-entry-cache to v8 (#17903) (renovate[bot])
  • 505fbf4 docs: update no-restricted-imports rule (#18015) (Tanuj Kanti)
  • 2d11d46 feat: add suggestions to use-isnan in binary expressions (#17996) (StyleShit)
  • c25b4af docs: Update README (GitHub Actions Bot)

v9.0.0-alpha.2 - January 26, 2024

... (truncated)

Commits

Updates prettier from 3.0.3 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";
@​Component({
[template]: &lt;h1&gt;{{       hello }}&lt;/h1&gt;,
})
export class AppComponent {}
</tr></table>

... (truncated)

Commits

Updates prettier-plugin-packagejson from 2.4.6 to 2.4.14

Release notes

Sourced from prettier-plugin-packagejson's releases.

v2.4.14

2.4.14 (2024-03-31)

Bug Fixes

  • deps: update dependency sort-package-json to v2.10.0 (e2bb083)

v2.4.13

2.4.13 (2024-03-28)

Bug Fixes

  • deps: update dependency sort-package-json to v2.9.0 (c4d4366)

v2.4.12

2.4.12 (2024-02-22)

Bug Fixes

  • deps: update dependency sort-package-json to v2.8.0 (8991b5b)

v2.4.11

2.4.11 (2024-02-15)

Bug Fixes

  • .js to .cjs for compatibility with { "type": "module" } (ac3a006)

v2.4.10

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.26.2` | `2.27.1` |
| [commander](https://github.com/tj/commander.js) | `11.1.0` | `12.0.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.3.4` | `2.4.1` |
| [@kadena-dev/eslint-config](https://github.com/kadena-community/kadena.js/tree/HEAD/packages/tools/eslint-config) | `1.0.2` | `1.0.3` |
| [@rushstack/eslint-config](https://github.com/microsoft/rushstack/tree/HEAD/eslint/eslint-config) | `3.4.1` | `3.6.8` |
| [@rushstack/heft](https://github.com/microsoft/rushstack/tree/HEAD/apps/heft) | `0.50.7` | `0.66.2` |
| [@types/cross-spawn](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/cross-spawn) | `6.0.5` | `6.0.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.9.0` | `20.12.4` |
| [chalk](https://github.com/chalk/chalk) | `4.1.2` | `5.3.0` |
| [eslint](https://github.com/eslint/eslint) | `8.53.0` | `8.57.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.2.5` |
| [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson) | `2.4.6` | `2.4.14` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.4.4` |


Updates `@changesets/cli` from 2.26.2 to 2.27.1
- [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 `commander` from 11.1.0 to 12.0.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@v11.1.0...v12.0.0)

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

Updates `@kadena-dev/eslint-config` from 1.0.2 to 1.0.3
- [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/@kadena-dev/[email protected]/packages/tools/eslint-config)

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

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

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

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

Updates `chalk` from 4.1.2 to 5.3.0
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v4.1.2...v5.3.0)

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

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

Updates `prettier-plugin-packagejson` from 2.4.6 to 2.4.14
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases)
- [Commits](matzkoh/prettier-plugin-packagejson@v2.4.6...v2.4.14)

Updates `ts-node` from 10.9.1 to 10.9.2
- [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.9.1...v10.9.2)

Updates `typescript` from 5.2.2 to 5.4.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.2.2...v5.4.4)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: commander
  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-patch
  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/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: create-kadena-app
- dependency-name: chalk
  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: prettier-plugin-packagejson
  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-patch
  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 Apr 5, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 8, 2024

Superseded by #145.

@dependabot dependabot bot closed this Apr 8, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/create-kadena-app-37250ff864 branch April 8, 2024 04:37
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