The old `^1.20.7` means `1.x.y, >= 1.20.7` which allows 1.21.0, which was not intended. The new `~1.20.7` means `1.20.x, >= 1.20.7`, which is safer.
The old `^1.20.7` means `1.x.y, >= 1.20.7` which allows 1.21.0, which was not intended. The new `~1.20.7` means `1.20.x, >= 1.20.7`, which is safer.