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

build(deps): bump the angular group across 1 directory with 7 updates #27982

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 Nov 25, 2024

Bumps the angular group with 7 updates in the /generators/angular/resources directory:

Package From To
@angular/common 18.2.12 19.0.0
@fortawesome/angular-fontawesome 0.15.0 1.0.0
ngx-cookie-service 18.0.0 19.0.0
zone.js 0.14.10 0.15.0
@angular/cli 18.2.12 19.0.1
jest-preset-angular 14.3.1 14.3.3
typescript 5.5.4 5.7.2

Updates @angular/common from 18.2.12 to 19.0.0

Release notes

Sourced from @​angular/common's releases.

v19.0.0

19.0.0 (2024-11-19)

Explore Angular v19 with a blog post from the Angular team: https://blog.angular.dev/meet-angular-v19-7b29dfd05b84

Breaking Changes

compiler

  • this.foo property reads no longer refer to template context variables. If you intended to read the template variable, do not use this..

core

  • Angular directives, components and pipes are now standalone by default.

    • Specify standalone: false for declarations that are currently declared in @NgModules.
    • ng update for v19 will take care of this automatically.
  • TypeScript versions less than 5.5 are no longer supported.

  • Timing changes for effect API (in developer preview):

    • effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).

    • effects which are triggered during change detection (e.g. by input signals) run earlier, before the component's template.

  • ExperimentalPendingTasks has been renamed to PendingTasks.

  • The autoDetect feature of ComponentFixture will now attach the fixture to the ApplicationRef. As a result, errors during automatic change detection of the fixture be reported to the ErrorHandler. This change may cause custom error handlers to observe new failures that were previously unreported.

  • createComponent will now render default fallback with empty projectableNodes.

    • When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.
    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • Errors that are thrown during ApplicationRef.tick will now be rethrown when using TestBed. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:

    • Instead of waiting for automatic change detection to happen, trigger

... (truncated)

Changelog

Sourced from @​angular/common's changelog.

19.0.0 (2024-11-19)

Blog post: https://blog.angular.dev/meet-angular-v19-7b29dfd05b84

Breaking Changes

compiler

  • this.foo property reads no longer refer to template context variables. If you intended to read the template variable, do not use this..

core

  • Angular directives, components and pipes are now standalone by default.

    • Specify standalone: false for declarations that are currently declared in @NgModules.
    • ng update for v19 will take care of this automatically.
  • TypeScript versions less than 5.5 are no longer supported.

  • Timing changes for effect API (in developer preview):

    • effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).

    • effects which are triggered during change detection (e.g. by input signals) run earlier, before the component's template.

  • ExperimentalPendingTasks has been renamed to PendingTasks.

  • The autoDetect feature of ComponentFixture will now attach the fixture to the ApplicationRef. As a result, errors during automatic change detection of the fixture be reported to the ErrorHandler. This change may cause custom error handlers to observe new failures that were previously unreported.

  • createComponent will now render default fallback with empty projectableNodes.

    • When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.
    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • Errors that are thrown during ApplicationRef.tick will now be rethrown when using TestBed. These errors should be resolved by ensuring the test environment is set up correctly to complete change detection successfully. There are two alternatives to catch the errors:

    • Instead of waiting for automatic change detection to happen, trigger it synchronously and expect the error. For example, a jasmine test could write expect(() => TestBed.inject(ApplicationRef).tick()).toThrow()

... (truncated)

Commits
  • 7dfb127 refactor: add @__PURE__ next to @pureOrBreakMyCode for improved bundler c...
  • da9c0c5 refactor: cleanup initializers that use ctor params (#58349)
  • 24c6373 feat(common): add optional rounded transform support in cloudinary image load...
  • 4b9accd feat(http): promote withRequestsMadeViaParent to stable. (#58221)
  • 13c1306 feat(common): disable keyvalue sorting using null compareFn (#57487)
  • 09df589 refactor(core): Migrate all packages with the explicit-standalone-flag sche...
  • 08b4a8a docs: move JSDoc below constructor (#57187)
  • a36744e docs: move JSDoc before functions (#58087)
  • 0eb1c5c docs(common): Minor typo in code example (#58085)
  • 84b6896 refactor(platform-server): Add an ssr benchmark setup. (#57647)
  • Additional commits viewable in compare view

Updates @fortawesome/angular-fontawesome from 0.15.0 to 1.0.0

Release notes

Sourced from @​fortawesome/angular-fontawesome's releases.

1.0.0

There are no major changes in this release. The version bump is to signal that the library is stable now and no major breaking changes are expected in the future.

Added

  • Support for Angular 19.
  • All available icon packages to the ng-add schematic.
  • Possibility to specify custom rotate value for fa-icon and fa-duotone-icon components.

Removed

  • Angular 18.x is no longer supported. If you are using this version, please, stick with version 0.15.0.
Changelog

Sourced from @​fortawesome/angular-fontawesome's changelog.

1.0.0 - 2024-11-20

There are no major changes in this release. The version bump is to signal that the library is stable now and no major breaking changes are expected in the future.

Added

  • Support for Angular 19.
  • All available icon packages to the ng-add schematic.
  • Possibility to specify custom rotate value for fa-icon and fa-duotone-icon components.

Removed

  • Angular 18.x is no longer supported. If you are using this version, please, stick with version 0.15.0.
Commits
  • 88ea9db Release 1.0.0
  • 5de1931 Add support for "fa-rotate-by"
  • 7fe2a58 Add new icon packages to the ng add schematic
  • 81831fc update docs for duotone and sharp duotone
  • dd2603c Fix integration tests
  • 1177547 Remove unnecessary standalone: true property
  • c3ebbb7 Bump other dependencies
  • c5e9b6d Undo unnecessary changes
  • 8350ee1 Update README
  • b9ce5d8 Set standalone property to false for testing components
  • Additional commits viewable in compare view

Updates ngx-cookie-service from 18.0.0 to 19.0.0

Release notes

Sourced from ngx-cookie-service's releases.

19.0.0

What's Changed

New Contributors

Full Changelog: stevermeister/ngx-cookie-service@v18.0.0...v19.0.0

19.0.0-rc.2

Full Changelog: stevermeister/ngx-cookie-service@v19.0.0-next.1...v19.0.0-rc.2

19.0.0-rc.1

No release notes provided.

19.0.0-next.1

What's Changed

Full Changelog: stevermeister/ngx-cookie-service@v18.0.0...v19.0.0-next.1

Commits
  • e5a85e4 feat(core): adds angular 19 support (#329) (#331)
  • e89331d Merge pull request #330 from stevermeister/development
  • f442a8b chore: updates package-lock.json
  • 8ec5600 Merge branch 'refs/heads/master' into development
  • da9f1b1 chore(deps): bump cookie and express (#328)
  • d6c916b chore(deps): bump rollup from 4.18.0 to 4.22.4 (#323)
  • eb06769 chore(deps-dev): bump express from 4.19.2 to 4.21.0 (#322)
  • 037e7aa Merge branch 'master' into development
  • 7a26a34 chore(docs): documents angular 18 support (#317)
  • b872039 chore (build): Update 1-bug-report.yaml
  • Additional commits viewable in compare view

Updates zone.js from 0.14.10 to 0.15.0

Changelog

Sourced from zone.js's changelog.

0.15.0 (2024-08-15)

Bug Fixes

  • zone.js: Add support for addition jest functions. (#57280) (e1240c6), closes #57277
  • zone.js: Update the default behavior of fakeAsync to flush after the test (#57240) (70e8b40)

BREAKING CHANGES

  • zone.js: fakeAsync will now flush pending timers at the end of the given function by default. To opt-out of this, you can use {flush: false} in options parameter of fakeAsync
Commits
  • d1d4adc release: cut the zone.js-0.15.0 release (#57418)
  • 24cd1c8 build: lock file maintenance (#57340)
  • e1240c6 fix(zone.js): Add support for addition jest functions. (#57280)
  • 70e8b40 fix(zone.js): Update the default behavior of fakeAsync to flush after the tes...
  • See full diff in compare view

Updates @angular/cli from 18.2.12 to 19.0.1

Release notes

Sourced from @​angular/cli's releases.

v19.0.1

19.0.1 (2024-11-21)

@​angular-devkit/build-angular

Commit Description
fix - b63123f20 use stylePreprocessorOptions

@​angular/build

Commit Description
fix - 74461da64 ensure accurate content length for server assets
fix - 1b4dcedd5 use sha256 instead of sha-256 as hash algorithm name

@​angular/ssr

Commit Description
fix - 8bd2b260e handle baseHref that start with ./

v19.0.0

19.0.0 (2024-11-19)

@​angular/cli

Commit Description
feat - 201b60e1d handle string key/value pairs, e.g. --define
fix - b847d4460 recommend optional application update migration during v19 update
perf - f249e7e85 enable Node.js compile code cache when available
perf - ecc107d83 enable Node.js compile code cache when available

@​schematics/angular

Commit Description
feat - a381a3db1 add option to export component as default
feat - 755f3a07f add option to setup new workspace or application as zoneless mode
feat - cfca5442e integrate withEventReplay() in provideClientHydration for new SSR apps
feat - 292a4b7c2 update app-shell and ssr schematics to adopt new Server Rendering API
fix - b1504c3bc component spec with export default
fix - 4b4e000dd don't show server routing prompt when using browser builder
fix - 4e2a5fe15 enable opt-in for new @angular/ssr feature
fix - fcf7443d6 explicitly set standalone:false
fix - 7992218a9 remove declaration and sourceMap from default tsconfig
fix - 9e6ab1bf2 use default import for express

@​angular-devkit/schematics-cli

Commit Description
feat - 37693c40e add package manager option to blank schematic

@​angular-devkit/architect

Commit Description
feat - 78f76485f merge object options from CLI

@​angular-devkit/build-angular

| Commit | Description |

... (truncated)

Changelog

Sourced from @​angular/cli's changelog.

19.0.1 (2024-11-21)

@​angular-devkit/build-angular

Commit Type Description
b63123f20 fix use stylePreprocessorOptions

@​angular/build

Commit Type Description
74461da64 fix ensure accurate content length for server assets
1b4dcedd5 fix use sha256 instead of sha-256 as hash algorithm name

@​angular/ssr

Commit Type Description
8bd2b260e fix handle baseHref that start with ./

19.0.0 (2024-11-19)

Breaking Changes

@​schematics/angular

  • The app-shell schematic is no longer compatible with Webpack-based builders.

@​angular-devkit/build-angular

@​angular-devkit/core

  • The deprecated fileBuffer function is no longer available. Update your code to use stringToFileBuffer instead to maintain compatibility.

    Note: that this change does not affect application developers.

@​angular/build

... (truncated)

Commits
  • 8cd6aa9 release: cut the v19.0.1 release
  • 1b4dced fix(@​angular/build): use sha256 instead of sha-256 as hash algorithm name
  • b63123f fix(@​angular-devkit/build-angular): use stylePreprocessorOptions
  • 3a1c95e test: add end-to-end tests for SSR setup
  • 6a87b1e refactor(@​angular/build): adjust code to propagate errors from Piscina
  • 919f5b9 refactor(@​angular/build): add initial infrastructure to support inline templa...
  • 8bd2b26 fix(@​angular/ssr): handle baseHref that start with ./
  • 74461da fix(@​angular/build): ensure accurate content length for server assets
  • d622e59 release: cut the v19.0.0 release
  • 86acfe0 build: update Angular packages to v19 stable
  • Additional commits viewable in compare view

Updates jest-preset-angular from 14.3.1 to 14.3.3

Release notes

Sourced from jest-preset-angular's releases.

v14.3.3

Please refer to CHANGELOG.md for details.

v14.3.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from jest-preset-angular's changelog.

14.3.3 (2024-11-22)

Features

  • feat: support configuring zoneless test env for CJS (7a270b1)

14.3.2 (2024-11-20)

Bug Fixes

  • fix: include version from package.json into cache key (de02c79), closes #2844
Commits
  • b415b97 chore(release): 14.3.3
  • d4eb0d0 feat: support configuring zoneless test env for CJS
  • 9677d79 chore(release): 14.3.2
  • de02c79 fix: include version from package.json into cache key
  • 549d44b build(devs-infra): exclude example-app-v18 from major Ng updates
  • 07f0b3a build(deps): Update dependency @​types/node to ^22.9.1
  • ba077de build(deps): bump cross-spawn in /examples/example-app-monorepo
  • 1f95bdf build(deps): Update commitlint monorepo to ^19.6.0
  • 63b4128 test: remove example app v16
  • 73678c2 build(deps): Update dependency husky to ^9.1.7
  • Additional commits viewable in compare view

Updates typescript from 5.5.4 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

... (truncated)

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
typescript [>= 5.6.2.a, < 5.6.3]
typescript [>= 5.6.3.a, < 5.6.4]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added skip-changelog Exclude pull requests from the release notes theme: angular theme: dependencies Pull requests that update a dependency file labels Nov 25, 2024
Bumps the angular group with 7 updates in the /generators/angular/resources directory:

| Package | From | To |
| --- | --- | --- |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `18.2.12` | `19.0.0` |
| [@fortawesome/angular-fontawesome](https://github.com/FortAwesome/angular-fontawesome) | `0.15.0` | `1.0.0` |
| [ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service) | `18.0.0` | `19.0.0` |
| [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) | `0.14.10` | `0.15.0` |
| [@angular/cli](https://github.com/angular/angular-cli) | `18.2.12` | `19.0.1` |
| [jest-preset-angular](https://github.com/thymikee/jest-preset-angular) | `14.3.1` | `14.3.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.7.2` |



Updates `@angular/common` from 18.2.12 to 19.0.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/19.0.0/packages/common)

Updates `@fortawesome/angular-fontawesome` from 0.15.0 to 1.0.0
- [Release notes](https://github.com/FortAwesome/angular-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/angular-fontawesome/blob/main/CHANGELOG.md)
- [Commits](FortAwesome/angular-fontawesome@0.15.0...1.0.0)

Updates `ngx-cookie-service` from 18.0.0 to 19.0.0
- [Release notes](https://github.com/stevermeister/ngx-cookie-service/releases)
- [Changelog](https://github.com/stevermeister/ngx-cookie-service/blob/master/CHANGELOG.md)
- [Commits](stevermeister/ngx-cookie-service@v18.0.0...v19.0.0)

Updates `zone.js` from 0.14.10 to 0.15.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/zone.js-0.15.0/packages/zone.js)

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

Updates `jest-preset-angular` from 14.3.1 to 14.3.3
- [Release notes](https://github.com/thymikee/jest-preset-angular/releases)
- [Changelog](https://github.com/thymikee/jest-preset-angular/blob/main/CHANGELOG.md)
- [Commits](thymikee/jest-preset-angular@v14.3.1...v14.3.3)

Updates `typescript` from 5.5.4 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.7.2)

---
updated-dependencies:
- dependency-name: "@angular/common"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@fortawesome/angular-fontawesome"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: ngx-cookie-service
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: zone.js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: angular
- dependency-name: "@angular/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: jest-preset-angular
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: angular
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/generators/angular/resources/angular-d7271b6699 branch from adaff12 to c8e646e Compare November 25, 2024 03:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-changelog Exclude pull requests from the release notes theme: angular theme: dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants