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

Merged
merged 1 commit into from
Sep 24, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@eslint/js (source) 9.10.0 -> 9.11.1 age adoption passing confidence devDependencies minor
@nuxt/scripts 0.9.2 -> 0.9.3 age adoption passing confidence devDependencies patch
@nuxtjs/turnstile 0.9.4 -> 0.9.10 age adoption passing confidence devDependencies patch
@semantic-release/github 10.3.4 -> 10.3.5 age adoption passing confidence devDependencies patch
@types/node (source) 22.5.5 -> 22.6.1 age adoption passing confidence devDependencies minor
dargmuesli/github-actions 2.2.7 -> 2.3.0 age adoption passing confidence action minor
eslint (source) 9.10.0 -> 9.11.1 age adoption passing confidence devDependencies minor
node 22.8.0-alpine -> 22.9.0-alpine age adoption passing confidence stage minor
nuxt (source) 3.13.1 -> 3.13.2 age adoption passing confidence devDependencies patch
pnpm (source) 9.10.0 -> 9.11.0 age adoption passing confidence packageManager minor
sweetalert2 (source) 11.14.0 -> 11.14.1 age adoption passing confidence devDependencies patch
typescript-eslint (source) 8.6.0 -> 8.7.0 age adoption passing confidence devDependencies minor
vue (source) 3.5.6 -> 3.5.8 age adoption passing confidence devDependencies patch

Release Notes

eslint/eslint (@​eslint/js)

v9.11.1

Compare Source

v9.11.0

Compare Source

nuxt/scripts (@​nuxt/scripts)

v0.9.3

Compare Source

compare changes

🩹 Fixes
  • Use free path for virtual plugin template (8624923)
  • 🐛 Fixed "height" css style property (#​275)
  • adsense: Push ad slot once only on dev (#​276)
📖 Documentation
  • Update scripts:registry hook example (#​271)
  • ✏️ Updated definition for YouTube Player (#​273)
🏡 Chore
❤️ Contributors
nuxt-modules/turnstile (@​nuxtjs/turnstile)

v0.9.10

Compare Source

Bug Fixes
  • add type reference to <NuxtTurnstile> component (839cbfc)

v0.9.9

Compare Source

Bug Fixes
  • add back global namespace type reference 🤔 (3e578f9)

v0.9.8

Compare Source

Bug Fixes
  • add back internal type reference only (582bc3b)

v0.9.7

Compare Source

Bug Fixes
  • types: ensure Turnstile type namespace is registered (#​339) (2017d46)

v0.9.6

Compare Source

Bug Fixes
  • component: don't override user's callback (ffe9ab2)

v0.9.5

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (f7dd263)
semantic-release/github (@​semantic-release/github)

v10.3.5

Compare Source

Bug Fixes
  • replace searchAPI usage with GraphQL in findSRIssue util (#​907) (7fb46a3)
dargmuesli/github-actions (dargmuesli/github-actions)

v2.3.0

Compare Source

Features
eslint/eslint (eslint)

v9.11.1

Compare Source

v9.11.0

Compare Source

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)

Chores

nodejs/node (node)

v22.9.0: 2024-09-17, Version 22.9.0 (Current), @​RafaelGSS

Compare Source

New API to retrieve execution Stack Trace

A new API getCallSite has been introduced to the util module. This API allows users
to retrieve the stacktrace of the current execution. Example:

const util = require('node:util');

function exampleFunction() {
  const callSites = util.getCallSite();

  console.log('Call Sites:');
  callSites.forEach((callSite, index) => {
    console.log(`CallSite ${index + 1}:`);
    console.log(`Function Name: ${callSite.functionName}`);
    console.log(`Script Name: ${callSite.scriptName}`);
    console.log(`Line Number: ${callSite.lineNumber}`);
    console.log(`Column Number: ${callSite.column}`);
  });
  // CallSite 1:
  // Function Name: exampleFunction
  // Script Name: /home/example.js
  // Line Number: 5
  // Column Number: 26

  // CallSite 2:
  // Function Name: anotherFunction
  // Script Name: /home/example.js
  // Line Number: 22
  // Column Number: 3

  // ...
}

// A function to simulate another stack layer
function anotherFunction() {
  exampleFunction();
}

anotherFunction();

Thanks to Rafael Gonzaga for making this work on #​54380.

Disable V8 Maglev

We have seen several crashes/unexpected JS behaviors with maglev on v22
(which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for
users to work around them or even figure out where the bugs are coming from.
Some bugs are fixed in the upstream while some others probably remain.

As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to
backport patches for them even if the bugs are fixed. So disable it by default
on v22 to reduce the churn and troubles for users.

Thanks to Joyee Cheung for making this work on #​54384

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. For
now on users can use tls.createSecureContext({ allowPartialTrustChain: true })
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Thanks to Anna Henningsen for making this work on #​54790

Other Notable Changes
  • [5c9599af5a] - src: create handle scope in FastInternalModuleStat (Joyee Cheung) #​54384
  • [e2307d87e8] - (SEMVER-MINOR) stream: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) #​54032
Deprecations
  • [8433032948] - repl: doc-deprecate instantiating node:repl classes without new (Aviv Keller) #​54842
  • [8c4c85cf31] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #​54708
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Copy link
Contributor Author

renovate bot commented Sep 16, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 66868aa to 244fb01 Compare September 21, 2024 13:40
@dargmuesli
Copy link
Owner

@renovate renovate bot merged commit 2cb4f18 into master Sep 24, 2024
14 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch September 24, 2024 03:42
@dargmuesli-bot
Copy link
Collaborator

🎉 This PR is included in version 5.26.15 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants