From 6a2aa4d51ee966a03d836439cc37c06bd95f1e44 Mon Sep 17 00:00:00 2001 From: Chase Granberry Date: Sat, 22 Jul 2023 11:35:22 -0700 Subject: [PATCH 1/2] feat: logs handle_in messages as info (#624) --- lib/realtime_web.ex | 2 +- mix.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/realtime_web.ex b/lib/realtime_web.ex index 96420b755..63f2ccc45 100644 --- a/lib/realtime_web.ex +++ b/lib/realtime_web.ex @@ -84,7 +84,7 @@ defmodule RealtimeWeb do def channel do quote do - use Phoenix.Channel + use Phoenix.Channel, log_join: :info, log_handle_in: :info import RealtimeWeb.Gettext end end diff --git a/mix.exs b/mix.exs index 6bc260171..134296c31 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do def project do [ app: :realtime, - version: "2.18.1", + version: "2.19.0", elixir: "~> 1.14.0", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, From ba2fb8b3d684064e0745455032c1424888e1f04f Mon Sep 17 00:00:00 2001 From: Chase Granberry Date: Sat, 22 Jul 2023 11:43:11 -0700 Subject: [PATCH 2/2] fix: upgrade flyctl to 1.4 (#616) * fix: upgrade flyctl to 1.4 * fix: bump version --- .github/workflows/prod.yml | 2 +- .github/workflows/staging.yml | 2 +- .github/workflows/staging_supabench.yml | 6 +++--- mix.exs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 9e8a4b69d..4133f81ce 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - - uses: superfly/flyctl-actions@1.1 + - uses: superfly/flyctl-actions@1.4 with: args: "-c deploy/fly/prod.toml deploy --build-arg SLOT_NAME_SUFFIX=${GITHUB_SHA::7}" env: diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 5f0f1b165..389906bae 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -11,6 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: superfly/flyctl-actions@1.1 + - uses: superfly/flyctl-actions@1.4 with: args: "-c deploy/fly/staging.toml deploy --build-arg SLOT_NAME_SUFFIX=${GITHUB_SHA::7}" diff --git a/.github/workflows/staging_supabench.yml b/.github/workflows/staging_supabench.yml index ba73d47a1..cc3a6cca5 100644 --- a/.github/workflows/staging_supabench.yml +++ b/.github/workflows/staging_supabench.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: superfly/flyctl-actions@1.1 + - uses: superfly/flyctl-actions@1.4 with: args: "-c deploy/fly/qa.toml scale count 1" - - uses: superfly/flyctl-actions@1.1 + - uses: superfly/flyctl-actions@1.4 with: args: "-c deploy/fly/qa.toml deploy --build-arg SLOT_NAME_SUFFIX=${GITHUB_SHA::7}" - - uses: superfly/flyctl-actions@1.1 + - uses: superfly/flyctl-actions@1.4 if: always() with: args: "-c deploy/fly/qa.toml scale count 0" diff --git a/mix.exs b/mix.exs index 134296c31..46e95cf3d 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do def project do [ app: :realtime, - version: "2.19.0", + version: "2.19.1", elixir: "~> 1.14.0", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,