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

Spike/logging improvements #150

Merged
merged 4 commits into from
Dec 11, 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
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@
This app presents the landing page experience for landregistry.data.gov.uk,
including the SPARQL Qonsole

## 2.0.2 - 2024-12

- (Bogdan) Updated all gems, including `json_rails_logger`

## 2.0.1 - 2024-10

- Fixed an issue with CSS for the checkboxes in the Qonsole query form
- (Bogdan) Fixed an issue with CSS for the checkboxes in the Qonsole query form

## 2.0.0 - 2024-10

- Upgraded the `qonsole-rails` and `lr_common_styles` gems to latest versions
- (Bogdan) Upgraded the `qonsole-rails` and `lr_common_styles` gems to latest versions
(which are now running on ruby `3.3.5` and rails `7.2.2` as well)
- Upgraded alpine to `3.20`
- Upgraded rails to `7.2.2`
- Upgraded ruby to `3.3.5`
- (Bogdan) Upgraded alpine to `3.20`
- (Bogdan) Upgraded rails to `7.2.2`
- (Bogdan) Upgraded ruby to `3.3.5`
- (Jon) Removed the public/fees-caluclator.html file as it is no longer needed
[GH-140](https://github.com/epimorphics/lr-landing/issues/140)

Expand Down
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ gem 'uglifier'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'get_process_mem'
gem 'haml-rails'
gem 'http_accept_language'
gem 'jbuilder'
gem 'prometheus-client'
gem 'puma'
gem 'sentry-rails'
Expand All @@ -39,10 +39,8 @@ source 'https://rubygems.pkg.github.com/epimorphics' do
gem 'lr_common_styles'
end

# rubocop:disable Layout/LineLength
# TODO: While running the rails app locally for testing you can set gems to your local path
# ! These "local" paths do not work with a docker image - use the repo instead
# gem 'qonsole-rails', path: '~/Epimorphics/clients/land-registry/projects/qonsole-rails'
# gem 'json_rails_logger', path: '~/Epimorphics/shared/json-rails-logger'
# gem 'lr_common_styles', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles'
# rubocop:enable Layout/LineLength
Loading