Skip to content

Bump version to v4.3.4 #5

Merged
merged 2 commits into from Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -5,7 +5,7 @@ pipeline {
maintainer_credential_ref = 'dockerhub-tier'
imagename = 'g'
tag = 'l'
version='4.3.3'
version='4.3.4'
}
stages {
stage('Setting build context') {
Expand Down
4 changes: 2 additions & 2 deletions comanage-registry-base/Dockerfile
Expand Up @@ -16,7 +16,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM php:8.1.28-apache-bullseye
FROM php:8.1.29-apache-bullseye

# Official PHP image with Apache HTTPD includes
# --with-openssl
Expand All @@ -38,7 +38,7 @@ RUN apt-get update \
zlib1g \
libpcre3-dev \
&& docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu \
&& docker-php-ext-configure ldap --with-libdir=lib/$(uname -m)-linux-gnu \
&& docker-php-ext-configure mysqli \
&& docker-php-ext-install xsl pdo pdo_mysql pdo_pgsql mysqli pgsql ldap \
&& docker-php-source delete \
Expand Down
2 changes: 1 addition & 1 deletion comanage-registry-base/README.md
Expand Up @@ -53,7 +53,7 @@ docker build \
## Building Example

```
export COMANAGE_REGISTRY_VERSION=4.3.3
export COMANAGE_REGISTRY_VERSION=4.3.4
export COMANAGE_REGISTRY_BASE_IMAGE_VERSION=1
TAG="${COMANAGE_REGISTRY_VERSION}-${COMANAGE_REGISTRY_BASE_IMAGE_VERSION}"
docker build \
Expand Down
2 changes: 1 addition & 1 deletion comanage-registry-cron/README.md
Expand Up @@ -52,7 +52,7 @@ docker build \
## Building Example

```
export COMANAGE_REGISTRY_VERSION=4.3.3
export COMANAGE_REGISTRY_VERSION=4.3.4
export COMANAGE_REGISTRY_BASE_IMAGE_VERSION=1
export COMANAGE_REGISTRY_CRON_IMAGE_VERSION=1
TAG="${COMANAGE_REGISTRY_VERSION}-${COMANAGE_REGISTRY_CRON_IMAGE_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion comanage-registry-internet2-tier-base/Dockerfile
Expand Up @@ -25,7 +25,7 @@ RUN yum -y remove \
postgresql-devel \
postgresql

ARG PHP_VERSION=8.1.28
ARG PHP_VERSION=8.1.29
ARG PHP_SRC_URL=https://github.com/php/php-src/archive/php-${PHP_VERSION}.tar.gz

RUN yum -y install epel-release \
Expand Down
4 changes: 2 additions & 2 deletions comanage-registry-internet2-tier/README.md
Expand Up @@ -58,7 +58,7 @@ docker build \
## Building Example

```
export COMANAGE_REGISTRY_VERSION=4.3.3
export COMANAGE_REGISTRY_VERSION=4.3.4
export COMANAGE_REGISTRY_BASE_IMAGE_VERSION=1
export COMANAGE_REGISTRY_I2_BASE_IMAGE_VERSION=1
export COMANAGE_REGISTRY_I2_IMAGE_VERSION=1
Expand Down Expand Up @@ -134,7 +134,7 @@ docker run -d \
-v /etc/shibboleth/my-org-metadata.xml:/etc/shibboleth/my-org-metadata.xml \
-p 80:80 \
-p 443:443 \
comanage-registry:4.3.3-internet2-tier-1
comanage-registry:4.3.4-internet2-tier-1
```

## Logging
Expand Down
2 changes: 1 addition & 1 deletion comanage-registry-shibboleth-sp-base/Dockerfile
Expand Up @@ -51,7 +51,7 @@ RUN wget -O log4shib.tar.gz "${LOG4SHIB_URL}" \
&& cd .. \
&& rm -r src

ARG XERCESC_URL=https://mirrors.ocf.berkeley.edu/apache/xerces/c/3/sources/xerces-c-3.2.3.tar.gz
ARG XERCESC_URL=https://mirrors.ocf.berkeley.edu/apache/xerces/c/3/sources/xerces-c-3.2.5.tar.gz

ARG XERCESC_DIST_URLS="\
${XERCESC_URL} \
Expand Down
2 changes: 1 addition & 1 deletion common.bash
@@ -1,3 +1,3 @@
maintainer="i2incommon"
imagename="comanage-registry"
COMANAGE_REGISTRY_VERSION="4.3.3"
COMANAGE_REGISTRY_VERSION="4.3.4"
2 changes: 1 addition & 1 deletion docs/comanage-registry-internet2-tier.md
Expand Up @@ -50,7 +50,7 @@ wiki page for the list of releases. We recommend using the latest release.
Here is an example (but please check the wiki page for the latest release number):

```
export COMANAGE_REGISTRY_VERSION=4.3.3
export COMANAGE_REGISTRY_VERSION=4.3.4
```

* Define the shell variable `COMANAGE_REGISTRY_BASE_IMAGE_VERSION` to be the
Expand Down
2 changes: 1 addition & 1 deletion docs/evaluation.md
Expand Up @@ -44,7 +44,7 @@ wiki page for the list of releases. We recommend using the latest release.
Here is an example (but please check the wiki page for the latest release number):

```
export COMANAGE_REGISTRY_VERSION=4.3.3
export COMANAGE_REGISTRY_VERSION=4.3.4
```

* Build the base COmanage Registry image:
Expand Down