Hello community,

here is the log from the commit of package rubygem-railties-6.0 for 
openSUSE:Factory checked in at 2019-11-13 13:27:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-railties-6.0 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-railties-6.0.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-railties-6.0"

Wed Nov 13 13:27:18 2019 rev:2 rq:747818 version:6.0.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-railties-6.0/rubygem-railties-6.0.changes    
    2019-08-19 21:40:57.084295612 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-railties-6.0.new.2990/rubygem-railties-6.0.changes
      2019-11-13 13:27:18.883634319 +0100
@@ -1,0 +2,24 @@
+Tue Nov 12 16:49:14 UTC 2019 - Manuel Schnitzer <mschnit...@suse.com>
+
+- updated to version 6.0.1
+
+  *   The `zeitwerk:check` Rake task reports files outside the app's root
+      directory, as in engines loaded from gems.
+
+      *Xavier Noria*
+
+  *   Fixed a possible error when using the evented file update checker.
+
+      *Yuji Yaginuma*
+
+  *   The sqlite3 database files created by the parallel testing feature are
+      included in the default `.gitignore` file for newly-generated apps.
+
+      *Yasuo Honda*
+
+  *   `rails new` generates a `.keep` file in `tmp/pids`. This fixes starting
+      a server via `rackup` instead of `rails server`.
+
+      *Rafael Mendonça França*
+
+-------------------------------------------------------------------

Old:
----
  railties-6.0.0.gem

New:
----
  railties-6.0.1.gem

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

Other differences:
------------------
++++++ rubygem-railties-6.0.spec ++++++
--- /var/tmp/diff_new_pack.MHCHuw/_old  2019-11-13 13:27:19.419634877 +0100
+++ /var/tmp/diff_new_pack.MHCHuw/_new  2019-11-13 13:27:19.423634881 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-railties-6.0
-Version:        6.0.0
+Version:        6.0.1
 Release:        0
 %define mod_name railties
 %define mod_full_name %{mod_name}-%{version}
@@ -36,10 +36,10 @@
 %endif
 # /MANUAL
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{ruby >= 2.5.0}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:            https://rubyonrails.org
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem

++++++ railties-6.0.0.gem -> railties-6.0.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2019-08-16 19:59:12.000000000 +0200
+++ new/CHANGELOG.md    2019-11-05 15:37:54.000000000 +0100
@@ -1,3 +1,25 @@
+## Rails 6.0.1 (November 5, 2019) ##
+
+*   The `zeitwerk:check` Rake task reports files outside the app's root
+    directory, as in engines loaded from gems.
+
+    *Xavier Noria*
+
+*   Fixed a possible error when using the evented file update checker.
+
+    *Yuji Yaginuma*
+
+*   The sqlite3 database files created by the parallel testing feature are
+    included in the default `.gitignore` file for newly-generated apps.
+
+    *Yasuo Honda*
+
+*   `rails new` generates a `.keep` file in `tmp/pids`. This fixes starting
+    a server via `rackup` instead of `rails server`.
+
+    *Rafael Mendonça França*
+
+
 ## Rails 6.0.0 (August 16, 2019) ##
 
 *   `Rails.autoloaders.log!` is a logging shortcut to get the activity of the
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/api/task.rb new/lib/rails/api/task.rb
--- old/lib/rails/api/task.rb   2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/api/task.rb   2019-11-05 15:37:54.000000000 +0100
@@ -18,6 +18,7 @@
           include: %w(
             README.rdoc
             lib/active_record/**/*.rb
+            lib/arel.rb
           )
         },
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/application.rb new/lib/rails/application.rb
--- old/lib/rails/application.rb        2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/application.rb        2019-11-05 15:37:54.000000000 +0100
@@ -350,7 +350,7 @@
       files, dirs = config.watchable_files.dup, config.watchable_dirs.dup
 
       ActiveSupport::Dependencies.autoload_paths.each do |path|
