@angular/core 17.0.2 → 17.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/esm2022/src/core_render3_private_export.mjs +2 -2
  2. package/esm2022/src/render3/index.mjs +2 -2
  3. package/esm2022/src/render3/instructions/change_detection.mjs +9 -19
  4. package/esm2022/src/render3/instructions/shared.mjs +4 -5
  5. package/esm2022/src/render3/interfaces/container.mjs +22 -17
  6. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  7. package/esm2022/src/render3/node_manipulation.mjs +3 -3
  8. package/esm2022/src/render3/util/change_detection_utils.mjs +13 -2
  9. package/esm2022/src/render3/util/injector_discovery_utils.mjs +10 -13
  10. package/esm2022/src/render3/util/view_utils.mjs +4 -4
  11. package/esm2022/src/render3/view_ref.mjs +3 -3
  12. package/esm2022/src/version.mjs +1 -1
  13. package/esm2022/testing/src/logger.mjs +3 -3
  14. package/esm2022/testing/src/test_bed_compiler.mjs +4 -1
  15. package/fesm2022/core.mjs +59 -56
  16. package/fesm2022/core.mjs.map +1 -1
  17. package/fesm2022/primitives/signals.mjs +1 -1
  18. package/fesm2022/rxjs-interop.mjs +1 -1
  19. package/fesm2022/testing.mjs +4 -1
  20. package/fesm2022/testing.mjs.map +1 -1
  21. package/index.d.ts +27 -36
  22. package/package.json +1 -1
  23. package/primitives/signals/index.d.ts +1 -1
  24. package/rxjs-interop/index.d.ts +1 -1
  25. package/schematics/migrations/block-template-entities/bundle.js +187 -98
  26. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  27. package/schematics/ng-generate/control-flow-migration/bundle.js +518 -232
  28. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  29. package/schematics/ng-generate/standalone-migration/bundle.js +176 -106
  30. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  31. package/testing/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.2
2
+ * @license Angular v17.0.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.2
2
+ * @license Angular v17.0.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.2
2
+ * @license Angular v17.0.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1009,6 +1009,9 @@ class TestBedCompiler {
1009
1009
  throw invalidTypeError(declaration.name, 'Component');
1010
1010
  }
1011
1011
  this.maybeStoreNgDef(ɵNG_COMP_DEF, declaration);
1012
+ if (ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT) {
1013
+ ɵdepsTracker.clearScopeCacheFor(declaration);
1014
+ }
1012
1015
  ɵcompileComponent(declaration, metadata);
1013
1016
  });
1014
1017
  this.pendingComponents.clear();