Compare commits

..

5 Commits

Author SHA1 Message Date
Joao P Dubas
ae004baa9e feat: upgrade deps
All checks were successful
continuous-integration/drone/pr Build is passing
2024-02-11 05:16:29 +00:00
Joao P Dubas
1f96d086d6 feat: upgrade elixir/erlang runtimes
* elixir: 1.15.7 to 1.16.1
* erlang: 26.1.2 to 26.2.2
2024-02-11 05:16:21 +00:00
4d09f20e69 chore(deps): update elixir docker tag (#56)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| elixir | final | minor | `1.15.7-slim` -> `1.16.0-slim` |
| [elixir](https://elixir-lang.org/) ([source](https://github.com/elixir-lang/elixir)) |  | minor | `1.15.7` -> `1.16.1` |

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTcuMyIsInVwZGF0ZWRJblZlciI6IjM3LjE2Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Reviewed-on: #56
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2024-01-31 11:42:10 +00:00
42ae54b17e chore(deps): update dependency sobelow to ~> 0.13 (#51)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [sobelow](https://hex.pm/packages/sobelow) | minor | `~> 0.12` -> `~> 0.13` |

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTcuMyIsInVwZGF0ZWRJblZlciI6IjM1LjExNy4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Reviewed-on: #51
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2023-11-25 16:58:29 +00:00
93e1719d0d chore(deps): update postgres docker tag to v16.1 (#52)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| postgres | minor | `16.0-alpine` -> `16.1-alpine` |

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTcuMyIsInVwZGF0ZWRJblZlciI6IjM1LjExNy4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Reviewed-on: #52
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2023-11-24 15:13:48 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
---
services:
db:
image: 'postgres:16.0-alpine'
image: 'postgres:16.1-alpine'
hostname: &db_host db
init: true
environment:

View File

@ -48,7 +48,7 @@ defmodule Wabanex.MixProject do
{:plug_cowboy, "~> 2.7.0"},
{:postgrex, "~> 0.17.0"},
{:prom_ex, "~> 1.9.0"},
{:sobelow, "~> 0.12", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false},
{:telemetry_metrics, "~> 0.6.0"},
{:telemetry_poller, "~> 1.0.0"}
]