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

Ruby 3 support #1

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dfe70e8
Refs #36846 - change descriptionFormat to snake case (#10846)
jeremylenz Jan 17, 2024
3ac7cdd
Refs #35713 - correctly call methods with kwargs (#10845)
jeremylenz Jan 17, 2024
57ab3c9
Fixes #37028 - Set up sp-reference for content source
adamruzicka Jan 4, 2024
e2cb74f
Fixes #36994 - remove spaces from Ansible template (#10849)
jeremylenz Jan 18, 2024
8591b4c
Fixes #35974 - Extra index to check for installed package id (#10842)
parthaa Jan 18, 2024
8b17663
Fixes #37005 - Allow to set the the default name of template change c…
Et7f3 Jan 19, 2024
ced0ed0
Fixes #36946 - cache if tracer/host_tools is installed (#10811)
sbernhard Jan 22, 2024
acbe320
Fixes #37080 - content counts index goes over max size
ianballou Jan 22, 2024
799b4c0
Fixes #37058 - Optimize query to identify orphaned content units
jpasqualetto Jan 17, 2024
f281fc5
use NodeJS 14 and Ruby 2.7 in React tests
evgeni Jan 22, 2024
4f236c7
Fixes #37051 - Add job templates for Ansible 'by search query' (#10850)
jeremylenz Jan 23, 2024
7e7d6d3
Refs #36846 - use descriptionFormat for updatePackages (#10858)
jeremylenz Jan 23, 2024
9915be7
Fixes #37074 - drop users.disabled field
evgeni Jan 2, 2024
2e084c9
Fixes #36998 - declare development dependency on theforeman-rubocop
evgeni Nov 28, 2023
7f99691
Refs #36998 - Fix Rails/Pick and Rails/IndexWith cops
evgeni Jan 23, 2024
98c9fee
Refs #36998 - disable Rails/ContentTag cop
evgeni Jan 23, 2024
98a9b4d
Fixes #37075 - make RemoveKatelloFromNotificationName a noop
evgeni Jan 2, 2024
3773276
Fixes #37073 - only rename Katello settings if category column exists
evgeni Jan 2, 2024
edd5341
Fixes #37050 - restrict module copying to source repository
ianballou Jan 12, 2024
2ab734f
Fixes #37084 - Drop simplecov dependency (#10837)
ekohl Jan 24, 2024
477009b
Fixes #37032 - Drop minitest-tags development dependency
ekohl Jan 5, 2024
6af370d
Fixes #37094 - Drop uglifier development dependency
evgeni Jan 24, 2024
08dbe77
Fixes #37083 - Remove unused pulp_export_destination setting
ekohl Jun 15, 2023
cc1b7cc
Fixes #37100 - Update VCR to 6.1+
evgeni Jan 25, 2024
e3bf6db
Fixes #37095 - Use shared GitHub workflow to run tests
evgeni Oct 27, 2023
d4c9455
Refs #37095 - move test dependencies into an own group
evgeni Nov 28, 2023
aef65aa
Run CI on Ruby 3
ofedoren Jan 25, 2024
c090281
Ruby 3 support
ofedoren Jan 18, 2024
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
Prev Previous commit
Next Next commit
Fixes #37058 - Optimize query to identify orphaned content units
jpasqualetto authored and chris1984 committed Jan 22, 2024

Verified

This commit was signed with the committer’s verified signature.
ChrisTruncer ChrisTruncer
commit 799b4c0bc97d6aa02a309a02d923ebf7be14d7ac
2 changes: 1 addition & 1 deletion app/models/katello/concerns/pulp_database_unit.rb
Original file line number Diff line number Diff line change
@@ -169,7 +169,7 @@ def with_identifiers(ids)

def orphaned
if many_repository_associations
where.not(:id => repository_association_class.select(unit_id_field))
left_joins(repository_association.to_sym).where("#{repository_association_class.table_name}.#{unit_id_field}" => nil)
else
where.not(:repository_id => ::Katello::Repository.select(:id))
end