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): update all non-major dependencies #43

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/jest (source) 29.5.12 -> 29.5.13 age adoption passing confidence devDependencies patch
@types/node (source) 20.11.17 -> 20.16.5 age adoption passing confidence devDependencies minor
amannn/action-semantic-pull-request v5.4.0 -> v5.5.3 age adoption passing confidence action minor
csv-parse (source) 5.5.3 -> 5.5.6 age adoption passing confidence dependencies patch
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence devDependencies minor
eslint-plugin-github 4.10.1 -> 4.10.2 age adoption passing confidence devDependencies patch
eslint-plugin-jest 27.6.3 -> 27.9.0 age adoption passing confidence devDependencies minor
eslint-plugin-jsonc (source) 2.13.0 -> 2.16.0 age adoption passing confidence devDependencies minor
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence devDependencies minor
markdownlint-cli 0.39.0 -> 0.41.0 age adoption passing confidence devDependencies minor
node (source) 20.11.0 -> 20.17.0 age adoption passing confidence minor
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence devDependencies minor
ts-jest (source) 29.1.2 -> 29.2.5 age adoption passing confidence devDependencies minor
typescript (source) 5.3.3 -> 5.6.2 age adoption passing confidence devDependencies minor

Release Notes

amannn/action-semantic-pull-request (amannn/action-semantic-pull-request)

v5.5.3

Compare Source

Bug Fixes

v5.5.2

Compare Source

Bug Fixes

v5.5.1

Compare Source

Bug Fixes

v5.5.0

Compare Source

Features
adaltas/node-csv (csv-parse)

v5.5.6

Compare Source

Bug Fixes

v5.5.5

Compare Source

Bug Fixes
  • csv-parse: comment infix when comment first field char (fix #​415) (8e0f8b8)

v5.5.4

Compare Source

Note: Version bump only for package csv-parse

eslint/eslint (eslint)

v8.57.1

Compare Source

v8.57.0

Compare Source

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

Chores

github/eslint-plugin-github (eslint-plugin-github)

v4.10.2

Compare Source

What's Changed

Functionality
Dependancy updates

New Contributors

Full Changelog: github/eslint-plugin-github@v4.10.1...v4.10.2

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v27.9.0

Compare Source

Features

v27.8.0

Compare Source

Features

v27.7.0

Compare Source

Features
  • allow [@typescript-eslint](https://github.com/typescript-eslint) v7 (#​1500) (6be2928)

27.6.3 (2024-01-12)

Bug Fixes

27.6.2 (2024-01-10)

Reverts

27.6.1 (2024-01-01)

Bug Fixes
  • include plugin meta information with snapshot processor for ESLint v9 (#​1484) (067e246)
ota-meshi/eslint-plugin-jsonc (eslint-plugin-jsonc)

v2.16.0

Compare Source

Minor Changes

v2.15.1

Compare Source

Patch Changes

v2.15.0

Compare Source

Minor Changes

v2.14.1

Compare Source

Patch Changes

v2.14.0

Compare Source

Minor Changes
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.41.0: 0.41.0

Compare Source

  • Change TOML parser to smol-toml which supports v1.0.0 of the specification
  • Update all dependencies via Dependabot

v0.40.0: 0.40.0

Compare Source

  • Update markdownlint dependency to 0.34.0
    • Use micromark in MD027/MD028/MD036/MD040/MD041/MD046/MD048
    • Improve MD013/MD034/MD049/MD050/MD051
  • Add support for TOML configuration files via --config
  • Add --configPointer argument for nested configuration
  • Update --ignore for directories to ignore all files within
  • Update all dependencies via Dependabot
nodejs/node (node)

v20.17.0

Compare Source

v20.16.0

Compare Source

v20.15.1

Compare Source

v20.15.0: 2024-06-20, Version 20.15.0 'Iron' (LTS), @​marco-ippolito

Compare Source

test_runner: support test plans

It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail.

test('top level test', (t) => {
  t.plan(2);
  t.assert.ok('some relevant assertion here');
  t.subtest('subtest', () => {});
});

Contributed by Colin Ihrig in #​52860

inspector: introduce the --inspect-wait flag

This release introduces the --inspect-wait flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike --inspect-brk, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established.

Contributed by Kohei Ueno in #​52734

zlib: expose zlib.crc32()

This release exposes the crc32() function from zlib to user-land.

It computes a 32-bit Cyclic Redundancy Check checksum of data. If
value is specified, it is used as the starting value of the checksum,
otherwise, 0 is used as the starting value.

The CRC algorithm is designed to compute checksums and to detect error
in data transmission. It's not suitable for cryptographic authentication.

const zlib = require('node:zlib');
const { Buffer } = require('node:buffer');

let crc = zlib.crc32('hello');  // 907060870
crc = zlib.crc32('world', crc);  // 4192936109

crc = zlib.crc32(Buffer.from('hello', 'utf16le'));  // 1427272415
crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc);  // 4150509955

Contributed by Joyee Cheung in #​52692

cli: allow running wasm in limited vmem with --disable-wasm-trap-handler

By default, Node.js enables trap-handler-based WebAssembly bound
checks. As a result, V8 does not need to insert inline bound checks
int the code compiled from WebAssembly which may speedup WebAssembly
execution significantly, but this optimization requires allocating
a big virtual memory cage (currently 10GB). If the Node.js process
does not have access to a large enough virtual memory address space
due to system configurations or hardware limitations, users won't
be able to run any WebAssembly that involves allocation in this
virtual memory cage and will see an out-of-memory error.

$ ulimit -v 5000000
$ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });"
[eval]:1
new WebAssembly.Memory({ initial: 10, maximum: 100 });
^

RangeError: WebAssembly.Memory(): could not allocate memory
    at [eval]:1:1
    at runScriptInThisContext (node:internal/vm:209:10)
    at node:internal/process/execution:118:14
    at [eval]-wrapper:6:24
    at runScript (node:internal/process/execution:101:62)
    at evalScript (node:internal/process/execution:136:3)
    at node:internal/main/eval_string:49:3

--disable-wasm-trap-handler disables this optimization so that
users can at least run WebAssembly (with a less optimial performance)
when the virtual memory address space available to their Node.js
process is lower than what the V8 WebAssembly memory cage needs.

Contributed by Joyee Cheung in #​52766

Other Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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 renovate bot requested a review from youngcm2 as a code owner February 14, 2024 01:24
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-jest to v27.8.0 chore(deps): update all non-major dependencies Feb 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 25e410e to 05e8840 Compare February 16, 2024 18:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d88c9c3 to f748578 Compare February 29, 2024 17:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from af2fbc2 to 5b514b7 Compare March 6, 2024 23:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8cd51dd to b62fe93 Compare March 19, 2024 00:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1d5f43c to 1b846e7 Compare March 20, 2024 20:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5f8766a to 0ddb9d7 Compare April 1, 2024 12:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ddb9d7 to 3f6f960 Compare April 2, 2024 21:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 79ff7f9 to cd78185 Compare July 10, 2024 20:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from da66ce4 to 2c2f59a Compare July 18, 2024 17:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 64d7ac1 to b550f1c Compare July 28, 2024 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 54936bf to 67064df Compare August 2, 2024 09:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3838875 to ad147fe Compare August 16, 2024 19:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 455157f to 0060ad0 Compare August 23, 2024 17:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 02d9699 to 5d97a6d Compare September 1, 2024 13:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 199d104 to 557285e Compare September 9, 2024 18:22
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