Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the npm group across 1 directory with 28 updates #217

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2024

Bumps the npm group with 26 updates in the / directory:

Package From To
@angular-devkit/build-angular 19.0.2 19.0.4
@angular-eslint/builder 18.4.2 19.0.2
@angular-eslint/eslint-plugin 18.4.2 19.0.2
@angular-eslint/eslint-plugin-template 18.4.2 19.0.2
@angular-eslint/schematics 18.4.2 19.0.2
@angular-eslint/template-parser 18.4.2 19.0.2
@angular/animations 19.0.1 19.0.3
@angular/cli 19.0.2 19.0.4
@angular/common 19.0.1 19.0.3
@angular/compiler 19.0.1 19.0.3
@angular/compiler-cli 19.0.1 19.0.3
@angular/core 19.0.1 19.0.3
@angular/forms 19.0.1 19.0.3
@angular/language-service 19.0.1 19.0.3
@angular/platform-browser 19.0.1 19.0.3
@angular/platform-browser-dynamic 19.0.1 19.0.3
@angular/router 19.0.1 19.0.3
@types/jasmine 5.1.4 5.1.5
@types/node 22.10.0 22.10.1
@typescript-eslint/eslint-plugin 8.16.0 8.18.0
@typescript-eslint/parser 8.16.0 8.18.0
eslint 9.15.0 9.16.0
eslint-plugin-jsdoc 50.6.0 50.6.1
jasmine-core 5.4.0 5.5.0
nw 0.93.0 0.94.0
nw-builder 4.13.6 4.13.7

Updates @angular-devkit/build-angular from 19.0.2 to 19.0.4

Release notes

Sourced from @​angular-devkit/build-angular's releases.

v19.0.4

19.0.4 (2024-12-05)

@​angular-devkit/build-angular

Commit Description
fix - 23667ed4a handle windows spec collisions

@​angular/build

Commit Description
fix - fc41f50b5 show error when Node.js built-ins are used during ng serve
perf - 14451e275 reuse TS package.json cache when rebuilding

v19.0.3

19.0.3 (2024-12-04)

@​schematics/angular

