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

Update Matomo #11051

Merged
merged 1 commit into from
Oct 7, 2021
Merged

Update Matomo #11051

merged 1 commit into from
Oct 7, 2021

Conversation

J0WI
Copy link
Contributor

@J0WI J0WI commented Oct 7, 2021

No description provided.

@github-actions
Copy link

github-actions bot commented Oct 7, 2021

Diff for d3de1fd:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 25be335..d0a9527 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,17 +1,17 @@
 Maintainers: Pierre Ozoux <pierre@piwik.org> (@pierreozoux)
 GitRepo: https://github.com/matomo-org/docker.git
 
-Tags: 4.4.1-apache, 4.4-apache, 4-apache, apache, 4.4.1, 4.4, 4, latest
+Tags: 4.5.0-apache, 4.5-apache, 4-apache, apache, 4.5.0, 4.5, 4, latest
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
+GitCommit: 1a88fc70865c6f058e4672e9a34188d592c41a5c
 Directory: apache
 
-Tags: 4.4.1-fpm, 4.4-fpm, 4-fpm, fpm
+Tags: 4.5.0-fpm, 4.5-fpm, 4-fpm, fpm
 Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
+GitCommit: 1a88fc70865c6f058e4672e9a34188d592c41a5c
 Directory: fpm
 
-Tags: 4.4.1-fpm-alpine, 4.4-fpm-alpine, 4-fpm-alpine, fpm-alpine
+Tags: 4.5.0-fpm-alpine, 4.5-fpm-alpine, 4-fpm-alpine, fpm-alpine
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
+GitCommit: 1a88fc70865c6f058e4672e9a34188d592c41a5c
 Directory: fpm-alpine
diff --git a/_bashbrew-list b/_bashbrew-list
index 5118a92..204256b 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -2,14 +2,14 @@ matomo:4
 matomo:4-apache
 matomo:4-fpm
 matomo:4-fpm-alpine
-matomo:4.4
-matomo:4.4-apache
-matomo:4.4-fpm
-matomo:4.4-fpm-alpine
-matomo:4.4.1
-matomo:4.4.1-apache
-matomo:4.4.1-fpm
-matomo:4.4.1-fpm-alpine
+matomo:4.5
+matomo:4.5-apache
+matomo:4.5-fpm
+matomo:4.5-fpm-alpine
+matomo:4.5.0
+matomo:4.5.0-apache
+matomo:4.5.0-fpm
+matomo:4.5.0-fpm-alpine
 matomo:apache
 matomo:fpm
 matomo:fpm-alpine
diff --git a/matomo_fpm-alpine/Dockerfile b/matomo_fpm-alpine/Dockerfile
index 68b50b0..c050cc0 100644
--- a/matomo_fpm-alpine/Dockerfile
+++ b/matomo_fpm-alpine/Dockerfile
@@ -29,7 +29,7 @@ RUN set -ex; \
 	; \
 	\
 # pecl will claim success even if one install fails, so we need to perform each install separately
-	pecl install APCu-5.1.20; \
+	pecl install APCu-5.1.21; \
 	pecl install redis-5.3.4; \
 	\
 	docker-php-ext-enable \
@@ -57,7 +57,7 @@ RUN { \
 		echo 'opcache.fast_shutdown=1'; \
 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini
 
-ENV MATOMO_VERSION 4.4.1
+ENV MATOMO_VERSION 4.5.0
 
 RUN set -ex; \
 	apk add --no-cache --virtual .fetch-deps \
diff --git a/matomo_fpm/Dockerfile b/matomo_fpm/Dockerfile
index e3eb4ce..7b50608 100644
--- a/matomo_fpm/Dockerfile
+++ b/matomo_fpm/Dockerfile
@@ -29,7 +29,7 @@ RUN set -ex; \
 	; \
 	\
 # pecl will claim success even if one install fails, so we need to perform each install separately
-	pecl install APCu-5.1.20; \
+	pecl install APCu-5.1.21; \
 	pecl install redis-5.3.4; \
 	\
 	docker-php-ext-enable \
@@ -62,7 +62,7 @@ RUN { \
 		echo 'opcache.fast_shutdown=1'; \
 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini
 
-ENV MATOMO_VERSION 4.4.1
+ENV MATOMO_VERSION 4.5.0
 
 RUN set -ex; \
 	fetchDeps=" \
diff --git a/matomo_latest/Dockerfile b/matomo_latest/Dockerfile
index e0790f3..6881c4d 100644
--- a/matomo_latest/Dockerfile
+++ b/matomo_latest/Dockerfile
@@ -29,7 +29,7 @@ RUN set -ex; \
 	; \
 	\
 # pecl will claim success even if one install fails, so we need to perform each install separately
-	pecl install APCu-5.1.20; \
+	pecl install APCu-5.1.21; \
 	pecl install redis-5.3.4; \
 	\
 	docker-php-ext-enable \
@@ -62,7 +62,7 @@ RUN { \
 		echo 'opcache.fast_shutdown=1'; \
 	} > /usr/local/etc/php/conf.d/opcache-recommended.ini
 
-ENV MATOMO_VERSION 4.4.1
+ENV MATOMO_VERSION 4.5.0
 
 RUN set -ex; \
 	fetchDeps=" \

@tianon tianon merged commit 9429a97 into docker-library:master Oct 7, 2021
@J0WI J0WI deleted the matomo-45 branch October 8, 2021 06:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants