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 npm-development group across 1 directory with 6 updates #390

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 Oct 14, 2024

Bumps the npm-development group with 6 updates in the / directory:

Package From To
eslint-plugin-github 5.0.1 5.0.2
eslint-plugin-jest 28.8.2 28.8.3
typescript 5.5.4 5.6.3
@types/node 22.5.2 22.7.5
@types/jest 29.5.12 29.5.13
esbuild 0.23.1 0.24.0

Updates eslint-plugin-github from 5.0.1 to 5.0.2

Release notes

Sourced from eslint-plugin-github's releases.

v5.0.2

What's Changed

Full Changelog: github/eslint-plugin-github@v5.0.1...v5.0.2

Commits
  • d6f656d Merge pull request #551 from github/dependabot/npm_and_yarn/all-dependencies-...
  • df2c60a chore(deps): bump the all-dependencies group across 1 directory with 4 updates
  • 0f0979c chore(deps): bump the all-dependencies group with 3 updates (#545)
  • 0e294e5 Merge pull request #544 from github/dependabot/npm_and_yarn/all-dependencies-...
  • 17c6e39 chore(deps): bump the all-dependencies group with 3 updates
  • 86d5cb1 Merge pull request #543 from github/dependabot/npm_and_yarn/all-dependencies-...
  • 522309f chore(deps): bump the all-dependencies group across 1 directory with 3 updates
  • c3857ba Merge pull request #541 from github/dependabot/npm_and_yarn/all-dependencies-...
  • 8010f55 chore(deps): bump the all-dependencies group with 4 updates
  • 7772275 Merge pull request #540 from github/dependabot/npm_and_yarn/all-dependencies-...
  • Additional commits viewable in compare view

Updates eslint-plugin-jest from 28.8.2 to 28.8.3

Release notes

Sourced from eslint-plugin-jest's releases.

v28.8.3

28.8.3 (2024-09-04)

Bug Fixes

  • prefer-importing-jest-globals: don't add imports in the middle of statements (#1645) (9c4197c)
Changelog

Sourced from eslint-plugin-jest's changelog.

28.8.3 (2024-09-04)

Bug Fixes

  • prefer-importing-jest-globals: don't add imports in the middle of statements (#1645) (9c4197c)
Commits
  • 497a500 chore(release): 28.8.3 [skip ci]
  • 9c4197c fix(prefer-importing-jest-globals): don't add imports in the middle of statem...
  • See full diff in compare view

Updates typescript from 5.5.4 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:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 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.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

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)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • Additional commits viewable in compare view

Updates @types/node from 22.5.2 to 22.7.5

Commits

Updates @types/jest from 29.5.12 to 29.5.13

Commits

Updates esbuild from 0.23.1 to 0.24.0

Release notes

Sourced from esbuild's releases.

v0.24.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

Changelog

Sourced from esbuild's changelog.

0.24.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-development group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-github](https://github.com/github/eslint-plugin-github) | `5.0.1` | `5.0.2` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.8.2` | `28.8.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.2` | `22.7.5` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.12` | `29.5.13` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.1` | `0.24.0` |



Updates `eslint-plugin-github` from 5.0.1 to 5.0.2
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v5.0.1...v5.0.2)

Updates `eslint-plugin-jest` from 28.8.2 to 28.8.3
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.8.2...v28.8.3)

Updates `typescript` from 5.5.4 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.5.4...v5.6.3)

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

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

Updates `esbuild` from 0.23.1 to 0.24.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.1...v0.24.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-github
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 14, 2024
Copy link

Qodana for JVM

It seems all right 👌

No new problems were found according to the checks applied

💡 Qodana analysis was run in the pull request mode: only the changed files were checked
☁️ View the detailed Qodana report

Detected 208 dependencies

Third-party software list

This page lists the third-party software dependencies used in qodana

