Skip to content

SERVER: Bump the npm group across 1 directory with 19 updates#305

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/server/npm-0082c9d3d5
Open

SERVER: Bump the npm group across 1 directory with 19 updates#305
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/server/npm-0082c9d3d5

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 3, 2026

Bumps the npm group with 18 updates in the /server directory:

Package From To
@azure/identity 4.9.1 4.13.0
@azure/keyvault-secrets 4.9.0 4.10.0
express-session 1.18.2 1.19.0
@types/express-session 1.18.1 1.18.2
pdfmake 0.2.19 0.3.5
pg 8.16.3 8.18.0
pg-promise 12.1.3 12.6.1
puppeteer 24.19.0 24.37.5
puppeteer-cluster 0.24.0 0.25.0
winston 3.17.0 3.19.0
@types/compression 1.7.5 1.8.1
@types/morgan 1.9.9 1.9.10
@types/node 25.0.8 25.3.0
@types/passport-google-oauth20 2.0.16 2.0.17
@types/pdfmake 0.2.11 0.3.1
@typescript-eslint/eslint-plugin 8.53.0 8.56.1
eslint 9.39.2 9.39.3
nodemon 3.1.10 3.1.14

Updates @azure/identity from 4.9.1 to 4.13.0

Commits
  • 980d126 [Identity] Prepare release Oct 25 (#36121)
  • 29a8eab Azure.Communication.Email 1.1.0 - 2025-09-01 (#36008)
  • 05a9860 [notification-hubs] fix TypeError when parsing AppleTemplateRegistrationDescr...
  • cdbd31b [EngSys] automatic pnpm update (#36119)
  • 953fcf9 Sync eng/common directory with azure-sdk-tools for PR 12337 (#36113)
  • 259da84 [Identity] Remove inappropriate @​internal tags from non-exported members (#36...
  • d9c8393 [Identity] Disable probe in DAC when MICred is set exclusively (#36047)
  • 6ac80a8 [load-testing-rest] pass PolledOperationOptions to getLongRunningPoller (#35164)
  • e92d51a Sync eng/common directory with azure-sdk-tools for PR 12325 (#36109)
  • 3dccef7 [perf] update published package versions to latest versions (#36100)
  • Additional commits viewable in compare view

Updates @azure/keyvault-secrets from 4.9.0 to 4.10.0

Commits
  • 4ff2c18 [core-client-rest] Delete dom.d.ts (#34753)
  • 95b5fc6 [eventgrid-systemevents] re-generate June 2025 (#34759)
  • d25f710 [EngSys] upgrade typescript-eslint* dev dependencies to ~8.34.0 (#34116)
  • c3aaf5a [ServiceBus] reduce max count of messages to delete (#34719)
  • f1861c9 Release peraparation for communication.identity package (#34745)
  • f3f8beb [keyvault] Add missing key wrap algos (#34768)
  • 05fc344 [Monitor OpenTelemetry Exporter][Monitor OpenTelemetry] Release Distro 1.12.0...
  • d837415 Use common publish for partner-release (#34601)
  • 50da1a3 Sync eng/common directory with azure-sdk-tools for PR 10835 (#34760)
  • 5ec071f Ignore various eng files en masse with cspell (#34706)
  • Additional commits viewable in compare view

Updates express-session from 1.18.2 to 1.19.0

Release notes

Sourced from express-session's releases.

v1.19.0

What's Changed

Main Changes

  • Add dynamic cookie options support Cookie options can now be dynamic, allowing for more flexible and context-aware configuration based on each request. This feature enables programmatic modification of cookie attributes like secure, httpOnly, sameSite, maxAge, domain, and path based on session or request conditions.

    var app = express()
    app.use(session({
      secret: 'keyboard cat',
      resave: false,
      saveUninitialized: true,
      cookie: function (req) {
        var match = req.url.match(/^\/([^/]+)/);
        return {
          path: match ? '/' + match[1] : '/',
          httpOnly: true,
          secure: req.secure || false,
          maxAge: 60000
        }
      }
    }))
  • Add sameSite 'auto' support for automatic SameSite attribute configuration Added sameSite: 'auto' option for cookie configuration that automatically sets SameSite=None for HTTPS and SameSite=Lax for HTTP connections, simplifying cookie handling across different environments.

  • deps: use tilde notation for dependencies

PRs

New Contributors

... (truncated)

Changelog

Sourced from express-session's changelog.

1.19.0 / 2026-01-22

  • Add dynamic cookie options support
  • Add sameSite 'auto' support for automatic SameSite attribute configuration
  • deps: use tilde notation for dependencies
Commits
  • c10b2a3 1.19.0 (#1107)
  • 2673736 feat: add support to dynamic cookie options (#1027)
  • 73e0193 Add sameSite 'auto' support to match secure 'auto' pattern (#1087)
  • 264b6a0 deps: use tilde notation for dependencies (#1096)
  • 6d69f09 chore: remove history.md from being packaged on publish (#1097)
  • 00b8a5f refactor: remove unused sess parameter from generateSessionId function (#...
  • 2cd6561 build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.3 (#1082)
  • 1307f30 build(deps): bump actions/checkout from 4.2.2 to 6.0.0 (#1088)
  • 0e7a438 build(deps): bump github/codeql-action from 4.31.2 to 4.31.6 (#1089)
  • a095a9a build(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0 (#1090)
  • Additional commits viewable in compare view

Updates @types/express-session from 1.18.1 to 1.18.2

Commits

Updates pdfmake from 0.2.19 to 0.3.5

Release notes

Sourced from pdfmake's releases.

0.3.5

  • Added snakingColumns property for columns to enable newspaper-like column flow
  • Added outlines / bookmarks for text node
    • outline - set to true for add to bookmarks
    • outlineText (optional) - set custom bookmark text, otherwise text from node
    • outlineExpanded (optional) - set to true for expanded/opened bookmark
    • outlineParentId (optional) - parent bookmark id
  • Added property outlines for ToC, which adds all items to outlines / bookmarks (any existing outline settings on texts are respected)

0.3.4

  • Added vertical alignment for table cells via verticalAlignment property, values: top (default), middle, bottom
  • Fixed margin inheritance when styles are extended multiple times

0.3.3

  • Added properties for ToC:
    • hideEmpty - set to true if you can hide an empty ToC
    • sortBy - 'page' (default) or 'title'
    • sortLocale - custom locale to sort by property sortBy
  • Added property decorationThickness for text to set width of the decoration line
  • Added inherited/extends styles, use property extends in style with style name or array of string with style names
  • Fixed margin override with 0 value
  • Fixed margin override from multiple styles
  • Fixed text decoration for superscript and subscript
  • Fixed svg-to-pdfkit - TypeError: t.classList.contains is not a function

0.3.2

  • Fixed non-working open() and print() methods in browser
  • Added SVG validation: width and height must be specified (in SVG string/element or svg node)
  • Added support for image scaling with only height defined
  • Added custom markerColor for each item of ul and ol

0.3.1

  • Added auto page height for multiple pages (for section or after custom page break)
  • Added type validation for parameters in method createPdf
  • Added support SVGElement object for svg node (SVGElement object is available only in browser)
  • Updated svg-to-pdfkit library to the latest GitHub master commit
  • Fixed a bug in the write method where it did not wait for the file write operation to complete
  • Fixed SVG loading
  • Fixed rendering SVG without viewBox

0.3.0

Changelog (compared to version 0.2.21)

  • Reverted to the original pdfkit package, moving away from @foliojs-fork
  • Drop support Internet Explorer 11 (Microsoft will not support from 2022)
  • Minimal supported version Node.js 20 LTS
  • Port code base to ES6+
  • Unify interface for node and browser (breaking change)
  • All methods return promise instead of using callback (breaking change)
  • Change including virtual font storage in client-side (breaking change)

... (truncated)

Changelog

Sourced from pdfmake's changelog.

0.3.5 - 2026-02-22

  • Added snakingColumns property for columns to enable newspaper-like column flow
  • Added outlines / bookmarks for text node
    • outline - set to true for add to bookmarks
    • outlineText (optional) - set custom bookmark text, otherwise text from node
    • outlineExpanded (optional) - set to true for expanded/opened bookmark
    • outlineParentId (optional) - parent bookmark id
  • Added property outlines for ToC, which adds all items to outlines / bookmarks (any existing outline settings on texts are respected)

0.3.4 - 2026-02-13

  • Added vertical alignment for table cells via verticalAlignment property, values: top (default), middle, bottom
  • Fixed margin inheritance when styles are extended multiple times

0.3.3 - 2026-01-18

  • Added properties for ToC:
    • hideEmpty - set to true if you can hide an empty ToC
    • sortBy - 'page' (default) or 'title'
    • sortLocale - custom locale to sort by property sortBy
  • Added property decorationThickness for text to set width of the decoration line
  • Added inherited/extends styles, use property extends in style with style name or array of string with style names
  • Fixed margin override with 0 value
  • Fixed margin override from multiple styles
  • Fixed text decoration for superscript and subscript
  • Fixed svg-to-pdfkit - TypeError: t.classList.contains is not a function

0.3.2 - 2026-01-11

  • Fixed non-working open() and print() methods in browser
  • Added SVG validation: width and height must be specified (in SVG string/element or svg node)
  • Added support for image scaling with only height defined
  • Added custom markerColor for each item of ul and ol

0.3.1 - 2026-01-07

  • Added auto page height for multiple pages (for section or after custom page break)
  • Added type validation for parameters in method createPdf
  • Added support SVGElement object for svg node (SVGElement object is available only in browser)
  • Updated svg-to-pdfkit library to the latest GitHub master commit
  • Fixed a bug in the write method where it did not wait for the file write operation to complete
  • Fixed SVG loading
  • Fixed rendering SVG without viewBox

0.3.0 - 2026-01-01

  • Reverted to the original pdfkit package, moving away from @foliojs-fork
  • Drop support Internet Explorer 11 (Microsoft will not support from 2022)
  • Minimal supported version Node.js 20 LTS

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for pdfmake since your current version.


Updates pg from 8.16.3 to 8.18.0

Changelog

Sourced from pg's changelog.

[email protected]

[email protected]

  • Throw correct error if database URL parsing fails.

[email protected]

[email protected]

  • Add support for esm importing. CommonJS importing is still also supported.

[email protected]

[email protected]

[email protected]

[email protected]

  • Emit release event when client is returned to the pool.

[email protected]

[email protected]

[email protected]

... (truncated)

Commits

Updates pg-promise from 12.1.3 to 12.6.1

Release notes

Sourced from pg-promise's releases.

12.6.1

  • Fixes #980 for TableName that was introduced in v12.6.0
  • Dev dependencies updated.

12.6.0

Removing Legacy Inspections

All legacy (custom) object/class inspections (for the console) have been removed, to rely on NodeJS's default inspection instead, which has evolved a lot since early days. Now for all class instances in the library you will see color output in the console, thanks to NodeJS support for colors.

See #979

Minor version incremented, because the console output format has changed, which may break some tests, if you are testing the output. Other than that, the change is compatible, i.e. not enough to justify major version change.

12.5.0

Improved duplicate columns handling

Class ColumnSet has been reworked for better flexibility in handling duplicate columns:

  • The constructor options now include duplicate?: 'error' | 'skip' | 'replace'
  • Method extend now accepts option skip, and relies on the ColumnSet constructor with duplicate option set to error or skip
  • Method merge now simply relies on ColumnSet constructor with duplicate = 'replace' option

This change though substantial, is only incremental, and should work the same without using those new options.

In addition, the underlying pg driver has been updated.

12.4.0

  • Updated all dependencies, including the pg driver.
  • Updated TypeScript declarations for ColumnSet, as per #PR-974
  • Updated docs, as per #976

12.3.0

  • Dependencies update for DEV + for spex, to allow for proper types resolution, see PR#19

12.2.0

  • Adding official support for PostgreSQL v18, including in GitHub CI.
  • Dev dependencies updated.

It is more of a landmark release, without any code changes.

Commits

Updates puppeteer from 24.19.0 to 24.37.5

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.37.5

24.37.5 (2026-02-19)

🛠️ Fixes

puppeteer: v24.37.5

24.37.5 (2026-02-19)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.37.4 to 24.37.5

puppeteer-core: v24.37.4

24.37.4 (2026-02-18)

🛠️ Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.12.1 to 2.13.0

puppeteer: v24.37.4

24.37.4 (2026-02-18)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.37.5 (2026-02-19)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.37.4 to 24.37.5

🛠️ Fixes

24.37.4 (2026-02-18)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.12.1 to 2.13.0

🛠️ Fixes

24.37.3 (2026-02-13)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for puppeteer since your current version.


Updates puppeteer-cluster from 0.24.0 to 0.25.0

Release notes

Sourced from puppeteer-cluster's releases.

v0.25.0

Note: Use a version older than 0.25.0 if you want to use a puppeteer version older than 24.0.0.

Changed

  • Updated puppeteer types to version 24
  • Updated dependencies to their latest versions
  • Exported more types for improved TypeScript use

Fixed

  • Cluster retrying in error cases when it was already closed
Changelog

Sourced from puppeteer-cluster's changelog.

[0.25.0] - 2025-11-13

Note: Use a version older than 0.25.0 if you want to use a puppeteer version older than 24.0.0.

Changed

  • Updated puppeteer types to version 24
  • Updated dependencies to their latest versions
  • Exported more types for improved TypeScript use

Fixed

  • Cluster retrying in error cases when it was already closed
Commits

Updates winston from 3.17.0 to 3.19.0

Release notes

Sourced from winston's releases.

v3.19.0

  • Run npm audit fix e7ccdc4
  • Don't include jest.config.js in npm package 5a63c8c
  • fix: append error cause when using logger.child() (#2467) e74a7ae
  • Bump rimraf from 5.0.1 to 5.0.10 (#2517) 8a956fd
  • fix: ensure File transport flushes all data before emitting finish (#2594) 86c890f
  • Bump actions/setup-node from 4 to 6 (#2589) 3b8be02
  • Bump @​babel/core from 7.28.0 to 7.28.5 (#2591) f4c3e2c
  • Bump actions/checkout from 4 to 6 (#2593) dd7906e
  • chore: migrate test runner from mocha to jest (#2567) 2e9eb18

winstonjs/winston@v3.18.3...v3.19.0

v3.18.3

  • Update diagnostics dependency (removes fix-esm transitive dependency) a15a9e9

winstonjs/winston@v3.18.2...v3.18.3

v3.18.2

  • Bump diagnostics package to resolve #2583 (again) f4582c3

winstonjs/winston@v3.18.1...v3.18.2

v3.18.1

  • Bump diagnostics package to resolve #2583 e668c2c

winstonjs/winston@v3.18.0...v3.18.1

v3.18.0

  • Update diagnostics package to latest version to remove vulnerability 376e331
  • add @​initd.sg/winston-cloudwatch (#2532) 71ee92a
  • Update transports.md (#2549) 3547a95
  • docs: update transport.md (#2550) dc88db0
  • feat: adds helper function for highest log level (#2514) c69cdb0

winstonjs/winston@v3.17.0...v3.18.0

Commits

Updates @types/compression from 1.7.5 to 1.8.1

Commits

Updates @types/express-session from 1.18.1 to 1.18.2

Commits

Updates @types/morgan from 1.9.9 to 1.9.10

Commits

Updates @types/node from 25.0.8 to 25.3.0

Commits

Updates @types/passport-google-oauth20 from 2.0.16 to 2.0.17

Commits

Updates @types/pdfmake from 0.2.11 to 0.3.1

Commits

Updates @typescript-eslint/eslint-plugin from 8.53.0 to 8.56.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.56.1

8.56.1 (2026-02-23)

What's Changed

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

v8.55.0

8.55.0 (2026-02-09)

🚀 Features

  • utils: deprecate defaultOptions in favor of meta.defaultOptions (#11992)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] remove trailing newline when removing entire import (#11990)
  • eslint-plugin: [no-useless-default-assignment] require strictNullChecks (#11966, #12000)
  • eslint-plugin: [no-useless-default-assignment] report unnecessary defaults in ternary expressions (#11984)
  • eslint-plugin: [no-useless-default-assignment] reduce param index to ts this handling (#11949)
  • typescript-estree: forbid invalid modifier in object expression (#11931)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.56.1 (2026-02-23)

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

See GitHub Releases for more information.

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

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

8.55.0 (2026-02-09)

🚀 Features

  • utils: deprecate defaultOptions in favor of meta.defaultOptions (#11992)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] reduce param index to ts this handling (#11949)
  • eslint-plugin: [no-useless-default-assignment] report unnecessary defaults in ternary expressions (#11984)
  • eslint-plugin: [no-useless-default-assignment] require strictNullChecks (#11966, #12000)
  • eslint-plugin: [no-unused-vars] remove trailing newline when removing entire import (#11990)

❤️ Thank You

... (truncated)

Commits
  • 96a04a9 chore(release): publish 8.56.1
  • 958f390 chore(eslint-plugin): add default excludes to vitest (#12067)
  • ffb46ea docs(eslint-plugin): [method-signature-style] clarify autofix impact on type ...
  • 8b8b68f chore(release): publish 8.56.0
  • 68a074f feat: support ESLint v10 (#12057)
  • c0a359d fix: use parser options from context.languageOptions (#12043)
  • fedfe86 chore(release): publish 8.55.0
  • 8a95834 fix(eslint-plugin): [no-useless-default-assignment] reduce param index to ts ...
  • 4ba1e72 fix(eslint-plugin): [no-useless-default-assignment] report unnecessary defaul...
  • a1f8617 feat(utils): deprecate defaultOptions in favor of meta.defaultOptions (#11992)
  • Additional commits viewable in compare viewDescription has been truncated

Bumps the npm group with 18 updates in the /server directory:

| Package | From | To |
| --- | --- | --- |
| [@azure/identity](https://github.com/Azure/azure-sdk-for-js) | `4.9.1` | `4.13.0` |
| [@azure/keyvault-secrets](https://github.com/Azure/azure-sdk-for-js) | `4.9.0` | `4.10.0` |
| [express-session](https://github.com/expressjs/session) | `1.18.2` | `1.19.0` |
| [@types/express-session](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express-session) | `1.18.1` | `1.18.2` |
| [pdfmake](https://github.com/bpampuch/pdfmake) | `0.2.19` | `0.3.5` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.16.3` | `8.18.0` |
| [pg-promise](https://github.com/vitaly-t/pg-promise) | `12.1.3` | `12.6.1` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.19.0` | `24.37.5` |
| [puppeteer-cluster](https://github.com/thomasdondorf/puppeteer-cluster) | `0.24.0` | `0.25.0` |
| [winston](https://github.com/winstonjs/winston) | `3.17.0` | `3.19.0` |
| [@types/compression](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/compression) | `1.7.5` | `1.8.1` |
| [@types/morgan](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/morgan) | `1.9.9` | `1.9.10` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.8` | `25.3.0` |
| [@types/passport-google-oauth20](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/passport-google-oauth20) | `2.0.16` | `2.0.17` |
| [@types/pdfmake](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pdfmake) | `0.2.11` | `0.3.1` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.53.0` | `8.56.1` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `9.39.3` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.10` | `3.1.14` |



Updates `@azure/identity` from 4.9.1 to 4.13.0
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/identity_4.9.1...@azure/identity_4.13.0)

Updates `@azure/keyvault-secrets` from 4.9.0 to 4.10.0
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/keyvault-secrets_4.9.0...@azure/keyvault-secrets_4.10.0)

Updates `express-session` from 1.18.2 to 1.19.0
- [Release notes](https://github.com/expressjs/session/releases)
- [Changelog](https://github.com/expressjs/session/blob/master/HISTORY.md)
- [Commits](expressjs/session@v1.18.2...v1.19.0)

Updates `@types/express-session` from 1.18.1 to 1.18.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express-session)

Updates `pdfmake` from 0.2.19 to 0.3.5
- [Release notes](https://github.com/bpampuch/pdfmake/releases)
- [Changelog](https://github.com/bpampuch/pdfmake/blob/master/CHANGELOG.md)
- [Commits](bpampuch/pdfmake@0.2.19...0.3.5)

Updates `pg` from 8.16.3 to 8.18.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/[email protected]/packages/pg)

Updates `pg-promise` from 12.1.3 to 12.6.1
- [Release notes](https://github.com/vitaly-t/pg-promise/releases)
- [Commits](vitaly-t/pg-promise@12.1.3...12.6.1)

Updates `puppeteer` from 24.19.0 to 24.37.5
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.19.0...puppeteer-v24.37.5)

Updates `puppeteer-cluster` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/thomasdondorf/puppeteer-cluster/releases)
- [Changelog](https://github.com/thomasdondorf/puppeteer-cluster/blob/master/CHANGELOG.md)
- [Commits](thomasdondorf/puppeteer-cluster@v0.24.0...v0.25.0)

Updates `winston` from 3.17.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.17.0...v3.19.0)

Updates `@types/compression` from 1.7.5 to 1.8.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/compression)

Updates `@types/express-session` from 1.18.1 to 1.18.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express-session)

Updates `@types/morgan` from 1.9.9 to 1.9.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/morgan)

Updates `@types/node` from 25.0.8 to 25.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/passport-google-oauth20` from 2.0.16 to 2.0.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/passport-google-oauth20)

Updates `@types/pdfmake` from 0.2.11 to 0.3.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pdfmake)

Updates `@typescript-eslint/eslint-plugin` from 8.53.0 to 8.56.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.56.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.53.0 to 8.56.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.56.1/packages/parser)

Updates `eslint` from 9.39.2 to 9.39.3
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v9.39.3)

Updates `nodemon` from 3.1.10 to 3.1.14
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.10...v3.1.14)

---
updated-dependencies:
- dependency-name: "@azure/identity"
  dependency-version: 4.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@azure/keyvault-secrets"
  dependency-version: 4.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: express-session
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/express-session"
  dependency-version: 1.18.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: pdfmake
  dependency-version: 0.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: pg
  dependency-version: 8.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: pg-promise
  dependency-version: 12.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: puppeteer
  dependency-version: 24.37.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: puppeteer-cluster
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: winston
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/compression"
  dependency-version: 1.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/express-session"
  dependency-version: 1.18.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/morgan"
  dependency-version: 1.9.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-version: 25.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/passport-google-oauth20"
  dependency-version: 2.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/pdfmake"
  dependency-version: 0.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.56.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.56.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint
  dependency-version: 9.39.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: nodemon
  dependency-version: 3.1.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 3, 2026
@github-actions github-actions bot added the chore label Mar 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore 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