Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rails-base-image-builder
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Public
rails-base-image-builder
Compare revisions
v2.0.5 to v2.0.6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
pub/rails-base-image-builder
Select target project
No results found
v2.0.6
Select Git revision
Swap
Target
pub/rails-base-image-builder
Select target project
No results found
v2.0.5
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
nokogiri vuln fix
· baa292f2
Rafal.Radolinski
authored
3 years ago
baa292f2
chore(release): 2.0.6
· 156c3d5c
git
authored
3 years ago
156c3d5c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
Gemfile.lock
+9
-9
9 additions, 9 deletions
Gemfile.lock
README.md
+1
-1
1 addition, 1 deletion
README.md
with
12 additions
and
10 deletions
CHANGELOG.md
View file @
156c3d5c
...
...
@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See
[
standard-version
](
https://github.com/conventional-changelog/standard-version
)
for commit guidelines.
### [2.0.6](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.5...v2.0.6) (2022-02-22)
### [2.0.5](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.4...v2.0.5) (2022-02-14)
### [2.0.4](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.3...v2.0.4) (2021-12-16)
...
...
This diff is collapsed.
Click to expand it.
Gemfile.lock
View file @
156c3d5c
...
...
@@ -75,8 +75,8 @@ GEM
autoprefixer-rails (10.4.2.0)
execjs (~> 2)
aws-eventstream (1.2.0)
aws-partitions (1.55
4
.0)
aws-sdk-core (3.126.
0
)
aws-partitions (1.55
6
.0)
aws-sdk-core (3.126.
2
)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
...
...
@@ -150,10 +150,10 @@ GEM
httparty (0.18.1)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
i18n (1.
9.1
)
i18n (1.
10.0
)
concurrent-ruby (~> 1.0)
ibsciss-middleware (0.4.2)
jmespath (1.
5
.0)
jmespath (1.
6
.0)
jquery-rails (4.4.0)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
...
...
@@ -181,11 +181,11 @@ GEM
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mini_mime (1.1.2)
mini_portile2 (2.
7.1
)
mini_portile2 (2.
8.0
)
mini_racer (0.3.1)
libv8 (~> 8.4.255)
minitest (5.15.0)
msgpack (1.4.
4
)
msgpack (1.4.
5
)
multi_xml (0.6.0)
mysql2 (0.5.3)
nexus_cqrs (0.2.2)
...
...
@@ -200,8 +200,8 @@ GEM
activesupport
bunny
nio4r (2.5.8)
nokogiri (1.13.
1
)
mini_portile2 (~> 2.
7
.0)
nokogiri (1.13.
3
)
mini_portile2 (~> 2.
8
.0)
racc (~> 1.4)
pg (1.2.3)
popper_js (1.16.0)
...
...
@@ -330,7 +330,7 @@ GEM
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.
3
)
simplecov_json_formatter (0.1.
4
)
sneakers (2.12.0)
bunny (~> 2.14)
concurrent-ruby (~> 1.0)
...
...
This diff is collapsed.
Click to expand it.
README.md
View file @
156c3d5c
...
...
@@ -7,7 +7,7 @@ To update the gems in this core image, great care must be taken. Once the gemfil
a simple helper script. There are many ways of achieving this, but the recommended way is:
```
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.
1
sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;"
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.
2
sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;"
```
Once both the
`gemfile`
and
`gemfile.lock`
files are both updated, a commit can be created to force a new update.
\ No newline at end of file
This diff is collapsed.
Click to expand it.