Compare commits
	
		
			1 Commits
		
	
	
		
			0.9.10
			...
			15354d6004
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 15354d6004 | 
@@ -17,7 +17,7 @@ steps:
 | 
				
			|||||||
      - .mix
 | 
					      - .mix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- name: test
 | 
					- name: test
 | 
				
			||||||
  image: elixir:1.16.3-otp-26-alpine
 | 
					  image: elixir:1.17.0-otp-27-alpine
 | 
				
			||||||
  environment:
 | 
					  environment:
 | 
				
			||||||
    TEST_DATABASE_URL: ecto://postgres:postgres@database/cannery_test
 | 
					    TEST_DATABASE_URL: ecto://postgres:postgres@database/cannery_test
 | 
				
			||||||
    HOST: testing.example.tld
 | 
					    HOST: testing.example.tld
 | 
				
			||||||
@@ -26,8 +26,8 @@ steps:
 | 
				
			|||||||
    MIX_ENV: test
 | 
					    MIX_ENV: test
 | 
				
			||||||
  commands:
 | 
					  commands:
 | 
				
			||||||
  - apk add --no-cache build-base npm git
 | 
					  - apk add --no-cache build-base npm git
 | 
				
			||||||
  - mix local.rebar --force --if-missing
 | 
					  - mix local.rebar --force
 | 
				
			||||||
  - mix local.hex --force --if-missing
 | 
					  - mix local.hex --force
 | 
				
			||||||
  - mix deps.get
 | 
					  - mix deps.get
 | 
				
			||||||
  - npm set cache .npm
 | 
					  - npm set cache .npm
 | 
				
			||||||
  - npm --prefix ./assets ci --no-audit --prefer-offline
 | 
					  - npm --prefix ./assets ci --no-audit --prefer-offline
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,3 @@
 | 
				
			|||||||
elixir 1.16.3-otp-26
 | 
					elixir 1.17.0-otp-27
 | 
				
			||||||
erlang 26.0
 | 
					erlang 27.0
 | 
				
			||||||
nodejs 22.3.0
 | 
					nodejs 22.3.0
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,6 @@
 | 
				
			|||||||
 | 
					# v0.10.0
 | 
				
			||||||
 | 
					- Update deps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# v0.9.10
 | 
					# v0.9.10
 | 
				
			||||||
- Fix issue with logger failing on oban exceptions
 | 
					- Fix issue with logger failing on oban exceptions
 | 
				
			||||||
- Fix an issue with emails not being able to be sent
 | 
					- Fix an issue with emails not being able to be sent
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
FROM elixir:1.16.3-otp-26-alpine AS build
 | 
					FROM elixir:1.17.0-otp-27-alpine AS build
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# install build dependencies
 | 
					# install build dependencies
 | 
				
			||||||
RUN apk add --no-cache build-base npm git python3
 | 
					RUN apk add --no-cache build-base npm git python3
 | 
				
			||||||
@@ -7,8 +7,8 @@ RUN apk add --no-cache build-base npm git python3
 | 
				
			|||||||
WORKDIR /app
 | 
					WORKDIR /app
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# install hex + rebar
 | 
					# install hex + rebar
 | 
				
			||||||
RUN mix local.hex --force && \
 | 
					RUN mix local.rebar --force &&
 | 
				
			||||||
    mix local.rebar --force
 | 
					    mix local.hex --force
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# set build ENV
 | 
					# set build ENV
 | 
				
			||||||
ENV MIX_ENV=prod
 | 
					ENV MIX_ENV=prod
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								mix.exs
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								mix.exs
									
									
									
									
									
								
							@@ -4,8 +4,8 @@ defmodule Cannery.MixProject do
 | 
				
			|||||||
  def project do
 | 
					  def project do
 | 
				
			||||||
    [
 | 
					    [
 | 
				
			||||||
      app: :cannery,
 | 
					      app: :cannery,
 | 
				
			||||||
      version: "0.9.10",
 | 
					      version: "0.10.0",
 | 
				
			||||||
      elixir: "1.16.3",
 | 
					      elixir: "1.17.0",
 | 
				
			||||||
      elixirc_paths: elixirc_paths(Mix.env()),
 | 
					      elixirc_paths: elixirc_paths(Mix.env()),
 | 
				
			||||||
      start_permanent: Mix.env() == :prod,
 | 
					      start_permanent: Mix.env() == :prod,
 | 
				
			||||||
      aliases: aliases(),
 | 
					      aliases: aliases(),
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user