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

Update all non-major dependencies #296

Merged
merged 1 commit into from
Nov 30, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@eslint/js (source) 9.15.0 -> 9.16.0 age adoption passing confidence devDependencies minor
@types/node (source) 22.9.2 -> 22.10.1 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 8.15.0 -> 8.16.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 8.15.0 -> 8.16.0 age adoption passing confidence devDependencies minor
denoland/deno v2.1.1 -> v2.1.2 age adoption passing confidence patch
eslint (source) 9.15.0 -> 9.16.0 age adoption passing confidence devDependencies minor
prettier (source) 3.3.3 -> 3.4.1 age adoption passing confidence devDependencies minor
typescript-eslint (source) 8.15.0 -> 8.16.0 age adoption passing confidence devDependencies minor

Release Notes

eslint/eslint (@​eslint/js)

v9.16.0

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.16.0

Compare Source

🚀 Features
  • eslint-plugin: [no-base-to-string] check Array.prototype.join (#​10287)
  • eslint-plugin: [max-params] add function overload and function type support (#​10312)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

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

v8.16.0

Compare Source

🚀 Features
❤️ Thank You
  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

denoland/deno (denoland/deno)

v2.1.2

Compare Source

2.1.2 / 2024.11.28
  • feat(unstable): Instrument Deno.serve (#​26964)
  • feat(unstable): Instrument fetch (#​27057)
  • feat(unstable): repurpose --unstable-detect-cjs to attempt loading more
    modules as cjs (#​27094)
  • fix(check): support jsdoc @import tag (#​26991)
  • fix(compile): correct buffered reading of assets and files (#​27008)
  • fix(compile): do not error embedding same symlink via multiple methods
    (#​27015)
  • fix(compile): handle TypeScript file included as asset (#​27032)
  • fix(ext/fetch): don't throw when bodyUsed inspect after upgrade (#​27088)
  • fix(ext/node): tls.connect socket upgrades (#​27125)
  • fix(ext/node): add fs.promises.fstat and FileHandle#stat (#​26719)
  • fix(ext/webgpu): normalize limits to number (#​27072)
  • fix(ext/webgpu): use correct variable name (#​27108)
  • fix(ext/websocket): don't throw exception when sending to closed socket
    (#​26932)
  • fix(fmt): return None if sql fmt result is the same (#​27014)
  • fix(info): resolve bare specifier pointing to workspace member (#​27020)
  • fix(init): always force managed node modules (#​27047)
  • fix(init): support scoped npm packages (#​27128)
  • fix(install): don't re-set up node_modules if running lifecycle script
    (#​26984)
  • fix(lsp): remove stray debug output (#​27010)
  • fix(lsp): support task object notation for tasks request (#​27076)
  • fix(lsp): wasm file import completions (#​27018)
  • fix(node): correct resolution of dynamic import of esm from cjs (#​27071)
  • fix(node/fs): add missing stat path argument validation (#​27086)
  • fix(node/fs): missing uv error context for readFile (#​27011)
  • fix(node/http): casing ignored in ServerResponse.hasHeader() (#​27105)
  • fix(node/timers): error when passing id to clearTimeout/clearInterval (#​27130)
  • fix(runtime/ops): Fix watchfs remove event (#​27041)
  • fix(streams): reject string in ReadableStream.from type (#​25116)
  • fix(task): handle carriage return in task description (#​27099)
  • fix(task): handle multiline descriptions properly (#​27069)
  • fix(task): strip ansi codes and control chars when printing tasks (#​27100)
  • fix(tools/doc): HTML resolve main entrypoint from config file (#​27103)
  • fix: support bun specifiers in JSR publish (#​24588)
  • fix: support non-function exports in Wasm modules (#​26992)
  • perf(compile): read embedded files as static references when UTF-8 and reading
    as strings (#​27033)
  • perf(ext/webstorage): use object wrap for Storage (#​26931)
eslint/eslint (eslint)

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

typescript-eslint/typescript-eslint (typescript-eslint)

v8.16.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


Configuration

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

🚦 Automerge: Enabled.

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 enabled auto-merge (rebase) November 30, 2024 00:22
@renovate renovate bot merged commit e7588ea into trunk Nov 30, 2024
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch November 30, 2024 00:23
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