node-java-caller icon indicating copy to clipboard operation
node-java-caller copied to clipboard

chore(deps): update all non-major dependencies

Open renovate[bot] opened this issue 1 year ago • 2 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/eslint-parser (source) 7.24.5 -> 7.24.8 age adoption passing confidence devDependencies patch
actions/setup-node v4.0.2 -> v4.0.3 age adoption passing confidence action patch
debug 4.3.4 -> 4.3.5 age adoption passing confidence dependencies patch
eslint (source) 9.2.0 -> 9.7.0 age adoption passing confidence devDependencies minor
mocha (source) 10.4.0 -> 10.7.0 age adoption passing confidence devDependencies minor
njre (source) 1.2.1 -> 1.2.2 age adoption passing confidence dependencies patch
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence devDependencies minor
semver 7.6.1 -> 7.6.3 age adoption passing confidence dependencies patch

Release Notes

babel/babel (@​babel/eslint-parser)

v7.24.8

Compare Source

:eyeglasses: Spec Compliance
:bug: Bug Fix
:nail_care: Polish

v7.24.7

Compare Source

:bug: Bug Fix
:house: Internal
  • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

v7.24.6

Compare Source

:bug: Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
  • babel-parser, babel-plugin-transform-typescript
:house: Internal
  • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-helpers
  • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-parser, babel-traverse
  • Other
actions/setup-node (actions/setup-node)

v4.0.3

Compare Source

debug-js/debug (debug)

v4.3.5

Compare Source

Patch

Thank you @​calvintwr for the fix.

eslint/eslint (eslint)

v9.7.0

Compare Source

Features

  • 7bd9839 feat: add support for es2025 duplicate named capturing groups (#​18630) (Yosuke Ota)
  • 1381394 feat: add regex option in no-restricted-imports (#​18622) (Nitin Kumar)

Bug Fixes

  • 14e9f81 fix: destructuring in catch clause in no-unused-vars (#​18636) (Francesco Trotta)

Documentation

  • 9f416db docs: Add Powered by Algolia label to the search. (#​18633) (Amaresh S M)
  • c8d26cb docs: Open JS Foundation -> OpenJS Foundation (#​18649) (Milos Djermanovic)
  • 6e79ac7 docs: loadESLint does not support option cwd (#​18641) (Francesco Trotta)

Chores

v9.6.0

Compare Source

v9.5.0

Compare Source

v9.4.0

Compare Source

v9.3.0

Compare Source

mochajs/mocha (mocha)

v10.7.0

Compare Source

:tada: Enhancements

v10.6.1

Compare Source

:bug: Fixes

v10.6.0

Compare Source

:tada: Enhancements

v10.5.2

Compare Source

:bug: Fixes

v10.5.1

Compare Source

:bug: Fixes

v10.5.0

Compare Source

:tada: Enhancements
:bug: Fixes
:nut_and_bolt: Other
nvuillam/njre (njre)

v1.2.2

Compare Source

  • Upgrade npm dependencies
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

npm/node-semver (semver)

v7.6.3

Compare Source

Bug Fixes
Documentation

v7.6.2

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar May 08 '24 11:05 renovate[bot]

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Elapsed time
⚠️ ACTION actionlint 5 2 0.07s
✅ COPYPASTE jscpd yes no 1.29s
✅ JAVASCRIPT eslint 10 0 1.51s
✅ JSON jsonlint 7 0 0.22s
✅ JSON npm-package-json-lint yes no 0.48s
⚠️ JSON prettier 7 1 0.48s
✅ JSON v8r 7 0 28.38s
⚠️ MARKDOWN markdownlint 5 5 0.88s
✅ MARKDOWN markdown-link-check 5 0 8.67s
⚠️ MARKDOWN markdown-table-formatter 5 1 0.29s
✅ REPOSITORY checkov yes no 12.76s
✅ REPOSITORY gitleaks yes no 0.44s
✅ REPOSITORY git_diff yes no 0.01s
✅ REPOSITORY grype yes no 13.78s
✅ REPOSITORY secretlint yes no 0.76s
✅ REPOSITORY trivy yes no 5.49s
✅ REPOSITORY trivy-sbom yes no 0.85s
✅ REPOSITORY trufflehog yes no 3.9s
✅ SPELL cspell 39 0 2.8s
✅ SPELL lychee 24 0 0.59s
⚠️ YAML prettier 10 1 0.58s
✅ YAML v8r 10 0 8.87s
✅ YAML yamllint 10 0 0.39s

See detailed report in MegaLinter reports

MegaLinter is graciously provided by OX Security

github-actions[bot] avatar May 08 '24 11:05 github-actions[bot]

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 90.04%. Comparing base (a632fd1) to head (ca4bc15). Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #83   +/-   ##
=======================================
  Coverage   90.04%   90.04%           
=======================================
  Files           3        3           
  Lines         231      231           
=======================================
  Hits          208      208           
  Misses         23       23           

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

codecov-commenter avatar May 09 '24 19:05 codecov-commenter