-
Notifications
You must be signed in to change notification settings - Fork 1.7k
TB Angular upgrade 20 #7141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TB Angular upgrade 20 #7141
Changes from all commits
97999ae
a91bf6a
5558a84
ec31705
cac87e0
967c3a6
fe2a27b
56cafad
9e5f690
a9017b6
8b8cb1e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,11 +17,10 @@ TensorBoard external dependencies that can be loaded in WORKSPACE files. | |
| """ | ||
|
|
||
| load("@bazel_tools//tools/build_defs/repo:java.bzl", "java_import_external") | ||
| load("@io_bazel_rules_webtesting//web:web.bzl", "platform_archive") | ||
| load("@io_bazel_rules_webtesting//web/versioned:browsers-0.3.3.bzl", "browser_repositories") | ||
| load("@io_bazel_rules_webtesting//web/versioned:browsers-0.3.4.bzl", "browser_repositories") | ||
| load("//third_party:fonts.bzl", "tensorboard_fonts_workspace") | ||
| load("//third_party:python.bzl", "tensorboard_python_workspace") | ||
| load("//third_party:js.bzl", "tensorboard_js_workspace") | ||
| load("//third_party:python.bzl", "tensorboard_python_workspace") | ||
| load("//third_party:rust.bzl", "tensorboard_rust_workspace") | ||
|
|
||
| def tensorboard_workspace(name = ""): | ||
|
|
@@ -41,78 +40,8 @@ def tensorboard_workspace(name = ""): | |
| actual = "@com_github_grpc_grpc//src/compiler:grpc_python_plugin", | ||
| ) | ||
|
|
||
| # We use our own browser definition based on the archives defined below, but | ||
| # this seems to be required by the rules_webtesting dependency. | ||
| browser_repositories(chromium = True) | ||
|
|
||
| # Chromium browser for multiple platforms, pinned to Chromium 84.0.4147.0. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| platform_archive( | ||
| name = "org_chromium_chromium_linux_x64", | ||
| licenses = ["notice"], # BSD 3-clause (maybe more?) | ||
| sha256 = "49b25bf32b797558eb7957ac7c60e065433bdef278f669291f71edd329505e27", | ||
| urls = [ | ||
| "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/768959/chrome-linux.zip", | ||
| ], | ||
| named_files = { | ||
| "CHROMIUM": "chrome-linux/chrome", | ||
| }, | ||
| ) | ||
|
|
||
| platform_archive( | ||
| name = "org_chromium_chromium_macos", | ||
| licenses = ["notice"], # BSD 3-clause (maybe more?) | ||
| sha256 = "f0c7dc5c26061e2f179d1cb9819cb786d2c37cca9f53155e57ac2b6ab60c5cbc", | ||
| urls = [ | ||
| "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Mac/768938/chrome-mac.zip", | ||
| ], | ||
| named_files = { | ||
| "CHROMIUM": "chrome-mac/Chromium.app/Contents/MacOS/chromium", | ||
| }, | ||
| ) | ||
|
|
||
| platform_archive( | ||
| name = "org_chromium_chromium_windows", | ||
| licenses = ["notice"], # BSD 3-clause (maybe more?) | ||
| sha256 = "f441a079046a35afc249a95d29356f33945c0a60b59236b9cf6db532c69dba6f", | ||
| urls = [ | ||
| "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Win_x64/768952/chrome-win.zip", | ||
| ], | ||
| named_files = { | ||
| "CHROMIUM": "chrome-win/chrome.exe", | ||
| }, | ||
| ) | ||
|
|
||
| # Chromium webdriver for multiple platforms. | ||
| platform_archive( | ||
| name = "org_chromium_chromedriver_linux_x64", | ||
| licenses = ["reciprocal"], # BSD 3-clause, ICU, MPL 1.1, libpng (BSD/MIT-like), Academic Free License v. 2.0, BSD 2-clause, MIT | ||
| sha256 = "71eafe087900dbca4bc0b354a1d172df48b31a4a502e21f7c7b156d7e76c95c7", | ||
| urls = [ | ||
| "https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip", | ||
| ], | ||
| named_files = {"CHROMEDRIVER": "chromedriver"}, | ||
| ) | ||
|
|
||
| platform_archive( | ||
| name = "org_chromium_chromedriver_macos", | ||
| licenses = ["reciprocal"], # BSD 3-clause, ICU, MPL 1.1, libpng (BSD/MIT-like), Academic Free License v. 2.0, BSD 2-clause, MIT | ||
| sha256 = "fd32a27148f44796a55f5ce3397015c89ebd9f600d9dda2bcaca54575e2497ae", | ||
| urls = [ | ||
| "https://chromedriver.storage.googleapis.com/2.41/chromedriver_mac64.zip", | ||
| ], | ||
| named_files = {"CHROMEDRIVER": "chromedriver"}, | ||
| ) | ||
|
|
||
| platform_archive( | ||
| name = "org_chromium_chromedriver_windows", | ||
| licenses = ["reciprocal"], # BSD 3-clause, ICU, MPL 1.1, libpng (BSD/MIT-like), Academic Free License v. 2.0, BSD 2-clause, MIT | ||
| sha256 = "a8fa028acebef7b931ef9cb093f02865f9f7495e49351f556e919f7be77f072e", | ||
| urls = [ | ||
| "https://chromedriver.storage.googleapis.com/2.38/chromedriver_win32.zip", | ||
| ], | ||
| named_files = {"CHROMEDRIVER": "chromedriver"}, | ||
| ) | ||
|
|
||
| java_import_external( | ||
| name = "org_apache_commons_lang3", | ||
| jar_sha256 = "de2e1dcdcf3ef917a8ce858661a06726a9a944f28e33ad7f9e08bea44dc3c230", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jasmine + Angular seems to mock out the timezone by default (to UTC).
Chrome 123 (Angular 20) icu upgrade changed the en-US date time separator from a
omma to the word at so Jan 5 2020 at 1:23 PM instead of comma