Hello community,

here is the log from the commit of package rubygem-activerecord-6.0 for 
openSUSE:Factory checked in at 2019-08-19 21:40:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activerecord-6.0 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-activerecord-6.0.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-activerecord-6.0"

Mon Aug 19 21:40:44 2019 rev:1 rq:724301 version:6.0.0

Changes:
--------
New Changes file:

--- /dev/null   2019-08-07 02:59:15.679220339 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activerecord-6.0.new.22127/rubygem-activerecord-6.0.changes
     2019-08-19 21:40:46.476297694 +0200
@@ -0,0 +1,96 @@
+-------------------------------------------------------------------
+Sat Aug 17 20:51:27 UTC 2019 - Manuel Schnitzer <[email protected]>
+
+- updated to version 6.0.0
+
+  *   Preserve user supplied joins order as much as possible.
+
+      Fixes #36761, #34328, #24281, #12953.
+
+      *Ryuta Kamizono*
+
+  *   Make the DATABASE_URL env variable only affect the primary connection. 
Add new env variables for multiple databases.
+
+      *John Crepezzi*, *Eileen Uchitelle*
+
+  *   Add a warning for enum elements with 'not_' prefix.
+
+          class Foo
+            enum status: [:sent, :not_sent]
+          end
+
+      *Edu Depetris*
+
+  *   Make currency symbols optional for money column type in PostgreSQL
+
+      *Joel Schneider*
+
+-------------------------------------------------------------------
+Mon Jul 22 21:32:20 UTC 2019 - Manuel Schnitzer <[email protected]>
+
+- updated to version 6.0.0.rc2
+
+  *   Add database_exists? method to connection adapters to check if a 
database exists.
+
+      *Guilherme Mansur*
+
+  *   PostgreSQL: Fix GROUP BY with ORDER BY virtual count attribute.
+
+      Fixes #36022.
+
+      *Ryuta Kamizono*
+
+  *   Make ActiveRecord `ConnectionPool.connections` method thread-safe.
+
+      Fixes #36465.
+
+      *Jeff Doering*
+
+  *   Fix sqlite3 collation parsing when using decimal columns.
+
+      *Martin R. Schuster*
+
+  *   Fix invalid schema when primary key column has a comment.
+
+      Fixes #29966.
+
+      *Guilherme Goettems Schneider*
+
+  *   Fix table comment also being applied to the primary key column.
+
+      *Guilherme Goettems Schneider*
+
+  *   Fix merging left_joins to maintain its own `join_type` context.
+
+      Fixes #36103.
+
+      *Ryuta Kamizono*
+
+-------------------------------------------------------------------
+Sun Jun 30 09:33:29 UTC 2019 - Manuel Schnitzer <[email protected]>
+
+- disable 'disable_docs' option temporarily until we get an updated
+  gem2rpm and ruby-common package in our devel project.
+
+-------------------------------------------------------------------
+Sat May  4 23:50:44 UTC 2019 - Marcus Rueckert <[email protected]>
+
+- update to version 6.0.0.rc1:
+  
https://weblog.rubyonrails.org/2019/4/27/this-week-in-rails-rails-6-0-0-rc1-is-here-say-hi-at-railsconf/
+
+-------------------------------------------------------------------
+Thu Mar 14 03:49:29 UTC 2019 - Marcus Rueckert <[email protected]>
+
+- update to version 6.0.0.beta3:
+  
https://weblog.rubyonrails.org/2019/3/13/Rails-4-2-5-1-5-1-6-2-have-been-released/
+  CVE-2019-5418 CVE-2019-5419 CVE-2019-5420
+
+-------------------------------------------------------------------
+Sat Jan 19 19:51:01 UTC 2019 - Marcus Rueckert <[email protected]>
+
+- rb_build_ruby_abi needs to be rb_build_ruby_abis
+
+-------------------------------------------------------------------
+Sat Jan 19 00:15:01 UTC 2019 - Marcus Rueckert <[email protected]>
+
+- initial package

New:
----
  activerecord-6.0.0.gem
  gem2rpm.yml
  rubygem-activerecord-6.0.changes
  rubygem-activerecord-6.0.spec

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

Other differences:
------------------
++++++ rubygem-activerecord-6.0.spec ++++++
#
# spec file for package rubygem-activerecord-6.0
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#


#
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
# All sections marked as MANUAL, license headers, summaries and descriptions
# can be maintained in that file. Please consult this file before editing any
# of those fields
#

Name:           rubygem-activerecord-6.0
Version:        6.0.0
Release:        0
%define mod_name activerecord
%define mod_full_name %{mod_name}-%{version}
%define mod_version_suffix -6.0
# MANUAL
%if 0%{?suse_version} && 0%{?suse_version} < 1500
%define rb_build_versions       ruby26
%define rb_build_ruby_abis      ruby:2.6.0
%endif
# /MANUAL
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  ruby-macros >= 5
BuildRequires:  %{ruby >= 2.5.0}
BuildRequires:  %{rubygem gem2rpm}
BuildRequires:  %{rubygem rdoc > 3.10}
Url:            https://rubyonrails.org
Source:         https://rubygems.org/gems/%{mod_full_name}.gem
Source1:        gem2rpm.yml
Summary:        Object-relational mapper framework (part of Rails)
License:        MIT
Group:          Development/Languages/Ruby

%description
Databases on Rails. Build a persistent domain model by mapping database tables
to Ruby classes. Strong conventions for associations, validations,
aggregations, migrations, and testing come baked-in.

%prep

%build

%install
%gem_install \
  --doc-files="CHANGELOG.md MIT-LICENSE README.rdoc" \
  -f

%gem_packages

%changelog
++++++ gem2rpm.yml ++++++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch:
# :post_patch:
#   if you need to fiddle with the source dir before rebuilding the gem
# ## used by gem2rpm
# :sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: '....'
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV="no"
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
#     /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
#     Requires: util-linux
#     Recommends: pwgen
#   :filelist: |-
#     /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom_pkgs:
#   apache:
#     :preamble: |-
#       Requires: .....
#     :filelist: |-
#       /etc/apache2/conf.d/passenger.conf
#     :summary: Custom summary is optional
#     :description: |-
#       Custom description is optional
#
#       bar
#     :post: |-
#       /bin/echo foo
# :disable_docs: true
:preamble: |-
    %if 0%{?suse_version} && 0%{?suse_version} < 1500
    %define rb_build_versions       ruby26
    %define rb_build_ruby_abis      ruby:2.6.0
    %endif
:version_suffix: '-6.0'

Reply via email to