Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (2)
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
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. 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.
## [1.3.0](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v1.2.0...v1.3.0) (2021-03-29)
### Features
* updated for API dependancies and rails 6.1 ([af363f1](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/commit/af363f13451efc35d349bb85876c2afbcf4f4ab6))
## [1.2.0](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v1.1.2...v1.2.0) (2021-03-26) ## [1.2.0](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v1.1.2...v1.2.0) (2021-03-26)
......
FROM ruby:2.7.1-slim FROM ruby:2.7.2-slim
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
......
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '2.7.1' ruby '2.7.2'
gem 'rails', '6.1.3' gem 'rails', '6.1.3'
gem 'puma', '4.3.7' gem 'puma', '4.3.7'
...@@ -42,6 +42,13 @@ gem 'simplecov', '0.21.2' ...@@ -42,6 +42,13 @@ gem 'simplecov', '0.21.2'
gem 'webmock', '3.12.2' gem 'webmock', '3.12.2'
gem 'web-console', '4.1.0' gem 'web-console', '4.1.0'
gem 'spring-watcher-listen', '2.0.1' gem 'spring-watcher-listen', '2.0.1'
gem 'aws-sdk-s3', '1.92.0'
gem 'jwt', '2.2.2'
gem 'sneakers', '2.12.0'
gem 'pundit', '2.1.0'
gem 'pundit-matchers', '1.6.0'
gem 'nexus_domain_events', '1.1.2'
gem 'batch-loader', '1.4.1'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
...@@ -7,7 +7,7 @@ GIT ...@@ -7,7 +7,7 @@ GIT
GIT GIT
remote: https://github.com/faker-ruby/faker.git remote: https://github.com/faker-ruby/faker.git
revision: 64baa405dfa127b0cb4cfbe1dd0724bab571f78a revision: cfb382e4579233b5a198122e4cc0a427f6e933fb
branch: master branch: master
specs: specs:
faker (2.17.0) faker (2.17.0)
...@@ -89,6 +89,23 @@ GEM ...@@ -89,6 +89,23 @@ GEM
activerecord (>= 4.2, < 6.2) activerecord (>= 4.2, < 6.2)
autoprefixer-rails (10.2.4.0) autoprefixer-rails (10.2.4.0)
execjs execjs
aws-eventstream (1.1.1)
aws-partitions (1.436.0)
aws-sdk-core (3.113.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
aws-sdk-kms (1.43.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.92.0)
aws-sdk-core (~> 3, >= 3.112.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.2.3)
aws-eventstream (~> 1, >= 1.0.2)
batch-loader (1.4.1)
bindex (0.8.1) bindex (0.8.1)
bootstrap (4.6.0) bootstrap (4.6.0)
autoprefixer-rails (>= 9.1.0) autoprefixer-rails (>= 9.1.0)
...@@ -145,12 +162,14 @@ GEM ...@@ -145,12 +162,14 @@ GEM
i18n (1.8.9) i18n (1.8.9)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
ibsciss-middleware (0.4.2) ibsciss-middleware (0.4.2)
jmespath (1.4.0)
jquery-rails (4.4.0) jquery-rails (4.4.0)
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
json (2.5.1) json (2.5.1)
jsonapi-renderer (0.2.2) jsonapi-renderer (0.2.2)
jwt (2.2.2)
libv8 (8.4.255.0) libv8 (8.4.255.0)
listen (3.5.0) listen (3.5.0)
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
...@@ -171,7 +190,7 @@ GEM ...@@ -171,7 +190,7 @@ GEM
mime-types (3.3.1) mime-types (3.3.1)
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2021.0225) mime-types-data (3.2021.0225)
mimemagic (0.3.9) mimemagic (0.3.10)
nokogiri (~> 1) nokogiri (~> 1)
rake rake
mini_mime (1.0.3) mini_mime (1.0.3)
...@@ -190,6 +209,9 @@ GEM ...@@ -190,6 +209,9 @@ GEM
nexus_cqrs (~> 0.1.1) nexus_cqrs (~> 0.1.1)
pundit pundit
strings-case strings-case
nexus_domain_events (1.1.2)
activesupport
bunny
nio4r (2.5.7) nio4r (2.5.7)
nokogiri (1.11.2) nokogiri (1.11.2)
mini_portile2 (~> 2.5.0) mini_portile2 (~> 2.5.0)
...@@ -201,6 +223,8 @@ GEM ...@@ -201,6 +223,8 @@ GEM
nio4r (~> 2.0) nio4r (~> 2.0)
pundit (2.1.0) pundit (2.1.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
pundit-matchers (1.6.0)
rspec-rails (>= 3.0.0)
racc (1.5.2) racc (1.5.2)
rack (2.2.3) rack (2.2.3)
rack-attack (6.5.0) rack-attack (6.5.0)
...@@ -239,7 +263,7 @@ GEM ...@@ -239,7 +263,7 @@ GEM
method_source method_source
rake (>= 0.8.7) rake (>= 0.8.7)
thor (~> 1.0) thor (~> 1.0)
rake (13.0.3) rake (12.3.3)
rb-fsevent (0.10.4) rb-fsevent (0.10.4)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
...@@ -307,14 +331,23 @@ GEM ...@@ -307,14 +331,23 @@ GEM
sprockets (> 3.0) sprockets (> 3.0)
sprockets-rails sprockets-rails
tilt tilt
serverengine (2.1.1)
sigdump (~> 0.2.2)
shoulda-matchers (4.5.1) shoulda-matchers (4.5.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
sigdump (0.2.4)
simplecov (0.21.2) simplecov (0.21.2)
docile (~> 1.1) docile (~> 1.1)
simplecov-html (~> 0.11) simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1) simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3) simplecov-html (0.12.3)
simplecov_json_formatter (0.1.2) simplecov_json_formatter (0.1.2)
sneakers (2.12.0)
bunny (~> 2.14)
concurrent-ruby (~> 1.0)
rake (~> 12.3)
serverengine (~> 2.1.0)
thor
spring (2.1.1) spring (2.1.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
listen (>= 2.7, < 4.0) listen (>= 2.7, < 4.0)
...@@ -359,6 +392,8 @@ DEPENDENCIES ...@@ -359,6 +392,8 @@ DEPENDENCIES
actionpack-cloudflare (= 1.1.0) actionpack-cloudflare (= 1.1.0)
active_model_serializers (= 0.10.12) active_model_serializers (= 0.10.12)
audited (= 4.10.0) audited (= 4.10.0)
aws-sdk-s3 (= 1.92.0)
batch-loader (= 1.4.1)
bootstrap (= 4.6.0) bootstrap (= 4.6.0)
bunny-mock (= 1.7.0) bunny-mock (= 1.7.0)
bunny_events (= 0.3.2) bunny_events (= 0.3.2)
...@@ -372,13 +407,17 @@ DEPENDENCIES ...@@ -372,13 +407,17 @@ DEPENDENCIES
health_check (= 3.0.0) health_check (= 3.0.0)
httparty (= 0.18.1) httparty (= 0.18.1)
jquery-rails (= 4.4.0) jquery-rails (= 4.4.0)
jwt (= 2.2.2)
lograge (= 0.11.2) lograge (= 0.11.2)
mini_racer (= 0.3.1) mini_racer (= 0.3.1)
mysql2 (= 0.5.3) mysql2 (= 0.5.3)
nexus_cqrs (= 0.1.1) nexus_cqrs (= 0.1.1)
nexus_cqrs_auth (= 0.0.4) nexus_cqrs_auth (= 0.0.4)
nexus_domain_events (= 1.1.2)
pg (= 1.2.3) pg (= 1.2.3)
puma (= 4.3.7) puma (= 4.3.7)
pundit (= 2.1.0)
pundit-matchers (= 1.6.0)
rack-attack (= 6.5.0) rack-attack (= 6.5.0)
rack-cors (= 1.1.1) rack-cors (= 1.1.1)
rails (= 6.1.3) rails (= 6.1.3)
...@@ -390,6 +429,7 @@ DEPENDENCIES ...@@ -390,6 +429,7 @@ DEPENDENCIES
sass-rails (= 5.1.0) sass-rails (= 5.1.0)
shoulda-matchers (= 4.5.1) shoulda-matchers (= 4.5.1)
simplecov (= 0.21.2) simplecov (= 0.21.2)
sneakers (= 2.12.0)
spring-watcher-listen (= 2.0.1) spring-watcher-listen (= 2.0.1)
turbolinks (= 5.2.1) turbolinks (= 5.2.1)
tzinfo-data tzinfo-data
......