Skip to content

Commit 52182b2

Browse files
Merge pull request #71 from cyberark/ruby-upgrade-test
ONYX-10395: Bump ruby version to 3.0.2
2 parents d65240f + 9c7aa64 commit 52182b2

File tree

16 files changed

+26
-19
lines changed

16 files changed

+26
-19
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.0] - 2022-02-01
8+
9+
### Changed
10+
11+
- Upgrade Ruby version from 2.5.8(EOL) to 3.0.2.
12+
[cyberark/conjur-base-image#71](https://github.com/cyberark/conjur-base-image/pull/71)
13+
714
## [1.0.7] - 2021-12-09
815

916
### Changed

NOTICES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Section 1: Apache-2.0
1212

1313
Section 2: BSD-2-Clause
1414
>>> https://github.com/nginx/nginx v1.20
15-
>>> https://github.com/ruby/ruby v2.5.8
15+
>>> https://github.com/ruby/ruby v3.0.2
1616

1717
Section 3: PostgreSQL License
1818
>>> https://github.com/postgres/postgres v10_16
@@ -93,7 +93,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
9393
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
9494
SUCH DAMAGE.
9595

96-
>>> https://github.com/ruby/ruby v2.5.8
96+
>>> https://github.com/ruby/ruby v3.0.2
9797

9898
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
9999

phusion-ruby-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FROM openssl-builder:$OPENSSL_BUILDER_TAG as OpenSSL-builder
1111
FROM phusion/baseimage:$PHUSION_VERSION
1212
ARG RUBY_MAJOR_VERSION
1313
ARG RUBY_FULL_VERSION
14-
ARG RUBY_SHA256=6c0bdf07876c69811a9e7dc237c43d40b1cb6369f68e0e17953d7279b524ad9a
14+
ARG RUBY_SHA256=5085dee0ad9f06996a8acec7ebea4a8735e6fac22f22e2d98c3f2bc3bef7e6f1
1515

1616
ENV LD_LIBRARY_PATH="/usr/local/ssl/lib"
1717

phusion-ruby-builder/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
cd "$(dirname "$0")"
44

55
PHUSION_VERSION=0.11
6-
RUBY_MAJOR_VERSION=2.5
7-
RUBY_FULL_VERSION=2.5.8
6+
RUBY_MAJOR_VERSION=3.0
7+
RUBY_FULL_VERSION=3.0.2
88
OPENSSL_BUILDER_TAG=1.0.2u-fips-2.0.16
99

1010
docker build -t phusion-ruby-builder:"$RUBY_FULL_VERSION-fips" \

phusion-ruby-fips/Description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This image includes the following packages:
55

66
* OpenSSL version `1.0.2u`: built with FIPS 140-2 compliant OpenSSL module version `2.0.16`.
7-
* Ruby version `2.5`: compiled against the FIPS 140-2 compliant OpenSSL module.
7+
* Ruby version `3.0.2`: compiled against the FIPS 140-2 compliant OpenSSL module.
88
* Postgres client version `10-10.16`: compiled against the FIPS 140-2 compliant OpenSSL module.
99
* OpenLDAP version `2.4.46`: built using OpenSSL rather than gnutls and compiled against the FIPS 140-2 compliant OpenSSL module.
1010
* Bundler version `2.2.30`.

phusion-ruby-fips/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd "$(dirname "$0")"
44

55
PHUSION_VERSION=0.11
66
OPENSSL_BUILDER_TAG=1.0.2u-fips-2.0.16
7-
RUBY_BUILDER_TAG=2.5.8-fips
7+
RUBY_BUILDER_TAG=3.0.2-fips
88
PG_BUILDER_TAG=10-10.16-fips
99
OPENLDAP_BUILDER_TAG=2.4.46-fips
1010

ubi-ruby-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG RUBY_FULL_VERSION
77
FROM registry.access.redhat.com/$UBI_VERSION/ubi
88
ARG RUBY_MAJOR_VERSION
99
ARG RUBY_FULL_VERSION
10-
ARG RUBY_SHA256=6c0bdf07876c69811a9e7dc237c43d40b1cb6369f68e0e17953d7279b524ad9a
10+
ARG RUBY_SHA256=5085dee0ad9f06996a8acec7ebea4a8735e6fac22f22e2d98c3f2bc3bef7e6f1
1111

1212
RUN yum install -y --setopt=tsflags=nodocs gcc \
1313
gcc-c++ \

ubi-ruby-builder/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
cd "$(dirname "$0")"
44

55
UBI_VERSION=ubi8
6-
RUBY_MAJOR_VERSION=2.5
7-
RUBY_FULL_VERSION=2.5.8
6+
RUBY_MAJOR_VERSION=3.0
7+
RUBY_FULL_VERSION=3.0.2
88

99
docker build -t ubi-ruby-builder:"$RUBY_FULL_VERSION-fips" \
1010
--build-arg UBI_VERSION="$UBI_VERSION" \

ubi-ruby-fips/Description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This image includes the following packages:
55

66
* OpenSSL version `1.1.1c`: with FIPS 140-2 compliant OpenSSL module from RedHat UBI 8.
7-
* Ruby version `2.5`: compiled against the FIPS 140-2 compliant OpenSSL module.
7+
* Ruby version `3.0.2`: compiled against the FIPS 140-2 compliant OpenSSL module.
88
* Postgres client version `10-10.16`: compiled against the FIPS 140-2 compliant OpenSSL module.
99
* Bundler version `2.2.30`.
1010

ubi-ruby-fips/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This container image includes UBI version `8` which contains the following packages:
33

44
* OpenSSL version `1.1.1c`: with FIPS 140-2 compliant OpenSSL module from RedHat UBI 8.
5-
* Ruby version `2.5`: compiled against the FIPS 140-2 compliant OpenSSL module.
5+
* Ruby version `3.0.2`: compiled against the FIPS 140-2 compliant OpenSSL module.
66
* Postgres client version `10-10.16`: compiled against the FIPS 140-2 compliant OpenSSL module.
77
* Bundler version `2.2.30`.
88

0 commit comments

Comments
 (0)