Hello community, here is the log from the commit of package rubygem-arel for openSUSE:Factory checked in at 2016-10-10 16:23:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-arel (Old) and /work/SRC/openSUSE:Factory/.rubygem-arel.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-arel" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-arel/rubygem-arel.changes 2016-08-26 23:17:03.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-arel.new/rubygem-arel.changes 2016-10-10 16:23:40.000000000 +0200 @@ -1,0 +2,12 @@ +Wed Sep 14 04:29:04 UTC 2016 - [email protected] + +- updated to version 7.1.2 + see installed History.txt + + === 7.1.2 / 2016-09-13 + + * bug fixes + + * Don't store all aliases to a table + +------------------------------------------------------------------- Old: ---- arel-7.1.1.gem New: ---- arel-7.1.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-arel.spec ++++++ --- /var/tmp/diff_new_pack.YPwnnI/_old 2016-10-10 16:23:43.000000000 +0200 +++ /var/tmp/diff_new_pack.YPwnnI/_new 2016-10-10 16:23:43.000000000 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-arel -Version: 7.1.1 +Version: 7.1.2 Release: 0 %define mod_name arel %define mod_full_name %{mod_name}-%{version} ++++++ arel-7.1.1.gem -> arel-7.1.2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/History.txt new/History.txt --- old/History.txt 2016-07-28 01:17:50.000000000 +0200 +++ new/History.txt 2016-09-13 22:27:22.000000000 +0200 @@ -1,8 +1,14 @@ +=== 7.1.2 / 2016-09-13 + +* bug fixes + + * Don't store all aliases to a table + === 7.1.1 / 2016-07-27 -* Bug Fixes +* bug fixes - * Fix warning in `Casted#hash` + * fix warning in `casted#hash` === 7.1.0 / 2016-07-19 Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/arel/table.rb new/lib/arel/table.rb --- old/lib/arel/table.rb 2016-07-28 01:17:50.000000000 +0200 +++ new/lib/arel/table.rb 2016-09-13 22:27:22.000000000 +0200 @@ -6,7 +6,7 @@ @engine = nil class << self; attr_accessor :engine; end - attr_accessor :name, :aliases, :table_alias + attr_accessor :name, :table_alias # TableAlias and Table both have a #table_name which is the name of the underlying table alias :table_name :name @@ -14,7 +14,6 @@ def initialize(name, as: nil, type_caster: nil) @name = name.to_s @columns = nil - @aliases = [] @type_caster = type_caster # Sometime AR sends an :as parameter to table, to let the table know @@ -27,9 +26,7 @@ end def alias name = "#{self.name}_2" - Nodes::TableAlias.new(self, name).tap do |node| - @aliases << node - end + Nodes::TableAlias.new(self, name) end def from @@ -94,7 +91,6 @@ def eql? other self.class == other.class && self.name == other.name && - self.aliases == other.aliases && self.table_alias == other.table_alias end alias :== :eql? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/arel.rb new/lib/arel.rb --- old/lib/arel.rb 2016-07-28 01:17:50.000000000 +0200 +++ new/lib/arel.rb 2016-09-13 22:27:22.000000000 +0200 @@ -21,7 +21,7 @@ require 'arel/nodes' module Arel - VERSION = '7.1.1' + VERSION = '7.1.2' def self.sql raw_sql Arel::Nodes::SqlLiteral.new raw_sql diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2016-07-28 01:17:50.000000000 +0200 +++ new/metadata 2016-09-13 22:27:22.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: arel version: !ruby/object:Gem::Version - version: 7.1.1 + version: 7.1.2 platform: ruby authors: - Aaron Patterson @@ -11,7 +11,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2016-07-27 00:00:00.000000000 Z +date: 2016-09-13 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: minitest @@ -182,7 +182,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.6.6 +rubygems_version: 2.5.1 signing_key: specification_version: 4 summary: Arel Really Exasperates Logicians Arel is a SQL AST manager for Ruby
