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 #223

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@angular-devkit/build-angular 19.0.2 19.0.6
@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.5
@angular/cli 19.0.2 19.0.6
@angular/common 19.0.1 19.0.5
@angular/compiler 19.0.1 19.0.5
@angular/compiler-cli 19.0.1 19.0.5
@angular/core 19.0.1 19.0.5
@angular/forms 19.0.1 19.0.5
@angular/language-service 19.0.1 19.0.5
@angular/platform-browser 19.0.1 19.0.5
@angular/platform-browser-dynamic 19.0.1 19.0.5
@angular/router 19.0.1 19.0.5
@types/jasmine 5.1.4 5.1.5
@types/node 22.10.0 22.10.2
@typescript-eslint/eslint-plugin 8.16.0 8.18.2
@typescript-eslint/parser 8.16.0 8.18.2
eslint 9.15.0 9.17.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.6

Release notes

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

v19.0.6

19.0.6 (2024-12-18)

@​angular-devkit/build-angular

Commit Description
fix - db7421231 jasmine.clock with app builder

@​angular/build

Commit Description
fix - 5fbc105ed force HTTP/1.1 in dev-server SSR with SSL

@​angular/ssr

Commit Description
fix - 2f4df6b2b correctly resolve pre-transform resources in Vite SSR without AppEngine
fix - 0789a9e13 ensure correct Location header for redirects behind a proxy

v19.0.5

19.0.5 (2024-12-12)

@​angular-devkit/build-angular

Commit Description
fix - 6c319e44c fix webpack config transform for karma

@​angular/build

