Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Global bazelrc file, see https://docs.bazel.build/versions/master/guide.html#bazelrc.

# Reset trust store to default behavior
startup --host_jvm_args=-Djavax.net.ssl.trustStoreType=JKS
startup --host_jvm_args=-Djavax.net.ssl.trustStore=$JAVA_HOME/lib/security/cacerts
startup --host_jvm_args=-Djavax.net.ssl.trustStorePassword=changeit

# Disable hostname and certificate validation (unsafe, but functional)
startup --host_jvm_args=-Djdk.internal.httpclient.disableHostnameVerification=true
startup --host_jvm_args=-Dcom.sun.net.ssl.checkRevocation=false
startup --host_jvm_args=-Dsun.security.ssl.allowUnsafeRenegotiation=true
startup --host_jvm_args=-Dsun.security.ssl.allowLegacyHelloMessages=true

# Use strict action env to prevent leaks of env vars.
build --incompatible_strict_action_env

Expand Down
2 changes: 1 addition & 1 deletion src/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"typeface-roboto-mono": "^0.0.75",
"typeface-walter-turncoat": "^1.1.13",
"universal-cookie": "^4.0.4",
"vega": "5.23.0",
"vega": "6.2.0",
"vega-embed": "^6.15.0",
"vega-lite": "5.6.1",
"vega-scale": "^7.0.0",
Expand Down
Loading