Skip to content

chore(deps): bump the dependencies group across 1 directory with 7 updates - #232

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-7c2342fa03
Open

chore(deps): bump the dependencies group across 1 directory with 7 updates#232
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-7c2342fa03

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 7 updates in the / directory:

Package From To
@fastify/http-proxy 11.4.4 11.6.1
@openally/timestore 2.0.0 3.0.0
pino 9.7.0 10.3.1
pino-loki 2.6.0 3.0.0
pino-pretty 13.0.0 13.1.3
undici 7.29.0 8.10.0
zod 3.25.75 4.5.4

Updates @fastify/http-proxy from 11.4.4 to 11.6.1

Release notes

Sourced from @​fastify/http-proxy's releases.

v11.6.1

What's Changed

New Contributors

Full Changelog: fastify/fastify-http-proxy@v11.6.0...v11.6.1

v11.6.0

⚠️ Security Release

What's Changed

New Contributors

Full Changelog: fastify/fastify-http-proxy@v11.5.0...v11.6.0

v11.5.0

What's Changed

Full Changelog: fastify/fastify-http-proxy@v11.4.4...v11.5.0

Commits
  • 1399fd2 Bumped v11.6.1
  • a9faa4a fix: scope websocket upgrades to the proxy prefix (#475)
  • 0fb3257 chore: bump fastify/workflows/.github/workflows/plugins-ci.yml (#481)
  • af4221f chore: bump fastify/workflows/.github/workflows/lock-threads.yml (#480)
  • 30d9045 chore(.npmrc): add min-release-age
  • 5dcb1f0 chore: update dependabot.yml
  • 2def069 ci: pin actions to commit-hash
  • 7f90c41 Bumped v10.6.0
  • 3b5625a Merge commit from fork
  • 412d5d2 Merge commit from fork
  • Additional commits viewable in compare view

Updates @openally/timestore from 2.0.0 to 3.0.0

Release notes

Sourced from @​openally/timestore's releases.

@​openally/timestore@​3.0.0

Major Changes

Changelog

Sourced from @​openally/timestore's changelog.

3.0.0

Major Changes

Commits
  • 25865b9 chore: update versions (#299)
  • f9e607f refactor: drop CJS support for all packages and remove tsup (#304)
  • 6c49951 chore(deps-dev): bump @​types/sinon (#295)
  • c4ae9aa chore(deps-dev): bump the development-dependencies group across 1 directory w...
  • c7b4b55 chore: support TypeScript 6.x (#288)
  • 65c706d fix(workspaces): add missing repository configuration for workspaces manifest
  • 7ccae39 chore: add publish configuration to each workspaces
  • 082d7dc ci: drop Node.js v22.x
  • b9d4034 refactor: use Node.js native type striping
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​openally/timestore since your current version.


Updates pino from 9.7.0 to 10.3.1

Release notes

Sourced from pino's releases.

v10.3.1

What's Changed

Full Changelog: pinojs/pino@v10.3.0...v10.3.1

v10.3.0

What's Changed

Full Changelog: pinojs/pino@v10.2.1...v10.3.0

v10.2.1

What's Changed

Full Changelog: pinojs/pino@v10.2.0...v10.2.1

v10.2.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v10.1.1...v10.2.0

v10.1.1

What's Changed

... (truncated)

Commits
  • 6b34498 Bumped v10.3.1
  • f1203e6 fix(transport): sanitize invalid NODE_OPTIONS preloads for workers (#2391)
  • 6a8e598 docs: clarify transport level filtering behavior (#2390)
  • 49a4807 Merge branch 'main' of github.com:pinojs/pino
  • 960bbbb build(deps-dev): bump eslint-plugin-n from 17.23.1 to 17.23.2 (#2386)
  • e2a5b4a build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#2385)
  • 04859e2 chore: update gitignore for ai assistant files
  • d6adf03 Bumped v10.3.0
  • 06d55b1 feat: set worker thread name for transport identification (#2380)
  • a728702 fix: fix multistream().clone() return type (#2377)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for pino since your current version.


Updates pino-loki from 2.6.0 to 3.0.0

Release notes

Sourced from pino-loki's releases.

v3.0.0

⚠️ Breaking Changes

Node.js 20+ Required Node.js 18 is no longer supported. The minimum required version is now Node.js 20.

Batching Options Restructured

The batching configuration has been consolidated into a single object:

// Before (v2.x)
pinoLoki({ host: '...', batching: true, interval: 5 })
// After (v3.x)
pinoLoki({ host: '...', batching: { interval: 5, maxBufferSize: 10_000 } })
// Or simply omit for defaults, or set batching: false to disable

Default Buffer Limit

A new maxBufferSize option (default: 10,000) prevents out-of-memory issues when Loki is unavailable. When the buffer is full, oldest logs are dropped (FIFO).

Structured Metadata Enabled by Default

structuredMetaKey now defaults to 'meta'. Logs with a meta property will automatically send it as Loki structured metadata. Use structuredMetaKey: false to disable.

CLI Changes

  • --batch => --batching
  • --interval => --batching-interval
  • --timeout default: 2000ms → 30000ms
  • Added --batching-max-buffer-size
  • Removed -pl shorthand (use --propsLabels)

   🚨 Breaking Changes

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • c042352 chore: release v3.0.0
  • 528c6a4 style: lint files
  • ba7b17e chore!: remove deprecated CLI options
  • 5de977e fix!: change timeout default value
  • 43ebb6c feat!: use meta as default structured meta key
  • db75124 fix: avoid duplicate buffer flush on transport shutdown
  • feb0408 chore!: update dependencies ( drop node 18 )
  • d6d1acc fix: remove hostname from log object before formatting
  • e00e6ca feat!: add maxBufferSize option + update batching API
  • 66ccf05 chore: remove basicAuth options from debug
  • Additional commits viewable in compare view

Updates pino-pretty from 13.0.0 to 13.1.3

Release notes

Sourced from pino-pretty's releases.

v13.1.3

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v13.1.2...v13.1.3

v13.1.2

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v13.1.1...v13.1.2

v13.1.1

What's Changed

Full Changelog: pinojs/pino-pretty@v13.1.0...v13.1.1

v13.1.0

What's Changed

... (truncated)

Commits
  • 08425cd v13.1.3
  • 6afb524 fix: messageFormat print 0 value (#635)
  • 70c73ea build(deps): bump fast-copy from 3.0.2 to 4.0.0 (#637)
  • 2cd9794 build(deps): bump actions/checkout from 5 to 6 (#636)
  • c06e276 Update format-time.js documentation to match functionality (#632)
  • 47ffb45 build(deps): bump pino-abstract-transport from 2.0.0 to 3.0.0 (#629)
  • 932af85 build(deps-dev): bump pino from 9.14.0 to 10.1.0 (#628)
  • 6d48318 build(deps-dev): bump borp from 0.20.2 to 0.21.0 (#627)
  • 3b89a0c build(deps): bump actions/setup-node from 4 to 6 (#626)
  • ab0ccab Add in the README file a snippet to use pino-pretty only for dev (#623)
  • Additional commits viewable in compare view

Updates undici from 7.29.0 to 8.10.0

Release notes

Sourced from undici's releases.

v8.10.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v8.9.0...v8.10.0

v8.9.0

⚠️ Security fixes

High severity

  • GHSA-4cwx-7wf7-3272: malformed qualified private Cache-Control directives could cause cross-user information disclosure in shared caches or a parse-time crash. The cache parser now treats empty qualified directives conservatively and safely handles mixed qualified and unqualified directives. Fixed by 4fe5bc5f with regression coverage in 9f09b49a.

Medium severity

  • GHSA-m8rv-5g2x-5cg5: a malicious type property on a duck-typed blob-like HTTP/1.1 request body could inject CRLF sequences into the generated content-type header. Undici now coerces and validates the value before adding it to the request. Fixed by 7d3cf924.
  • GHSA-jr45-8vmc-qm54: optional whitespace around = in qualified no-cache and private directives could bypass shared-cache restrictions and disclose authenticated data across users. Cache-Control parsing now normalizes these forms and applies conservative cache decisions. Fixed by c601fff1.
  • GHSA-8xcm-r25x-g524: the retry interceptor could expose a stale Content-Length after resuming a partial response, potentially causing downstream response desynchronization, hangs, or corruption. Undici now rejects partial responses whose Content-Length is inconsistent with Content-Range. Fixed by e11a68ed, with corrected fixtures in 2b3f7493.
  • GHSA-v3r7-h72x-cjcm: unsanitized domain and unparsed values passed to setCookie() could inject cookie attributes. Undici now validates cookie domains, paths, and unparsed attributes more strictly. Fixed by 10d93fc3.

Additional hardening

... (truncated)

Commits
  • c8d80e6 Bumped v8.10.0 (#5644)
  • 66923b4 fix: preserve DNS origin hostname on sockets (#5577)
  • 3926499 fix: retry refused HTTP/2 streams (#5598)
  • 73d6e9e fix(h2): detach upgrade close handler after GOAWAY (#5641)
  • b111adb fix(mock): emit request body lifecycle hooks (#5367)
  • ae4a3e3 build(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#5636)
  • ec3fbf1 build(deps): bump github/codeql-action/init from 4.36.2 to 4.37.3 (#5634)
  • 2151720 build(deps): bump ossf/scorecard-action from 2.4.3 to 2.4.4 (#5633)
  • b96a116 fix(interceptors): allow interceptors without opts.origin (#5628)
  • a18ef2d fix(mock): non-string path matchers under ignoreTrailingSlash, and DataView r...
  • Additional commits viewable in compare view

Updates zod from 3.25.75 to 4.5.4

Release notes

Sourced from zod's releases.

v4.5.4

Commits:

  • 84e416fbf4740527bbc8f319634f4e1b065bb42c fix(v4): stop the cycle walk from firing a default factory (#6500)
  • e8e206fa33ac5fe7ce20a2beb12d57b1cb3df653 4.5.4

v4.5.3

Commits:

  • e6b6ab347675cd2bd54b1bdbed16f98c59be82a9 docs(blog): widen the z.compile example to a 20-property schema
  • 87d6464418582bb96fc665a01f852ca6da324ad0 fix(docs): drop the OG description when the title wraps past two lines
  • 99fce394a026823e602b9c30d8d5d9f5f1932ce7 bench(v4): z.compile() against zod-compiler (#6499)
  • e3a695b6bf3f0d591ea682816e3cdaea04b0f967 docs(v4): record the email regex and container output-shape findings under Open
  • 7e24a24288183ce02554f1ded7775d0650a7b7e6 docs(blog): drop the reading time and put a GitHub link in the navbar
  • eab51ff3592b2d11d863f4ee4d5452f31a3de1b6 fix(v4): emit record numeric keys as strings in toJSONSchema (#6497)

v4.5.2

Commits:

  • a354314ac04fdd5484aa62dd5c3a4b553211a0e4 fix(docs): keep blog posts out of the docs collection (#6484)
  • d378c42aff6869f0929058a7923cd775880f5c4c ci: drop canary publishing from the release workflow (#6487)
  • 212b941791e7faae078e17645eb612824fd8f79a fix(v4): let a prototype method getter answer a bare call so vi.spyOn works (#6488)
  • e7576f542a7bc7ef3cc5eeec237714fd0e6b6e98 docs(blog): let the page show through the navbar in dark mode (#6489)
  • fedb06fafe33a66ce0b5c236ad2557e0a5a170fe fix(docs): match the blog TOC hover bar to the 2px active indicator
  • 6c932fcb2eea6eb671710ea058ca9fdc382ada89 chore: bump devcontainer image to Node 24 (#6470)
  • 6635d9dd367a664109de83c021995821f48efa29 docs(blog): soften the "method memoization" attribution
  • 019ae299cc75daa132bf1acf59086a520abf6b85 fix(docs): drop ISR on the docs route so the home page hydrates
  • 652bb438aa4c626c1cd7948c6849c4691239fca7 chore(docs): drop the scroll log from the route-change scroller
  • 571c8e8a3d73b4305f4abfdd6977773cc12f2bf5 fix(docs): render blog tabs with the stock fumadocs tab card
  • 9a193aa24b4efa3b315b91d4c56c8bc385b8513f 4.5.2

v4.5.1

Commits:

  • 2e862dbf89da2835e5206a8fd3d3be61afe3cf7f ci: gate the GitHub release and JSR publish on the version being live on npm
  • 8e03380510db36fa6fda979fc78a375fdea8021c 4.5.1

v4.5.0

Zod 4.5 is now available.

npm install zod@latest

At a glance:

…dates

Bumps the dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@fastify/http-proxy](https://github.com/fastify/fastify-http-proxy) | `11.4.4` | `11.6.1` |
| [@openally/timestore](https://github.com/OpenAlly/npm-packages/tree/HEAD/src/timestore) | `2.0.0` | `3.0.0` |
| [pino](https://github.com/pinojs/pino) | `9.7.0` | `10.3.1` |
| [pino-loki](https://github.com/Julien-R44/pino-loki) | `2.6.0` | `3.0.0` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `13.0.0` | `13.1.3` |
| [undici](https://github.com/nodejs/undici) | `7.29.0` | `8.10.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.75` | `4.5.4` |



Updates `@fastify/http-proxy` from 11.4.4 to 11.6.1
- [Release notes](https://github.com/fastify/fastify-http-proxy/releases)
- [Commits](fastify/fastify-http-proxy@v11.4.4...v11.6.1)

Updates `@openally/timestore` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/OpenAlly/npm-packages/releases)
- [Changelog](https://github.com/OpenAlly/npm-packages/blob/main/src/timestore/CHANGELOG.md)
- [Commits](https://github.com/OpenAlly/npm-packages/commits/@openally/timestore@3.0.0/src/timestore)

Updates `pino` from 9.7.0 to 10.3.1
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.7.0...v10.3.1)

Updates `pino-loki` from 2.6.0 to 3.0.0
- [Release notes](https://github.com/Julien-R44/pino-loki/releases)
- [Commits](Julien-R44/pino-loki@v2.6.0...v3.0.0)

Updates `pino-pretty` from 13.0.0 to 13.1.3
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v13.0.0...v13.1.3)

Updates `undici` from 7.29.0 to 8.10.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.29.0...v8.10.0)

Updates `zod` from 3.25.75 to 4.5.4
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.75...v4.5.4)

---
updated-dependencies:
- dependency-name: "@fastify/http-proxy"
  dependency-version: 11.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@openally/timestore"
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pino
  dependency-version: 10.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pino-loki
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pino-pretty
  dependency-version: 13.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: undici
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: zod
  dependency-version: 4.5.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 2, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​openally/​timestore@​2.0.0 ⏵ 3.0.073 +110099 +188 +9100
Updatedpino-loki@​2.6.0 ⏵ 3.0.0100 +110010081100
Updatedpino-pretty@​13.0.0 ⏵ 13.1.399 +110010083100
Updatedpino@​9.7.0 ⏵ 10.3.19810010090100
Addedundici@​8.10.09310010098100
Updated@​fastify/​http-proxy@​11.4.4 ⏵ 11.6.1100 +110010095100
Updatedzod@​3.25.75 ⏵ 4.5.410010010096 +4100

View full report

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

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants