Skip to content

Commit

Permalink
Update bundler to 2.2.33
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Tinkham <andy.tinkham@cyberark.com>
  • Loading branch information
andytinkham committed Jul 13, 2023
1 parent 05aa1aa commit 502a18a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Nothing should go in this section, please add to the latest unreleased version
(and update the corresponding date), or add a new version.

## [1.19.3.1] - 2023-07-12
### Security
- Update bundler to 2.2.33 to remove CVE-2021-43809
[cyberark/conjur#2804](https://github.com/cyberark/conjur/pull/2804/files)

## [1.19.3] - 2023-04-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.fpm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update -y && \
apt-get install -y zlib1g-dev \
liblzma-dev

ENV BUNDLER_VERSION 2.2.30
ENV BUNDLER_VERSION 2.2.33
RUN gem install --no-document bundler:$BUNDLER_VERSION fpm

RUN mkdir -p /src/opt/conjur/project
Expand Down
2 changes: 1 addition & 1 deletion ci/coverage-report-generator/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ DEPENDENCIES
simplecov_json_formatter (= 0.1.4)

BUNDLED WITH
2.2.30
2.2.33
2 changes: 1 addition & 1 deletion ci/coverage-report-generator/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -xeu

IMAGE="ruby:3.0"
BUNDLER_VERSION="2.2.30"
BUNDLER_VERSION="2.2.33"

REPO_ROOT=$(git rev-parse --show-toplevel)

Expand Down
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jekyll/jekyll:4.0

ADD Gemfile Gemfile.lock /srv/jekyll/

ENV BUNDLER_VERSION 2.2.30
ENV BUNDLER_VERSION 2.2.33
RUN gem install bundler -v $BUNDLER_VERSION

RUN bundle --without development
2 changes: 1 addition & 1 deletion gems/policy-parser/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY conjur-policy-parser.gemspec conjur-policy-parser.gemspec
COPY lib/conjur-policy-parser-version.rb lib/conjur-policy-parser-version.rb

# Make sure the expected version of Bundler is available
ENV BUNDLER_VERSION=2.2.30
ENV BUNDLER_VERSION=2.2.33
RUN gem install bundler -v ${BUNDLER_VERSION} && \
bundle install
2 changes: 1 addition & 1 deletion gems/policy-parser/conjur-policy-parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
spec.add_dependency("activesupport", ">= 4.2")
spec.add_dependency("safe_yaml")

spec.add_development_dependency("bundler", "~> 2.2.30")
spec.add_development_dependency("bundler", "~> 2.2.33")
spec.add_development_dependency("ci_reporter_rspec")
spec.add_development_dependency("deepsort")
spec.add_development_dependency("pry")
Expand Down

0 comments on commit 502a18a

Please sign in to comment.