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 with 2 updates #306

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

Bumps the npm-development group with 2 updates: @types/node and esbuild.

Updates @types/node from 20.12.8 to 20.12.11

Commits

Updates esbuild from 0.20.2 to 0.21.2

Release notes

Sourced from esbuild's releases.

v0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

v0.21.1

  • Fix a regression with --keep-names (#3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @PURE */ __name(function() {
    }, "y") };
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

v0.21.0

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }
    class Foo {
    @​log static foo() {

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

0.21.1

  • Fix a regression with --keep-names (#3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @PURE */ __name(function() {
    }, "y") };
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

0.21.0

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }

... (truncated)

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 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [esbuild](https://github.com/evanw/esbuild).


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

Updates `esbuild` from 0.20.2 to 0.21.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.2...v0.21.2)

---
updated-dependencies:
- dependency-name: "@types/node"
  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 May 13, 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 212 dependencies

Third-party software list

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

Dependency Version Licenses
@actions/artifact 2.1.7 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.2.1 MIT
@octokit/plugin-paginate-rest 11.3.0 MIT
@octokit/plugin-paginate-rest 11.3.1 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 4.0.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 20.1.1 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.2.7 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 20.12.11 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
aggregate-error 5.0.0 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.12.0 MIT
azure-pipelines-tasks-utility-common 3.238.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
bindings 1.5.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
clean-stack 5.2.0 MIT
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
deasync 0.1.29 MIT
debug 4.3.4 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
escape-string-regexp 5.0.0 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
file-uri-to-path 1.0.0 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
indent-string 5.0.0 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
jwt-decode 3.1.2 MIT
lazystream 1.0.1 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-addon-api 1.7.2 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
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.2.2 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
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 5.26.5 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

@tiulpin tiulpin changed the base branch from main to more-workflows May 14, 2024 10:58
@tiulpin tiulpin merged commit 85a18ca into more-workflows May 14, 2024
14 of 15 checks passed
@tiulpin tiulpin deleted the dependabot/npm_and_yarn/npm-development-427574ffe7 branch May 14, 2024 10:59
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.

None yet

1 participant