diff --git a/.gitlab/ci/templates.yml b/.gitlab/ci/templates.yml index bc7740d7c21533b770f8d546c4d668fcf8660453..1d8a30dbf2a9c035df481d12f2d15baed555ba5b 100644 --- a/.gitlab/ci/templates.yml +++ b/.gitlab/ci/templates.yml @@ -2,7 +2,7 @@ variables: # /!\ CI_REGISTRY is overriden to use a private Docker registry mirror in AWS ECR # in GitLab namespaces `nomadic-labs` and `tezos` ## This value MUST be the same as `opam_repository_tag` in `scripts/version.sh` - build_deps_image_version: d19f422fc819da8d82d2214e1105ca3867f0e1eb + build_deps_image_version: a999d04a567ffcb1d9f018ed12f1cca91948663c build_deps_image_name: "${CI_REGISTRY}/tezos/opam-repository" GIT_STRATEGY: fetch GIT_DEPTH: "1" diff --git a/manifest/main.ml b/manifest/main.ml index 1d6dadfff37dd656f3d778f452a1d819e6ac7a35..b60782a2c5fa8c583a3ac988e28a2920202f45b8 100644 --- a/manifest/main.ml +++ b/manifest/main.ml @@ -187,7 +187,7 @@ let json_data_encoding = external_lib ~js_compatible:true "json-data-encoding" - V.(at_least "0.11" && less_than "0.12") + V.(at_least "0.11" && less_than "0.13") let logs = external_lib "logs" V.True diff --git a/opam/tezos-openapi.opam b/opam/tezos-openapi.opam index f56005072e343be0808705a3b03ce2629d2a17f6..68689509d81d5de7a98bdd74a8743f69dd1414c7 100644 --- a/opam/tezos-openapi.opam +++ b/opam/tezos-openapi.opam @@ -10,7 +10,7 @@ license: "MIT" depends: [ "dune" { >= "3.0" } "ezjsonm" { >= "1.1.0" } - "json-data-encoding" { >= "0.11" & < "0.12" } + "json-data-encoding" { >= "0.11" & < "0.13" } "tezt" ] build: [ diff --git a/scripts/version.sh b/scripts/version.sh index c34cac8a677b9ceec642eb2b1375260cd2db2423..d3fd7ab73d0a13b69d5e73baf67cfa1e82e149af 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -20,12 +20,12 @@ export recommended_node_version=14.12.0 ## full_opam_repository is a commit hash of the public OPAM repository, i.e. ## https://github.com/ocaml/opam-repository -export full_opam_repository_tag=187686a4f13743104fb272962979e96cdbf6e5a7 +export full_opam_repository_tag=231273e96a862099add322413688f896afb02464 ## opam_repository is an additional, tezos-specific opam repository. ## This value MUST be the same as `build_deps_image_version` in `.gitlab/ci/templates.ym export opam_repository_url=https://gitlab.com/tezos/opam-repository -export opam_repository_tag=d19f422fc819da8d82d2214e1105ca3867f0e1eb +export opam_repository_tag=a999d04a567ffcb1d9f018ed12f1cca91948663c export opam_repository_git=$opam_repository_url.git export opam_repository=$opam_repository_git\#$opam_repository_tag