mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Previously, query parameters passed to `router.createUrlTree` were simply converted to strings. This meant that any custom serialization logic in a custom `UrlSerializer` was not applied. This could lead to inconsistencies between navigations triggered from the URL bar (which are parsed by the serializer) and navigations triggered programmatically. This change ensures that query parameters are normalized using the provided `UrlSerializer`. The values are serialized and then parsed to ensure they are in the same format as if they had come from a URL. This allows custom serializers to handle complex objects in query parameters consistently. Fixes https://github.com/angular/angular/issues/47307 PR Close #64449 |
||
|---|---|---|
| .. | ||
| animations-standalone | ||
| cyclic_import | ||
| defer | ||
| forms_reactive | ||
| forms_template_driven | ||
| hydration | ||
| image-directive | ||
| router | ||
| standalone_bootstrap | ||
| BUILD.bazel | ||
| package.json | ||
| README.md | ||
Bundle
js_expected_symbol_test
This folder contains tests which assert that most of the code is tree shaken away. This is asserted by keeping gold files of all symbols which are expected to be retained. When doing renaming it is often necessary to update the gold files; to do so use these scripts:
pnpm run symbol-extractor:check
pnpm run symbol-extractor:update
Debugging
You can inspect the build output of each project by building the :bundles target.
pnpm bazel build //packages/core/test/bundling/standalone_bootstrap:bundles
This output is always unmangled and can be easily used for debugging. Alternatively, you can also serve the output by running:
pnpm bazel run //packages/core/test/bundling/standalone_bootstrap:bundles.serve
If needed, you can also control the Angular CLI optimizations via environment variables that
you can set via the env attribute in BUILD.bazel of each test.