-        dirs[path.to_s] = [:rb]
+        File.file?(path) ? files << path.to_s : dirs[path.to_s] = [:rb]
       end
 
       [files, dirs]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/gem_version.rb new/lib/rails/gem_version.rb
--- old/lib/rails/gem_version.rb        2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/gem_version.rb        2019-11-05 15:37:54.000000000 +0100
@@ -9,7 +9,7 @@
   module VERSION
     MAJOR = 6
     MINOR = 0
-    TINY  = 0
+    TINY  = 1
     PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/generators/app_base.rb 
new/lib/rails/generators/app_base.rb
--- old/lib/rails/generators/app_base.rb        2019-08-16 19:59:12.000000000 
+0200
+++ new/lib/rails/generators/app_base.rb        2019-11-05 15:37:54.000000000 
+0100
@@ -192,7 +192,7 @@
       def web_server_gemfile_entry # :doc:
         return [] if options[:skip_puma]
         comment = "Use Puma as the app server"
-        GemfileEntry.new("puma", "~> 3.11", comment)
+        GemfileEntry.new("puma", "~> 4.1", comment)
       end
 
       def include_all_railties? # :doc:
@@ -307,7 +307,7 @@
       def assets_gemfile_entry
         return [] if options[:skip_sprockets]
 
-        GemfileEntry.version("sass-rails", "~> 5", "Use SCSS for stylesheets")
+        GemfileEntry.version("sass-rails", ">= 6", "Use SCSS for stylesheets")
       end
 
       def webpacker_gemfile_entry
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/generators/rails/app/app_generator.rb 
new/lib/rails/generators/rails/app/app_generator.rb
--- old/lib/rails/generators/rails/app/app_generator.rb 2019-08-16 
19:59:12.000000000 +0200
+++ new/lib/rails/generators/rails/app/app_generator.rb 2019-11-05 
15:37:54.000000000 +0100
@@ -225,6 +225,7 @@
 
     def tmp
       empty_directory_with_keep_file "tmp"
+      empty_directory_with_keep_file "tmp/pids"
       empty_directory "tmp/cache"
       empty_directory "tmp/cache/assets"
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt 
new/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt
--- old/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt 
2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt 
2019-11-05 15:37:54.000000000 +0100
@@ -5,7 +5,8 @@
 
 Rails.application.configure do
   # Settings specified here will take precedence over those in 
config/application.rb.
-  <%# Spring executes the reloaders when files change. %>
+
+  <%-# Spring executes the reloaders when files change. %>
   <%- if spring_install? -%>
   config.cache_classes = false
   <%- else -%>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/rails/generators/rails/app/templates/gitignore.tt 
new/lib/rails/generators/rails/app/templates/gitignore.tt
--- old/lib/rails/generators/rails/app/templates/gitignore.tt   2019-08-16 
19:59:12.000000000 +0200
+++ new/lib/rails/generators/rails/app/templates/gitignore.tt   2019-11-05 
15:37:54.000000000 +0100
@@ -11,6 +11,7 @@
 # Ignore the default SQLite database.
 /db/*.sqlite3
 /db/*.sqlite3-journal
+/db/*.sqlite3-*
 
 <% end -%>
 # Ignore all logfiles and tempfiles.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/rails/generators/rails/app/templates/package.json.tt 
new/lib/rails/generators/rails/app/templates/package.json.tt
--- old/lib/rails/generators/rails/app/templates/package.json.tt        
2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/generators/rails/app/templates/package.json.tt        
2019-11-05 15:37:54.000000000 +0100
@@ -2,10 +2,10 @@
   "name": "<%= app_name %>",
   "private": true,
   "dependencies": {
-    "@rails/ujs": "^6.0.0-alpha"<% unless options[:skip_turbolinks] %>,
+    "@rails/ujs": "^6.0.0"<% unless options[:skip_turbolinks] %>,
     "turbolinks": "^5.2.0"<% end -%><% unless skip_active_storage? %>,
-    "@rails/activestorage": "^6.0.0-alpha"<% end -%><% unless 
options[:skip_action_cable] %>,
-    "@rails/actioncable": "^6.0.0-alpha"<% end %>
+    "@rails/activestorage": "^6.0.0"<% end -%><% unless 
options[:skip_action_cable] %>,
+    "@rails/actioncable": "^6.0.0"<% end %>
   },
   "version": "0.1.0"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/rails/generators/rails/plugin/templates/gitignore.tt 
new/lib/rails/generators/rails/plugin/templates/gitignore.tt
--- old/lib/rails/generators/rails/plugin/templates/gitignore.tt        
2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/generators/rails/plugin/templates/gitignore.tt        
2019-11-05 15:37:54.000000000 +0100
@@ -5,6 +5,7 @@
 <% if sqlite3? -%>
 <%= dummy_path %>/db/*.sqlite3
 <%= dummy_path %>/db/*.sqlite3-journal
+<%= dummy_path %>/db/*.sqlite3-*
 <% end -%>
 <%= dummy_path %>/log/*.log
 <% unless options[:skip_javascript] -%>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/info.rb new/lib/rails/info.rb
--- old/lib/rails/info.rb       2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/info.rb       2019-11-05 15:37:54.000000000 +0100
@@ -68,7 +68,7 @@
 
     # The RubyGems version, if it's installed.
     property "RubyGems version" do
-      Gem::RubyGemsVersion
+      Gem::VERSION
     end
 
     property "Rack version" do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/tasks/zeitwerk.rake 
new/lib/rails/tasks/zeitwerk.rake
--- old/lib/rails/tasks/zeitwerk.rake   2019-08-16 19:59:12.000000000 +0200
+++ new/lib/rails/tasks/zeitwerk.rake   2019-11-05 15:37:54.000000000 +0100
@@ -46,8 +46,8 @@
     begin
       eager_load[]
     rescue NameError => e
-      if e.message =~ /expected file .*? to define constant \S+/
-        abort $&.sub(/#{Regexp.escape(Rails.root.to_s)}./, "")
+      if e.message =~ /expected file .*? to define constant [\w:]+/
+        abort $&.sub(/expected file #{Regexp.escape(Rails.root.to_s)}./, 
"expected file ")
       else
         raise
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2019-08-16 19:59:12.000000000 +0200
+++ new/metadata        2019-11-05 15:37:54.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: railties
 version: !ruby/object:Gem::Version
-  version: 6.0.0
+  version: 6.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2019-08-16 00:00:00.000000000 Z
+date: 2019-11-05 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
 - !ruby/object:Gem::Dependency
   name: rake
   requirement: !ruby/object:Gem::Requirement
@@ -92,14 +92,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 6.0.0
+        version: 6.0.1
 description: 'Rails internals: application bootup, plugins, generators, and 
rake tasks.'
 email: da...@loudthinking.com
 executables:
@@ -431,8 +431,11 @@
 licenses:
 - MIT
 metadata:
-  source_code_uri: https://github.com/rails/rails/tree/v6.0.0/railties
-  changelog_uri: 
https://github.com/rails/rails/blob/v6.0.0/railties/CHANGELOG.md
+  bug_tracker_uri: https://github.com/rails/rails/issues
+  changelog_uri: 
https://github.com/rails/rails/blob/v6.0.1/railties/CHANGELOG.md
+  documentation_uri: https://api.rubyonrails.org/v6.0.1/
+  mailing_list_uri: https://groups.google.com/forum/#!forum/rubyonrails-talk
+  source_code_uri: https://github.com/rails/rails/tree/v6.0.1/railties
 post_install_message: 
 rdoc_options:
 - "--exclude"
@@ -450,7 +453,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.0.1
+rubygems_version: 3.0.3
 signing_key: 
 specification_version: 4
 summary: Tools for creating, working with, and running Rails applications.


Reply via email to