Within my package.json file, one of the dependencies listed is labeled as... "@packageXXX": "^0.7.0",
Upon running the "npm outdated" command, I observed that... @packageXXX current: 0.7.0 wanted: 0.7.0 latest: 0.8.0
Despite executing "npm i", the installation does not include the most recent minor version "0.8.0"
I believed that using the caret symbol in the version number would automatically update to the latest minor version, but that doesn't seem to be the case. Can anyone clarify where I may be going wrong?