From f7c6f291a1166b09e8fc20eb0c2416a652543e59 Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Thu, 5 May 2022 07:20:17 -0600 Subject: [PATCH] Upgrade dependencies (#56) Upgrade rules_bazel_integration_test to 0.7.0 Upgrade bazel-skylib to 1.2.1 Upgrade bazel-starlib to 0.7.0 --- WORKSPACE | 6 +++--- swiftformat/deps.bzl | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index d2b24af..eafe607 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -53,10 +53,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "contrib_rules_bazel_integration_test", - sha256 = "ab9bbf776b5874f8a02f639fec2fbb3e3eefa4403cf861ae00d7c7e4d757f9ff", - strip_prefix = "rules_bazel_integration_test-0.6.2", + sha256 = "24e5e8f388bec2da0975cfda6073ed0174a4f62cb874b5dc8037c98faa6acdfd", + strip_prefix = "rules_bazel_integration_test-0.7.0", urls = [ - "http://github.com/bazel-contrib/rules_bazel_integration_test/archive/v0.6.2.tar.gz", + "http://github.com/bazel-contrib/rules_bazel_integration_test/archive/v0.7.0.tar.gz", ], ) diff --git a/swiftformat/deps.bzl b/swiftformat/deps.bzl index 44999ea..3783283 100644 --- a/swiftformat/deps.bzl +++ b/swiftformat/deps.bzl @@ -9,19 +9,19 @@ def swiftformat_rules_dependencies(): http_archive, name = "bazel_skylib", urls = [ - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", ], - sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d", + sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", ) maybe( http_archive, name = "cgrindel_bazel_starlib", - sha256 = "8ac3e45dc237121283d70506497ec39feb5092af9a57bfe34f7abf4a6bd2ebaa", - strip_prefix = "bazel-starlib-0.6.0", + sha256 = "f61c83d78754ce3abe562fbac54b3a055e4c80c209f5de7938f1773312fe2cfe", + strip_prefix = "bazel-starlib-0.7.0", urls = [ - "http://github.com/cgrindel/bazel-starlib/archive/v0.6.0.tar.gz", + "http://github.com/cgrindel/bazel-starlib/archive/v0.7.0.tar.gz", ], )