Prettier version 1.7.0 arrived on September 14, 2017, succeeding version 1.6.1, released on August 29, 2017. Both are iterations of Prettier, the popular opinionated code formatter designed to enforce consistent styling across codebases. Examining their devDependencies reveals subtle yet impactful changes for developers. Notably, jest, the JavaScript testing framework, jumps from version 20.0.0 to 21.1.0, suggesting improvements in testing capabilities and potentially affecting how Prettier itself is tested. A significant removal is cross-spawn, a utility for cross-platform spawning of child processes, replaced perhaps by alternative internal methods or reliance on other dependencies for similar functionality. Prettier itself, listed as a dev dependency, updates from version 1.6.0 to 1.6.0 again (no change), suggesting the core formatting rules have remained unchanged between these versions. The markdown-toc has been added in the later version, that means that the developers are now using it to generate the table of content, this change could affect the developer community cause they may now rely on markdown-toc. Developers considering upgrading should evaluate the implications of the jest update on their testing workflows and investigate whether the disappearance of cross-spawn affects any custom tooling that relies on Prettier's internal processes. The addition of markdown-toc seems less relevant for the end user. Checking the changelog for these versions is recomendated.
The are not vulnerabilities for the version 1.7.0 of the package prettier