Branch: refs/heads/next_rails-7 Home: https://github.com/openSUSE/open-build-service Commit: 114fc927fe7f458bc4d4ad1a340ca5ca58978201 https://github.com/openSUSE/open-build-service/commit/114fc927fe7f458bc4d4ad... Author: Dany Marcoux <dmarcoux@posteo.de> Date: 2022-08-30 (Tue, 30 Aug 2022) Changed paths: M src/api/Gemfile M src/api/config/boot.rb M src/api/config/environments/development.rb M src/api/config/initializers/content_security_policy.rb M src/api/config/initializers/filter_parameter_logging.rb M src/api/config/initializers/inflections.rb A src/api/config/initializers/new_framework_defaults_7_0.rb Log Message: ----------- Apply changes from "next bundle exec rails app:update" Commit: 2a2d91e177569c7d3b48b096f1ae7994b1eff583 https://github.com/openSUSE/open-build-service/commit/2a2d91e177569c7d3b48b0... Author: Dany Marcoux <dmarcoux@posteo.de> Date: 2022-08-30 (Tue, 30 Aug 2022) Changed paths: M src/api/app/models/cloud/azure/configuration.rb M src/api/app/models/cloud/ec2/configuration.rb Log Message: ----------- Prevent ActiveRecord reflection error in Cloud::* models The error: ``` ArgumentError: Rails couldn't find a valid model for User association. Please provide the :class_name option on the association declaration. If :class_name is already provided, make sure it's an ActiveRecord::Base subclass. ``` Specifying the User model in those Cloud::* models prevent clashes with the Cloud::User module, which is why ActiveRecord was producing this error. Compare: https://github.com/openSUSE/open-build-service/compare/9b7b56b169be...2a2d91...