Migration guide or changelog
See original GitHub issueHi there! I noticed you just published a version of this library compatible with Google Sheets V4.
At a first glance, what do existing codebases using this library need to do to migrate from the old version? It looks like a number of functions no longer take callbacks (and return Promise
s instead), but is there anything else that is materially different?
If there’s a changelog, that’d be awesome.
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:5 (3 by maintainers)
Top Results From Across the Web
changelog-v5/MIGRATION GUIDE.md at master · webpack ...
Help by editing this file. This guide should help you migrating to webpack 5 when using webpack directly. If you are using some...
Read more >Changelog and Migration Guide - Yelp Developer Portal
This Migration Guide will go through all the steps necessary to migrate from using any of the Location Subscriptions v1, Location Subscriptions v2, ......
Read more >Changelog and Migration Guide - Detekt
Changelog and Migration Guide. 1.22.0 - 2022-11-20. Notable Changes. We're introducing the Detekt Marketplace, a place where you can add your own 3rd ......
Read more >Changes and Migration — SQLAlchemy 1.3 Documentation
SQLAlchemy changelogs and migration guides are now integrated within the main documentation. Current Migration Guide¶. What's New in SQLAlchemy 1.3? Change logs ...
Read more >Reporting API changelog and migration guide
Review the changes for the latest version of Soda Cloud's Reporting API and learn how to migrate existing calls.
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
I had considered it, but figured the effort would be better spent on making sure the general docs were really solid. I’ll see if I can make some time to get something together. In general quite a lot has changed, but I’ve tried to make sure it still is very simple to use. Google’s v4 api is very different so some things really had to change and I had no choice.
Off the top of my head:
doc.loadInfo()
which loads props that live on the doc, rather than returning the info withdoc.getInfo()
row.phonenumber
and now it’srow['Phone Number']
sheet.loadCells()
(can use a filter likesheet.loadCells('A1:F10')
)sheet.getCell(row, col)
orsheet.getCellByA1('D5')
cell.value = "newValue"
orcell.formula = "=SUM(A1:D1)"
sheet.saveUpdatedCells()
going to close as it’s now been quite a while. I’ve also added a changelog file and will keep it up to date as we move forward!
Thanks 😄