Skip to content

Commit

Permalink
📦 Update validator devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 20, 2024
1 parent c6284f1 commit d77a80f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
50 changes: 25 additions & 25 deletions validator/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "com_google_absl",
sha256 = "050071396c0483035c9545daaaf953a47449b971978631db040cd31bcb2d3dde",
strip_prefix = "abseil-cpp-fc44fa053cc91193d2bb60fb9356bcecb301242e",
urls = ["https://github.com/abseil/abseil-cpp/archive/fc44fa053cc91193d2bb60fb9356bcecb301242e.zip"],
sha256 = "5698a9ef1ee802afcde24f0f815edb3ae4ef8d5f64440a7cad9a4bc2d31d2a71",
strip_prefix = "abseil-cpp-d073d80e90b747ef9ef050f1784bc1c02c0a5bf3",
urls = ["https://github.com/abseil/abseil-cpp/archive/d073d80e90b747ef9ef050f1784bc1c02c0a5bf3.zip"],
)

http_archive(
name = "com_google_googletest",
sha256 = "c83f69fa8cb7a503d3ae9f736cf679b0846772b1ae955c63133520b749491a7c",
strip_prefix = "googletest-8a6feabf04bec8fb125e0df0ad1195c42350725f",
urls = ["https://github.com/google/googletest/archive/8a6feabf04bec8fb125e0df0ad1195c42350725f.zip"], # 2019-01-07
sha256 = "ab8890fba4068efad5edd214dfb46c6b0c6af84feef06dde433d5607334de718",
strip_prefix = "googletest-5df0241ea4880e5a846775d3efc8b873f7b36c31",
urls = ["https://github.com/google/googletest/archive/5df0241ea4880e5a846775d3efc8b873f7b36c31.zip"], # 2019-01-07
)

http_archive(
name = "com_google_protobuf",
sha256 = "750428a8c7f1a75a8e6027e30b46a1c2f0475205f44563589736e0f279b938c0",
strip_prefix = "protobuf-f0dc78d7e6e331b8c6bb2d5283e06aa26883ca7c",
urls = ["https://github.com/protocolbuffers/protobuf/archive/f0dc78d7e6e331b8c6bb2d5283e06aa26883ca7c.zip"],
sha256 = "b0b3072ade0702a4653022b6576e846bb4ccf51221eeeddf898e974b3ef38175",
strip_prefix = "protobuf-8ca628db619b6de99856ab016ff6b1908ec50272",
urls = ["https://github.com/protocolbuffers/protobuf/archive/8ca628db619b6de99856ab016ff6b1908ec50272.zip"],
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
Expand All @@ -34,29 +34,29 @@ http_archive(

http_archive(
name = "com_googlesource_code_re2",
sha256 = "e9e9cd5902c711131825f7dd45dfdb063555171d8d26300b336aace5f97215ef",
strip_prefix = "re2-87d09ef4f0307e53f1d3796843f4b90d41cfccaa",
urls = ["https://github.com/google/re2/archive/87d09ef4f0307e53f1d3796843f4b90d41cfccaa.zip"],
sha256 = "94152a1258a4e80f487ce9ae665ed87076f228c0695d57ad5d8712c7f8dd4975",
strip_prefix = "re2-f9550c3f7207f946a45bbccd1814b12b136aae72",
urls = ["https://github.com/google/re2/archive/f9550c3f7207f946a45bbccd1814b12b136aae72.zip"],
)

# rules_cc defines rules for generating C++ code from Protocol Buffers.
http_archive(
name = "rules_cc",
sha256 = "97a7c3f2f601a0d0cc9d26a4173d65e4b7028776a66e2e4fc736e49a5300a483",
strip_prefix = "rules_cc-b039a551a7b41b70e426e4a3cd60346c89db9b6c",
urls = ["https://github.com/bazelbuild/rules_cc/archive/b039a551a7b41b70e426e4a3cd60346c89db9b6c.zip"],
sha256 = "ad66eb77e008ff5a1bbfba68a43cb3cf079c2ea89d2b1f7fddabd6632ff6498d",
strip_prefix = "rules_cc-833f17060cb7c68778e79f121172ed93b10ca46e",
urls = ["https://github.com/bazelbuild/rules_cc/archive/833f17060cb7c68778e79f121172ed93b10ca46e.zip"],
)
load("@rules_cc//cc:repositories.bzl", "rules_cc_dependencies")
rules_cc_dependencies()

# rules_proto defines abstract rules for building Protocol Buffers.
http_archive(
name = "rules_proto",
sha256 = "36e4de702036d31b649f96519676509c4027dc10cc3c97f0335c199b305d45b7",
strip_prefix = "rules_proto-8aa1e67c09bc8df20df33886909d44129cfb7e63",
sha256 = "91a59b8353a14a610a50a623ff1d1a9bbc56a85c4a540a0d05f619ef1b927c10",
strip_prefix = "rules_proto-d4c3498677e7fbda6f717585276ea4d8b75acec0",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/8aa1e67c09bc8df20df33886909d44129cfb7e63.tar.gz",
"https://github.com/bazelbuild/rules_proto/archive/8aa1e67c09bc8df20df33886909d44129cfb7e63.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/d4c3498677e7fbda6f717585276ea4d8b75acec0.tar.gz",
"https://github.com/bazelbuild/rules_proto/archive/d4c3498677e7fbda6f717585276ea4d8b75acec0.tar.gz",
],
)
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
Expand All @@ -65,9 +65,9 @@ rules_proto_toolchains()

http_archive(
name = "emsdk",
sha256 = "836e9dc2ea0df6e9369f58fcb884df0447304a089cdbef2cd06a28cf2d06b53d",
strip_prefix = "emsdk-fc645b7626ebf86530dbd82fbece74d457e7ae07/bazel",
url = "https://github.com/emscripten-core/emsdk/archive/fc645b7626ebf86530dbd82fbece74d457e7ae07.tar.gz",
sha256 = "6a7ea3daae16257bfc62330b76ae75369a3124de37bef9695e58e7feded68f7b",
strip_prefix = "emsdk-c18280c8f3f8f088b4337f0f6a5fdb2be0d67179/bazel",
url = "https://github.com/emscripten-core/emsdk/archive/c18280c8f3f8f088b4337f0f6a5fdb2be0d67179.tar.gz",
)

load("@emsdk//:deps.bzl", emsdk_deps = "deps")
Expand All @@ -78,9 +78,9 @@ emsdk_emscripten_deps(emscripten_version = "2.0.31")

http_archive(
name = "com_google_javascript_closure_library",
sha256 = "d0935e88b306fcaa37ac99031ce8a19b18e27396603eeb8f984233203768a406",
strip_prefix = "closure-library-e896a74c48695b2bfe0f586f13870c0bc50ce99e",
urls = ["https://github.com/google/closure-library/archive/e896a74c48695b2bfe0f586f13870c0bc50ce99e.tar.gz"],
sha256 = "90235e587dbc968a854ab11ac358c3a0fa57b4c121f540880419203dfe3cfa46",
strip_prefix = "closure-library-7818ff7dc0b53555a7fb3c3427e6761e88bde3a2",
urls = ["https://github.com/google/closure-library/archive/7818ff7dc0b53555a7fb3c3427e6761e88bde3a2.tar.gz"],
)

http_archive(
Expand Down
2 changes: 1 addition & 1 deletion validator/js/gulpjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"devDependencies": {
"gulp": "4.0.2",
"mocha": "10.2.0"
"mocha": "10.3.0"
},
"scripts": {
"test": " ./node_modules/mocha/bin/mocha",
Expand Down
4 changes: 2 additions & 2 deletions validator/testdata/feature_tests/regexps.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
The first two examples are valid, the 3rd one is not.
-->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/../bootstrap/3.3.7/all.min.css">
<!--
Expand Down

0 comments on commit d77a80f

Please sign in to comment.