I want to allow yarn to update to all newer minor + patch versions, so I am using the caret.
If the latest version of "my-package" is "3.3.3", what are the behavioral differences between "my-package": "^3"
and "my-package": "^3.2.1"
?
If there is none, then is there a reasonable argument in favor of one or the other?