Hi GWT dev guy, You should not have been using a uds url directly. If you were using loading the jsapi loader from http://www.google.com/jsapi, then you should be seeing a redirect to the new loader at http://www.gstatic.com/charts/loader.js. Perhaps you are using a local copy of the jsapi loader?
On Thu, Jul 2, 2020 at 4:27 AM GWT dev <[email protected]> wrote: > Hello, > > My application (GWT language) is using this URL. > https://www.google.com/uds/?file=visualization&v=1&packages=corechart > But this link does not work anymore since yesterday. > > Would you have a solution for that ? > Thanks in advance, > > On Saturday, June 27, 2020 at 8:41:20 AM UTC+2, Daniel LaLiberte wrote: >> >> The jsapi loader that you have been using is now being redirected to the >> new loader, and version '1' is the latest stable version, which we call >> 'current' in the updated realm. We can't go back to the old loader and >> prior versions before we started freezing at version 41. The entire server >> that older versions were served from is being turned off, finally. >> >> Please update your loader code at your earliest convenience based on the >> referenced documentation. You might find version '45.2' is closed to the >> last version available previously. >> >> Regarding the error you are seeing, I can't tell what might be happening >> without seeing a lot more of your code. It is usually best to link >> directly to the page that is failing so we can see the failure in the >> debugger. >> >> >> >> On Sat, Jun 27, 2020 at 2:14 AM Shanmuga Srinivas <[email protected]> >> wrote: >> >>> Hi Daniel, >>> >>> Good morning! >>> >>> We are using Google Visualization API for line charts in our >>> application. From 24th June 2020, we are getting an error "*cannot >>> read property 'datatable' of undefined *" in chrome 83 version browser >>> , but the same code works fine in IE 11 version. We appreciate if you can >>> provide some inputs to resolve such differences. Please find below the code >>> we are using in the application: >>> >>> In Html: >>> >>> <script type="text/javascript"> >>> google.load("visualization","1" { >>> packages :["corecharts", "annotationcharts"] >>> }); >>> $(document).ready(function(){ >>> initGraph(); >>> }); >>> </script> >>> In Js file: >>> >>> function initGraph(){ >>> data = new google.visualization.DataTable(); >>> // rest of the code follows >>> >>> Thanks & Regards, >>> Srinivas Shanmuga .G >>> >>> On Friday, February 1, 2019 at 3:38:02 AM UTC+5:30, Daniel LaLiberte >>> wrote: >>>> >>>> Since 2015, we started releasing new versions of Google Charts on a new >>>> server, and the old server has remained static ever since then. However, >>>> the old server will be turned off entirely at the end of this quarter, so >>>> that means everyone using any versions on the old server will be forced to >>>> migrate to the new server. >>>> >>>> Fortunately, we will be able to automatically redirect all requests to >>>> the new server, which means that all versions of Google Charts that have >>>> been loaded via the jsapi loader will effectively be automatically updated >>>> to the current version, which is v46. >>>> >>>> So you won't have to make any changes to your code to be affected by >>>> this update, but you may need to update how you are using Google Charts due >>>> to differences in the versions, or you may select one of the other versions >>>> that are available. >>>> >>>> You can check how your charts will appear once this update occurs by >>>> following the instructions on how to update your loader at: >>>> https://developers.google.com/chart/interactive/docs/basic_load_libs#update-library-loader-code >>>> >>>> The last version released to the server where jsapi loads from was v41, >>>> and the same version (or nearly so) was also frozen on the new server. It >>>> might be best to try that version, if v46 is not working for you. Other >>>> versions you can use on the new server are 42, 43, 44, 45, 45.1, 45.2, and >>>> 46. You can review all the changes in each subsequent version at: >>>> https://developers.google.com/chart/interactive/docs/release_notes#february-23-2015 >>>> >>>> Also, in preparation for this turndown of the old server, there will be >>>> short periods of outages, maybe up to a few hours, during which the UDS >>>> server is "drained" of all requests to determine if there are any further >>>> unknowns. You may have noticed one already. You can avoid these outages >>>> by updating to the new loader, as linked to above. >>>> >>>> -- >>>> Daniel LaLiberte >>>> <https://plus.google.com/100631381223468223275?prsrc=2> >>>> [email protected] Cambridge MA >>>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Google Visualization API" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/google-visualization-api/a16ddefa-b05a-4496-b0ac-e22cbda8c94bo%40googlegroups.com >>> <https://groups.google.com/d/msgid/google-visualization-api/a16ddefa-b05a-4496-b0ac-e22cbda8c94bo%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> >> >> >> -- >> Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> >> [email protected] Cambridge MA >> >> -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/3eef7a7e-5202-4a18-9c4c-7bede4c167cao%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/3eef7a7e-5202-4a18-9c4c-7bede4c167cao%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> Cambridge MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNg0QrcyDuyWHO0oD%3DYemLG9yGqdq_S%3D7Q%3DZEVw7540OA%40mail.gmail.com.
