Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps the npm_and_yarn group with 1 update in the / directory: @angular/platform-server.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/bar-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/column-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/line-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/pie-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/polar-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/step-chart directory: @angular/platform-server and form-data.
Bumps the npm_and_yarn group with 1 update in the /projects/erp-hgrid directory: @angular/platform-server.
Bumps the npm_and_yarn group with 1 update in the /projects/finance-grid directory: @angular/platform-server.
Bumps the npm_and_yarn group with 1 update in the /projects/fleet-management-grid directory: @angular/platform-server.
Bumps the npm_and_yarn group with 1 update in the /projects/hr-portal directory: @angular/platform-server.
Bumps the npm_and_yarn group with 1 update in the /projects/sales-grid directory: @angular/platform-server.

Updates @angular/platform-server from 20.0.3 to 20.3.0

Release notes

Sourced from @​angular/platform-server's releases.

20.3.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

20.3.0-rc.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

... (truncated)

Changelog

Sourced from @​angular/platform-server's changelog.

20.3.0 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

Commit Type Description
a3f808d7c8 fix remove refresh button from transfer state tab (#63592)

core

Commit Type Description
6117ccee2e feat introduce BootstrapContext for improved server bootstrapping (#63636)

21.0.0-next.2 (2025-09-03)

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}

core

  • (test only) - Using provideZoneChangeDetection in the TestBed providers would previously prevent TestBed from rethrowing errors as it should. Errors in the test will now be rethrown, regardless of the usage of provideZoneChangeDetection. Tests should be adjusted to prevent or account for these errors. As in previous major versions, this behavior can be disabled with rethrowApplicationErrors: false in configureTestingModule as a last resort.

... (truncated)

Commits
  • 7a7725e refactor(core): Update tests for zoneless by default (#63672)
  • 6117cce feat(core): introduce BootstrapContext for improved server bootstrapping (#...
  • 0c2255b refactor(platform-server): simplify transfer state serialization tracking (#6...
  • d1d32db fix(platform-server): prevent false warning for duplicate state serialization...
  • b549cd2 refactor(bazel): reduce build deps (#63348)
  • 9a27c5b build: rename defaults2.bzl to defaults.bzl (#63384)
  • 10b0927 refactor: various build and import specificer fixes for strict deps (#63324)
  • a92dea5 build: update to the latest version of devinfra and rename npm2 workspace (#6...
  • fa8d8b8 build: migrate all npm packages to use new rules_js based npm_package rule (#...
  • cbc258e build: remove ts_project_interop infrastructure (#62908)
  • Additional commits viewable in compare view

Updates @angular/platform-server from 20.0.3 to 20.3.4

Release notes

Sourced from @​angular/platform-server's releases.

20.3.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

20.3.0-rc.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

... (truncated)

Changelog

Sourced from @​angular/platform-server's changelog.

20.3.0 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

Commit Type Description
a3f808d7c8 fix remove refresh button from transfer state tab (#63592)

core

Commit Type Description
6117ccee2e feat introduce BootstrapContext for improved server bootstrapping (#63636)

21.0.0-next.2 (2025-09-03)

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}

core

  • (test only) - Using provideZoneChangeDetection in the TestBed providers would previously prevent TestBed from rethrowing errors as it should. Errors in the test will now be rethrown, regardless of the usage of provideZoneChangeDetection. Tests should be adjusted to prevent or account for these errors. As in previous major versions, this behavior can be disabled with rethrowApplicationErrors: false in configureTestingModule as a last resort.

... (truncated)

Commits
  • 7a7725e refactor(core): Update tests for zoneless by default (#63672)
  • 6117cce feat(core): introduce BootstrapContext for improved server bootstrapping (#...
  • 0c2255b refactor(platform-server): simplify transfer state serialization tracking (#6...
  • d1d32db fix(platform-server): prevent false warning for duplicate state serialization...
  • b549cd2 refactor(bazel): reduce build deps (#63348)
  • 9a27c5b build: rename defaults2.bzl to defaults.bzl (#63384)
  • 10b0927 refactor: various build and import specificer fixes for strict deps (#63324)
  • a92dea5 build: update to the latest version of devinfra and rename npm2 workspace (#6...
  • fa8d8b8 build: migrate all npm packages to use new rules_js based npm_package rule (#...
  • cbc258e build: remove ts_project_interop infrastructure (#62908)
  • Additional commits viewable in compare view

Updates form-data from 4.0.1 to 4.0.4

Release notes

Sourced from form-data's releases.

v4.0.4

v4.0.4 - 2025-07-16

Commits

  • [meta] add auto-changelog 811f682
  • [Tests] handle predict-v8-randomness failures in node < 17 and node > 23 1d11a76
  • [Fix] Switch to using crypto random for boundary values 3d17230
  • [Tests] fix linting errors 5e34080
  • [meta] actually ensure the readme backup isn’t published 316c82b
  • [Dev Deps] update @ljharb/eslint-config 58c25d7
  • [meta] fix readme capitalization 2300ca1

v4.0.3

v4.0.3 - 2025-06-05

Fixed

Commits

  • [eslint] use a shared config 426ba9a
  • [eslint] fix some spacing issues 2094191
  • [Refactor] use hasown 81ab41b
  • [Fix] validate boundary type in setBoundary() method 8d8e469
  • [Tests] add tests to check the behavior of getBoundary with non-strings 837b8a1
  • [Dev Deps] remove unused deps 870e4e6
  • [meta] remove local commit hooks e6e83cc
  • [Dev Deps] update eslint 4066fd6
  • [meta] fix scripts to use prepublishOnly c4bbb13

v4.0.2

v4.0.2 - 2025-02-14

Merged

Fixed

Commits

... (truncated)

Changelog

Sourced from form-data's changelog.

v4.0.4 - 2025-07-16

Commits

  • [meta] add auto-changelog 811f682
  • [Tests] handle predict-v8-randomness failures in node < 17 and node > 23 1d11a76
  • [Fix] Switch to using crypto random for boundary values 3d17230
  • [Tests] fix linting errors 5e34080
  • [meta] actually ensure the readme backup isn’t published 316c82b
  • [Dev Deps] update @ljharb/eslint-config 58c25d7
  • [meta] fix readme capitalization 2300ca1

v4.0.3 - 2025-06-05

Fixed

Commits

  • [eslint] use a shared config 426ba9a
  • [eslint] fix some spacing issues 2094191
  • [Refactor] use hasown 81ab41b
  • [Fix] validate boundary type in setBoundary() method 8d8e469
  • [Tests] add tests to check the behavior of getBoundary with non-strings 837b8a1
  • [Dev Deps] remove unused deps 870e4e6
  • [meta] remove local commit hooks e6e83cc
  • [Dev Deps] update eslint 4066fd6
  • [meta] fix scripts to use prepublishOnly c4bbb13

v4.0.2 - 2025-02-14

Merged

Fixed

Commits

  • Merge tags v2.5.3 and v3.0.3 92613b9
  • [Tests] migrate from travis to GHA 806eda7
  • [Tests] migrate from travis to GHA 8fdb3bc

... (truncated)

Commits
  • 41996f5 v4.0.4
  • 316c82b [meta] actually ensure the readme backup isn’t published
  • 2300ca1 [meta] fix readme capitalization
  • 811f682 [meta] add auto-changelog
  • 5e34080 [Tests] fix linting errors
  • 1d11a76 [Tests] handle predict-v8-randomness failures in node < 17 and node > 23
  • 58c25d7 [Dev Deps] update @ljharb/eslint-config
  • 3d17230 [Fix] Switch to using crypto random for boundary values
  • d8d67dc v4.0.3
  • e6e83cc [meta] remove local commit hooks
  • Additional commits viewable in compare view

Updates @angular/platform-server from 20.0.3 to 20.3.4

Release notes

Sourced from @​angular/platform-server's releases.

20.3.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

20.3.0-rc.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

... (truncated)

Changelog

Sourced from @​angular/platform-server's changelog.

20.3.0 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

Commit Type Description
a3f808d7c8 fix remove refresh button from transfer state tab (#63592)

core

Commit Type Description
6117ccee2e feat introduce BootstrapContext for improved server bootstrapping (#63636)

21.0.0-next.2 (2025-09-03)

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}

core

  • (test only) - Using provideZoneChangeDetection in the TestBed providers would previously prevent TestBed from rethrowing errors as it should. Errors in the test will now be rethrown, regardless of the usage of provideZoneChangeDetection. Tests should be adjusted to prevent or account for these errors. As in previous major versions, this behavior can be disabled with rethrowApplicationErrors: false in configureTestingModule as a last resort.

... (truncated)

Commits
  • 7a7725e refactor(core): Update tests for zoneless by default (#63672)
  • 6117cce feat(core): introduce BootstrapContext for improved server bootstrapping (#...
  • 0c2255b refactor(platform-server): simplify transfer state serialization tracking (#6...
  • d1d32db fix(platform-server): prevent false warning for duplicate state serialization...
  • b549cd2 refactor(bazel): reduce build deps (#63348)
  • 9a27c5b build: rename defaults2.bzl to defaults.bzl (#63384)
  • 10b0927 refactor: various build and import specificer fixes for strict deps (#63324)
  • a92dea5 build: update to the latest version of devinfra and rename npm2 workspace (#6...
  • fa8d8b8 build: migrate all npm packages to use new rules_js based npm_package rule (#...
  • cbc258e build: remove ts_project_interop infrastructure (#62908)
  • Additional commits viewable in compare view

Updates form-data from 4.0.1 to 4.0.4

Release notes

Sourced from form-data's releases.

v4.0.4

v4.0.4 - 2025-07-16

Commits

  • [meta] add auto-changelog 811f682
  • [Tests] handle predict-v8-randomness failures in node < 17 and node > 23 1d11a76
  • [Fix] Switch to using crypto random for boundary values 3d17230
  • [Tests] fix linting errors 5e34080
  • [meta] actually ensure the readme backup isn’t published 316c82b
  • [Dev Deps] update @ljharb/eslint-config 58c25d7
  • [meta] fix readme capitalization 2300ca1

v4.0.3

v4.0.3 - 2025-06-05

Fixed

Commits

  • [eslint] use a shared config 426ba9a
  • [eslint] fix some spacing issues 2094191
  • [Refactor] use hasown 81ab41b
  • [Fix] validate boundary type in setBoundary() method 8d8e469
  • [Tests] add tests to check the behavior of getBoundary with non-strings 837b8a1
  • [Dev Deps] remove unused deps 870e4e6
  • [meta] remove local commit hooks e6e83cc
  • [Dev Deps] update eslint 4066fd6
  • [meta] fix scripts to use prepublishOnly c4bbb13

v4.0.2

v4.0.2 - 2025-02-14

Merged

Fixed

Commits

... (truncated)

Changelog

Sourced from form-data's changelog.

v4.0.4 - 2025-07-16

Commits

  • [meta] add auto-changelog 811f682
  • [Tests] handle predict-v8-randomness failures in node < 17 and node > 23 1d11a76
  • [Fix] Switch to using crypto random for boundary values 3d17230
  • [Tests] fix linting errors 5e34080
  • [meta] actually ensure the readme backup isn’t published 316c82b
  • [Dev Deps] update @ljharb/eslint-config 58c25d7
  • [meta] fix readme capitalization 2300ca1

v4.0.3 - 2025-06-05

Fixed

Commits

  • [eslint] use a shared config 426ba9a
  • [eslint] fix some spacing issues 2094191
  • [Refactor] use hasown 81ab41b
  • [Fix] validate boundary type in setBoundary() method 8d8e469
  • [Tests] add tests to check the behavior of getBoundary with non-strings 837b8a1
  • [Dev Deps] remove unused deps 870e4e6
  • [meta] remove local commit hooks e6e83cc
  • [Dev Deps] update eslint 4066fd6
  • [meta] fix scripts to use prepublishOnly c4bbb13

v4.0.2 - 2025-02-14

Merged

Fixed

Commits

  • Merge tags v2.5.3 and v3.0.3 92613b9
  • [Tests] migrate from travis to GHA 806eda7
  • [Tests] migrate from travis to GHA 8fdb3bc

... (truncated)

Commits
  • 41996f5 v4.0.4
  • 316c82b [meta] actually ensure the readme backup isn’t published
  • 2300ca1 [meta] fix readme capitalization
  • 811f682 [meta] add auto-changelog
  • 5e34080 [Tests] fix linting errors
  • 1d11a76 [Tests] handle predict-v8-randomness failures in node < 17 and node > 23
  • 58c25d7 [Dev Deps] update @ljharb/eslint-config
  • 3d17230 [Fix] Switch to using crypto random for boundary values
  • d8d67dc v4.0.3
  • e6e83cc [meta] remove local commit hooks
  • Additional commits viewable in compare view

Updates @angular/platform-server from 20.0.3 to 20.3.4

Release notes

Sourced from @​angular/platform-server's releases.

20.3.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

20.3.0-rc.0

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

... (truncated)

Changelog

Sourced from @​angular/platform-server's changelog.

20.3.0 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

Commit Type Description
a3f808d7c8 fix remove refresh button from transfer state tab (#63592)

core

Commit Type Description
6117ccee2e feat introduce BootstrapContext for improved server bootstrapping (#63636)

21.0.0-next.2 (2025-09-03)

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}

core

  • (test only) - Using provideZoneChangeDetection in the TestBed providers would previously prevent TestBed from rethrowing errors as it should. Errors in the test will now be rethrown, regardless of the usage of provideZoneChangeDetection. Tests should be adjusted to prevent or account for these errors. As in previous major versions, this behavior can be disabled with rethrowApplicationErrors: false in configureTestingModule as a last resort.

... (truncated)

Commits
  • 7a7725e refactor(core): Update tests for zoneless by default (#63672)

Bumps the npm_and_yarn group with 1 update in the / directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/bar-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/column-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/line-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/pie-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/polar-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 2 updates in the /projects/charts/step-chart directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server) and [form-data](https://github.com/form-data/form-data).
Bumps the npm_and_yarn group with 1 update in the /projects/erp-hgrid directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).
Bumps the npm_and_yarn group with 1 update in the /projects/finance-grid directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).
Bumps the npm_and_yarn group with 1 update in the /projects/fleet-management-grid directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).
Bumps the npm_and_yarn group with 1 update in the /projects/hr-portal directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).
Bumps the npm_and_yarn group with 1 update in the /projects/sales-grid directory: [@angular/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server).


Updates `@angular/platform-server` from 20.0.3 to 20.3.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `form-data` from 4.0.1 to 4.0.4
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.1...v4.0.4)

Updates `@angular/platform-server` from 20.0.3 to 20.3.4
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `@angular/platform-server` from 20.0.3 to 20.3.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `@angular/platform-server` from 20.0.3 to 20.3.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `@angular/platform-server` from 20.0.3 to 20.3.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

Updates `@angular/platform-server` from 20.0.3 to 20.3.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/20.3.0/packages/platform-server)

---
updated-dependencies:
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@angular/platform-server"
  dependency-version: 20.3.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant