You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Google has stopped support for the Closure Library and has archived the project on GitHub. Based on a quick grep of the sources it looks like we are currently using the following portions of the library:
"I’ve noticed that Google has stopped supporting the Closure Library, and several parts of it are still in use within our project. I’d like to take ownership of refactoring and replacing these dependencies with native implementations or suitable modern alternatives to ensure long-term maintainability.
Here’s a quick plan for some of the replacements:
Replace goog.Timer with setTimeout or setInterval.
Use XMLHttpRequest or fetch to replace goog.net.XmlHttp.
Leverage the Web Crypto API or equivalent libraries (e.g., for Hmac and Sha1) to replace goog.crypt modules.
Google has stopped support for the Closure Library and has archived the project on GitHub. Based on a quick grep of the sources it looks like we are currently using the following portions of the library:
In most cases we can probably move to native implementations (setTimeout for Timer, XmlHttpRequest for goog.net.XmlHttp, etc.).
The text was updated successfully, but these errors were encountered: