Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FeatureFlagService] Update dependencies #992

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ release.
([#972](https://github.com/open-telemetry/opentelemetry-demo/pull/972))
* Update frontendproxy's env for minimal
([#983](https://github.com/open-telemetry/opentelemetry-demo/pull/983))
* [FeatureFlagService] Update dependencies
([#992](https://github.com/open-telemetry/opentelemetry-demo/pull/992))

## 1.4.0

Expand Down
6 changes: 3 additions & 3 deletions src/featureflagservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# - https://pkgs.org/ - resource for finding needed packages
# - Ex: hexpm/elixir:1.14.3-erlang-25.2.3-debian-buster-20230202-slim
#
ARG ELIXIR_VERSION=1.14.5
ARG OTP_VERSION=26.0
ARG DEBIAN_VERSION=buster-20230227-slim
ARG ELIXIR_VERSION=1.15.4
ARG OTP_VERSION=26.0.2
ARG DEBIAN_VERSION=buster-20230612-slim

ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
Expand Down
30 changes: 15 additions & 15 deletions src/featureflagservice/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ defmodule Featureflagservice.MixProject do
def project do
[
app: :featureflagservice,
version: "0.1.0",
elixir: "~> 1.12",
version: "1.4.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),
compilers: [] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
Expand Down Expand Up @@ -42,27 +42,27 @@ defmodule Featureflagservice.MixProject do
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.6.9"},
{:phoenix, "~> 1.6.16"},
{:phoenix_ecto, "~> 4.4"},
{:ecto_sql, "~> 3.10"},
{:postgrex, ">= 0.0.0"},
{:postgrex, "~> 0.17.2"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.17.5"},
{:floki, ">= 0.30.0", only: :test},
{:esbuild, "~> 0.4", runtime: Mix.env() == :dev},
{:floki, "~> 0.34.3", only: :test},
{:esbuild, "~> 0.7", runtime: Mix.env() == :dev},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.18"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
{:gettext, "~> 0.22"},
{:jason, "~> 1.4"},
{:plug_cowboy, "~> 2.6"},

{:grpcbox, "~> 0.15.0", override: true},
{:opentelemetry_exporter, "~> 1.4.0"},
{:opentelemetry_grpcbox, "~> 0.1"},
{:grpcbox, "~> 0.16.0", override: true},
{:opentelemetry_exporter, "~> 1.6.0"},
{:opentelemetry_grpcbox, "~> 0.2"},
{:opentelemetry_api, "~> 1.2.1"},
{:opentelemetry, "~> 1.2.1"},
{:opentelemetry_phoenix, "~> 1.0.0"},
{:opentelemetry, "~> 1.3.0"},
{:opentelemetry_phoenix, "~> 1.1.1"},
{:opentelemetry_ecto, "~> 1.1.1"}
]
end
Expand Down
Loading