Skip to content

build(deps): bump the npm-minor-patch group in /web with 14 updates - #7367

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/web/npm-minor-patch-3aa3afe70d
Open

build(deps): bump the npm-minor-patch group in /web with 14 updates#7367
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/web/npm-minor-patch-3aa3afe70d

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-patch group in /web with 14 updates:

Package From To
@types/dagre 0.7.53 0.7.54
dayjs 1.11.19 1.11.23
github-markdown-css 5.8.1 5.9.0
react-cookie 8.0.1 8.1.2
react-draggable 4.5.0 4.7.1
@types/loadable__component 5.13.1 5.13.10
@types/react 17.0.3 17.0.10
@types/react-syntax-highlighter 15.5.1 15.5.13
css-loader 7.1.2 7.1.5
eslint-plugin-jest 29.16.1 29.16.6
eslint-plugin-prettier 5.4.0 5.5.6
html-webpack-plugin 5.5.0 5.6.8
ts-jest 29.4.11 29.4.12
webpack 5.94.0 5.110.3

Updates @types/dagre from 0.7.53 to 0.7.54

Commits

Updates dayjs from 1.11.19 to 1.11.23

Release notes

Sourced from dayjs's releases.

v1.11.23

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

v1.11.22

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169

v1.11.21

1.11.21 (2026-05-26)

Bug Fixes

v1.11.20

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Changelog

Sourced from dayjs's changelog.

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169

1.11.21 (2026-05-26)

Bug Fixes

1.11.20 (2026-03-12)

Bug Fixes

  • Update locale km.js to support meridiem (#3017) (9d2b6a1)
  • update updateLocale plugin to merge nested object properties instead of replacing (#3012) (99691c5), closes #1118
Commits
  • 4549b8d chore(release): 1.11.23 [skip ci]
  • 2a3785f fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • dad46e6 fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • ae3a550 chore(release): 1.11.22 [skip ci]
  • accfc67 D2M (#3177)
  • e27ee80 fix(plugin): timezone compute instance .tz() offset without host DST (#3174)
  • 98364bc chore: update doc
  • f6a1556 chore: update doc
  • 6609c5e chore: update doc
  • a25f01e chore(release): 1.11.21 [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

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


Updates github-markdown-css from 5.8.1 to 5.9.0

Release notes

Sourced from github-markdown-css's releases.

v5.9.0

  • Add CSS files for all GitHub themes 5f70cce

sindresorhus/github-markdown-css@v5.8.1...v5.9.0

Commits

Updates react-cookie from 8.0.1 to 8.1.2

Release notes

Sourced from react-cookie's releases.

v8.1.2

What's Changed

Full Changelog: ItsBenCodes/cookies@v8.1.1...v8.1.2

v8.1.1

What's Changed

New Contributors

Full Changelog: ItsBenCodes/cookies@v8.1.0...v8.1.1

v8.1.0

What's Changed

... (truncated)

Commits
Maintainer changes

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


Updates react-draggable from 4.5.0 to 4.7.1

Changelog

Sourced from react-draggable's changelog.

4.7.1 (Jul 28, 2026)

  • Fix: props are no longer marked required under React 18 TypeScript. Regression in 4.6.0. The propTypes static was a required member of the public type; React 18's JSX LibraryManagedAttributes consults propTypes when it is required, and doing so cancels the optionality defaultProps normally grants. React 19 ignores propTypes, which is why the v19-only type check missed it. make lint now also type-checks the public surface against @types/react@18. (#809, closes #807)
  • Fix: guard the process access in the debug logger so browser bundlers that do not shim process no longer crash on import. (#810, closes #806)

4.7.0 (Jun 18, 2026)

  • Feature: add a nonce prop to support a strict Content Security Policy. It's applied to the dynamically-injected user-select <style> element so a style-src policy without 'unsafe-inline' no longer blocks it. When omitted, webpack's __webpack_nonce__ global is used if available. enableUserSelectHack={false} remains a no-prop opt-out. (#808, closes #791)
  • Internal: de-duplicate redundant tsc compilation in the build/CI pipeline.

4.6.0 (May 29, 2026)

  • Internal: Migrate library source from Flow to TypeScript. Types are now generated from source instead of hand-maintained, eliminating Flow/TypeScript drift. The build uses tsup (CommonJS + ESM + generated declarations) with webpack for the UMD bundle. No public API change — the CommonJS export shape (module.exports === Draggable, plus .default and .DraggableCore), the UMD ReactDraggable global, and the shipped type surface are all unchanged. (#805)
  • Feature: ship an ESM build and an exports map alongside the existing CommonJS entry, so the package can be imported natively in both module systems. (#805)
  • Fix: treat ctrl+click as a right-click on macOS so it no longer starts a drag. (#786)
  • Fix: remove a global module declaration from the TypeScript types to prevent type pollution. (#787)
  • Internal: Support React 19 (dependency upgrade and nodeRef-based browser tests).
  • Internal: Migrate the test suite from Karma/Jasmine to Vitest, expand unit coverage, and run CI across Node 20, 22, and 24. (#785, #788)
  • Docs: Modernize the README and publish a GitHub Pages demo site. (#790)
Commits
  • bcbaa8e build: make the release flow refuse to publish a bad state
  • 2a2bfc0 test(build): fail the build on an unguarded process reference (#806)
  • 0c95645 release v4.7.1
  • 24a8fb3 Merge PR #809: fix partial/undefined props under React 18 TypeScript
  • 980374b fix: guard process access so browser bundles do not crash (#810)
  • 08c5d57 Update yarn lockfile
  • 6b587ca Fix handling of partial / undefined props in React 18 TypeScript
  • a0b6e21 release v4.7.0
  • 4551b5d ci: dedup redundant tsc compilation in build/CI
  • 5611b11 feat: add nonce prop for CSP-compliant user-select style injection (#808)
  • Additional commits viewable in compare view

Updates @types/loadable__component from 5.13.1 to 5.13.10

Commits

Updates @types/react from 17.0.3 to 17.0.10

Commits

Updates @types/react-syntax-highlighter from 15.5.1 to 15.5.13

Commits

Updates css-loader from 7.1.2 to 7.1.5

Release notes

Sourced from css-loader's releases.

v7.1.5

7.1.5 (2026-08-28)

Bug Fixes

  • strip BOM before processing with postcss (#1684) (bd20834)

v7.1.4

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)

v7.1.3

7.1.3 (2026-01-27)

Bug Fixes

Changelog

Sourced from css-loader's changelog.

7.1.5 (2026-08-28)

Bug Fixes

  • strip BOM before processing with postcss (#1684) (bd20834)

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)

7.1.3 (2026-01-27)

Bug Fixes

Commits
  • be04ec2 chore(release): 7.1.5
  • 405bdde docs: deprecate css-loader in favor of webpack's built-in CSS support (#1683)
  • bd20834 fix: strip BOM before processing with postcss (#1684)
  • 488cdb1 chore(deps-dev): bump lodash from 4.17.23 to 4.18.1 (#1663)
  • fd4cb47 chore(deps-dev): bump flatted from 3.3.3 to 3.4.2 (#1659)
  • 4bf84fa docs: clarify style-loader usage in Getting Started (#1656)
  • d7441e5 chore(deps): bump immutable from 5.1.3 to 5.1.5 (#1654)
  • ca53a77 chore(deps): bump minimatch (#1653)
  • 5b795af chore(release): 7.1.4
  • aeddefe fix: update peer dependency for @​rspack/core v2 (#1652)
  • Additional commits viewable in compare view

Updates eslint-plugin-jest from 29.16.1 to 29.16.6

Release notes

Sourced from eslint-plugin-jest's releases.

v29.16.6

29.16.6 (2026-08-30)

Bug Fixes

  • prefer-to-have-been-called: don't crash on matcher without an argument (#2016) (58e487f)
  • prefer-to-have-length: don't crash on expect chain without a value (#2014) (3629019)

v29.16.5

29.16.5 (2026-08-27)

Bug Fixes

  • no-export: handle literal property accessors (#2011) (d848f70)

v29.16.4

29.16.4 (2026-08-27)

Bug Fixes

  • no-export: handle nested assignment chains (#2009) (14b559a)

v29.16.3

29.16.3 (2026-08-27)

Bug Fixes

v29.16.2

29.16.2 (2026-08-25)

Bug Fixes

  • prefer-equality-matcher: don't crash on expect chain without a value (#2006) (27665cd)
Changelog

Sourced from eslint-plugin-jest's changelog.

29.16.6 (2026-08-30)

Bug Fixes

  • prefer-to-have-been-called: don't crash on matcher without an argument (#2016) (58e487f)
  • prefer-to-have-length: don't crash on expect chain without a value (#2014) (3629019)

29.16.5 (2026-08-27)

Bug Fixes

  • no-export: handle literal property accessors (#2011) (d848f70)

29.16.4 (2026-08-27)

Bug Fixes

  • no-export: handle nested assignment chains (#2009) (14b559a)

29.16.3 (2026-08-27)

Bug Fixes

29.16.2 (2026-08-25)

Bug Fixes

  • prefer-equality-matcher: don't crash on expect chain without a value (#2006) (27665cd)
Commits
  • 94076f0 chore(release): 29.16.6 [skip ci]
  • 58e487f fix(prefer-to-have-been-called): don't crash on matcher without an argument (...
  • 3629019 fix(prefer-to-have-length): don't crash on expect chain without a value (#2...
  • 197f341 refactor(valid-expect): use optional chaining (#2015)
  • 6e6e9a2 chore(deps): update ghcr.io/danger/danger-js docker digest to 6b75ca3 (#2005)
  • b1c0328 chore(release): 29.16.5 [skip ci]
  • d848f70 fix(no-export): handle literal property accessors (#2011)
  • fc5657c refactor: use replaceText in fixers when possible (#2012)
  • 6156650 chore(release): 29.16.4 [skip ci]
  • 14b559a fix(no-export): handle nested assignment chains (#2009)
  • Additional commits viewable in compare view

Updates eslint-plugin-prettier from 5.4.0 to 5.5.6

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.5.6

Patch Changes

v5.5.5

Patch Changes

v5.5.4

Patch Changes

v5.5.3

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.2...v5.5.3

v5.5.2

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.1...v5.5.2

v5.5.1

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.5.0...v5.5.1

v5.5.0

Minor Changes

  • #743 92f2c9c Thanks @​dotcarmen! - feat: support non-js languages like css for @eslint/css and json for @eslint/json

New Contributors

Full Changelog: prettier/eslint-plugin-prettier@v5.4.1...v5.5.0

v5.4.1

Patch Changes

  • #740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

... (truncated)

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.5.6

Patch Changes

5.5.5

Patch Changes

5.5.4

Patch Changes

5.5.1

Patch Changes

5.5.0

Minor Changes

  • #743 92f2c9c Thanks @​dotcarmen! - feat: support non-js languages like css for @eslint/css and json for @eslint/json

5.4.1

Patch Changes

  • #740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error
Commits
  • 4f33ea5 chore: release eslint-plugin-prettier (#792)
  • 4745b54 ci: declare workflow-level contents: read on 2 workflows (#790)
  • b5c96a3 chore: bump all (dev)Dependencies (#791)
  • e867680 chore(deps): update all dependencies (#766)
  • e8e2f7f chore: testing eslint v10 (#779)
  • ca076d9 chore: update dev dependencies (#780)
  • 42e6369 build(deps): Bump the actions group with 2 updates (#778)
  • 53ff214 Remove empty NPM_TOKEN from release.yml
  • e2c154a chore: release eslint-plugin-prettier (#773)
  • 6795c1a build(deps): Bump the actions group across 1 directory with 2 updates (#774)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for eslint-plugin-prettier since your current version.


Updates html-webpack-plugin from 5.5.0 to 5.6.8

Changelog

Sourced from html-webpack-plugin's changelog.

5.6.8 (2026-07-25)

Bug Fixes

  • extend @​rspack/core peer dependency range (#1893) (8057b14)

5.6.7 (2026-04-17)

Bug Fixes

5.6.6 (2026-01-16)

Bug Fixes

5.6.5 (2025-11-18)

Bug Fixes

5.6.4 (2025-08-14)

Bug Fixes

  • compilation.errors should contain Error objects (#1877) (b733b1a)

5.6.3 (2024-10-23)

Bug Fixes

5.6.2 (2024-10-17)

Bug Fixes

5.6.1 (2024-10-17)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for html-webpack-plugin since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates ts-jest from 29.4.11 to 29.4.12

Release notes

Sourced from ts-jest's releases.

v29.4.12

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.12 (2026-07-22)

Features

  • compiler: support TypeScript 7 projects through compatibility aliases (#5386)
Commits
  • 3f05625 chore(release): 29.4.12
  • df28b27 docs: clarify TypeScript version prerequisites
  • c8a614a docs: mention TypeScript 7 setup in README
  • 06c79d4 fix: address TypeScript 7 review feedback
  • f107460 docs: explain TypeScript 7 compatibility setup
  • 3388227 test(e2e): add TypeScript compatibility matrix
  • 891dc73 fix(compiler): support TypeScript 7 compatibility aliases
  • eb135eb build(deps-dev): bump shell-quote from 1.8.4 to 1.10.0 in /examples
  • d5d80a3 ci: pin google osv scan action at v2.3.5

Bumps the npm-minor-patch group in /web with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/dagre](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dagre) | `0.7.53` | `0.7.54` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.19` | `1.11.23` |
| [github-markdown-css](https://github.com/sindresorhus/github-markdown-css) | `5.8.1` | `5.9.0` |
| [react-cookie](https://github.com/ItsBenCodes/cookies) | `8.0.1` | `8.1.2` |
| [react-draggable](https://github.com/react-grid-layout/react-draggable) | `4.5.0` | `4.7.1` |
| [@types/loadable__component](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/loadable__component) | `5.13.1` | `5.13.10` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `17.0.3` | `17.0.10` |
| [@types/react-syntax-highlighter](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-syntax-highlighter) | `15.5.1` | `15.5.13` |
| [css-loader](https://github.com/webpack/css-loader) | `7.1.2` | `7.1.5` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `29.16.1` | `29.16.6` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.4.0` | `5.5.6` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.5.0` | `5.6.8` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.11` | `29.4.12` |
| [webpack](https://github.com/webpack/webpack) | `5.94.0` | `5.110.3` |


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

Updates `dayjs` from 1.11.19 to 1.11.23
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.23/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.19...v1.11.23)

Updates `github-markdown-css` from 5.8.1 to 5.9.0
- [Release notes](https://github.com/sindresorhus/github-markdown-css/releases)
- [Commits](sindresorhus/github-markdown-css@v5.8.1...v5.9.0)

Updates `react-cookie` from 8.0.1 to 8.1.2
- [Release notes](https://github.com/ItsBenCodes/cookies/releases)
- [Commits](ItsBenCodes/cookies@v8.0.1...v8.1.2)

Updates `react-draggable` from 4.5.0 to 4.7.1
- [Release notes](https://github.com/react-grid-layout/react-draggable/releases)
- [Changelog](https://github.com/react-grid-layout/react-draggable/blob/master/CHANGELOG.md)
- [Commits](react-grid-layout/react-draggable@v4.5.0...v4.7.1)

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

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

Updates `@types/react-syntax-highlighter` from 15.5.1 to 15.5.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-syntax-highlighter)

Updates `css-loader` from 7.1.2 to 7.1.5
- [Release notes](https://github.com/webpack/css-loader/releases)
- [Changelog](https://github.com/webpack/css-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/css-loader@v7.1.2...v7.1.5)

Updates `eslint-plugin-jest` from 29.16.1 to 29.16.6
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v29.16.1...v29.16.6)

Updates `eslint-plugin-prettier` from 5.4.0 to 5.5.6
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.4.0...v5.5.6)

Updates `html-webpack-plugin` from 5.5.0 to 5.6.8
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.5.0...v5.6.8)

Updates `ts-jest` from 29.4.11 to 29.4.12
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.11...v29.4.12)

Updates `webpack` from 5.94.0 to 5.110.3
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.94.0...v5.110.3)

---
updated-dependencies:
- dependency-name: "@types/dagre"
  dependency-version: 0.7.54
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: dayjs
  dependency-version: 1.11.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: github-markdown-css
  dependency-version: 5.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-cookie
  dependency-version: 8.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: react-draggable
  dependency-version: 4.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@types/loadable__component"
  dependency-version: 5.13.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@types/react"
  dependency-version: 17.0.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@types/react-syntax-highlighter"
  dependency-version: 15.5.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: css-loader
  dependency-version: 7.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: eslint-plugin-jest
  dependency-version: 29.16.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: html-webpack-plugin
  dependency-version: 5.6.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: ts-jest
  dependency-version: 29.4.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: webpack
  dependency-version: 5.110.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Copilot AI lite review requested due to automatic review settings September 10, 2026 13:41
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 10, 2026
@dependabot
dependabot Bot requested review from a team as code owners September 10, 2026 13:41
@dependabot
dependabot Bot requested a review from hongky-1994 September 10, 2026 13:41
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 10, 2026
@netlify

netlify Bot commented Sep 10, 2026

Copy link
Copy Markdown

Deploy Preview for pipecd-site canceled.

Name Link
🔨 Latest commit bb26e0b
🔍 Latest deploy log https://app.netlify.com/projects/pipecd-site/deploys/6aa2b38fced89b00084af755

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟢 Approval recommended

The changes are limited to dependency version bumps plus a consistent lockfile update, and no concrete issues were found in the updated manifests.

Pull request overview

This PR updates the PipeCD web frontend’s npm dependencies (minor/patch-level within their respective major versions) and refreshes yarn.lock accordingly, keeping the /web toolchain and runtime libraries current.

Changes:

  • Bump several TypeScript type packages and runtime deps (e.g., dayjs, react-cookie, react-draggable, github-markdown-css).
  • Update build/lint/test toolchain packages (notably webpack, html-webpack-plugin, css-loader, eslint-plugin-*, ts-jest).
  • Regenerate web/yarn.lock to reflect the new dependency graph and transitive updates.
File summaries
File Description
web/package.json Updates direct dependency/version ranges for the web app toolchain and runtime packages.
web/yarn.lock Updates resolved versions/integrity entries and transitive dependencies to match the new package.json ranges.
Review details
  • Files reviewed: 1/2 changed files
  • Comments generated: 0
  • Review effort level: Lite

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

@mohammedfirdouss
mohammedfirdouss enabled auto-merge (squash) September 10, 2026 13:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/web 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.

1 participant