Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update all npm dependencies #431

Merged
merged 1 commit into from
Feb 11, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) 7.26.7 -> 7.26.8 age adoption passing confidence
@playcanvas/eslint-config (source) 2.0.8 -> 2.0.9 age adoption passing confidence
@storybook/addon-essentials (source) 8.5.3 -> 8.5.4 age adoption passing confidence
@storybook/react (source) 8.5.3 -> 8.5.4 age adoption passing confidence
@storybook/react-webpack5 (source) 8.5.3 -> 8.5.4 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.23.0 -> 8.24.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.23.0 -> 8.24.0 age adoption passing confidence
eslint (source) 9.19.0 -> 9.20.1 age adoption passing confidence
playcanvas (source) 2.4.3 -> 2.5.0 age adoption passing confidence
postcss (source) 8.5.1 -> 8.5.2 age adoption passing confidence
publint (source) 0.3.2 -> 0.3.4 age adoption passing confidence
rollup (source) 4.34.2 -> 4.34.6 age adoption passing confidence
storybook (source) 8.5.3 -> 8.5.4 age adoption passing confidence
typedoc (source) 0.27.6 -> 0.27.7 age adoption passing confidence
typedoc-plugin-mdn-links 4.0.11 -> 4.0.12 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-env)

v7.26.8

Compare Source

v7.26.8 (2025-02-08)
🏠 Internal
  • babel-preset-env
    • #​17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0
playcanvas/playcanvas-eslint-config (@​playcanvas/eslint-config)

v2.0.9

Compare Source

What's Changed

Full Changelog: playcanvas/eslint-config@v2.0.8...v2.0.9

storybookjs/storybook (@​storybook/addon-essentials)

v8.5.4

Compare Source

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

v8.24.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#​10639)
🩹 Fixes
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#​10751)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#​10737)
❤️ Thank You
  • Josh Goldberg ✨
  • noah
  • Ronen Amiel

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

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

v8.24.0

Compare Source

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

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

eslint/eslint (eslint)

v9.20.1

Compare Source

v9.20.0

Compare Source

playcanvas/engine (playcanvas)

v2.5.0

Compare Source

Breaking changes

Other changes

Fixes

Full Changelog: playcanvas/engine@v2.4.3...v2.5.0

postcss/postcss (postcss)

v8.5.2

Compare Source

publint/publint (publint)

v0.3.4

Compare Source

Patch Changes
  • When globbing "exports" values that contains *, also respect "exports" keys that mark paths as null. For example: (b9605ae)

    {
      "exports": {
        "./*": "./dist/*",
        "./browser/*": null
      }
    }

    The glob in "./*": "./dist/*" will no longer match and lint files in "./browser/*" as it's marked null (internal).

  • Update logs when running the publint CLI: (58d96a2)

    • The publint version is now displayed.
    • The packing command is also displayed.
    • Messages are now logged in the order of errors, warnings, and suggestions, instead of the other way round, to prioritize errors.
    • The publint deps command no longer logs passing dependencies. Only failing dependencies are logged.

    Examples:

    $ npx publint
    $ Running publint v0.X.X for my-library...
    $ Packing files with `npm pack`...
    $ All good!
    $ npx publint deps
    $ Running publint v0.X.X for my-library deps...
    $ x my-dependency
    $ Errors:
    $ 1. ...
  • Fix detecting shorthand repository URLs with the . character (09d8cbb)

  • Clarify message when "types" is not the first condition in the "exports" field (5a6ba00)

  • Correctly detect if a "types" value in "exports" is used for dual publishing (3f3d8b2)

v0.3.3

Compare Source

Patch Changes
  • Rename EXPORT_TYPES_INVALID_FORMAT message to EXPORTS_TYPES_INVALID_FORMAT (#​139)

  • Allow versioned types conditions (e.g. "types@>=5.2") in "exports" when checking for "types" condition ordering (#​138)

rollup/rollup (rollup)

v4.34.6

Compare Source

2025-02-07

Bug Fixes
  • Retain "void 0" in the output for smaller output and fewer surprises (#​5838)
Pull Requests

v4.34.5

Compare Source

2025-02-07

Bug Fixes
  • Ensure namespace reexports always include all properties of all exports (#​5837)
Pull Requests

v4.34.4

Compare Source

2025-02-05

Bug Fixes
  • Do not tree-shake properties if a rest element is used in destructuring (#​5833)
Pull Requests

v4.34.3

Compare Source

2025-02-05

Bug Fixes
  • Ensure properties of "this" are included in getters (#​5831)
Pull Requests
TypeStrong/TypeDoc (typedoc)

v0.27.7

Compare Source

Features
  • @includeCode and @inline can now inject parts of files using region
    names or line numbers, #​2816.
  • Introduced ja translation options, deprecated jp in favor of ja, #​2843.
  • Improved TypeDoc's --watch option to support watching files not caught by
    TypeScript's watch mode, #​2675.
  • The @inline tag now works in more places for generic types.
  • Visibility filters now consider individual signatures, #​2846.
Bug Fixes
  • Fixed an issue where TypeDoc would incorrectly ignore type arguments in references, #​2823.
  • Improved narrator support for labeling icons, #​2832.
  • Fixed an issue with @class incorrectly handling mapped types, #​2842.
  • TypeDoc will now consider symbols to be external only if all of their declarations are external
    so that declaration merged members with global symbols can be documented, #​2844.
  • Fixed an issue where TypeDoc would constantly rebuild, #​2844.
  • Fixed an issue where the dropdown arrow in the index group would not respect the state of the dropdown, #​2845.
Thanks!
Gerrit0/typedoc-plugin-mdn-links (typedoc-plugin-mdn-links)

v4.0.12

Compare Source


Configuration

📅 Schedule: Branch creation - "on monday at 10:00am" (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.

@willeastcott willeastcott merged commit 8e4c722 into main Feb 11, 2025
6 checks passed
@willeastcott willeastcott deleted the renovate/all-npm-dependencies branch February 11, 2025 18:11
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant