Skip to content

build: update all non-major dependencies (main)#33454

Merged
alan-agius4 merged 1 commit into
angular:mainfrom
angular-robot:ng-renovate/main-all-non-major-dependencies
Jun 25, 2026
Merged

build: update all non-major dependencies (main)#33454
alan-agius4 merged 1 commit into
angular:mainfrom
angular-robot:ng-renovate/main-all-non-major-dependencies

Conversation

@angular-robot

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) 8.0.18.0.2 age adoption passing confidence
@rollup/wasm-node (source) 4.62.04.62.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.61.18.62.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.61.18.62.0 age adoption passing confidence
algoliasearch (source) 5.55.05.55.1 age adoption passing confidence
autoprefixer 10.5.010.5.1 age adoption passing confidence
globals 17.6.017.7.0 age adoption passing confidence
less (source) 4.6.64.6.7 age adoption passing confidence
lmdb 3.5.53.5.6 age adoption passing confidence
ora 9.4.09.4.1 age adoption passing confidence
puppeteer (source) 25.1.025.2.0 age adoption passing confidence
rolldown (source) 1.1.11.1.2 age adoption passing confidence
rollup (source) 4.62.04.62.2 age adoption passing confidence
semver 7.8.47.8.5 age adoption passing confidence
verdaccio (source) 6.7.26.7.4 age adoption passing confidence
vite (source) 8.0.168.1.0 age adoption passing confidence

  • If you want to rebase/retry this PR, check this box

Release Notes

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

v8.0.2

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env
rollup/rollup (@​rollup/wasm-node)

v4.62.2

Compare Source

2026-06-19

Bug Fixes
  • Do not add spurious side-effect-free external imports to chunks when using minChunkSize (#​6411)
Pull Requests

v4.62.1

Compare Source

2026-06-19

Bug Fixes
  • Preserve multipart file extensions when deconflicting output chunks (#​6408)
  • Fix an issue where getLogFilter would match additional logs (#​6415)
Pull Requests
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

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

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

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

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

algolia/algoliasearch-client-javascript (algoliasearch)

v5.55.1

Compare Source

  • a676cd9cef fix(clients): bump replaceAllObjects default maxRetries from 100 to 800 (#​6580) by @​Fluf22
  • a632f9fb75 fix(specs): BREAKING CHANGE – allow null records in getObjects response (#​6582) by @​Fluf22
    • The getObjects operation now returns a list of nullable objects, as the API can send back null records. The clients previously only allowed a list of objects, so the response type has been updated to allow null values.
postcss/autoprefixer (autoprefixer)

v10.5.1

Compare Source

sindresorhus/globals (globals)

v17.7.0

Compare Source


less/less.js (less)

v4.6.7

Compare Source

Changes
kriszyp/lmdb-js (lmdb)

v3.5.6

Compare Source

sindresorhus/ora (ora)

v9.4.1

Compare Source


puppeteer/puppeteer (puppeteer)

v25.2.0

Compare Source

♻️ Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 25.2.0 to 25.2.1
🛠️ Fixes
rolldown/rolldown (rolldown)

v1.1.2

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors
npm/node-semver (semver)

v7.8.5

Compare Source

Bug Fixes
verdaccio/verdaccio (verdaccio)

v6.7.4

Compare Source

Patch Changes
  • 0205c78: fix: run jwt middleware before middleware plugins

    Register the JWT middleware before middleware plugins are loaded so that
    req.remote_user (anonymous by default) is available inside a plugin's
    register_middlewares. The API router keeps its own JWT middleware behind a
    guard so it is not executed twice.

    Backport of #​5697

    Closes #​5167

v6.7.3

Compare Source

Patch Changes
  • f8fdfc2: fix: enforce generated npm token metadata

    Generated npm tokens (POST /-/npm/v1/tokens) stored their readonly and
    cidr_whitelist restrictions but never enforced them, and deleting a token did
    not revoke it for the package APIs. A token marked read-only or pinned to a CIDR
    range could still publish packages and change dist-tags, and a deleted token
    remained usable.

    Generated tokens now embed a server-issued key (in the JWT claim, or in the
    encrypted legacy AES payload) and a new enforceGeneratedTokenMetadata
    middleware looks that key up on each request, rejecting the token when it is
    missing/revoked, used outside its CIDR whitelist, or used for a write while
    read-only. Enforcement applies to both AES and JWT API-token modes.

    Note: tokens issued before upgrading carry no key and are not retroactively
    constrained — regenerate them to apply the restrictions.

  • be80623: fix: allow npm token create without readonly/cidr_whitelist

    npm token create in npm >= 11 (and the npm 12 prereleases) rewrote the
    request body: it no longer sends readonly and only sends cidr_whitelist
    when --cidr is passed. The POST /-/npm/v1/tokens endpoint required both,
    so modern npm clients failed with 422 the parameters are not valid.

    The endpoint now defaults readonly to false and cidr_whitelist to []
    when they are absent, while still rejecting values of the wrong type.

  • 75c85d5: Update verdaccio dependencies to the latest npm dist-tag (@verdaccio/ui-theme tracks next-9):

    • @verdaccio/ui-theme: 9.0.0-next-9.199.0.0-next-9.20
  • d5e5332: chore: update dependencies

    Updates runtime dependencies @verdaccio/ui-theme (9.0.0-next-9.19) and
    semver (7.8.2), along with development dependencies: Babel 7.29.7,
    @changesets/cli 2.31.0, ESLint 10.4.1, Vitest 4.1.8, Cypress 15.16.0,
    Prettier 3.8.3, @verdaccio/test-helper 4.0.4, @verdaccio/eslint-config
    13.1.2, and assorted type definitions.

vitejs/vite (vite)

v8.1.0

Compare Source

Features
Bug Fixes
Code Refactoring

See associated pull request for more information.
@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only] labels Jun 25, 2026

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates various dependencies across multiple package.json files, including rollup, vite, semver, and algoliasearch. The review feedback highlights a potential issue with the algoliasearch v5.55.1 upgrade, which introduces a breaking change where getObjects returns nullable objects, potentially causing TypeScript compilation errors or runtime issues if not handled properly.

"@modelcontextprotocol/sdk": "1.29.0",
"@schematics/angular": "workspace:0.0.0-PLACEHOLDER",
"algoliasearch": "5.55.0",
"algoliasearch": "5.55.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The update to algoliasearch v5.55.1 introduces a breaking change where the getObjects operation now returns a list of nullable objects (allowing null records). If the CLI codebase uses getObjects, this type change may cause TypeScript compilation errors or runtime issues unless null-checks are implemented for the returned records.

@alan-agius4 alan-agius4 merged commit 296befb into angular:main Jun 25, 2026
45 checks passed
@alan-agius4

Copy link
Copy Markdown
Collaborator

This PR was merged into the repository. The changes were merged into the following branches:

@alan-agius4 alan-agius4 deleted the ng-renovate/main-all-non-major-dependencies branch June 25, 2026 06:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants