File rubygem-activerecord-4_1.changes of Package rubygem-activerecord-4_1
-------------------------------------------------------------------
Wed Jul 13 04:31:23 UTC 2016 - coolo@suse.com
- updated to version 4.1.16
see installed CHANGELOG.md
## Rails 4.1.16 (July 12, 2016) ##
* Correctly pass MySQL options when using structure_dump or structure_load
Specifically, it fixes an issue when using SSL authentication.
*Alex Coomans*
-------------------------------------------------------------------
Tue Mar 8 05:31:19 UTC 2016 - coolo@suse.com
- updated to version 4.1.15
see installed CHANGELOG.md
## Rails 4.1.15 (March 07, 2016) ##
* Fixes custom primary keys for associations when calling `Relation#where`
Fixes #23327.
*Rick Song*
* No longer pass deprecated option `-i` to `pg_dump`.
*Paul Sadauskas*
-------------------------------------------------------------------
Tue Mar 1 05:33:33 UTC 2016 - coolo@suse.com
- updated to version 4.1.14.2
see installed CHANGELOG.md
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.
## Rails 4.1.14.1 (January 25, 2015) ##
* No changes.
-------------------------------------------------------------------
Tue Jan 26 05:31:37 UTC 2016 - coolo@suse.com
- updated to version 4.1.14.1
see installed CHANGELOG.md
-------------------------------------------------------------------
Fri Nov 13 05:30:59 UTC 2015 - coolo@suse.com
- updated to version 4.1.14
see installed CHANGELOG.md
## Rails 4.1.14 (November 12, 2015) ##
* No longer pass deprecated option `-i` to `pg_dump`.
*Paul Sadauskas*
* Includes HABTM returns correct size now. It's caused by the join dependency
only instantiates one HABTM object because the join table hasn't a primary key.
Fixes #16032.
Examples:
before:
Project.first.salaried_developers.size # => 3
Project.includes(:salaried_developers).first.salaried_developers.size # => 1
after:
Project.first.salaried_developers.size # => 3
Project.includes(:salaried_developers).first.salaried_developers.size # => 3
*Bigxiang*
-------------------------------------------------------------------
Tue Aug 25 04:30:51 UTC 2015 - coolo@suse.com
- updated to version 4.1.13
see installed CHANGELOG.md
## Rails 4.1.13 (August 24, 2015) ##
* Don't define autosave association callbacks twice from
`accepts_nested_attributes_for`.
Fixes #18704.
*Sean Griffin*
-------------------------------------------------------------------
Fri Jun 26 04:31:08 UTC 2015 - coolo@suse.com
- updated to version 4.1.12
see installed CHANGELOG.md
## Rails 4.1.12 (June 25, 2015) ##
* Raises the right exception when declares a has many through
association with missing source.
*Mauro George*
* Revert behavior of `db:schema:load` back to loading the full
environment. This ensures that initializers are run.
Fixes #19545.
*Yves Senn*
* Rename `:class` to `:anonymous_class` in association options.
Fixes #19659.
*Andrew White*
* Fix referencing wrong table aliases while joining tables of has many through
association (only when calling calculation methods).
Fixes #19276.
*pinglamb*
-------------------------------------------------------------------
Wed Jun 17 04:32:23 UTC 2015 - coolo@suse.com
- updated to version 4.1.11
see installed CHANGELOG.md
## Rails 4.1.11 (June 16, 2015) ##
* No changes.
-------------------------------------------------------------------
Mon Mar 23 11:16:31 UTC 2015 - coolo@suse.com
- updated to version 4.1.10
* Fixed ActiveRecord::Relation#becomes! and changed_attributes issues for type column
Fixes #17139.
*Miklos Fazekas*
* A `NullRelation` should represent nothing. This fixes a bug where
`Comment.where(post_id: Post.none)` returned a non-empty result.
Closes #15176.
*Matthew Draper*, *Yves Senn*
* Respect custom primary keys for associations when calling `Relation#where`
Fixes #18813.
*Sean Griffin*
* Fixed ActiveRecord::Relation#group method when argument is SQL reserved key word:
SplitTest.group(:key).count
Property.group(:value).count
*Bogdan Gusiev*
* Fixed setting of foreign_key for through associations while building of new record.
Fixes #12698.
*Ivan Antropov*
* Fixed automatic inverse_of for models nested in module.
*Andrew McCloud*
* Fix `reaping_frequency` option when the value is a string.
This usually happens when it is configured using `DATABASE_URL`.
*korbin*
-------------------------------------------------------------------
Mon Jan 19 21:15:26 UTC 2015 - dmueller@suse.com
- update to 4.1.9:
* `db:schema:load` and `db:structure:load` no longer purge the database
before loading the schema. This is left for the user to do.
`db:test:prepare` will still purge the database.
* Bring back `db:test:prepare` to synchronize the test database schema.
* Renaming a table in pg also renames the primary key index.
* Make it possible to access fixtures excluded by a `default_scope`.
* `timestamps` and `add_timestamps` passes additional options along.
(like `null: false`)
* Cache `CollectionAssociation#reader` proxies separately before and after
the owner has been saved so that the proxy is not cached without the
owner's id.
* Fix preloading of associations which unscope a default scope.
* Do not use `RENAME INDEX` syntax for MariaDB 10.0.
* Allow included modules to override association methods.
* Schema loading rake tasks (like `db:schema:load` and `db:setup`) maintain
the database connection to the current environment.
* `db:purge` with MySQL respects `Rails.env`.
* Fixed automatic maintaining test schema to properly handle sql structure
schema format.
* Fix has_many :through relation merging failing when dynamic conditions are
passed as a lambda with an arity of one.
-------------------------------------------------------------------
Mon Nov 10 14:00:03 UTC 2014 - tboerger@suse.com
- To get rails 4 running on SLE 11 i have switched the
rb_build_versions definition to rub21 as it is activated within
devel:languages:ruby. That way we can get running rails 4 on
SLE 11 too.
-------------------------------------------------------------------
Sun Oct 12 17:02:33 UTC 2014 - coolo@suse.com
- updated to version 4.1.6, see CHANGELOG.md
-------------------------------------------------------------------
Wed Jul 23 13:30:41 UTC 2014 - mrueckert@suse.com
- - initial package