Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a65ae57
Remove deprecated version from docker-compose
fabionl Jun 15, 2025
68adcae
Fix crash when attempting to bundle install
fabionl Jun 15, 2025
e12b5a6
Upgrade Rails to 7.1.0 and update related dependencies; enhance devel…
fabionl Jun 15, 2025
e009561
Refactor Postgres connection handling in Docker setup; use environmen…
fabionl Jun 15, 2025
927fec0
Enhance test script to conditionally run all tests or specific rspec …
fabionl Jun 15, 2025
3db3abe
Remove version declaration from CI Docker Compose file
fabionl Jun 15, 2025
a837fe7
Add --remove-orphans flag to docker-compose test commands for improve…
fabionl Jun 15, 2025
7882623
Update docker commands to include project name for consistency across…
fabionl Jun 15, 2025
d296f8d
Refactor setup script to improve error handling and formatting consis…
fabionl Jun 15, 2025
531a509
Fix facilities fake data generation
fabionl Jun 15, 2025
7bee8ee
Update application configuration to disable autoloaded paths in load …
fabionl Jun 15, 2025
e82d4f4
Fix migrations (#219)
fabionl Jun 28, 2025
4a4561e
Merge branch 'master' into FL-Rails-7.1
fabionl Jun 28, 2025
be1bfcd
Merge branch 'develop' into FL-Rails-7.1
fabionl Jun 28, 2025
25579be
Merge branch 'develop' into FL-Rails-7.1
fabionl Jun 29, 2025
4ffe866
Fix migration to use MigrationFacility class for updating welcomes
fabionl Jun 29, 2025
7527626
Fix migration to use MigrationFacility class for updating zone refere…
fabionl Jun 29, 2025
f8bd94a
Fix migration to use MigrationFacility class for importing facility s…
fabionl Jun 29, 2025
8d4d33d
Merge branch 'develop' into FL-Rails-7.1
fabionl Jun 29, 2025
69e2dbf
Finish going through each new_framework_defaults initializer
fabionl Sep 14, 2025
5a57d5c
Finish upgrading to Rails 7.1
fabionl Sep 14, 2025
4519175
Merge branch 'develop' into FL-Rails-7.1
fabionl Sep 14, 2025
c093920
Fix deprecation warnings
fabionl Sep 14, 2025
e5787d0
Fix bug on WelcomesIconComponent when welcomes is not supported, and …
fabionl Sep 14, 2025
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.3"

# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "~> 7.0.8"
gem "rails", "~> 7.1.0"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5.6"
# Use Puma as the app server
Expand Down
Loading