Skip to content

Commit ea923c7

Browse files
committed
build(deps): bump fusionauth to 1.55.1
1 parent 9c44c50 commit ea923c7

File tree

6 files changed

+1410
-4
lines changed

6 files changed

+1410
-4
lines changed

.github/workflows/e2e-test-fusionauth-latest-ios-matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch:
1212

1313
env:
14-
fusionauth-docker-image-version: "1.54.0"
14+
fusionauth-docker-image-version: "1.55.1"
1515

1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:

.github/workflows/e2e-test-fusionauth-matrix-ios-latest.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This workflow performs a full End 2 End test of the App
2-
# It includes all FusionAuth versions of the past 6 months.
2+
# It includes all FusionAuth versions of the past ~6 months.
33
# And uses the latest iOS Target API level requirements.
44

55
name: E2E Test with FusionAuth supported versions
@@ -39,8 +39,7 @@ jobs:
3939
swift: [ "5.10.1" ]
4040
os: [ "macos-14" ]
4141
postgresql-version: [ "16" ]
42-
fusionauth-docker-image-version: [ "1.47.1", "1.48.3", "1.49.2", "1.50.1", "1.51.2", "1.52.1", "1.53.3", "1.54.0" ]
43-
42+
fusionauth-docker-image-version: [ "1.47.1", "1.48.3", "1.49.2", "1.50.1", "1.51.2", "1.52.1", "1.53.3", "1.54.0", "1.55.1" ]
4443

4544
# Steps represent a sequence of tasks that will be executed as part of the job
4645
steps:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
POSTGRES_USER=postgres
2+
POSTGRES_PASSWORD=postgres
3+
DATABASE_USERNAME=fusionauth
4+
DATABASE_PASSWORD=hkaLBM3RVnyYeYeqE3WI1w2e4Avpy0Wd5O3s3
5+
OPENSEARCH_JAVA_OPTS="-Xms512m -Xmx512m"
6+
FUSIONAUTH_APP_MEMORY=512M
7+
FUSIONAUTH_APP_RUNTIME_MODE=development
8+
FUSIONAUTH_APP_KICKSTART_FILE=/usr/local/fusionauth/kickstart/kickstart.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
services:
2+
db:
3+
image: postgres:16.0-bookworm
4+
environment:
5+
PGDATA: /var/lib/postgresql/data/pgdata
6+
POSTGRES_USER: ${POSTGRES_USER}
7+
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
8+
healthcheck:
9+
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
10+
interval: 5s
11+
timeout: 5s
12+
retries: 5
13+
networks:
14+
- db_net
15+
restart: unless-stopped
16+
volumes:
17+
- db_data:/var/lib/postgresql/data
18+
19+
search:
20+
image: opensearchproject/opensearch:2.11.0
21+
environment:
22+
cluster.name: fusionauth
23+
discovery.type: single-node
24+
node.name: search
25+
plugins.security.disabled: true
26+
bootstrap.memory_lock: true
27+
OPENSEARCH_JAVA_OPTS: ${OPENSEARCH_JAVA_OPTS}
28+
healthcheck:
29+
interval: 10s
30+
retries: 80
31+
test: curl --write-out 'HTTP %{http_code}' --fail --silent --output /dev/null http://localhost:9200/
32+
restart: unless-stopped
33+
ulimits:
34+
memlock:
35+
soft: -1
36+
hard: -1
37+
nofile:
38+
soft: 65536
39+
hard: 65536
40+
ports:
41+
- 9200:9200 # REST API
42+
- 9600:9600 # Performance Analyzer
43+
volumes:
44+
- search_data:/usr/share/opensearch/data
45+
networks:
46+
- search_net
47+
48+
fusionauth:
49+
image: fusionauth/fusionauth-app:1.55.1
50+
depends_on:
51+
db:
52+
condition: service_healthy
53+
search:
54+
condition: service_healthy
55+
environment:
56+
DATABASE_URL: jdbc:postgresql://db:5432/fusionauth
57+
DATABASE_ROOT_USERNAME: ${POSTGRES_USER}
58+
DATABASE_ROOT_PASSWORD: ${POSTGRES_PASSWORD}
59+
DATABASE_USERNAME: ${DATABASE_USERNAME}
60+
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
61+
FUSIONAUTH_APP_MEMORY: ${FUSIONAUTH_APP_MEMORY}
62+
FUSIONAUTH_APP_RUNTIME_MODE: ${FUSIONAUTH_APP_RUNTIME_MODE}
63+
FUSIONAUTH_APP_URL: http://fusionauth:9011
64+
SEARCH_SERVERS: http://search:9200
65+
SEARCH_TYPE: elasticsearch
66+
FUSIONAUTH_APP_KICKSTART_FILE: ${FUSIONAUTH_APP_KICKSTART_FILE}
67+
networks:
68+
- db_net
69+
- search_net
70+
restart: unless-stopped
71+
ports:
72+
- 9011:9011
73+
volumes:
74+
- fusionauth_config:/usr/local/fusionauth/config
75+
- ./kickstart:/usr/local/fusionauth/kickstart
76+
77+
networks:
78+
db_net:
79+
driver: bridge
80+
search_net:
81+
driver: bridge
82+
83+
volumes:
84+
db_data:
85+
fusionauth_config:
86+
search_data:

0 commit comments

Comments
 (0)