Branch: refs/heads/next_rails-5 Home: https://github.com/openSUSE/open-build-service Commit: 2dba9fd89ce9a97b5eea5cd7f97a899930a2b9d8 https://github.com/openSUSE/open-build-service/commit/2dba9fd89ce9a97b5eea5c... Author: Dany Marcoux <dmarcoux@posteo.de> Date: 2021-06-17 (Thu, 17 Jun 2021) Changed paths: M src/api/app/mixins/flipper_feature.rb Log Message: ----------- Pass file extension to "render" call in FlipperFeature This change wasn't needed in Rails 6.0.x, but it is somehow in Rails 6.1.x. Commit: cfb70fc84e0aa8a9601c705e73f7c8ca38ee36fa https://github.com/openSUSE/open-build-service/commit/cfb70fc84e0aa8a9601c70... Author: Dany Marcoux <dmarcoux@posteo.de> Date: 2021-06-17 (Thu, 17 Jun 2021) Changed paths: M src/api/app/models/cloud/ec2/configuration.rb Log Message: ----------- Enforce case-sensitive uniqueness for Cloud::Ec2::Configuration.external_id In Rails 6.0.x, we used to have this deprecation warning: Uniqueness validator will no longer enforce case sensitive comparison in Rails 6.1. To continue case sensitive comparison on the :external_id attribute in Cloud::Ec2::Configuration model, pass `case_sensitive: true` option explicitly to the uniqueness validator. All other instances of uniqueness validator already have either `case_sensitive: true` or `case_sensitive: false`, so nothing had to be done for those models. Compare: https://github.com/openSUSE/open-build-service/compare/2dba9fd89ce9%5E...cfb...