From e47a8818821526da5bd9a7ae5722d954076766f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenzo=20S=C3=A1nchez=20Fraile?= Date: Tue, 18 Feb 2025 13:03:23 +0100 Subject: [PATCH 1/2] feat: TD-7106 Update td-cache version --- CHANGELOG.md | 6 ++++++ mix.exs | 3 ++- mix.lock | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e16d0b..c6ba494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [Unreleased] + +### Added + +- [TD-7106] Update `td-cache` version for add `data_structures` to implementation cache + ## [7.1.3] 2025-02-04 ### Added diff --git a/mix.exs b/mix.exs index 38859ca..1b1d783 100644 --- a/mix.exs +++ b/mix.exs @@ -34,7 +34,8 @@ defmodule TdCore.MixProject do {:elasticsearch, git: "https://github.com/Bluetab/elasticsearch-elixir.git"}, {:credo, "~> 1.7.11", only: [:dev, :test], runtime: false}, {:td_cluster, git: "https://github.com/Bluetab/td-cluster.git", tag: "7.1.0"}, - {:td_cache, git: "https://github.com/Bluetab/td-cache.git", tag: "7.0.1"}, + {:td_cache, + git: "https://github.com/Bluetab/td-cache.git", branch: "feature/td-7106", override: true}, {:td_df_lib, git: "https://github.com/Bluetab/td-df-lib.git", tag: "7.1.2"} ] end diff --git a/mix.lock b/mix.lock index 5cd18f1..a6566f6 100644 --- a/mix.lock +++ b/mix.lock @@ -27,7 +27,7 @@ "plug_crypto": {:hex, :plug_crypto, "2.1.0", "f44309c2b06d249c27c8d3f65cfe08158ade08418cf540fd4f72d4d6863abb7b", [:mix], [], "hexpm", "131216a4b030b8f8ce0f26038bc4421ae60e4bb95c5cf5395e1421437824c4fa"}, "redix": {:hex, :redix, "1.5.2", "ab854435a663f01ce7b7847f42f5da067eea7a3a10c0a9d560fa52038fd7ab48", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:nimble_options, "~> 0.5.0 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "78538d184231a5d6912f20567d76a49d1be7d3fca0e1aaaa20f4df8e1142dcb8"}, "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"}, - "td_cache": {:git, "https://github.com/Bluetab/td-cache.git", "3ad8f17056da5308fd7528b3d9f580a0a855765a", [tag: "7.0.1"]}, + "td_cache": {:git, "https://github.com/Bluetab/td-cache.git", "24c0550de7a62c275cbf42aad0d1e6f5e351e7c2", [branch: "feature/td-7106"]}, "td_cluster": {:git, "https://github.com/Bluetab/td-cluster.git", "910827d1b551f469346c4b17fde41267016b4616", [tag: "7.1.0"]}, "td_df_lib": {:git, "https://github.com/Bluetab/td-df-lib.git", "1ea6757b7fd731cb48df7d627b3c59fbc8af9d38", [tag: "7.1.2"]}, "telemetry": {:hex, :telemetry, "1.3.0", "fedebbae410d715cf8e7062c96a1ef32ec22e764197f70cda73d82778d61e7a2", [:rebar3], [], "hexpm", "7015fc8919dbe63764f4b4b87a95b7c0996bd539e0d499be6ec9d7f3875b79e6"}, From bad37e7077230b36642fe785ea85a9fa1a8913b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenzo=20S=C3=A1nchez=20Fraile?= Date: Tue, 18 Feb 2025 13:40:35 +0100 Subject: [PATCH 2/2] chore TD-7106 Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ba494..64c90c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### Added -- [TD-7106] Update `td-cache` version for add `data_structures` to implementation cache +- [TD-7106] Issues with customisation and sorting in implementations tables ## [7.1.3] 2025-02-04