have a "latest" version package
See original GitHub issueHey DFP team,
Would it be possible to imagine to have a “package” called “latest” which points to the current latest version of the API ?
Example, currently we have com.google.api.ads.dfp.axis.v201805
as latest version. So the content of this would also be made available via package com.google.api.ads.dfp.axis.vlatest
.
Integrators who always want to be using latest version only need to update their dependencies. But that’s the only thing they would have to do. Currently we must manually update all our source code to change the version in the package name. Needless to say this is a real pain in the neck!
PS: this is not only related to this library, but all other wrappers in the different languages (php , etc)
Hope it’s possible.
Thanks
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:8 (3 by maintainers)
Top Results From Across the Web
How to update each dependency in package.json to the latest ...
To update one dependency to its lastest version without having to manually open the package.json and change it, you can run npm install...
Read more >latest-version - npm
Get the latest version of an npm package. Latest version: 7.0.0, last published: 6 months ago. Start using latest-version in your project by ......
Read more >How to Update NPM Dependencies - freeCodeCamp
This command will check every installed dependency and compare the current version with the latest version in the npm registry. It is printed ......
Read more >How to Upgrade Dependencies in Your package.json
First, you need to identify what the latest versions are. Here is an example on GitHub. If you have installed Version Lens on...
Read more >Update All Node Packages to Latest | by Zack Hoherchak
Install the tool npm install -g npm-check-updates · Verify that your package.json is checked in to version control (the next command will overwrite...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We have a CSV with the deprecation and sunset dates available: https://developers.google.com/ad-manager/downloads/api-schedule.csv
You could have a CI system pull this in and scan your code for imports of a version that is deprecated or will be soon.
@christopherseeley - whoa! That should work great! Thanks!!