Dependency Version Licenses
@actions/artifact 2.1.9 MIT
@actions/cache 3.2.4 MIT
@actions/core 1.10.1 MIT
@actions/exec 1.1.1 MIT
@actions/github 5.1.1 MIT
@actions/github 6.0.0 MIT
@actions/glob 0.1.2 MIT
@actions/http-client 2.2.1 MIT
@actions/io 1.1.3 MIT
@actions/tool-cache 2.0.1 MIT
@azure/abort-controller 1.1.0 MIT
@azure/abort-controller 2.1.2 MIT
@azure/core-auth 1.7.2 MIT
@azure/core-http 3.0.4 MIT
@azure/core-lro 2.7.2 MIT
@azure/core-paging 1.6.2 MIT
@azure/core-tracing 1.0.0-preview.13 MIT
@azure/core-util 1.9.0 MIT
@azure/logger 1.1.2 MIT
@azure/ms-rest-js 2.7.0 MIT
@azure/storage-blob 12.17.0 MIT
@isaacs/cliui 8.0.2 ISC
@octokit/auth-token 4.0.0 MIT
@octokit/core 3.6.0 MIT
@octokit/core 5.2.0 MIT
@octokit/core 6.1.2 MIT
@octokit/graphql 7.1.0 MIT
@octokit/openapi-types 20.0.0 MIT
@octokit/openapi-webhooks-types 8.3.0 MIT
@octokit/plugin-paginate-rest 11.3.3 MIT
@octokit/plugin-paginate-rest 2.21.3 MIT
@octokit/plugin-paginate-rest 9.2.1 MIT
@octokit/plugin-request-log 1.0.4 MIT
@octokit/plugin-request-log 5.3.1 MIT
@octokit/plugin-rest-endpoint-methods 10.4.1 MIT
@octokit/plugin-rest-endpoint-methods 13.2.2 MIT
@octokit/plugin-rest-endpoint-methods 5.16.2 MIT
@octokit/plugin-retry 3.0.9 MIT
@octokit/request-error 5.1.0 MIT
@octokit/request-error 6.1.1 MIT
@octokit/request 8.4.0 MIT
@octokit/rest 21.0.2 MIT
@octokit/types 12.6.0 MIT
@octokit/types 13.5.0 MIT
@octokit/types 6.41.0 MIT
@octokit/webhooks-methods 5.1.0 MIT
@octokit/webhooks 13.3.0 MIT
@pkgjs/parseargs 0.11.0 MIT
@protobuf-ts/plugin-framework 2.9.4 Apache-2.0
@protobuf-ts/plugin 2.9.4 Apache-2.0
@protobuf-ts/protoc 2.9.4 Apache-2.0
@protobuf-ts/runtime-rpc 2.9.4 Apache-2.0
@protobuf-ts/runtime 2.9.4 Apache-2.0
@qodana/action 1.0.0 Apache-2.0
@qodana/ci-common 1.0.0 Apache-2.0
@qodana/vsts 1.0.0 Apache-2.0
@types/node-fetch 2.6.11 MIT
@types/node 16.18.96 MIT
@types/node 22.7.5 MIT
@types/sarif 2.1.7 MIT
@types/tunnel 0.0.3 MIT
abort-controller 3.0.0 MIT
adm-zip 0.5.12 MIT
agent-base 6.0.2 MIT
ansi-regex 5.0.1 MIT
ansi-styles 4.3.0 MIT
ansi-styles 6.2.1 MIT
archiver-utils 5.0.2 MIT
archiver 7.0.1 MIT
argparse 1.0.10 MIT
async 3.2.5 MIT
asynckit 0.4.0 MIT
azure-pipelines-task-lib 4.17.2 MIT
azure-pipelines-tasks-utility-common 3.242.0 MIT
azure-pipelines-tool-lib 2.0.7 MIT
b4a 1.6.6 Apache-2.0
balanced-match 1.0.2 MIT
bare-events 2.2.2 Apache-2.0
before-after-hook 2.2.3 Apache-2.0
binary 0.3.0 MIT
bottleneck 2.19.5 MIT
brace-expansion 1.1.11 MIT
brace-expansion 2.0.1 MIT
buffer-crc32 1.0.0 MIT
buffers 0.1.1 MIT
camel-case 4.1.2 MIT
chainsaw 0.1.0 X11
color-convert 2.0.1 MIT
color-name 1.1.4 MIT
combined-stream 1.0.8 MIT
commander 6.2.1 MIT
compress-commons 6.0.2 MIT
concat-map 0.0.1 MIT
core-util-is 1.0.3 MIT
crc-32 1.2.2 Apache-2.0
crc32-stream 6.0.0 MIT
cross-spawn 7.0.3 MIT
crypto 1.0.1 ISC
debug 4.3.6 MIT
deprecation 2.3.1 ISC
dot-object 2.1.5 MIT
eastasianwidth 0.2.0 MIT
emoji-regex 8.0.0 MIT
emoji-regex 9.2.2 MIT
esprima 4.0.1 BSD-2-Clause
event-target-shim 5.0.1 MIT
events 3.3.0 MIT
fast-fifo 1.3.2 MIT
follow-redirects 1.15.6 MIT
foreground-child 3.1.1 ISC
form-data 2.5.1 MIT
form-data 4.0.0 MIT
fs.realpath 1.0.0 ISC
function-bind 1.1.2 MIT
glob 10.3.12 ISC
glob 7.2.3 ISC
graceful-fs 4.2.11 ISC
hasown 2.0.2 MIT
https-proxy-agent 5.0.1 MIT
immediate 3.0.6 MIT
inflight 1.0.6 ISC
inherits 2.0.4 ISC
interpret 1.4.0 MIT
is-core-module 2.13.1 MIT
is-fullwidth-code-point 3.0.0 MIT
is-stream 2.0.1 MIT
isarray 1.0.0 MIT
isexe 2.0.0 ISC
jackspeak 2.3.6 BlueOak-1.0.0
js-yaml 3.13.1 MIT
jszip 3.10.1 MIT
jwt-decode 3.1.2 MIT
lazystream 1.0.1 MIT
lie 3.3.0 MIT
lodash 4.17.21 MIT
lower-case 2.0.2 MIT
lru-cache 10.2.0 ISC
mime-db 1.52.0 MIT
mime-types 2.1.35 MIT
minimatch 3.0.5 ISC
minimatch 3.1.2 ISC
minimatch 5.1.6 ISC
minimatch 9.0.4 ISC
minimist 1.2.8 MIT
minipass 7.0.4 ISC
mkdirp 0.5.6 MIT
no-case 3.0.4 MIT
node-fetch 2.7.0 MIT
nodejs-file-downloader 4.12.1 ISC
normalize-path 3.0.0 MIT
once 1.4.0 ISC
pako 1.0.11 MIT
pascal-case 3.1.2 MIT
path-is-absolute 1.0.1 MIT
path-key 3.1.1 MIT
path-parse 1.0.7 MIT
path-scurry 1.10.2 BlueOak-1.0.0
path-to-regexp 6.3.0 MIT
prettier 2.8.8 MIT
process-nextick-args 2.0.1 MIT
process 0.11.10 MIT
q 1.5.1 MIT
queue-tick 1.0.1 MIT
readable-stream 2.3.8 MIT
readable-stream 4.5.2 MIT
readdir-glob 1.1.3 Apache-2.0
rechoir 0.6.2 MIT
resolve 1.22.8 MIT
safe-buffer 5.1.2 MIT
sanitize-filename 1.6.3 FPL
ISC
WTFPL
semver 5.7.2 ISC
semver 6.3.1 ISC
setimmediate 1.0.5 MIT
shebang-command 2.0.0 MIT
shebang-regex 3.0.0 MIT
shelljs 0.8.5 BSD-3-Clause
signal-exit 4.1.0 ISC
sprintf-js 1.0.3 BSD-3-Clause
streamx 2.16.1 MIT
string-width 4.2.3 MIT
string-width 5.1.2 MIT
string_decoder 1.1.1 MIT
strip-ansi 6.0.1 MIT
strip-ansi 7.1.0 MIT
supports-preserve-symlinks-flag 1.0.0 MIT
tar-stream 3.1.7 MIT
traverse 0.3.9 X11
truncate-utf8-bytes 1.0.2 WTFPL
ts-poet 4.15.0 Apache-2.0
tslib 1.14.1 0BSD
tslib 2.6.2 0BSD
tunnel 0.0.6 MIT
twirp-ts 2.5.0 MIT
typescript 3.9.10 Apache-2.0
undici-types 6.19.8 MIT
universal-user-agent 6.0.1 ISC
unzip-stream 0.3.4 MIT
utf8-byte-length 1.0.4 WTFPL
util-deprecate 1.0.2 MIT
uuid 3.4.0 MIT
uuid 8.3.2 MIT
which 2.0.2 ISC
wrap-ansi 7.0.0 MIT
wrap-ansi 8.1.0 MIT
wrappy 1.0.2 ISC
xml2js 0.5.0 MIT
yaml 1.10.2 ISC
zip-stream 6.0.1 MIT
Contact Qodana team

Contact us at qodana-support@jetbrains.com

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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants