Skip to content

build(deps): bump the client-dependencies group across 1 directory with 33 updates#2277

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/client/client-dependencies-356d52785b
Open

build(deps): bump the client-dependencies group across 1 directory with 33 updates#2277
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/client/client-dependencies-356d52785b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the client-dependencies group with 33 updates in the /client directory:

Package From To
@ctrl/ngx-codemirror 5.1.1 7.0.0
@ngx-translate/core 14.0.0 18.0.0
@ngx-translate/http-loader 7.0.0 18.0.0
angular-gridster2 18.0.1 22.0.0
bcryptjs 2.4.3 3.0.3
body-parser 1.20.4 2.3.0
chart.js 3.9.1 4.5.1
codemirror 5.65.20 6.0.2
ng2-charts 4.1.1 10.0.0
ngx-color-picker 13.0.0 20.1.1
ngx-toastr 16.2.0 20.0.5
panzoom 9.4.3 9.4.4
pdfmake 0.2.22 0.3.11
socket.io-client 4.8.1 4.8.3
uplot 1.6.24 1.6.32
xgplayer 3.0.13 3.0.24
xgplayer-flv.js 3.0.13 3.0.24
xgplayer-hls.js 3.0.13 3.0.24
@angular-eslint/builder 18.4.3 22.0.0
@angular-eslint/eslint-plugin 18.4.3 22.0.0
@angular-eslint/eslint-plugin-template 18.4.3 22.0.0
@angular-eslint/schematics 18.4.3 22.0.0
@angular-eslint/template-parser 18.4.3 22.0.0
@types/node 18.19.130 26.1.0
@typescript-eslint/eslint-plugin 7.11.0 8.62.1
@typescript-eslint/parser 7.11.0 8.62.1
@typescript-eslint/types 7.11.0 8.62.1
@typescript-eslint/utils 7.11.0 8.62.1
eslint 8.57.1 10.6.0
eslint-plugin-import 2.26.0 2.32.0
eslint-plugin-jsdoc 39.5.0 63.0.10
eslint-plugin-unused-imports 3.2.0 4.4.1
sass 1.97.2 1.101.0

Updates @ctrl/ngx-codemirror from 5.1.1 to 7.0.0

Release notes

Sourced from @​ctrl/ngx-codemirror's releases.

v7.0.0

7.0.0 (2023-05-15)

Features

BREAKING CHANGES

  • requires angular 16

v6.1.0

6.1.0 (2023-01-31)

Features

  • adds codeMirrorLoaded that fires after codeMirror set (#319) (1c7d51d)

v6.0.0

6.0.0 (2022-12-01)

Features

BREAKING CHANGES

  • requires angular 15
Commits

Updates @ngx-translate/core from 14.0.0 to 18.0.0

Release notes

Sourced from @​ngx-translate/core's releases.

v18.0.0

@ngx-translate/core@18.0.0 and @ngx-translate/http-loader@18.0.0 are now stable on npm (latest).

v18 is the major API-cleanup release: standalone providers everywhere, signal-based internals, the defaultfallback rename finalized, and the deprecated surface removed. It also resolves three long-standing semantic gotchas and baselines the workspace on Angular 22 / TypeScript 6.0.

Highlights

  • Standalone-first setup. TranslateModule is gone — use provideTranslateService() / provideChildTranslateService() (works in standalone and NgModule apps).
  • New *translateBlock="let t" structural directive for cleaner template translations.
  • New isLoading: Signal<boolean> — true while any use() load is in flight; read it for language-switching spinners.
  • Isolated subtrees are now truly isolated — own events, lookups, and language state.
  • Angular 18–22 supported (16 and 17 dropped); built and tested against Angular 18/19/20/21/22.

Breaking changes — required edits

TranslateModule removed. Replace TranslateModule.forRoot({...}) / forChild({...}) with provideTranslateService({...}) / provideChildTranslateService({...}). The pipe, directive, and service are standalone.

Deprecated default* symbols removed — rename:

Removed Replacement
defaultLang fallbackLang
setDefaultLang() setFallbackLang()
getDefaultLang() getFallbackLang()
onDefaultLangChange onFallbackLangChange
DefaultLangChangeEvent FallbackLangChangeEvent
langs getLangs()
setValue() (util) insertValue()

Also removed: useDefaultLang and defaultLanguage config fields (along with TranslateModule).

Deprecated (still works, warns once): using element text content as a key (<span translate>Hello</span>). Use [translate]="'KEY'", the translate pipe, or *translateBlock. It will be removed next major.

Potentially breaking — low impact (behavior changes)

  • A failed use() no longer mutates state. On loader failure, currentLang() / lastUseLanguage stay at the prior value instead of switching to the failed language. Use isLoading() or the returned Observable's error channel to drive switching UI.
  • Isolated subtrees no longer see ancestor translationChange$ events, nor borrow keys from outer scopes. Isolation now means own events + own lookups + own language state. If you wanted shared translations with subtree-scoped state, use provideChildTranslateService({ extend: true }).
  • instant() "unloaded language" warning is deduplicated per isolated subtree (was once per service instance).
  • ITranslateService gains isLoading: Signal<boolean>. If you mock it via implements/extends ITranslateService, add isLoading = signal(false).asReadonly(). See the "Mocking TranslateService" recipe in the README.
  • Loader errors are now logged instead of silently swallowed.

Migration

Full step-by-step guide: https://ngx-translate.org → Getting Started → Migration Guide.


Angular compatibility: 18, 19, 20, 21, 22 · TypeScript: 6.0 · RxJS: ≥7

v18.0.0-rc.1

... (truncated)

Commits
  • d42c871 chore: bump version to 18.0.0
  • 28a9649 fix(core): child get() awaits in-flight load; reactivity + test hardening
  • 2542123 ci: drop Node 20 from Angular 22 matrix, point compat 21 at a21
  • 8dc4423 chore(core): extend compat matrix to Angular 22, add a21, drop a16
  • f34c2ad chore(core): upgrade workspace to Angular 22 + TypeScript 6.0
  • 3b40d61 chore: bump version to 18.0.0-rc.3
  • 351a147 docs: prettier-reformat providers-and-scoping proposal
  • b5075d0 style: prettier reformat across http-loader, test-app, and lockfile
  • cd64249 feat(core): isLoading hierarchy, use() rollback, getRoot/getParent API
  • d3b8e39 test: silence intentional console.warn noise in passing tests
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by andreasloew, a new releaser for @​ngx-translate/core since your current version.


Updates @ngx-translate/http-loader from 7.0.0 to 18.0.0

Release notes

Sourced from @​ngx-translate/http-loader's releases.

v18.0.0

@ngx-translate/core@18.0.0 and @ngx-translate/http-loader@18.0.0 are now stable on npm (latest).

v18 is the major API-cleanup release: standalone providers everywhere, signal-based internals, the defaultfallback rename finalized, and the deprecated surface removed. It also resolves three long-standing semantic gotchas and baselines the workspace on Angular 22 / TypeScript 6.0.

Highlights

  • Standalone-first setup. TranslateModule is gone — use provideTranslateService() / provideChildTranslateService() (works in standalone and NgModule apps).
  • New *translateBlock="let t" structural directive for cleaner template translations.
  • New isLoading: Signal<boolean> — true while any use() load is in flight; read it for language-switching spinners.
  • Isolated subtrees are now truly isolated — own events, lookups, and language state.
  • Angular 18–22 supported (16 and 17 dropped); built and tested against Angular 18/19/20/21/22.

Breaking changes — required edits

TranslateModule removed. Replace TranslateModule.forRoot({...}) / forChild({...}) with provideTranslateService({...}) / provideChildTranslateService({...}). The pipe, directive, and service are standalone.

Deprecated default* symbols removed — rename:

Removed Replacement
defaultLang fallbackLang
setDefaultLang() setFallbackLang()
getDefaultLang() getFallbackLang()
onDefaultLangChange onFallbackLangChange
DefaultLangChangeEvent FallbackLangChangeEvent
langs getLangs()
setValue() (util) insertValue()

Also removed: useDefaultLang and defaultLanguage config fields (along with TranslateModule).

Deprecated (still works, warns once): using element text content as a key (<span translate>Hello</span>). Use [translate]="'KEY'", the translate pipe, or *translateBlock. It will be removed next major.

Potentially breaking — low impact (behavior changes)

  • A failed use() no longer mutates state. On loader failure, currentLang() / lastUseLanguage stay at the prior value instead of switching to the failed language. Use isLoading() or the returned Observable's error channel to drive switching UI.
  • Isolated subtrees no longer see ancestor translationChange$ events, nor borrow keys from outer scopes. Isolation now means own events + own lookups + own language state. If you wanted shared translations with subtree-scoped state, use provideChildTranslateService({ extend: true }).
  • instant() "unloaded language" warning is deduplicated per isolated subtree (was once per service instance).
  • ITranslateService gains isLoading: Signal<boolean>. If you mock it via implements/extends ITranslateService, add isLoading = signal(false).asReadonly(). See the "Mocking TranslateService" recipe in the README.
  • Loader errors are now logged instead of silently swallowed.

Migration

Full step-by-step guide: https://ngx-translate.org → Getting Started → Migration Guide.


Angular compatibility: 18, 19, 20, 21, 22 · TypeScript: 6.0 · RxJS: ≥7

v18.0.0-rc.1

... (truncated)

Commits
  • d42c871 chore: bump version to 18.0.0
  • 28a9649 fix(core): child get() awaits in-flight load; reactivity + test hardening
  • 2542123 ci: drop Node 20 from Angular 22 matrix, point compat 21 at a21
  • 8dc4423 chore(core): extend compat matrix to Angular 22, add a21, drop a16
  • f34c2ad chore(core): upgrade workspace to Angular 22 + TypeScript 6.0
  • 3b40d61 chore: bump version to 18.0.0-rc.3
  • 351a147 docs: prettier-reformat providers-and-scoping proposal
  • b5075d0 style: prettier reformat across http-loader, test-app, and lockfile
  • cd64249 feat(core): isLoading hierarchy, use() rollback, getRoot/getParent API
  • d3b8e39 test: silence intentional console.warn noise in passing tests
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by andreasloew, a new releaser for @​ngx-translate/http-loader since your current version.


Updates angular-gridster2 from 18.0.1 to 22.0.0

Release notes

Sourced from angular-gridster2's releases.

22.0.0 (2026-06-26)

Support for Angular 22

Bug fixes

21.0.1 (2026-01-09)

Bug fixes

21.0.0 (2025-11-29)

Support for Angular 21

These are the biggest changes done to the library in years. Thank you @​ChargeIn for the help! It was done to keep the library up to date with the trend that Angular is going into and to keep compatiblity with Angular for years to come. Hopefully these kind of changes are required again only once in some 5+ years. Understand that changes on the application usages of the library are necessary to keep it working correctly.

Bug fixes

  • fix: grid lines transition e45578269b15b30fc4b9382a2d2022d8ee3d321f
  • fix: tests edb0c46225f54383304a24a0b83a876d394d0763

Improvements

  • feat: enable ChangeDetectionStrategy.OnPush on all components b556b92ce586a63006abc449c51544c981ddcc93
  • refactor: change from @Input to signal input() for gridster options 60cce62b9fb384c1b19e1e3468351d6fb7599727
  • feat: new api.calculateLayout() 60cce62b9fb384c1b19e1e3468351d6fb7599727
  • feat: initCallback() has a new parameter gridsterApi
  • refactor: improve gridster drag animations (tiberiuzuld/angular-gridster2#953) 669ec93cabb6e96db702dce10a7e3bbaf01d977a Thanks @​ChargeIn
  • refactor: demo app rename components to match the new angular styleguide 016139a8b4aed7860f56c367cea1e95d6f84e77f
  • refactor: change GridsterItem @input to signal input() fb914f70c2b28a47d666abd7214eb3dd263fc417
  • refactor: remove *.service suffix from files 207b5afdabf7c3e49da19b84e634b48eac2daf31
  • refactor: component GridsterPreviewComponent renamed to GridsterPreview 207b5afdabf7c3e49da19b84e634b48eac2daf31
  • refactor: remove *.interface from gridsterResizeEventType.ts 207b5afdabf7c3e49da19b84e634b48eac2daf31
  • refactor: type GridsterItem renamed to GridsterItemConfig b18d68a6b82114515aa8bf185ef893d57311e676
  • refactor: component GridsterItemComponent renamed to GridsterItem b18d68a6b82114515aa8bf185ef893d57311e676
  • refactor: rename files GridsterItem, GridsterItemConfig and GridsterConfig b18d68a6b82114515aa8bf185ef893d57311e676
  • refactor: remove internal interface GridsterConfigS 5f7a4c4f102173b39d6256149a3e3f0dc5d74166
  • refactor: remove GridsterComponentInterface & GridsterItemComponentInterface 5f7a4c4f102173b39d6256149a3e3f0dc5d74166
  • refactor: convert remaining interfaces to types 5f7a4c4f102173b39d6256149a3e3f0dc5d74166
  • refactor: rename Gridster component to the newest angular guidelines 06b0062509f6726286e69cb51157aa6754b84819 Thanks @​ChargeIn
  • refactor: migrate @output to signal output() 0f910468036f7c8d4c900a2c8123a6f846f5de3e
  • refactor: change gridsterPreview.component.ts input to inject gridster 0f910468036f7c8d4c900a2c8123a6f846f5de3e
  • refactor: migrate to inject() from constructor inject 0f910468036f7c8d4c900a2c8123a6f846f5de3e
  • refactor: migrate to host from @HostBinding 0f910468036f7c8d4c900a2c8123a6f846f5de3e
  • chore: remove zone.js in demo app and add markForCheck in draggable. 0f910468036f7c8d4c900a2c8123a6f846f5de3e Keeping NgZone.run and NgZone.runOutsideAngular for apps still using zone.js to keep the performance high https://angular.dev/guide/zoneless#remove-ngzoneonmicrotaskempty-ngzoneonunstable-ngzoneisstable-or-ngzoneonstable

... (truncated)

Commits
  • 77a6dda chore: release 22.0.0
  • 4d64143 fix(gridsterConfig): correct getNextPossiblePosition return type from void to...
  • 05f3de8 fix(gridsterItem): fix z-index on moving/resizing items being overridden by i...
  • 9bd5077 fix: inverted push direction (#955)
  • e1e320d docs(readme): fix dashboard example to use GridsterItemConfig instead of Grid...
  • 3e84f9f chore: update README.md
  • 6bcd57e chore: bump version of GitHub actions dependencies
  • 73abedd chore: bump copyright year
  • 49bd65e chore: release 21.0.1
  • c467119 feat: add boundary check to scrolling (#956)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates bcryptjs from 2.4.3 to 3.0.3

Release notes

Sourced from bcryptjs's releases.

v3.0.3

Bug fixes

  • Always yield to event loop before nextTick for async versions (#164) (1211e9a2213e0b3ee232a204b3ce899beebce31a)

v3.0.2

Bug fixes

  • Use upstream fix to emit interop helpers (28e510389374f5736c447395443d4a6687325048)

v3.0.1

Bug fixes

  • Separate ESM and UMD type definitions (e7055caf0c723cbcf8bc3f0784b8c30ee332380f)

v3.0.0

Breaking changes

  • Modernize project structure (2f45985738604c743c4b8cc8464e3e7d3e04c73d) The project now exports an ECMAScript module by default, albeit with an UMD fallback, ships with types, the dist/ directory no longer exists in version control, and Closure Compiler externs have been removed.
  • Generate 2b hashes by default (d36bfb42fa642b6d6986a84ce106a7110e5824db) This library was not affected by the bug that led to incrementing the bcrypt version from 2a to 2b, but nowadays most implementations use 2b, including the native bcrypt binding, so this change aligns with them. Existing hashes will continue to work, but test logic that generates hashes and compares them literally might need to be updated to account for the new default.

Features

  • Add helper to check for password input length (d5656b39e2e368c87724a312e4e454456a4e5d1b)

Other

  • Update publish workflow (2a9bea9e276e6be04dbd403f9695937788b3b10a)
  • Add note on using the ESM variant in the browser (e09eb9afb14170069aaea19631b763307ee7b480)
  • Update types (58333a1533dd53838e2697628f84b98d54a5c079)
  • Merge lint and test workflows (2e3b17659e8856696acfe3015631ce2989eb3084)
  • Fix tests (ec02e8a0ada7a8f6c71a91df164db8c25bbbb7b4)
  • Update legacy fallback to handle crypto dependency (9db275fa10b1b40da4a6844480d7f8ae8df27fb8)
  • Update lint workflow title (ac70ac57c2f99ad5639eddf54578e5fdd07b9c4c)
  • Adapt crypto module usage for ESM environments (574d690d4972bcebbd5ca07880a62abab9ae3c0b)
  • Format with prettier (e7465479282d8155852ce88d6407eccb14adc106)
  • Rename default branch to 'main' (548559d032d7dd5ac3e4e16d7afd87b36ebe96ca)
  • Update description to mention TypeScript support (4977df0849eaf8cad5b0d0b543fe452432a2d761)
  • Add stale action for issues and PRs (a84d4e45487df0972d8781feafa477d5db4c1dbd)
  • Fix typo (c8c9c01799bbc13092fcbb20cfab4d9015d14c61)
  • Fix Node.js version in CI (1b54cc48d4120b50e1d9058e5a67f326102fd744)

Backlog from v2

  • Added externs to .npmignore (#124) (7e2e93af99df2952253f9cf32db29aefa8f272f7) The npm package does not need externs as it is needed only for closure compiler. Added it in .npmignore since bcryptjs overrides global module and process in WebStorm IDE.
  • Make sure the bin script uses LF (684fac6814a81d974c805a15e22fd69922c7ca6e)
  • Post-merge; Clean up a bit (b09f7f266a7015456b7b36deeb026dc636f64542)

... (truncated)

Commits
  • 1211e9a fix: Always yield to event loop before nextTick for async versions (#164)
  • 28e5103 fix: Use upstream fix to emit interop helpers
  • e7055ca fix: Separate ESM and UMD type definitions
  • 2a9bea9 Update publish workflow
  • d5656b3 Add helper to check for password input length
  • e09eb9a Add note on using the ESM variant in the browser
  • 58333a1 Update types
  • 2e3b176 Merge lint and test workflows
  • ec02e8a Fix tests
  • 9db275f Update legacy fallback to handle crypto dependency
  • Additional commits viewable in compare view

Updates body-parser from 1.20.4 to 2.3.0

Release notes

Sourced from body-parser's releases.

v2.3.0

What's Changed

New Contributors

Full Changelog: expressjs/body-parser@v2.2.2...v2.3.0

v2.2.2

What's Changed

... (truncated)

Changelog

Sourced from body-parser's changelog.

2.3.0 / 2026-06-15

  • fix: use static exports instead of lazy getters to improve ESM compatibility
  • feat: add subpath exports for individual parsers
  • fix: improve limit option validation (#698)
    • Invalid limit values (e.g. unparseable strings or NaN) now throw instead of being silently ignored, which previously disabled size limit enforcement
    • null and undefined fall back to the default 100kb limit
  • deps:
    • content-type@^2.0.0
    • http-errors@^2.0.1
    • iconv-lite^0.7.2
    • qs@^6.15.2
    • raw-body@^3.0.2
    • type-is@^2.1.0

2.2.2 / 2026-01-07

  • deps: qs@^6.14.1
  • refactor(json): simplify strict mode error string construction

2.2.1 / 2025-11-24

  • Security fix for GHSA-wqch-xfxh-vrr4
  • deps:
    • type-is@^2.0.1
    • iconv-lite@^0.7.0
      • Handle split surrogate pairs when encoding UTF-8
      • Avoid false positives in encodingExists by using prototype-less objects
    • raw-body@^3.0.1
    • debug@^4.4.3

2.2.0 / 2025-03-27

  • refactor: normalize common options for all parsers
  • deps:
    • iconv-lite@^0.6.3

2.1.0 / 2025-02-10

  • deps:
    • type-is@^2.0.0
    • debug@^4.4.0
    • Removed destroy
  • refactor: prefix built-in node module imports
  • use the node require cache instead of custom caching

... (truncated)

Commits
  • d0f2ace 2.3.0 (#735)
  • 7d03f2f chore: updated deps to latest (#733)
  • 8024ba7 build(deps): bump actions/checkout from 6.0.2 to 6.0.3 (#732)
  • 32b4ed4 build(deps): bump github/codeql-action from 4.35.3 to 4.36.1 (#731)
  • ff0f6b9 docs: update outdated reference to MDN docs (#730)
  • 14d001a refactor: switch to const/let and enable eslint no-var rule (#729)
  • 37f36a2 deps: update content-type and type-is (#728)
  • e1c244b build(deps): bump github/codeql-action from 4.35.1 to 4.35.3 (#723)
  • e01087f build(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 (#724)
  • a7698d3 build(deps): bump actions/setup-node from 6.3.0 to 6.4.0 (#725)
  • Additional commits viewable in compare view

Updates chart.js from 3.9.1 to 4.5.1

Release notes

Sourced from chart.js's releases.

v4.5.1

Essential Links

Bugs Fixed

  • #12098 Do not notify plugins after their uninstall function has been called
  • #12096 Sync Doughnut chart legend options to legend plugin
  • #12097 Attempt fixing charts shrinking on certain zoom values in Chrome

Types

  • #12122 fix(types): add drawingArea to RadialLinearScale
  • #12120 fix(types): allow null for line chart point values (#12027)
  • #12099 Add data.datasets[].tooltip.callbacks to Typescript types

Development

  • #12132 Bump version to 4.5.1
  • #12118 Bump actions/setup-node from 4 to 5

Thanks to @​LeeLenaleee, @​anshukushwaha07, @​bojidar-bg, @​dependabot[bot] and dependabot[bot]

v4.5.0

Essential Links

Enhancements

  • #11470 Fix min js two renames
  • #12054 [fix] #12048 - Add selfJoin option for doughnut graphs
  • #12058 feature: make above/below colors in filler plugin work with pivoted line charts

Bugs Fixed

  • #12070 Fix: display stacked bar with multiple x-Axis

Types

  • #12064 Document requirement of 'this' when calling tick formatters

... (truncated)

Commits

Updates codemirror from 5.65.20 to 6.0.2

Changelog

Sourced from codemirror's changelog.

6.0.2 (2025-06-19)

Bug fixes

Make sure to include a .d.cts file to make TypeScript happy.

6.0.1 (2022-06-30)

Bug fixes

Work around limitations in tree-shaking software that prevented basicSetup from being removed when unused.

6.0.0 (2022-06-08)

Breaking changes

Change the package name from @codemirror/example-setup to just codemirror.

The package no longer exports EditorState (since that is no longer necessary to set up a basic editor).

New features

The new minimalSetup export provides a minimal set of editor extensions.

0.20.0 (2022-04-20)

Breaking changes

Update dependencies to 0.20.0

0.19.3 (2022-03-30)

New features

Add the extension that shows a crosshair cursor when Alt is held down to the basic setup.

0.19.1 (2021-12-13)

New features

The basic setup now includes the dropCursor extension.

0.19.0 (2021-08-11)

Breaking changes

Update dependencies to 0.19.0

0.18.2 (2021-05-25)

Bug fixes

... (truncated)

Commits
Install script changes

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


Updates ng2-charts from 4.1.1 to 10.0.0

Release notes

Sourced from ng2-charts's releases.

v10.0.0

What’s Changed

Essential Links

Thanks to @​lexasq and @​rklec

v9,0.0

Added Angular 20 support,

v8.0.0

Angular 19 support

v7.0.0

Angular 18 support

v6.0.1

What’s Changed

Essential Links

Thanks to @​Alekevin12, @​dependabot, @​dependabot[bot] and @​santam85

v6.0.0

What’s Changed

... (truncated)

Commits

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Mar 26, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch 2 times, most recently from 818fc91 to 38bdde3 Compare April 9, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 38bdde3 to 971bdfb Compare April 16, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 971bdfb to 200c539 Compare April 23, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 200c539 to a85015b Compare April 30, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch 2 times, most recently from 8165a34 to 53ef3ff Compare May 14, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 53ef3ff to 02da244 Compare May 21, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch 2 times, most recently from a6703b2 to c49c035 Compare June 4, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from c49c035 to fa55f8b Compare June 11, 2026 21:38
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch 2 times, most recently from 0507223 to 40ff578 Compare June 25, 2026 21:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 40ff578 to 519ed10 Compare July 2, 2026 21:37
…th 33 updates

Bumps the client-dependencies group with 33 updates in the /client directory:

| Package | From | To |
| --- | --- | --- |
| [@ctrl/ngx-codemirror](https://github.com/scttcper/ngx-codemirror) | `5.1.1` | `7.0.0` |
| [@ngx-translate/core](https://github.com/ngx-translate/core) | `14.0.0` | `18.0.0` |
| [@ngx-translate/http-loader](https://github.com/ngx-translate/core) | `7.0.0` | `18.0.0` |
| [angular-gridster2](https://github.com/tiberiuzuld/angular-gridster2) | `18.0.1` | `22.0.0` |
| [bcryptjs](https://github.com/dcodeIO/bcrypt.js) | `2.4.3` | `3.0.3` |
| [body-parser](https://github.com/expressjs/body-parser) | `1.20.4` | `2.3.0` |
| [chart.js](https://github.com/chartjs/Chart.js) | `3.9.1` | `4.5.1` |
| [codemirror](https://github.com/codemirror/basic-setup) | `5.65.20` | `6.0.2` |
| [ng2-charts](https://github.com/valor-software/ng2-charts) | `4.1.1` | `10.0.0` |
| [ngx-color-picker](https://github.com/zefoy/ngx-color-picker/tree/HEAD/projects/lib) | `13.0.0` | `20.1.1` |
| [ngx-toastr](https://github.com/scttcper/ngx-toastr) | `16.2.0` | `20.0.5` |
| [panzoom](https://github.com/anvaka/panzoom) | `9.4.3` | `9.4.4` |
| [pdfmake](https://github.com/bpampuch/pdfmake) | `0.2.22` | `0.3.11` |
| [socket.io-client](https://github.com/socketio/socket.io) | `4.8.1` | `4.8.3` |
| [uplot](https://github.com/leeoniya/uPlot) | `1.6.24` | `1.6.32` |
| [xgplayer](https://github.com/bytedance/xgplayer) | `3.0.13` | `3.0.24` |
| [xgplayer-flv.js](https://github.com/bytedance/xgplayer) | `3.0.13` | `3.0.24` |
| [xgplayer-hls.js](https://github.com/bytedance/xgplayer) | `3.0.13` | `3.0.24` |
| [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `18.4.3` | `22.0.0` |
| [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `18.4.3` | `22.0.0` |
| [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `18.4.3` | `22.0.0` |
| [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `18.4.3` | `22.0.0` |
| [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `18.4.3` | `22.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.130` | `26.1.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.11.0` | `8.62.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.11.0` | `8.62.1` |
| [@typescript-eslint/types](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/types) | `7.11.0` | `8.62.1` |
| [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) | `7.11.0` | `8.62.1` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `10.6.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.26.0` | `2.32.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `39.5.0` | `63.0.10` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `3.2.0` | `4.4.1` |
| [sass](https://github.com/sass/dart-sass) | `1.97.2` | `1.101.0` |



Updates `@ctrl/ngx-codemirror` from 5.1.1 to 7.0.0
- [Release notes](https://github.com/scttcper/ngx-codemirror/releases)
- [Commits](scttcper/ngx-codemirror@v5.1.1...v7.0.0)

Updates `@ngx-translate/core` from 14.0.0 to 18.0.0
- [Release notes](https://github.com/ngx-translate/core/releases)
- [Commits](ngx-translate/core@v14.0.0...v18.0.0)

Updates `@ngx-translate/http-loader` from 7.0.0 to 18.0.0
- [Release notes](https://github.com/ngx-translate/core/releases)
- [Commits](ngx-translate/core@v7.0.0...v18.0.0)

Updates `angular-gridster2` from 18.0.1 to 22.0.0
- [Release notes](https://github.com/tiberiuzuld/angular-gridster2/releases)
- [Commits](tiberiuzuld/angular-gridster2@v18.0.1...v22.0.0)

Updates `bcryptjs` from 2.4.3 to 3.0.3
- [Release notes](https://github.com/dcodeIO/bcrypt.js/releases)
- [Commits](dcodeIO/bcrypt.js@2.4.3...v3.0.3)

Updates `body-parser` from 1.20.4 to 2.3.0
- [Release notes](https://github.com/expressjs/body-parser/releases)
- [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](expressjs/body-parser@1.20.4...v2.3.0)

Updates `chart.js` from 3.9.1 to 4.5.1
- [Release notes](https://github.com/chartjs/Chart.js/releases)
- [Commits](chartjs/Chart.js@v3.9.1...v4.5.1)

Updates `codemirror` from 5.65.20 to 6.0.2
- [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/basic-setup/commits/6.0.2)

Updates `ng2-charts` from 4.1.1 to 10.0.0
- [Release notes](https://github.com/valor-software/ng2-charts/releases)
- [Commits](valor-software/ng2-charts@v4.1.1...v10.0.0)

Updates `ngx-color-picker` from 13.0.0 to 20.1.1
- [Release notes](https://github.com/zefoy/ngx-color-picker/releases)
- [Commits](https://github.com/zefoy/ngx-color-picker/commits/v20.1.1/projects/lib)

Updates `ngx-toastr` from 16.2.0 to 20.0.5
- [Release notes](https://github.com/scttcper/ngx-toastr/releases)
- [Commits](scttcper/ngx-toastr@v16.2.0...v20.0.5)

Updates `panzoom` from 9.4.3 to 9.4.4
- [Commits](anvaka/panzoom@v9.4.3...v9.4.4)

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

Updates `socket.io-client` from 4.8.1 to 4.8.3
- [Release notes](https://github.com/socketio/socket.io/releases)
- [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io/compare/socket.io-client@4.8.1...socket.io-client@4.8.3)

Updates `uplot` from 1.6.24 to 1.6.32
- [Release notes](https://github.com/leeoniya/uPlot/releases)
- [Commits](leeoniya/uPlot@1.6.24...1.6.32)

Updates `xgplayer` from 3.0.13 to 3.0.24
- [Release notes](https://github.com/bytedance/xgplayer/releases)
- [Commits](bytedance/xgplayer@v3.0.13...v3.0.24)

Updates `xgplayer-flv.js` from 3.0.13 to 3.0.24
- [Release notes](https://github.com/bytedance/xgplayer/releases)
- [Commits](bytedance/xgplayer@v3.0.13...v3.0.24)

Updates `xgplayer-hls.js` from 3.0.13 to 3.0.24
- [Release notes](https://github.com/bytedance/xgplayer/releases)
- [Commits](bytedance/xgplayer@v3.0.13...v3.0.24)

Updates `@angular-eslint/builder` from 18.4.3 to 22.0.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v22.0.0/packages/builder)

Updates `@angular-eslint/eslint-plugin` from 18.4.3 to 22.0.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v22.0.0/packages/eslint-plugin)

Updates `@angular-eslint/eslint-plugin-template` from 18.4.3 to 22.0.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v22.0.0/packages/eslint-plugin-template)

Updates `@angular-eslint/schematics` from 18.4.3 to 22.0.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v22.0.0/packages/schematics)

Updates `@angular-eslint/template-parser` from 18.4.3 to 22.0.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v22.0.0/packages/template-parser)

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

Updates `@typescript-eslint/eslint-plugin` from 7.11.0 to 8.62.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.62.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.11.0 to 8.62.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.62.1/packages/parser)

Updates `@typescript-eslint/types` from 7.11.0 to 8.62.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.62.1/packages/types)

Updates `@typescript-eslint/utils` from 7.11.0 to 8.62.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.62.1/packages/utils)

Updates `eslint` from 8.57.1 to 10.6.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v10.6.0)

Updates `eslint-plugin-import` from 2.26.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.26.0...v2.32.0)

Updates `eslint-plugin-jsdoc` from 39.5.0 to 63.0.10
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v39.5.0...v63.0.10)

Updates `eslint-plugin-unused-imports` from 3.2.0 to 4.4.1
- [Release notes](https://github.com/sweepline/eslint-plugin-unused-imports/releases)
- [Commits](https://github.com/sweepline/eslint-plugin-unused-imports/commits/v4.4.1)

Updates `sass` from 1.97.2 to 1.101.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.97.2...1.101.0)

---
updated-dependencies:
- dependency-name: "@angular-eslint/builder"
  dependency-version: 21.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@angular-eslint/eslint-plugin"
  dependency-version: 21.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@angular-eslint/eslint-plugin-template"
  dependency-version: 21.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@angular-eslint/schematics"
  dependency-version: 21.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@angular-eslint/template-parser"
  dependency-version: 21.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@ctrl/ngx-codemirror"
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@ngx-translate/core"
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@ngx-translate/http-loader"
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.57.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.57.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@typescript-eslint/types"
  dependency-version: 8.57.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.57.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: angular-gridster2
  dependency-version: 21.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: bcryptjs
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: body-parser
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: chart.js
  dependency-version: 4.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: codemirror
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: client-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.8.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: eslint-plugin-unused-imports
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: ng2-charts
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: ngx-color-picker
  dependency-version: 20.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: ngx-toastr
  dependency-version: 20.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-dependencies
- dependency-name: panzoom
  dependency-version: 9.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
- dependency-name: pdfmake
  dependency-version: 0.3.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-dependencies
- dependency-name: sass
  dependency-version: 1.98.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: client-dependencies
- dependency-name: socket.io-client
  dependency-version: 4.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
- dependency-name: uplot
  dependency-version: 1.6.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
- dependency-name: xgplayer
  dependency-version: 3.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
- dependency-name: xgplayer-flv.js
  dependency-version: 3.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
- dependency-name: xgplayer-hls.js
  dependency-version: 3.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/client/client-dependencies-356d52785b branch from 519ed10 to 6a9e504 Compare July 3, 2026 13:27
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants