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 #619

Merged
merged 1 commit into from
Jul 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@biomejs/biome (source) 1.8.2 -> 1.8.3 age adoption passing confidence devDependencies patch
@hey-api/openapi-ts (source) 0.45.1 -> 0.48.2 age adoption passing confidence devDependencies minor
@types/lodash (source) 4.17.5 -> 4.17.6 age adoption passing confidence devDependencies patch
@types/node (source) 20.14.8 -> 20.14.9 age adoption passing confidence devDependencies patch
nats (source) 2.27.0 -> 2.28.0 age adoption passing confidence dependencies minor
node 20.13.1-alpine -> 20.15.0-alpine age adoption passing confidence final minor
node 20.13.1-alpine -> 20.15.0-alpine age adoption passing confidence stage minor
npm-run-all2 6.2.0 -> 6.2.2 age adoption passing confidence devDependencies patch
pnpm (source) 9.3.0 -> 9.4.0 age adoption passing confidence packageManager minor
traefik v3.0 -> v3.1 age adoption passing confidence minor
tsx (source) 4.15.7 -> 4.16.2 age adoption passing confidence devDependencies minor
typescript (source) 5.5.2 -> 5.5.3 age adoption passing confidence devDependencies patch
vite (source) 5.3.1 -> 5.3.3 age adoption passing confidence devDependencies patch
ws 8.17.1 -> 8.18.0 age adoption passing confidence devDependencies minor

Release Notes

biomejs/biome (@​biomejs/biome)

v1.8.3

Compare Source

CLI
Bug fixes
  • Fix #​3104 by suppressing node warnings when using biome migrate. Contributed by @​SuperchupuDev

  • Force colors to be off when using the GitHub reporter to properly create annotations in GitHub actions (#​3148). Contributed by @​Sec-ant

Parser
Bug fixes
Formatter
Bug fixes
Linter
New features
Bug fixes
  • useConsistentArrayType and useShorthandArrayType now ignore Array in the extends and implements clauses. Fix #​3247. Contributed by @​Conaclos
  • Fixes #​3066 by taking into account the dependencies declared in the package.json. Contributed by @​ematipico
  • The code action of the useArrowFunction rule now preserves a trailing comma when there is only a single type parameter in the arrow function and JSX is enabled. Fixes #​3292. Contributed by @​Sec-ant
Enhancements
  • Enhance tailwind sorting lint rule #​1274 with variant support.

    Every preconfigured variant is assigned a weight that concurs on establishing the output sorting order.
    Since nesting variants on the same utility class is possible, the resulting weight is the Bitwise XOR of all the variants weight for that class.
    Dynamic variants (e.g. has-[.custom-class], group-[:checked]) are also supported and they take the weight of their base variant name the custom value attached (e.g. has-[.custom-class] takes has weight).
    Arbitrary variants (e.g. [&nth-child(2)]) don't have a weight assigned and they are placed after every known variant.
    Classes with the same amount of arbitrary variants follow lexicographical order. The class that has the highest number of nested arbitrary variants is placed last.
    Screen variants (e.g. sm:, max-md:, min-lg:) are not supported yet.

    Contributed by @​lutaok

hey-api/openapi-ts (@​hey-api/openapi-ts)

v0.48.2

Compare Source

Patch Changes

v0.48.1

Compare Source

Patch Changes

v0.48.0

Compare Source

Minor Changes
Patch Changes

v0.47.2

Compare Source

Patch Changes

v0.47.1

Compare Source

Patch Changes

v0.47.0

Compare Source

Minor Changes

v0.46.3

Compare Source

Patch Changes

v0.46.2

Compare Source

Patch Changes
  • fix: do not transform property names for standalone clients (#​616)

v0.46.1

Compare Source

Patch Changes
  • fix: handle application/json content type in parameter definitions (#​614)

v0.46.0

Compare Source

Minor Changes
  • feat: tree-shakeable services (#​602)
nats-io/nats.js (nats)

v2.28.0

Compare Source

What's Changed

This release bumps [NBC to 1.28.0], which fixes a subscription leak in the request and requestMany APIs with the noMux request option set to true.

Full Changelog: nats-io/nats.js@v2.27.0...v2.28.0

nodejs/node (node)

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

v20.14.0: 2024-05-28, Version 20.14.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits
bcomnes/npm-run-all2 (npm-run-all2)

v6.2.2

Compare Source

Commits
  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1

Compare Source

Merged
  • Compatibility: npm, yarn and pnpm run scripts #143
  • Use neostandard + add more static code analysis #142
  • Upgrade: Bump c8 from 9.1.0 to 10.0.0 #141
  • Upgrade: Bump p-queue from 7.4.1 to 8.0.1 #138
pnpm/pnpm (pnpm)

v9.4.0

Compare Source

containous/traefik (traefik)

v3.1

All Commits

Enhancements:

  • [k8s,k8s/gatewayapi] Support invalid HTTPRoute status (#​10714 by kevinpollet)
  • [k8s,k8s/gatewayapi] KubernetesGateway provider is no longer experimental (#​10840 by rtribotte)
  • [k8s,k8s/gatewayapi] Bump Gateway API to v1.1.0 (#​10835 by kevinpollet)
  • [k8s,k8s/gatewayapi] Fix route atta

Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

Copy link

changeset-bot bot commented May 20, 2024

⚠️ No Changeset found

Latest commit: 6c80340

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

sweep-ai bot commented May 20, 2024

Sweep: PR Review

Sweep is currently reviewing your pr...

@renovate renovate bot changed the title fix(deps): update dependency nats to v2.26.0 fix(deps): update all non-major dependencies May 21, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7a3eae8 to f189e89 Compare May 21, 2024 13:49
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 21, 2024
Copy link

coderabbitai bot commented May 21, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 248eccc to b651d8a Compare May 29, 2024 18:29
Copy link

socket-security bot commented May 29, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e71c545 to a8dd9ce Compare May 30, 2024 12:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from f102129 to 9cb81af Compare June 4, 2024 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 0d2b604 to fa17336 Compare June 22, 2024 12:57
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Jun 22, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 085bd29 to 6d3fef3 Compare July 1, 2024 03:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 6bd08f9 to 6792aab Compare July 4, 2024 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6792aab to 6c80340 Compare July 4, 2024 06:32
@renovate renovate bot merged commit f7fe8db into main Jul 4, 2024
20 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 4, 2024 10:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants