Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-rspec-rails for 
openSUSE:Factory checked in at 2022-04-30 22:52:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-rails (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rspec-rails.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rspec-rails"

Sat Apr 30 22:52:46 2022 rev:9 rq:974073 version:5.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rspec-rails/rubygem-rspec-rails.changes  
2022-03-11 21:42:03.162106822 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rspec-rails.new.1538/rubygem-rspec-rails.changes
        2022-04-30 22:52:59.876261602 +0200
@@ -1,0 +2,12 @@
+Thu Apr 28 05:46:40 UTC 2022 - Stephan Kulow <[email protected]>
+
+updated to version 5.1.2
+ see installed Changelog.md
+
+  Bug Fixes:
+  
+  * Fix controller scaffold templates parameter name.  (Taketo Takashima, 
#2591)
+  * Include generator specs in the inferred list of specs. (Jason Karns, #2597)
+  
+
+-------------------------------------------------------------------

Old:
----
  rspec-rails-5.1.1.gem

New:
----
  rspec-rails-5.1.2.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-rspec-rails.spec ++++++
--- /var/tmp/diff_new_pack.amisJV/_old  2022-04-30 22:53:00.328262213 +0200
+++ /var/tmp/diff_new_pack.amisJV/_new  2022-04-30 22:53:00.336262224 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-rspec-rails
-Version:        5.1.1
+Version:        5.1.2
 Release:        0
 %define mod_name rspec-rails
 %define mod_full_name %{mod_name}-%{version}

++++++ rspec-rails-5.1.1.gem -> rspec-rails-5.1.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md    2022-03-07 11:44:08.000000000 +0100
+++ new/Changelog.md    2022-04-24 10:27:57.000000000 +0200
@@ -1,6 +1,11 @@
 ### Development
 [Full 
Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.1...5-1-maintenance)
 
+Bug Fixes:
+
+* Fix controller scaffold templates parameter name.  (Taketo Takashima, #2591)
+* Include generator specs in the inferred list of specs. (Jason Karns, #2597)
+
 ### 5.1.1 / 2022-03-07
 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.0...v5.1.1)
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Binary files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/generators/rspec/scaffold/templates/api_controller_spec.rb 
new/lib/generators/rspec/scaffold/templates/api_controller_spec.rb
--- old/lib/generators/rspec/scaffold/templates/api_controller_spec.rb  
2022-03-07 11:44:08.000000000 +0100
+++ new/lib/generators/rspec/scaffold/templates/api_controller_spec.rb  
2022-04-24 10:27:57.000000000 +0200
@@ -100,7 +100,7 @@
 
       it "renders a JSON response with the <%= singular_table_name %>" do
         <%= file_name %> = <%= class_name %>.create! valid_attributes
-        put :update, params: {id: <%= file_name %>.to_param, <%= 
singular_table_name %>: valid_attributes}, session: valid_session
+        put :update, params: {id: <%= file_name %>.to_param, <%= 
singular_table_name %>: new_attributes}, session: valid_session
         expect(response).to have_http_status(:ok)
         expect(response.content_type).to eq('application/json')
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/generators/rspec/scaffold/templates/controller_spec.rb 
new/lib/generators/rspec/scaffold/templates/controller_spec.rb
--- old/lib/generators/rspec/scaffold/templates/controller_spec.rb      
2022-03-07 11:44:08.000000000 +0100
+++ new/lib/generators/rspec/scaffold/templates/controller_spec.rb      
2022-04-24 10:27:57.000000000 +0200
@@ -112,7 +112,7 @@
 
       it "redirects to the <%= singular_table_name %>" do
         <%= file_name %> = <%= class_name %>.create! valid_attributes
-        put :update, params: {id: <%= file_name %>.to_param, <%= 
singular_table_name %>: valid_attributes}, session: valid_session
+        put :update, params: {id: <%= file_name %>.to_param, <%= 
singular_table_name %>: new_attributes}, session: valid_session
         expect(response).to redirect_to(<%= file_name %>)
       end
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/rails/configuration.rb 
new/lib/rspec/rails/configuration.rb
--- old/lib/rspec/rails/configuration.rb        2022-03-07 11:44:08.000000000 
+0100
+++ new/lib/rspec/rails/configuration.rb        2022-04-24 10:27:57.000000000 
+0200
@@ -28,6 +28,7 @@
     DIRECTORY_MAPPINGS = {
       channel:    %w[spec channels],
       controller: %w[spec controllers],
+      generator:  %w[spec generator],
       helper:     %w[spec helpers],
       job:        %w[spec jobs],
       mailer:     %w[spec mailers],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rspec/rails/version.rb 
new/lib/rspec/rails/version.rb
--- old/lib/rspec/rails/version.rb      2022-03-07 11:44:08.000000000 +0100
+++ new/lib/rspec/rails/version.rb      2022-04-24 10:27:57.000000000 +0200
@@ -3,7 +3,7 @@
     # Version information for RSpec Rails.
     module Version
       # Current version of RSpec Rails, in semantic versioning format.
-      STRING = '5.1.1'
+      STRING = '5.1.2'
     end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2022-03-07 11:44:08.000000000 +0100
+++ new/metadata        2022-04-24 10:27:57.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: rspec-rails
 version: !ruby/object:Gem::Version
-  version: 5.1.1
+  version: 5.1.2
 platform: ruby
 authors:
 - David Chelimsky
@@ -44,7 +44,7 @@
   ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
   F3MdtaDehhjC
   -----END CERTIFICATE-----
-date: 2022-03-07 00:00:00.000000000 Z
+date: 2022-04-24 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: actionpack
@@ -308,7 +308,7 @@
 - MIT
 metadata:
   bug_tracker_uri: https://github.com/rspec/rspec-rails/issues
-  changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.1/Changelog.md
+  changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.2/Changelog.md
   documentation_uri: https://rspec.info/documentation/
   mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
   source_code_uri: https://github.com/rspec/rspec-rails
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ

Reply via email to