Commit Description
fix - 251bd9f22 Fixing auto-csp edge cases where
fix - 1047b8635 handle external @angular/ packages during SSR (#29094)
fix - 376ee9966 provide component HMR update modules to dev-server SSR
fix - 5ea9ce376 use consistent path separators for template HMR identifiers

@​angular/ssr

Commit Description
fix - b3c6c7eb2 include Content-Language header when locale is set
fix - 4203efb90 disable component bootstrapping during route extraction

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

... (truncated)

Changelog

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

19.0.6 (2024-12-18)

@​angular-devkit/build-angular

Commit Type Description
db7421231 fix jasmine.clock with app builder

@​angular/build

Commit Type Description
5fbc105ed fix force HTTP/1.1 in dev-server SSR with SSL

@​angular/ssr

Commit Type Description
2f4df6b2b fix correctly resolve pre-transform resources in Vite SSR without AppEngine
0789a9e13 fix ensure correct Location header for redirects behind a proxy

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

Deprecations

@​angular/build

  • The baseHref option under i18n.locales and i18n.sourceLocale in angular.json is deprecated in favor of subPath.

    The subPath defines the URL segment for the locale, serving as both the HTML base HREF and the directory name for output. By default, if not specified, subPath will use the locale code.

@​angular-devkit/architect

Commit Type Description
2b8a02bac feat require build schemas from modules

@​angular-devkit/build-angular

Commit Type Description
fb41d182e fix fix webpack config transform for karma
9e2d3fbd1 fix handle windows spec collisions

@​angular/build

... (truncated)

Commits
  • 622a693 release: cut the v19.0.6 release
  • 0789a9e fix(@​angular/ssr): ensure correct Location header for redirects behind a proxy
  • 5ebeb37 refactor(@​angular/ssr): mark LINK_LOAD_SCRIPT_CONTENT as @PURE
  • df36a86 build: migrate angular-devkit/architect-cli to ts_project
  • b78f297 build: migrate remaining angular-devkit/architect to ts_project
  • 5fbc105 fix(@​angular/build): force HTTP/1.1 in dev-server SSR with SSL
  • 8907541 build: update npm_translate_lock
  • 15c743c build: use worker for ts_project to enable fast DX and avoid no-sandbox issues
  • 6835c81 build: add missing path mapping for build-webpack import causing lint error
  • d6766ba refactor: remove unnecessary type conversion failing lint
  • 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.5

Release notes

Sourced from @​angular/animations's releases.

v19.0.5

19.0.5 (2024-12-18)

core

Commit Description
fix - 3793218e77 avoid triggering on timer and on idle on the server (#59177)
fix - cfc96ed82c Fix nested timer serialization (#59173)

platform-server

Commit Description
fix - 9085a8fbd8 Warn user when transfer state happens more than once (#58935)

v19.0.4

19.0.4 (2024-12-12)

compiler-cli

Commit Description
fix - 7e612171709 consider pre-release versions when detecting feature support (#59061)
fix - cd764a31152 error in unused standalone imports diagnostic (#59064)

core

Commit Description
fix - 34ded10fa60 Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

platform-browser

Commit Description
fix - ae0802d63c5 collect external component styles from server rendering (#59031)

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)

... (truncated)

Changelog

Sourced from @​angular/animations's changelog.

19.0.5 (2024-12-18)

core

Commit Type Description
3793218e77 fix avoid triggering on timer and on idle on the server (#59177)
cfc96ed82c fix Fix nested timer serialization (#59173)

platform-server

Commit Type Description
9085a8fbd8 fix Warn user when transfer state happens more than once (#58935)

19.1.0-next.3 (2024-12-12)

compiler-cli

Commit Type Description
c5c20e9d86 fix check event side of two-way bindings (#59002)
0dee2681f7 fix consider pre-release versions when detecting feature support (#59061)
1b9492edf8 fix error in unused standalone imports diagnostic (#59064)

core

Commit Type Description
d010e11b73 feat add event listener options to renderer (#59092)
30e676098d fix Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

platform-browser

Commit Type Description
52be35118f fix collect external component styles from server rendering (#59031)

19.0.4 (2024-12-12)

compiler-cli

Commit Type Description
7e612171709 fix consider pre-release versions when detecting feature support (#59061)
cd764a31152 fix error in unused standalone imports diagnostic (#59064)

core

Commit Type Description
34ded10fa60 fix Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

platform-browser

Commit Type Description
ae0802d63c5 fix collect external component styles from server rendering (#59031)

... (truncated)

Commits
  • c829a15 docs(animations): update position parameter to be a decimal (#57927)
  • 5f3ba06 docs: set syntax highlighting of code examples MD code blocks (#59026)
  • b8a2ae0 docs: fix missing alert block styles in the API reference (#59020)
  • See full diff in compare view

Updates @angular/cli from 19.0.2 to 19.0.6

Release notes

Sourced from @​angular/cli's releases.

v19.0.6

19.0.6 (2024-12-18)

@​angular-devkit/build-angular

Commit Description
fix - db7421231 jasmine.clock with app builder

@​angular/build

Commit Description
fix - 5fbc105ed force HTTP/1.1 in dev-server SSR with SSL

@​angular/ssr

Commit Description
fix - 2f4df6b2b correctly resolve pre-transform resources in Vite SSR without AppEngine
fix - 0789a9e13 ensure correct Location header for redirects behind a proxy

v19.0.5

19.0.5 (2024-12-12)

@​angular-devkit/build-angular

Commit Description
fix - 6c319e44c fix webpack config transform for karma

@​angular/build

Commit Description
fix - 251bd9f22 Fixing auto-csp edge cases where
fix - 1047b8635 handle external @angular/ packages during SSR (#29094)
fix - 376ee9966 provide component HMR update modules to dev-server SSR
fix - 5ea9ce376 use consistent path separators for template HMR identifiers

@​angular/ssr

Commit Description
fix - b3c6c7eb2 include Content-Language header when locale is set
fix - 4203efb90 disable component bootstrapping during route extraction

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

... (truncated)

Changelog

Sourced from @​angular/cli's changelog.

19.0.6 (2024-12-18)

@​angular-devkit/build-angular

Commit Type Description
db7421231 fix jasmine.clock with app builder

@​angular/build

Commit Type Description
5fbc105ed fix force HTTP/1.1 in dev-server SSR with SSL

@​angular/ssr

Commit Type Description
2f4df6b2b fix correctly resolve pre-transform resources in Vite SSR without AppEngine
0789a9e13 fix ensure correct Location header for redirects behind a proxy

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

Deprecations

@​angular/build

  • The baseHref option under i18n.locales and i18n.sourceLocale in angular.json is deprecated in favor of subPath.

    The subPath defines the URL segment for the locale, serving as both the HTML base HREF and the directory name for output. By default, if not specified, subPath will ...

    Description has been truncated

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.6` |
| [@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.5` |
| [@angular/cli](https://github.com/angular/angular-cli) | `19.0.2` | `19.0.6` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `19.0.1` | `19.0.5` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `19.0.1` | `19.0.5` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `19.0.1` | `19.0.5` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `19.0.1` | `19.0.5` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `19.0.1` | `19.0.5` |
| [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) | `19.0.1` | `19.0.5` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `19.0.1` | `19.0.5` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `19.0.1` | `19.0.5` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `19.0.1` | `19.0.5` |
| [@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.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.16.0` | `8.18.2` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.16.0` | `8.18.2` |
| [eslint](https://github.com/eslint/eslint) | `9.15.0` | `9.17.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.6
- [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.6)

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.5
- [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.5/packages/animations)

Updates `@angular/cli` from 19.0.2 to 19.0.6
- [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.6)

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

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

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

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

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

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

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

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

Updates `@angular/router` from 19.0.1 to 19.0.5
- [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.5/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.2
- [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.2
- [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.2/packages/eslint-plugin)

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

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

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

Updates `eslint` from 9.15.0 to 9.17.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.17.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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 24, 2024
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