Problem/Motivation
"require": {
"google/analytics-data": "^0.10"
}
Although this is set in the module's composer.json, according to the caret range docs, versions 0.x.x don't update the latest minor versions, only to latest patch versions. Starting from (for example) 1.0.0, the ^1.0 requirement enables composer to update package to the newest minor version (for example) 1.3.0, 1.4.0, etc.
This means it needs to be raised to "^0.11" in the module's composer.json if the API calls still working fine.
Hopefully, there will be a non-beta release of this library soon.
Steps to reproduce
Proposed resolution
Remaining tasks
User interface changes
API changes
Data model changes
Comments
Comment #3
kaszarobert