From 04ed2937f5cd0c7874f9f7ed06ea12eb88ffb3da Mon Sep 17 00:00:00 2001 From: bradschwartz Date: Wed, 13 Dec 2023 12:09:32 -0800 Subject: [PATCH 1/4] Remove unused elixir_uuid that's breaking CI --- mix.lock | 1 - 1 file changed, 1 deletion(-) diff --git a/mix.lock b/mix.lock index 83e4cfe..d836524 100644 --- a/mix.lock +++ b/mix.lock @@ -2,7 +2,6 @@ "bunt": {:hex, :bunt, "0.2.1", "e2d4792f7bc0ced7583ab54922808919518d0e57ee162901a16a1b6664ef3b14", [:mix], [], "hexpm", "a330bfb4245239787b15005e66ae6845c9cd524a288f0d141c148b02603777a5"}, "credo": {:hex, :credo, "1.7.1", "6e26bbcc9e22eefbff7e43188e69924e78818e2fe6282487d0703652bc20fd62", [:mix], [{:bunt, "~> 0.2.1", [hex: :bunt, repo: "hexpm", optional: false]}, {:file_system, "~> 0.2.8", [hex: :file_system, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "e9871c6095a4c0381c89b6aa98bc6260a8ba6addccf7f6a53da8849c748a58a2"}, "earmark_parser": {:hex, :earmark_parser, "1.4.37", "2ad73550e27c8946648b06905a57e4d454e4d7229c2dafa72a0348c99d8be5f7", [:mix], [], "hexpm", "6b19783f2802f039806f375610faa22da130b8edc21209d0bff47918bb48360e"}, - "elixir_uuid": {:hex, :elixir_uuid, "1.2.1", "dce506597acb7e6b0daeaff52ff6a9043f5919a4c3315abb4143f0b00378c097", [:mix], [], "hexpm", "f7eba2ea6c3555cea09706492716b0d87397b88946e6380898c2889d68585752"}, "ex_doc": {:hex, :ex_doc, "0.30.9", "d691453495c47434c0f2052b08dd91cc32bc4e1a218f86884563448ee2502dd2", [:mix], [{:earmark_parser, "~> 1.4.31", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "d7aaaf21e95dc5cddabf89063327e96867d00013963eadf2c6ad135506a8bc10"}, "file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"}, "jason": {:hex, :jason, "1.4.1", "af1504e35f629ddcdd6addb3513c3853991f694921b1b9368b0bd32beb9f1b63", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fbb01ecdfd565b56261302f7e1fcc27c4fb8f32d56eab74db621fc154604a7a1"}, From 0a7f0eab10fb34c21d8fcd230d7e1175c39246c9 Mon Sep 17 00:00:00 2001 From: bradschwartz Date: Wed, 13 Dec 2023 13:11:16 -0800 Subject: [PATCH 2/4] Add proper owners --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 249306f..bb6a223 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -# add github group owner for uinta only +* @podium/engineers From 5c66a06bfb4e8a5d8303086435c4e7accc4dac58 Mon Sep 17 00:00:00 2001 From: bradschwartz Date: Wed, 13 Dec 2023 13:26:52 -0800 Subject: [PATCH 3/4] nil out redis_url and redix_config before tests, not after --- .tool-versions | 4 ++-- test/application_test.exs | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.tool-versions b/.tool-versions index 923b4ae..47d382e 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -elixir 1.15.6 -erlang 25.2 +elixir 1.13 +erlang 24.0.4 diff --git a/test/application_test.exs b/test/application_test.exs index 7ed03c1..81e7006 100644 --- a/test/application_test.exs +++ b/test/application_test.exs @@ -7,10 +7,8 @@ defmodule RedisMutex.ApplicationTest do doctest RedisMutex setup do - on_exit(fn -> - Application.put_env(:redis_mutex, :redis_url, nil) - Application.put_env(:redis_mutex, :redix_config, nil) - end) + Application.put_env(:redis_mutex, :redis_url, nil) + Application.put_env(:redis_mutex, :redix_config, nil) end describe "child_spec configuration" do From 4bf5688ba78816ed92bf5e02103ae52c72760348 Mon Sep 17 00:00:00 2001 From: bradschwartz Date: Wed, 13 Dec 2023 13:31:32 -0800 Subject: [PATCH 4/4] revert tool versions change --- .tool-versions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index 47d382e..923b4ae 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -elixir 1.13 -erlang 24.0.4 +elixir 1.15.6 +erlang 25.2