Commit Description
fix - 28a51cc5e add required type to CanDeactivate guard (#29004)

@​angular/cli

Commit Description
fix - 4e82ca180 correctly select package versions in descending order during ng add

@​angular/build

Commit Description
fix - f26e1b462 add timeout to route extraction
fix - ab4e77c75 allow .json file replacements with application builds
fix - 06690d87e apply define option to JavaScript from scripts option
fix - 775e6f780 avoid deploy URL usage on absolute preload links
fix - 21f21eda3 ensure correct handling of index.output for SSR

@​angular/ssr

Commit Description
fix - 75cf47e71 apply HTML transformation to CSR responses
fix - 5880a0230 correctly handle serving of prerendered i18n pages
fix - 277b8a378 ensure compatibility for Http2ServerResponse type
Changelog

Sourced from @​angular-devkit/build-angular's changelog.

19.0.4 (2024-12-05)

@​angular-devkit/build-angular

Commit Type Description
23667ed4a fix handle windows spec collisions

@​angular/build

Commit Type Description
fc41f50b5 fix show error when Node.js built-ins are used during ng serve
14451e275 perf reuse TS package.json cache when rebuilding

19.1.0-next.0 (2024-12-04)

Added support for TypeScript 5.7

19.0.3 (2024-12-04)

@​angular/cli

Commit Type Description
4e82ca180 fix correctly select package versions in descending order during ng add

@​schematics/angular

Commit Type Description
28a51cc5e fix add required type to CanDeactivate guard (#29004)

@​angular/build

Commit Type Description
f26e1b462 fix add timeout to route extraction
ab4e77c75 fix allow .json file replacements with application builds
06690d87e fix apply define option to JavaScript from scripts option
775e6f780 fix avoid deploy URL usage on absolute preload links
21f21eda3 fix ensure correct handling of index.output for SSR

... (truncated)

Commits
  • 6cfbb88 release: cut the v19.0.4 release
  • fc41f50 fix(@​angular/build): show error when Node.js built-ins are used during `ng se...
  • 14451e2 perf(@​angular/build): reuse TS package.json cache when rebuilding
  • 23667ed fix(@​angular-devkit/build-angular): handle windows spec collisions
  • 4a5c5e4 docs(@​angular/ssr): remove duplicate @return comment
  • ed30cfb ci: update to latest version of dev-infra actions
  • c23f621 release: cut the v19.0.3 release
  • 75cf47e fix(@​angular/ssr): apply HTML transformation to CSR responses
  • 75b4e92 refactor(@​angular/ssr): replace Map with Record in SSR manifest
  • 775e6f7 fix(@​angular/build): avoid deploy URL usage on absolute preload links
  • Additional commits viewable in compare view

Updates @angular-eslint/builder from 18.4.2 to 19.0.2

Release notes

Sourced from @​angular-eslint/builder's releases.

v19.0.2

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

v19.0.1

19.0.1 (2024-12-06)

🩹 Fixes

  • update dependency @​angular/compiler to v19.0.3 (#2159)
  • update dependency eslint to v9.16.0 (#2148)
  • update typescript-eslint packages to v8.17.0 (#2153)
  • eslint-plugin: add prefer-signals rule to exported config (#2150)
  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​angular-eslint/builder's changelog.

19.0.2 (2024-12-10)

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

19.0.1 (2024-12-06)

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

19.0.0 (2024-11-29)

🚀 Features

  • update angular packages to the stable v19 (#2120)

❤️ Thank You

18.4.3 (2024-11-29)

🩹 Fixes

  • yarn pnp issues (#2143)

❤️ Thank You

Commits

Updates @angular-eslint/eslint-plugin from 18.4.2 to 19.0.2

Release notes

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

v19.0.2

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

v19.0.1

19.0.1 (2024-12-06)

🩹 Fixes

  • update dependency @​angular/compiler to v19.0.3 (#2159)
  • update dependency eslint to v9.16.0 (#2148)
  • update typescript-eslint packages to v8.17.0 (#2153)
  • eslint-plugin: add prefer-signals rule to exported config (#2150)
  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

... (truncated)

Changelog

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

19.0.2 (2024-12-10)

🩹 Fixes

  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

❤️ Thank You

19.0.1 (2024-12-06)

🩹 Fixes

  • eslint-plugin: adding prefer-signals rule to exported config (#2150)

❤️ Thank You

19.0.0 (2024-11-29)

🚀 Features

  • ⚠️ eslint-plugin: promote prefer-standalone to recommended (8dfdc4f4)
  • eslint-plugin: new rule prefer-signals (#1872)
  • ⚠️ eslint-plugin: remove deprecated no-host-metadata-property rule (#2113)
  • ⚠️ eslint-plugin: remove deprecated sort-ngmodule-metadata-arrays rule (#2114)
  • ⚠️ eslint-plugin: prefer-standalone recognizes that standalone is the default (#2096)
  • ⚠️ eslint-plugin: remove deprecated prefer-standalone-component rule (#2112)

⚠️ Breaking Changes

  • ⚠️ eslint-plugin: promote prefer-standalone to recommended (8dfdc4f4)
  • ⚠️ eslint-plugin: remove deprecated no-host-metadata-property rule (#2113)
  • ⚠️ eslint-plugin: remove deprecated sort-ngmodule-metadata-arrays rule (#2114)
  • ⚠️ eslint-plugin: prefer-standalone recognizes that standalone is the default (#2096)
  • ⚠️ eslint-plugin: remove deprecated prefer-standalone-component rule (#2112)

❤️ Thank You

18.4.3 (2024-11-29)

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

Commits
  • 390df5a chore(release): publish 19.0.2
  • 7087aee fix(eslint-plugin): [prefer-standalone] error range should only include prope...
  • 34e28ef chore(release): publish 19.0.1
  • 1cd600d fix(eslint-plugin): adding prefer-signals rule to exported config (#2150)
  • af53867 chore(release): publish 19.0.0
  • 6971819 chore: fix prefer-standalone messaging and fixer
  • 8dfdc4f feat(eslint-plugin)!: promote prefer-standalone to recommended
  • ced9d4e chore: fix docs
  • 19c6fe8 feat(eslint-plugin): new rule prefer-signals (#1872)
  • a40e339 chore: bundle the compiler using esbuild (#2126)
  • Additional commits viewable in compare view

Updates @angular-eslint/eslint-plugin-template from 18.4.2 to 19.0.2

Release notes

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

v19.0.2

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

v19.0.1

19.0.1 (2024-12-06)

🩹 Fixes

  • update dependency @​angular/compiler to v19.0.3 (#2159)
  • update dependency eslint to v9.16.0 (#2148)
  • update typescript-eslint packages to v8.17.0 (#2153)
  • eslint-plugin: add prefer-signals rule to exported config (#2150)
  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

... (truncated)

Changelog

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

19.0.2 (2024-12-10)

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

19.0.1 (2024-12-06)

🩹 Fixes

  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

19.0.0 (2024-11-29)

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

18.4.3 (2024-11-29)

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

Commits
  • 390df5a chore(release): publish 19.0.2
  • 34e28ef chore(release): publish 19.0.1
  • e264546 fix(eslint-plugin-template): prevent the slot tag from being self-closing (#2...
  • af53867 chore(release): publish 19.0.0
  • a40e339 chore: bundle the compiler using esbuild (#2126)
  • 5c46a94 chore(release): publish 18.4.3
  • e694232 chore: migrate the repo to eslint flat config (#2145)
  • See full diff in compare view

Updates @angular-eslint/schematics from 18.4.2 to 19.0.2

Release notes

Sourced from @​angular-eslint/schematics's releases.

v19.0.2

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

v19.0.1

19.0.1 (2024-12-06)

🩹 Fixes

  • update dependency @​angular/compiler to v19.0.3 (#2159)
  • update dependency eslint to v9.16.0 (#2148)
  • update typescript-eslint packages to v8.17.0 (#2153)
  • eslint-plugin: add prefer-signals rule to exported config (#2150)
  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​angular-eslint/schematics's changelog.

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)

19.0.1 (2024-12-06)

🩹 Fixes

  • update typescript-eslint packages to v8.17.0 (#2153)
  • update dependency eslint to v9.16.0 (#2148)

19.0.0 (2024-11-29)

🚀 Features

  • allow referencing angular-eslint as the schematics collection (2be3107b)
  • update angular packages to the stable v19 (#2120)

❤️ Thank You

18.4.3 (2024-11-29)

🩹 Fixes

  • update typescript-eslint packages to v8.16.0 (#2135)
  • yarn pnp issues (#2143)

❤️ Thank You

Commits
  • 390df5a chore(release): publish 19.0.2
  • 3935215 fix: update typescript-eslint packages to v8.18.0 (#2171)
  • 34e28ef chore(release): publish 19.0.1
  • 48c9eff fix: update typescript-eslint packages to v8.17.0 (#2153)
  • 50934dd fix: update dependency eslint to v9.16.0 (#2148)
  • af53867 chore(release): publish 19.0.0
  • 2be3107 feat: allow referencing angular-eslint as the schematics collection
  • 89c5c3e feat: update angular packages to the stable v19 (#2120)
  • dd6b569 chore: tmp commit
  • 5c46a94 chore(release): publish 18.4.3
  • Additional commits viewable in compare view

Updates @angular-eslint/template-parser from 18.4.2 to 19.0.2

Release notes

Sourced from @​angular-eslint/template-parser's releases.

v19.0.2

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

v19.0.1

19.0.1 (2024-12-06)

🩹 Fixes

  • update dependency @​angular/compiler to v19.0.3 (#2159)
  • update dependency eslint to v9.16.0 (#2148)
  • update typescript-eslint packages to v8.17.0 (#2153)
  • eslint-plugin: add prefer-signals rule to exported config (#2150)
  • eslint-plugin-template: prevent the slot tag from being self-closing (#2088)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​angular-eslint/template-parser's changelog.

19.0.2 (2024-12-10)

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

19.0.1 (2024-12-06)

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

19.0.0 (2024-11-29)

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

18.4.3 (2024-11-29)

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

Commits

Updates @angular/animations from 19.0.1 to 19.0.3

Release notes

Sourced from @​angular/animations's releases.

v19.0.3

19.0.3 (2024-12-04)

v19.0.2

19.0.2 (2024-12-04)

compiler-cli

Commit Description
fix - 9f99196d23 account for multiple generated namespace imports in HMR (#58924)

core

Commit Description
fix - 4792db9a6d Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (#58929)

migrations

Commit Description
fix - 7b5bacc228 class content being deleted in some edge cases (#58959)
fix - d1cbdd6acb correctly strip away parameters surrounded by comments in inject migration (#58959)
fix - e17ff71c31 don't migrate classes with parameters that can't be injected (#58959)
fix - 7c5f990001 inject migration aggressively removing imports (#58959)
fix - 4392ccedf9 inject migration dropping code if everything except super is removed (#58959)
fix - 9cbebc6dda preserve type literals and tuples in inject migrations (#58959)

platform-server

Commit Description
fix - f3c388ecda remove peer dependency on animations (#58997)
Changelog

Sourced from @​angular/animations's changelog.

19.0.3 (2024-12-04)

19.1.0-next.1 (2024-12-04)

compiler-cli

Commit Type Description
f280467398 fix account for multiple generated namespace imports in HMR (#58924)

core

Commit Type Description
e894a5daea feat set kind field on template and effect nodes (#58865)
3b765367f3 fix Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (#58929)

migrations

Commit Type Description
e31e52e177 fix class content being deleted in some edge cases (#58959)
508d3a1b3b fix correctly strip away parameters surrounded by comments in inject migration (#58959)
7191aa6e09 fix don't migrate classes with parameters that can't be injected (#58959)
a4924af6d5 fix inject migration aggressively removing imports (#58959)
35165d152d fix inject migration dropping code if everything except super is removed (#58959)
68e5ba7a3a fix preserve type literals and tuples in inject migrations (#58959)

platform-server

Commit Type Description
1cfbfc66d3 fix remove peer dependency on animations (#58997)

19.0.2 (2024-12-04)

compiler-cli

Commit Type Description
9f99196d23 fix account for multiple generated namespace imports in HMR (#58924)

core

Commit Type Description
4792db9a6d fix Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (#58929)

migrations

Commit Type Description
7b5bacc228 fix class content being deleted in some edge cases (#58959)
d1cbdd6acb fix correctly strip away parameters surrounded by comments in inject migration (#58959)
e17ff71c31 fix don't migrate classes with parameters that can't be injected (#58959)
7c5f990001 fix inject migration aggressively removing imports (#58959)
4392ccedf9 fix inject migration dropping code if everything except super is removed (#58959)
9cbebc6dda fix preserve type literals and tuples in inject migrations (#58959)

... (truncated)

Commits

Updates @angular/cli from 19.0.2 to 19.0.4

Release notes

Sourced from @​angular/cli's releases.

v19.0.4

19.0.4 (2024-12-05)

@​angular-devkit/build-angular

Commit Description
fix - 23667ed4a handle windows spec collisions

@​angular/build

Commit Description
fix - fc41f50b5 show error when Node.js built-ins are used during ng serve
perf - 14451e275 reuse TS package.json cache when rebuilding

v19.0.3

19.0.3 (2024-12-04)

@​schematics/angular

Commit Description
fix - 28a51cc5e add required type to CanDeactivate guard (#29004)

@​angular/cli

Commit Description
fix - 4e82ca180 correctly select package versions in descending order during ng add

@​angular/build

Commit Description
fix - f26e1b462 add timeout to route extraction
fix - ab4e77c75 allow .json file replacements with application builds
fix - 06690d87e apply define option to JavaScript from scripts option
fix - 775e6f780 avoid deploy URL usage on absolute preload links
fix - 21f21eda3 ensure correct handling of index.output for SSR

@​angular/ssr

Commit Description
fix - 75cf47e71 apply HTML transformation to CSR responses
fix - 5880a0230 correctly handle serving of prerendered i18n pages
fix - 277b8a378 ensure compatibility for Http2ServerResponse type
Changelog

Sourced from @​angular/cli's changelog.

19.0.4 (2024-12-05)

@​angular-devkit/build-angular

Commit Type Description
23667ed4a fix handle windows spec collisions

@​angular/build

Commit Type Description
fc41f50b5 fix show error when Node.js built-ins are used during ng serve
14451e275 perf reuse TS package.json cache when rebuilding

19.1.0-next.0 (2024-12-04)

Added support for TypeScript 5.7

19.0.3 (2024-12-04)

@​angular/cli

Commit Type Description
4e82ca180 fix correctly select package versions in descending order during ng add

@​schematics/angular

Commit Type Description
28a51cc5e fix add required type to CanDeactivate guard (#29004)

@​angular/build

Commit Type Description
f26e1b462 fix add timeout to route extraction
ab4e77c75 fix allow .json file replacements with application builds
06690d87e fix apply define option to JavaScript from scripts option
775e6f780 fix avoid deploy URL usage on absolute preload links
21f21eda3 fix ensure correct handling of index.output for SSR

... (truncated)

Commits
  • 6cfbb88 release: cut the v19.0.4 release

Bumps the npm group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `19.0.2` | `19.0.4` |
| [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `18.4.2` | `19.0.2` |
| [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `18.4.2` | `19.0.2` |
| [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `18.4.2` | `19.0.2` |
| [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `18.4.2` | `19.0.2` |
| [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `18.4.2` | `19.0.2` |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `19.0.1` | `19.0.3` |
| [@angular/cli](https://github.com/angular/angular-cli) | `19.0.2` | `19.0.4` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `19.0.1` | `19.0.3` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `19.0.1` | `19.0.3` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `19.0.1` | `19.0.3` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `19.0.1` | `19.0.3` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `19.0.1` | `19.0.3` |
| [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) | `19.0.1` | `19.0.3` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `19.0.1` | `19.0.3` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `19.0.1` | `19.0.3` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `19.0.1` | `19.0.3` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `5.1.4` | `5.1.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.0` | `22.10.1` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.16.0` | `8.18.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.16.0` | `8.18.0` |
| [eslint](https://github.com/eslint/eslint) | `9.15.0` | `9.16.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.0` | `50.6.1` |
| [jasmine-core](https://github.com/jasmine/jasmine) | `5.4.0` | `5.5.0` |
| [nw](https://github.com/nwjs/npm-installer) | `0.93.0` | `0.94.0` |
| [nw-builder](https://github.com/nwutils/nw-builder) | `4.13.6` | `4.13.7` |



Updates `@angular-devkit/build-angular` from 19.0.2 to 19.0.4
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@19.0.2...19.0.4)

Updates `@angular-eslint/builder` from 18.4.2 to 19.0.2
- [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/v19.0.2/packages/builder)

Updates `@angular-eslint/eslint-plugin` from 18.4.2 to 19.0.2
- [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/v19.0.2/packages/eslint-plugin)

Updates `@angular-eslint/eslint-plugin-template` from 18.4.2 to 19.0.2
- [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/v19.0.2/packages/eslint-plugin-template)

Updates `@angular-eslint/schematics` from 18.4.2 to 19.0.2
- [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/v19.0.2/packages/schematics)

Updates `@angular-eslint/template-parser` from 18.4.2 to 19.0.2
- [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/v19.0.2/packages/template-parser)

Updates `@angular/animations` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/animations)

Updates `@angular/cli` from 19.0.2 to 19.0.4
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@19.0.2...19.0.4)

Updates `@angular/common` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/common)

Updates `@angular/compiler` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/compiler)

Updates `@angular/compiler-cli` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/compiler-cli)

Updates `@angular/core` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/core)

Updates `@angular/forms` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/forms)

Updates `@angular/language-service` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/language-service)

Updates `@angular/platform-browser` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/platform-browser-dynamic)

Updates `@angular/router` from 19.0.1 to 19.0.3
- [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/19.0.3/packages/router)

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

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

Updates `@typescript-eslint/eslint-plugin` from 8.16.0 to 8.18.0
- [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.18.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.16.0 to 8.18.0
- [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.18.0/packages/parser)

Updates `@typescript-eslint/types` from 8.16.0 to 8.18.0
- [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.18.0/packages/types)

Updates `@typescript-eslint/utils` from 8.16.0 to 8.18.0
- [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.18.0/packages/utils)

Updates `eslint` from 9.15.0 to 9.16.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.15.0...v9.16.0)

Updates `eslint-plugin-jsdoc` from 50.6.0 to 50.6.1
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v50.6.0...v50.6.1)

Updates `jasmine-core` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/jasmine/jasmine/releases)
- [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine@v5.4.0...v5.5.0)

Updates `nw` from 0.93.0 to 0.94.0
- [Changelog](https://github.com/nwjs/npm-installer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nwjs/npm-installer/commits)

Updates `nw-builder` from 4.13.6 to 4.13.7
- [Release notes](https://github.com/nwutils/nw-builder/releases)
- [Changelog](https://github.com/nwutils/nw-builder/blob/main/CHANGELOG.md)
- [Commits](nwutils/nw-builder@v4.13.6...v4.13.7)

---
updated-dependencies:
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular-eslint/builder"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@angular-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@angular-eslint/eslint-plugin-template"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@angular-eslint/schematics"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@angular-eslint/template-parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@angular/animations"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/common"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/compiler"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/compiler-cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/forms"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/language-service"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/platform-browser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/router"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/jasmine"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/types"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/utils"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: jasmine-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: nw
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: nw-builder
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 11, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 12, 2024

Superseded by #218.

@dependabot dependabot bot closed this Dec 12, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-f10fdfa317 branch December 12, 2024 05:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants