Angular developers leveraging the @angular/platform-browser-dynamic library, responsible for enabling Just-In-Time (JIT) compilation within web browsers, should note the subtle but important differences between versions 10.0.13 and 10.0.14. Both versions share a common foundation, built upon TypeScript library tslib (version ^2.0.0), and maintain the same core functionality of bootstrapping Angular applications directly within the browser. Crucially, they also necessitate compatible peer dependencies, including @angular/core, @angular/common, @angular/compiler, and @angular/platform-browser.
The key distinction lies in the version bumps of these peer dependencies. Version 10.0.14 requires its peer dependencies to also be at version 10.0.14, whereas 10.0.13 required version 10.0.13 of the same dependencies. This means that upgrading @angular/platform-browser-dynamic to version 10.0.14 also *requires* upgrading all of its @angular/* peer dependencies. In essence, this minor version increment (10.0.13 to 10.0.14) signals a coordinated update across the core Angular modules. Notably, both versions feature an identical file count (44) and unpacked size (488255 bytes), suggesting that the changes are likely focused on internal refinements, bug fixes, or minor feature enhancements that don't drastically alter the overall package structure.
Developers will likely want to upgrade to version 10.0.14 since it's the newest stable release, and because it may address bugs or contain minor performance improvements. Keep in mind the need to update the corresponding peer dependencies to also be at version 10.0.14.
The are not vulnerabilities for the version 10.0.14 of the package @angular/platform-browser-dynamic