From f42ed77273ac9f248d0a3255355bde004c2b1268 Mon Sep 17 00:00:00 2001 From: benmandrew Date: Thu, 4 Apr 2024 14:22:03 +0200 Subject: [PATCH 1/3] Lower bound for docker_hub --- opam-health-check.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opam-health-check.opam b/opam-health-check.opam index 425aa64..cc0d4e4 100644 --- a/opam-health-check.opam +++ b/opam-health-check.opam @@ -46,7 +46,7 @@ depends: [ "lwt" "lwt_ppx" "uri" - "docker_hub" {>= "0.1.0"} + "docker_hub" {>= "0.1.0" & < "0.2.0"} "memtrace" "tls-lwt" {>= "0.16.0"} # activate conduit with TLS for slack webhooks "conf-libev" # Required for lwt to avoid hitting the limits of select(2) From 44619664262d40ba364f466eb103d3c3bbd7bd90 Mon Sep 17 00:00:00 2001 From: benmandrew Date: Fri, 5 Apr 2024 14:24:08 +0200 Subject: [PATCH 2/3] Fix opam-dune-lint --- dune-project | 6 ++++-- opam-health-check.opam | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dune-project b/dune-project index 64cc649..d6718c6 100644 --- a/dune-project +++ b/dune-project @@ -1,3 +1,5 @@ (lang dune 1.11) -(implicit_transitive_deps true) ; Change to false once in a while to see what we are really using - ; Too fragile to turn off by default though + +; Change to false once in a while to see what we are really using +; Too fragile to turn off by default though +(implicit_transitive_deps true) diff --git a/opam-health-check.opam b/opam-health-check.opam index cc0d4e4..824c2c0 100644 --- a/opam-health-check.opam +++ b/opam-health-check.opam @@ -12,7 +12,7 @@ tags: ["opam" "check"] build: ["dune" "build" "-p" name "-j" jobs] depends: [ "ocaml" {>= "4.10.0"} - "dune" {>= "1.0"} + "dune" {>= "1.11"} "tyxml" {>= "4.3.0"} "cohttp" "cohttp-lwt" From c9064ae43534e4e36d413d2609748cc7ffd2d481 Mon Sep 17 00:00:00 2001 From: benmandrew Date: Fri, 5 Apr 2024 14:27:59 +0200 Subject: [PATCH 3/3] Lower bounds --- opam-health-check.opam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opam-health-check.opam b/opam-health-check.opam index 824c2c0..5f29ff3 100644 --- a/opam-health-check.opam +++ b/opam-health-check.opam @@ -26,7 +26,7 @@ depends: [ "mirage-crypto-rng" {>= "0.11.0"} "mirage-crypto-rng-lwt" {>= "0.11.0"} "cmdliner" {>= "1.1.0"} - "prometheus-app" + "prometheus-app" {>= "1.2"} "fpath" "fmt" {>= "0.8.7"} "re" {>= "1.7.2"} @@ -47,7 +47,7 @@ depends: [ "lwt_ppx" "uri" "docker_hub" {>= "0.1.0" & < "0.2.0"} - "memtrace" + "memtrace" {>= "0.2.3"} "tls-lwt" {>= "0.16.0"} # activate conduit with TLS for slack webhooks "conf-libev" # Required for lwt to avoid hitting the limits of select(2) "conf-pixz" # TODO: Make it a library