-
Notifications
You must be signed in to change notification settings - Fork 8
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
Master merge from develop #653
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
feef8ac
Update rubocop to version 1.65.0
depfu[bot] f7e76f1
Upgrade Ruby 3.1.2 -> 3.3.4
sabrine33 78e00af
commit lock file
sabrine33 e6076d7
format fine - run rubocop
sabrine33 cf7b181
Update rubocop-rspec to version 3.0.3
depfu[bot] ad1b5d1
Merge pull request #643 from sanger/upgrade-Ruby
sabrine33 8922906
Update rexml to version 3.3.2
depfu[bot] 8cdb6a5
Merge pull request #642 from sanger/depfu/update/rubocop-1.65.0
stevieing 73a6224
Merge pull request #644 from sanger/depfu/update/rubocop-rspec-3.0.3
stevieing ecfb3e2
Merge pull request #646 from sanger/depfu/update/rexml-3.3.2
stevieing b3c5bb9
Update lims_uuid column name
dasunpubudumal 08dd4fa
Update lims_uuid column name
dasunpubudumal e6a53b0
Update lims_uuid column name
dasunpubudumal eb34c49
Merge pull request #648 from sanger/rename-aliquot-table-uuid
dasunpubudumal 60b701f
add new column to the Study table.
sabrine33 a61c663
Merge pull request #652 from sanger/Y24-086-alter-study-table
sabrine33 dad4642
Update .release-version
dasunpubudumal ddb6b7d
Merge branch 'master' into develop
dasunpubudumal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.18.1 | ||
1.19.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.1.2 | ||
3.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:3.1.2 | ||
FROM ruby:3.3.4 | ||
|
||
RUN gem install bundler | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,9 @@ gem 'bundler', '>= 1.3.0' | |
gem 'railties', '~> 7.0.4' | ||
# # RAILS DEPENDENCIES | ||
|
||
gem 'sanger_warren' | ||
gem 'bunny', '>= 2.22.0' | ||
gem 'rbtree', '~> 0.4.5' | ||
gem 'sanger_warren', '~> 0.4.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a repo for sanger_warren ? Where does this come from ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
gem 'bootsnap', '~> 1.7', '>= 1.7.3', require: false | ||
gem 'hashie', '~> 5.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
db/migrate/20240723152109_rename_lims_uuid_colum_to_aliquot_uu_id_in_aliquot_table.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class RenameLimsUuidColumToAliquotUuIdInAliquotTable < ActiveRecord::Migration[7.0] | ||
def up | ||
rename_column :aliquot, :lims_uuid, :aliquot_uuid | ||
end | ||
|
||
def down | ||
rename_column :aliquot, :aliquot_uuid, :lims_uuid | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
db/migrate/20240726144332_add_contaminated_human_data_to_study.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddContaminatedHumanDataToStudy < ActiveRecord::Migration[7.0] | ||
def change | ||
add_column :study, :contaminated_human_data_access_group, :string, default: nil | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,8 @@ | |
'hmdmc_number' => 'H12345; H67890; And then a comment', | ||
'data_destination' => 'standard', | ||
's3_email_list' => '[email protected];[email protected]', | ||
'data_deletion_period' => '3 months' | ||
'data_deletion_period' => '3 months', | ||
'contaminated_human_data_access_group' => 'contaminated human data' | ||
} | ||
end | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please confirm that the version is available from Docker Hub?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is available