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: bump the development-dependencies group across 1 directory with 11 updates #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the development-dependencies group with 11 updates in the / directory:

Package From To
@types/jest 29.5.12 29.5.14
@types/node 18.19.50 18.19.67
commit-and-tag-version 12.4.2 12.5.0
eslint-import-resolver-typescript 3.6.3 3.7.0
eslint-plugin-import 2.30.0 2.31.0
jsii 5.5.3 5.5.12
jsii-diff 1.103.1 1.105.0
jsii-docgen 10.5.2 10.6.0
jsii-pacmak 1.103.1 1.105.0
jsii-rosetta 5.5.4 5.5.16
typescript 5.5.4 5.7.2

Updates @types/jest from 29.5.12 to 29.5.14

Commits

Updates @types/node from 18.19.50 to 18.19.67

Commits

Updates commit-and-tag-version from 12.4.2 to 12.5.0

Release notes

Sourced from commit-and-tag-version's releases.

v12.5.0

12.5.0 (2024-10-10)

Features

v12.4.4

12.4.4 (2024-09-15)

Bug Fixes

  • sanitize double quotes result from stdout (#186) (8dbeb79)

v12.4.3

12.4.3 (2024-09-09)

Bug Fixes

  • Correct issue where downstream dependency would throw options.debug is not a function (4280bcf)
Changelog

Sourced from commit-and-tag-version's changelog.

12.5.0 (2024-10-10)

Features

12.4.4 (2024-09-15)

Bug Fixes

  • sanitize double quotes result from stdout (#186) (8dbeb79)

12.4.3 (2024-09-09)

Bug Fixes

  • Correct issue where downstream dependency would throw options.debug is not a function (4280bcf)
Commits
  • 47ab7de chore(master): release 12.5.0 (#192)
  • ffbac9b build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (#191)
  • 01f08e9 feat(python): add poetry support (#188)
  • 959200c chore(master): release 12.4.4 (#187)
  • 8dbeb79 fix: sanitize double quotes result from stdout (#186)
  • fd73a67 chore(master): release 12.4.3 (#182)
  • 4280bcf fix: Correct issue where downstream dependency would throw `options.debug is ...
  • 57530e5 chore: Update package-lock
  • 8182407 build(deps): bump jsdom from 24.1.1 to 25.0.0 (#178)
  • See full diff in compare view

Updates eslint-import-resolver-typescript from 3.6.3 to 3.7.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Commits
  • c5da700 chore: release eslint-import-resolver-typescript (#327)
  • 93ea130 feat: implement import-x resolver interface v3 (#326)
  • e6256b7 chore(deps): update dependency simple-git-hooks to ^2.11.1 (#325)
  • da56f17 chore(deps): update dependency react to ^18.3.1 (#324)
  • 88a6d44 chore(deps): update node.js to v18.20.5 (#323)
  • bed664f chore(deps): update dependency @​changesets/cli to ^2.27.10 (#322)
  • 42e7cc3 chore(deps): update dependency @​types/node to ^18.19.63 (#320)
  • 13fa760 chore(deps): update dependency @​changesets/cli to ^2.27.9 (#319)
  • 5ee5879 fix(deps): update dependency debug to ^4.3.7 (#316)
  • f5b09f5 chore(deps): update dependency eslint to ^8.57.1 (#315)
  • Additional commits viewable in compare view

Updates eslint-plugin-import from 2.30.0 to 2.31.0

Release notes

Sourced from eslint-plugin-import's releases.

v2.31.0

Added

Fixed

Changed

#3073: import-js/eslint-plugin-import#3073 #3072: import-js/eslint-plugin-import#3072 #3071: import-js/eslint-plugin-import#3071 #3070: import-js/eslint-plugin-import#3070 #3068: import-js/eslint-plugin-import#3068 #3066: import-js/eslint-plugin-import#3066 #3065: import-js/eslint-plugin-import#3065 #3062: import-js/eslint-plugin-import#3062 #3052: import-js/eslint-plugin-import#3052 #3043: import-js/eslint-plugin-import#3043 #3032: import-js/eslint-plugin-import#3032 #2996: import-js/eslint-plugin-import#2996 #2817: import-js/eslint-plugin-import#2817 [@​akwodkiewicz]: https://github.com/akwodkiewicz [@​joshuaobrien]: https://github.com/joshuaobrien [@​liuxingbaoyu]: https://github.com/liuxingbaoyu [@​manuth]: https://github.com/manuth [@​michaelfaith]: https://github.com/michaelfaith [@​phryneas]: https://github.com/phryneas

... (truncated)

Changelog

Sourced from eslint-plugin-import's changelog.

[2.31.0] - 2024-10-03

Added

Fixed

  • ExportMap / flat config: include languageOptions in context (#3052, thanks [@​michaelfaith])
  • [no-named-as-default]: Allow using an identifier if the export is both a named and a default export (#3032, thanks [@​akwodkiewicz])
  • [export]: False positive for exported overloaded functions in TS (#3065, thanks [@​liuxingbaoyu])
  • exportMap: export map cache is tainted by unreliable parse results (#3062, thanks [@​michaelfaith])
  • exportMap: improve cacheKey when using flat config (#3072, thanks [@​michaelfaith])
  • adjust "is source type module" checks for flat config (#2996, thanks [@​G-Rath])

Changed

Commits
  • 91f809b v2.31.0
  • 3f1ac24 [utils] [refactor] parse: avoid using a regex here
  • d225176 [New] extensions: add the checkTypeImports option
  • 5a51b9a [Tests] rule-tester: try this babel class workaround
  • d66cde0 [New] support eslint v9
  • d27a639 [Fix] adjust "is source type module" checks for flat config
  • 1fa8a07 [Refactor] create sourceType helper
  • 0bc1355 [Tests] no-default-export, no-named-export: add test cases with non-modu...
  • 55fa203 [Tests] no-default-export, no-named-export: add test case
  • 6be20df [Docs] no-restricted-paths: fix grammar
  • Additional commits viewable in compare view

Updates jsii from 5.5.3 to 5.5.12

Release notes

Sourced from jsii's releases.

v5.5.12

What's Changed

Full Changelog: aws/jsii-compiler@v5.5.11...v5.5.12

v5.5.11

What's Changed

Full Changelog: aws/jsii-compiler@v5.5.10...v5.5.11

v5.5.10

What's Changed

Full Changelog: aws/jsii-compiler@v5.5.9...v5.5.10

v5.5.9

What's Changed

Full Changelog: aws/jsii-compiler@v5.5.8...v5.5.9

... (truncated)

Commits

Updates jsii-diff from 1.103.1 to 1.105.0

Release notes

Sourced from jsii-diff's releases.

v1.105.0

Features

Bug Fixes

  • rosetta: python identifiers mishandle identifier translations with capital letters (#4644) (e573aab)

v1.104.0

Bug Fixes

  • Python constructs do not implement a compatible interface (#4659) (2749695)
Changelog

Sourced from jsii-diff's changelog.

1.105.0 (2024-11-14)

Features

Bug Fixes

  • rosetta: python identifiers mishandle identifier translations with capital letters (#4644) (e573aab)

1.104.0 (2024-10-11)

Bug Fixes

  • Python constructs do not implement a compatible interface (#4659) (2749695)
Commits

Updates jsii-docgen from 10.5.2 to 10.6.0

Release notes

Sourced from jsii-docgen's releases.

v10.6.0

10.6.0 (2024-11-28)

Features

v10.5.7

10.5.7 (2024-11-15)

Bug Fixes

v10.5.6

10.5.6 (2024-11-11)

Bug Fixes

v10.5.5

10.5.5 (2024-09-26)

Bug Fixes

v10.5.4

10.5.4 (2024-09-16)

Bug Fixes

v10.5.3

10.5.3 (2024-09-10)

... (truncated)

Commits

Updates jsii-pacmak from 1.103.1 to 1.105.0

Release notes

Sourced from jsii-pacmak's releases.

v1.105.0

Features

Bug Fixes

  • rosetta: python identifiers mishandle identifier translations with capital letters (#4644) (e573aab)

v1.104.0

Bug Fixes

  • Python constructs do not implement a compatible interface (#4659) (2749695)
Changelog

Sourced from jsii-pacmak's changelog.

1.105.0 (2024-11-14)

Features

Bug Fixes

  • rosetta: python identifiers mishandle identifier translations with capital letters (#4644) (e573aab)

1.104.0 (2024-10-11)

Bug Fixes

  • Python constructs do not implement a compatible interface (#4659) (2749695)
Commits
  • 34676de chore: npm-check-updates && yarn upgrade (#4697)
  • 7464a59 feat(pacmak): support jsii-rosetta 5.6 (#4698)
  • aa3cc40 chore: npm-check-updates && yarn upgrade (#4687)
  • 9bc993d chore(deps-dev): Bump pip from 24.2 to 24.3.1 in /packages/jsii-pacmak/test/g...
  • 6acb547 chore: npm-check-updates && yarn upgrade (#4681)
  • 2954193 chore(deps-dev): Bump mypy from 1.12.1 to 1.13.0 in /packages/jsii-pacmak/tes...
  • 5ec16c9 chore(deps-dev): Bump mypy from 1.12.0 to 1.12.1 in /packages/jsii-pacmak/tes...
  • cdc6e5e chore: npm-check-updates && yarn upgrade (#4671)
  • 76b99a9 chore(deps-dev): Bump mypy from 1.11.2 to 1.12.0 in /packages/jsii-pacmak/tes...
  • 2636b06 chore: npm-check-updates && yarn upgrade (#4637)
  • Additional commits viewable in compare view

Updates jsii-rosetta from 5.5.4 to 5.5.16

Release notes

Sourced from jsii-rosetta's releases.

v5.5.16

What's Changed

Full Changelog: aws/jsii-rosetta@v5.5.15...v5.5.16

v5.5.15

What's Changed

Full Changelog: aws/jsii-rosetta@v5.5.14...v5.5.15

v5.5.14

What's Changed

... (truncated)

Commits

Updates typescript from 5.5.4 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

…h 11 updates

Bumps the development-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.12` | `29.5.14` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.50` | `18.19.67` |
| [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) | `12.4.2` | `12.5.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.3` | `3.7.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.30.0` | `2.31.0` |
| [jsii](https://github.com/aws/jsii-compiler) | `5.5.3` | `5.5.12` |
| [jsii-diff](https://github.com/aws/jsii/tree/HEAD/packages/jsii-diff) | `1.103.1` | `1.105.0` |
| [jsii-docgen](https://github.com/cdklabs/jsii-docgen) | `10.5.2` | `10.6.0` |
| [jsii-pacmak](https://github.com/aws/jsii/tree/HEAD/packages/jsii-pacmak) | `1.103.1` | `1.105.0` |
| [jsii-rosetta](https://github.com/aws/jsii-rosetta) | `5.5.4` | `5.5.16` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.7.2` |



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

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

Updates `commit-and-tag-version` from 12.4.2 to 12.5.0
- [Release notes](https://github.com/absolute-version/commit-and-tag-version/releases)
- [Changelog](https://github.com/absolute-version/commit-and-tag-version/blob/master/CHANGELOG.md)
- [Commits](absolute-version/commit-and-tag-version@v12.4.2...v12.5.0)

Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.3...v3.7.0)

Updates `eslint-plugin-import` from 2.30.0 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.30.0...v2.31.0)

Updates `jsii` from 5.5.3 to 5.5.12
- [Release notes](https://github.com/aws/jsii-compiler/releases)
- [Changelog](https://github.com/aws/jsii-compiler/blob/main/releases.json)
- [Commits](aws/jsii-compiler@v5.5.3...v5.5.12)

Updates `jsii-diff` from 1.103.1 to 1.105.0
- [Release notes](https://github.com/aws/jsii/releases)
- [Changelog](https://github.com/aws/jsii/blob/main/CHANGELOG.md)
- [Commits](https://github.com/aws/jsii/commits/v1.105.0/packages/jsii-diff)

Updates `jsii-docgen` from 10.5.2 to 10.6.0
- [Release notes](https://github.com/cdklabs/jsii-docgen/releases)
- [Changelog](https://github.com/cdklabs/jsii-docgen/blob/main/CHANGELOG.md)
- [Commits](cdklabs/jsii-docgen@v10.5.2...v10.6.0)

Updates `jsii-pacmak` from 1.103.1 to 1.105.0
- [Release notes](https://github.com/aws/jsii/releases)
- [Changelog](https://github.com/aws/jsii/blob/main/CHANGELOG.md)
- [Commits](https://github.com/aws/jsii/commits/v1.105.0/packages/jsii-pacmak)

Updates `jsii-rosetta` from 5.5.4 to 5.5.16
- [Release notes](https://github.com/aws/jsii-rosetta/releases)
- [Changelog](https://github.com/aws/jsii-rosetta/blob/main/releases.json)
- [Commits](aws/jsii-rosetta@v5.5.4...v5.5.16)

Updates `typescript` from 5.5.4 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.7.2)

---
updated-dependencies:
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: commit-and-tag-version
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jsii
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: jsii-diff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jsii-docgen
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jsii-pacmak
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jsii-rosetta
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 9, 2024
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