Update to v45 apparently didn't take place

62 views
Skip to first unread message

Filipe Castro

unread,
May 3, 2016, 12:44:09 PM5/3/16
to google-visua...@googlegroups.com
Hi,

I'd like to test the impact of the upgrade to v45 to my web site, however, even though it's supposed to be pushed into production, the API appears to be pulling v44 files.

For instance:

jsapi_compiled_default_module.js:

1.Request URL: https://www.gstatic.com/charts/44/js/jsapi_compiled_default_module.js

2.Request Method: GET

3.Status Code: 304

4.Remote Address: 216.58.222.3:443



Is this expected? If yes, how do I know I'm already using v45?

 

Thanks,

Filipe

Daniel LaLiberte

unread,
May 3, 2016, 1:14:00 PM5/3/16
to Google Visualization API
The v45 update is only for the old jsapi loader, so far.  I will have to separately update to v45 on the gstatic server.

--
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 google-visualizati...@googlegroups.com.
To post to this group, send email to google-visua...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAGCjd6n%2BCWP-mEz2NVEiN-f4M4retXaE%3Dkfxd3bzy6547hda7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.



--

Matt DeLand

unread,
May 5, 2016, 1:56:31 PM5/5/16
to Google Visualization API
Is there an ETA on the update?  
Also curious why the update doesn't go to the new server if that's the one we should be using (trying to move our code over now)`.

Thanks!


On Tuesday, May 3, 2016 at 10:14:00 AM UTC-7, Daniel LaLiberte wrote:
The v45 update is only for the old jsapi loader, so far.  I will have to separately update to v45 on the gstatic server.
On Tue, May 3, 2016 at 12:44 PM, Filipe Castro <filipe...@gmail.com> wrote:
Hi,

I'd like to test the impact of the upgrade to v45 to my web site, however, even though it's supposed to be pushed into production, the API appears to be pulling v44 files.

For instance:

jsapi_compiled_default_module.js:

1.Request URL: https://www.gstatic.com/charts/44/js/jsapi_compiled_default_module.js

2.Request Method: GET

3.Status Code: 304

4.Remote Address: 216.58.222.3:443



Is this expected? If yes, how do I know I'm already using v45?

 

Thanks,

Filipe

--
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 google-visualization-api+unsub...@googlegroups.com.



--

Daniel LaLiberte

unread,
May 5, 2016, 2:32:48 PM5/5/16
to Google Visualization API
The update of the old server was done because there were a couple security vulnerabilities that needed to be fixed.

I will make v45 available on the new server today or tomorrow.  We can switch 'current' to be v45 early next week.

On Thu, May 5, 2016 at 1:56 PM, Matt DeLand <ma...@wagonhq.com> wrote:
Is there an ETA on the update?  
Also curious why the update doesn't go to the new server if that's the one we should be using (trying to move our code over now)`.

Thanks!


On Tuesday, May 3, 2016 at 10:14:00 AM UTC-7, Daniel LaLiberte wrote:
The v45 update is only for the old jsapi loader, so far.  I will have to separately update to v45 on the gstatic server.
On Tue, May 3, 2016 at 12:44 PM, Filipe Castro <filipe...@gmail.com> wrote:
Hi,

I'd like to test the impact of the upgrade to v45 to my web site, however, even though it's supposed to be pushed into production, the API appears to be pulling v44 files.

For instance:

jsapi_compiled_default_module.js:

1.Request URL: https://www.gstatic.com/charts/44/js/jsapi_compiled_default_module.js

2.Request Method: GET

3.Status Code: 304

4.Remote Address: 216.58.222.3:443



Is this expected? If yes, how do I know I'm already using v45?

 

Thanks,

Filipe

--
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 google-visualizati...@googlegroups.com.



--

--
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 google-visualizati...@googlegroups.com.

To post to this group, send email to google-visua...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.

For more options, visit https://groups.google.com/d/optout.



--

Matt DeLand

unread,
May 5, 2016, 2:38:14 PM5/5/16
to google-visua...@googlegroups.com
Thanks!

--
You received this message because you are subscribed to a topic in the Google Groups "Google Visualization API" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-visualization-api/mPwox7nKEBs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-visualizati...@googlegroups.com.

To post to this group, send email to google-visua...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.

Daniel LaLiberte

unread,
Jun 6, 2016, 2:47:08 PM6/6/16
to Google Visualization API
V45 is now available on the gstatic server by loading either "upcoming" or "45" with google.charts.load().   If you are using the old jsapi loader, you should try using the new loader by switching your code to the following:

<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
  google.charts.load('upcoming', {packages: ['corechart']});
  google.charts.setOnLoadCallback(drawChart);
</script>
Please try this "upcoming" version since it will become "current" when I throw the switch, which I anticipate doing on June 13.  
If you notice problems with this version, please report it on this list.  Depending on the severity and whether we decide to fix it, you may want to switch to a frozen version.  The current version now is '44'.
This release includes fixes for the previously noted bugs, and one significant improvement.  Now you CAN call google.charts.load() multiple times to load additional packages, and the ChartWrapper can dynamically load packages for you depending on the type of chart. 


For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages