Skip to content

Commit bb7e6b8

Browse files
PHRAS-4159 Update apt repositories (#4618)
* PHRAS-4159 Update apt repositories * release of version 4.1.20 PHRAS-4160 * Changelog update --------- Co-authored-by: nmaillat <maillat@alchemy.fr>
1 parent a77bd14 commit bb7e6b8

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ PHRASEANET_DOCKER_REGISTRY=alchemyfr
155155

156156
# Docker images tag.
157157
# @run
158-
PHRASEANET_DOCKER_TAG=4.1.19
158+
PHRASEANET_DOCKER_TAG=4.1.20
159159

160160
# Stack Name
161161
# An optionnal Name for the stack

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# CHANGELOG
22

3+
## 4.1.20
4+
5+
#### Phraseanet Upgrade
6+
7+
- **Phraseanet Migration Patch**:
8+
- A migration script for the configuration file is available. Run the following command in the setup container with Docker if the environment variable `PHRASEANET_UPGRADE=1` is set:
9+
```
10+
bin/setup system:upgrade
11+
```
12+
13+
### Stack (Docker Compose and Helm)
14+
15+
- Bump Phraseanet base image to 1.2.3
16+
17+
### Version Summary
18+
19+
- Bump Phraseanet base image to 1.2.3
20+
21+
### What's Changed
22+
23+
**Full Changelog**: https://github.com/alchemy-fr/Phraseanet/compare/4.1.19...4.1.20
24+
25+
__
326
## 4.1.19
427
528
#### Phraseanet Upgrade

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM alchemyfr/phraseanet-base:1.2.2 AS builder
2+
FROM alchemyfr/phraseanet-base:1.2.3 AS builder
33

44
COPY --from=composer:2.1.6 /usr/bin/composer /usr/bin/composer
55

@@ -72,7 +72,7 @@ CMD []
7272
# Phraseanet install and setup application image
7373
#########################################################################
7474

75-
FROM alchemyfr/phraseanet-base:1.2.2 AS phraseanet-setup
75+
FROM alchemyfr/phraseanet-base:1.2.3 AS phraseanet-setup
7676

7777
COPY --from=builder --chown=app /var/alchemy/Phraseanet /var/alchemy/Phraseanet
7878
ADD ./docker/phraseanet/root /
@@ -85,7 +85,7 @@ CMD []
8585
# Phraseanet web application image
8686
#########################################################################
8787

88-
FROM alchemyfr/phraseanet-base:1.2.2 AS phraseanet-fpm
88+
FROM alchemyfr/phraseanet-base:1.2.3 AS phraseanet-fpm
8989

9090
COPY --from=builder --chown=app /var/alchemy/Phraseanet /var/alchemy/Phraseanet
9191
ADD ./docker/phraseanet/root /
@@ -97,7 +97,7 @@ CMD ["php-fpm", "-F"]
9797
# Phraseanet worker application image
9898
#########################################################################
9999

100-
FROM alchemyfr/phraseanet-base:1.2.2 AS phraseanet-worker
100+
FROM alchemyfr/phraseanet-base:1.2.3 AS phraseanet-worker
101101

102102
COPY --from=builder --chown=app /var/alchemy/Phraseanet /var/alchemy/Phraseanet
103103
ADD ./docker/phraseanet/root /
@@ -139,7 +139,7 @@ HEALTHCHECK CMD wget --spider http://127.0.0.1/login || nginx -s reload || exit
139139
# phraseanet adapted simplesaml service provider
140140
#########################################################################
141141

142-
FROM alchemyfr/phraseanet-base:1.2.2 AS phraseanet-saml-sp
142+
FROM alchemyfr/phraseanet-base:1.2.3 AS phraseanet-saml-sp
143143
RUN apt-get update \
144144
&& apt-get install -y \
145145
apt-transport-https \

lib/Alchemy/Phrasea/Core/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Version
1717
* @var string
1818
*/
1919

20-
private $number = '4.1.19';
20+
private $number = '4.1.20';
2121

2222
/**
2323
* @var string

0 commit comments

Comments
 (0)