Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump openapi3_parser from 0.9.2 to 0.10.0 #9394

Merged
merged 4 commits into from
Jul 22, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM ${BASE_RUBY_IMAGE} AS gems-node-modules

RUN apk -U upgrade && \
apk add --update --no-cache git gcc libc-dev make postgresql-dev build-base \
libxml2-dev libxslt-dev nodejs yarn tzdata libpq libxml2 libxslt graphviz chromium
libxml2-dev libxslt-dev nodejs yarn tzdata libpq libxml2 libxslt graphviz chromium gcompat

RUN echo "Europe/London" > /etc/timezone && \
cp /usr/share/zoneinfo/Europe/London /etc/localtime
Expand Down Expand Up @@ -58,7 +58,7 @@ ENV LANG=en_GB.UTF-8 \

RUN apk -U upgrade && \
apk add --update --no-cache tzdata libpq libxml2 libxslt graphviz \
ttf-dejavu ttf-droid ttf-liberation libx11 openssl nodejs chromium && \
ttf-dejavu ttf-droid ttf-liberation libx11 openssl nodejs chromium gcompat && \
echo "Europe/London" > /etc/timezone && \
cp /usr/share/zoneinfo/Europe/London /etc/localtime

Expand Down Expand Up @@ -89,4 +89,4 @@ RUN echo ${SHA} > public/check
# new code on an old schema (which will be updated a moment later) to running
# old code on the new schema (which will require another deploy or other manual
# intervention to correct).
CMD bundle exec rails db:migrate:ignore_concurrent_migration_exceptions && bundle exec rails server -b 0.0.0.0
CMD ["bundle", "exec", "rails", "db:migrate:ignore_concurrent_migration_exceptions", "&&", "bundle", "exec", "rails", "server", "-b", "0.0.0.0"]
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ gem 'http'
# For DSI api integration
gem 'jwt'

gem 'openapi3_parser', '0.9.2'
gem 'openapi3_parser', '0.10.0'
gem 'rouge'
gem 'ruby-graphviz'

Expand Down
10 changes: 6 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ GEM
combine_pdf (1.0.26)
matrix
ruby-rc4 (>= 0.1.5)
commonmarker (0.23.10)
commonmarker (1.1.4)
rb_sys (~> 0.9)
concurrent-ruby (1.3.3)
connection_pool (2.4.1)
crack (1.0.0)
Expand Down Expand Up @@ -503,8 +504,8 @@ GEM
omniauth_openid_connect (0.6.1)
omniauth (>= 1.9, < 3)
openid_connect (~> 1.1)
openapi3_parser (0.9.2)
commonmarker (~> 0.17)
openapi3_parser (0.10.0)
commonmarker (>= 1.0)
openid_connect (1.4.2)
activemodel
attr_required (>= 1.0.0)
Expand Down Expand Up @@ -613,6 +614,7 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rb_sys (0.9.97)
rdoc (6.7.0)
psych (>= 4.0.0)
redcarpet (3.6.0)
Expand Down Expand Up @@ -916,7 +918,7 @@ DEPENDENCIES
omniauth
omniauth-rails_csrf_protection
omniauth_openid_connect
openapi3_parser (= 0.9.2)
openapi3_parser (= 0.10.0)
pagy
parallel_tests
pg (~> 1.5.6)
Expand Down
Loading