acts-as-taggable-on 6.0.0 → 6.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +17 -7
- data/Appraisals +4 -0
- data/CHANGELOG.md +179 -140
- data/README.md +10 -1
- data/acts-as-taggable-on.gemspec +2 -2
- data/db/migrate/1_acts_as_taggable_on_migration.rb +8 -7
- data/db/migrate/2_add_missing_unique_indices.rb +8 -8
- data/db/migrate/3_add_taggings_counter_cache_to_tags.rb +3 -3
- data/db/migrate/4_add_missing_taggable_index.rb +2 -2
- data/db/migrate/5_change_collation_for_tag_names.rb +1 -1
- data/db/migrate/6_add_missing_indexes_on_taggings.rb +9 -9
- data/gemfiles/activerecord_5.0.gemfile +2 -4
- data/gemfiles/activerecord_5.1.gemfile +2 -4
- data/gemfiles/activerecord_5.2.gemfile +2 -4
- data/gemfiles/activerecord_6.0.gemfile +21 -0
- data/lib/acts-as-taggable-on.rb +5 -1
- data/lib/acts_as_taggable_on/tag.rb +9 -18
- data/lib/acts_as_taggable_on/taggable/cache.rb +38 -34
- data/lib/acts_as_taggable_on/taggable/collection.rb +8 -6
- data/lib/acts_as_taggable_on/taggable/core.rb +11 -5
- data/lib/acts_as_taggable_on/taggable/tag_list_type.rb +4 -0
- data/lib/acts_as_taggable_on/tagging.rb +3 -1
- data/lib/acts_as_taggable_on/utils.rb +4 -0
- data/lib/acts_as_taggable_on/version.rb +1 -2
- data/spec/acts_as_taggable_on/acts_as_taggable_on_spec.rb +4 -12
- data/spec/acts_as_taggable_on/caching_spec.rb +16 -10
- data/spec/acts_as_taggable_on/single_table_inheritance_spec.rb +12 -7
- data/spec/acts_as_taggable_on/taggable_spec.rb +9 -9
- data/spec/acts_as_taggable_on/tagger_spec.rb +2 -2
- data/spec/internal/app/models/altered_inheriting_taggable_model.rb +2 -0
- data/spec/internal/app/models/cached_model_with_array.rb +6 -0
- data/spec/internal/app/models/columns_override_model.rb +5 -0
- data/spec/internal/app/models/company.rb +1 -1
- data/spec/internal/app/models/inheriting_taggable_model.rb +2 -0
- data/spec/internal/app/models/market.rb +1 -1
- data/spec/internal/app/models/non_standard_id_taggable_model.rb +1 -1
- data/spec/internal/app/models/student.rb +2 -0
- data/spec/internal/app/models/taggable_model.rb +1 -0
- data/spec/internal/app/models/user.rb +1 -1
- data/spec/internal/db/schema.rb +11 -5
- data/spec/spec_helper.rb +0 -1
- data/spec/support/database.rb +3 -3
- metadata +16 -9
- data/spec/internal/app/models/models.rb +0 -90
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4120fe17937a900a8bbe921880f0e3e8c83a4355483bfbbb6eba6e99738b7fda
|
4
|
+
data.tar.gz: 1b8924e2cb3a360e6be90986e5be0460652aac74225869f570200bde2a734cf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28ea6660e352e3e025311ed9a3d470b941d3b4bca6108b3ce7eaadc0fd0aac3d8ba7508baf002ab2a8ac09ecd7bf2795e1b0a26158e1d636c305722e2bff9ad7
|
7
|
+
data.tar.gz: 2ddf924977f9bdb6c0e6665186ce3de7d2624abb00b933b06194f64866bb39d3b98c0bb7a0f2de635c046a0b655ad084392120fbd12afb5ed06057579b38961d
|
data/.travis.yml
CHANGED
@@ -1,12 +1,18 @@
|
|
1
1
|
language: ruby
|
2
2
|
cache: bundler
|
3
3
|
|
4
|
+
addons:
|
5
|
+
postgresql: '10'
|
6
|
+
|
7
|
+
services:
|
8
|
+
- mysql
|
9
|
+
- postgresql
|
10
|
+
|
4
11
|
rvm:
|
5
|
-
-
|
6
|
-
- 2.5.
|
7
|
-
- 2.4.
|
12
|
+
- 2.6.5
|
13
|
+
- 2.5.5
|
14
|
+
- 2.4.6
|
8
15
|
- 2.3.7
|
9
|
-
- 2.2.7
|
10
16
|
|
11
17
|
env:
|
12
18
|
- DB=sqlite3
|
@@ -17,13 +23,12 @@ gemfile:
|
|
17
23
|
- gemfiles/activerecord_5.2.gemfile
|
18
24
|
- gemfiles/activerecord_5.1.gemfile
|
19
25
|
- gemfiles/activerecord_5.0.gemfile
|
20
|
-
|
21
|
-
sudo: false
|
26
|
+
- gemfiles/activerecord_6.0.gemfile
|
22
27
|
|
23
28
|
bundler_args: '--without local_development --jobs 3 --retry 3'
|
24
29
|
|
25
30
|
before_install:
|
26
|
-
|
31
|
+
- gem install bundler
|
27
32
|
|
28
33
|
script: bundle exec rake
|
29
34
|
|
@@ -31,3 +36,8 @@ matrix:
|
|
31
36
|
allow_failures:
|
32
37
|
- rvm: ruby-head
|
33
38
|
fast_finish: true
|
39
|
+
exclude:
|
40
|
+
- rvm: 2.3.7
|
41
|
+
gemfile: gemfiles/activerecord_6.0.gemfile
|
42
|
+
- rvm: 2.4.6
|
43
|
+
gemfile: gemfiles/activerecord_6.0.gemfile
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,128 +1,161 @@
|
|
1
|
-
Changes are below categorized as
|
1
|
+
Changes are below categorized as follows:
|
2
|
+
- Breaking Changes
|
3
|
+
- Features
|
4
|
+
- Fixes
|
5
|
+
- Performance
|
6
|
+
- Misc
|
7
|
+
- Documentation
|
2
8
|
|
3
|
-
Each change should fall into categories that would affect whether the release is major (breaking changes), minor (new behavior), or patch (bug fix). See [semver](http://semver.org/) and [pessimistic versioning](http://guides.rubygems.org/patterns/#pessimistic_version_constraint)
|
9
|
+
Each change should fall into categories that would affect whether the release is major (breaking changes), minor (new behavior), or patch (bug fix). See [semver](http://semver.org/) and [pessimistic versioning](http://guides.rubygems.org/patterns/#pessimistic_version_constraint).
|
4
10
|
|
5
|
-
As such,
|
11
|
+
As such, _Breaking Changes_ are major. _Features_ would map to either major or minor. _Fixes_, _Performance_, and _Misc_ are either minor or patch, the difference being kind of fuzzy for the purposes of history. Adding _Documentation_ (including tests) would be patch level.
|
6
12
|
|
7
|
-
### [
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
*
|
14
|
-
|
13
|
+
### [Master / Unreleased](https://github.com/mbleigh/acts-as-taggable-on/compare/v6.0.1...master)
|
14
|
+
* Features
|
15
|
+
* [@mizukami234 @junmoka Make table names configurable](https://github.com/mbleigh/acts-as-taggable-on/pull/910)
|
16
|
+
* Fixes
|
17
|
+
* [@tonyta Avoid overriding user-defined columns cache methods](https://github.com/mbleigh/acts-as-taggable-on/pull/911)
|
18
|
+
* Misc
|
19
|
+
* [@gssbzn Remove legacy code for an empty query and replace it with ` ActiveRecord::none`](https://github.com/mbleigh/acts-as-taggable-on/pull/906)
|
20
|
+
* Documentation
|
21
|
+
* [@tonyta Cleanup CHANGELOG.md formatting and references](https://github.com/mbleigh/acts-as-taggable-on/pull/913)
|
22
|
+
### [6.0.1 / 2018-06-27](https://github.com/mbleigh/acts-as-taggable-on/compare/v6.0.0...v6.0.1)
|
23
|
+
|
24
|
+
* Fixes
|
25
|
+
* [@hengwoon tags_count only need to join on the taggable's table if using STI](https://github.com/mbleigh/acts-as-taggable-on/pull/904)
|
26
|
+
|
27
|
+
### [6.0.0 / 2018-06-19](https://github.com/mbleigh/acts-as-taggable-on/compare/v5.0.0...v6.0.0)
|
28
|
+
|
29
|
+
* Breaking Changes
|
30
|
+
* [@Fodoj Drop support for Rails 4.2](https://github.com/mbleigh/acts-as-taggable-on/pull/887)
|
31
|
+
|
32
|
+
* Features
|
33
|
+
* [@CalvertYang Add support for uuid primary keys](https://github.com/mbleigh/acts-as-taggable-on/pull/898)
|
34
|
+
* [@Fodoj Support Rails 5.2](https://github.com/mbleigh/acts-as-taggable-on/pull/887)
|
35
|
+
|
36
|
+
* Fixes
|
37
|
+
* [@tekniklr matches_attribute was not being used in tag_match_type](https://github.com/mbleigh/acts-as-taggable-on/issues/869)
|
15
38
|
|
16
39
|
### [5.0.0 / 2017-05-18](https://github.com/mbleigh/acts-as-taggable-on/compare/v4.0.0...v5.0.0)
|
17
|
-
|
18
|
-
|
19
|
-
*
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
*
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
|
41
|
+
* Breaking Changes
|
42
|
+
* [@seuros Drop support for old version of ActiveRecord and Ruby and prepare rel](https://github.com/mbleigh/acts-as-taggable-on/pull/828)
|
43
|
+
|
44
|
+
* Features
|
45
|
+
* [@rbritom Tagged with rewrite](https://github.com/mbleigh/acts-as-taggable-on/pull/829)
|
46
|
+
* [@fearenales Due to database collisions, retry finding or creating a tag](https://github.com/mbleigh/acts-as-taggable-on/pull/809)
|
47
|
+
* [@brilyuhns Add owner_tags method to taggable](https://github.com/mbleigh/acts-as-taggable-on/pull/771)
|
48
|
+
* [@brilyuhns upport array of contexts in owner_tags_on method](https://github.com/mbleigh/acts-as-taggable-on/pull/771)
|
49
|
+
* [@brilyuhns Add specs for owner_tags_on and owner_tags methods](https://github.com/mbleigh/acts-as-taggable-on/pull/771)
|
50
|
+
|
51
|
+
* Fixes
|
52
|
+
* [@rbritom bump ruby versions for travis](https://github.com/mbleigh/acts-as-taggable-on/pull/825)
|
53
|
+
* [@mnrk Fixed Rails 5.1 deprecation message, has_many needs String value for](https://github.com/mbleigh/acts-as-taggable-on/pull/813)
|
54
|
+
* [@ProGM ProGM Adding a test to demonstrate the bug](https://github.com/mbleigh/acts-as-taggable-on/pull/806)
|
55
|
+
* [@ProGM ProGM Ensure that `caching_tag_list_on?` is injected before using it](https://github.com/mbleigh/acts-as-taggable-on/pull/806)
|
56
|
+
* [@ProGM ProGM Fix insert query for postgresql. Move schema definition in schema.rb](https://github.com/mbleigh/acts-as-taggable-on/pull/806)
|
57
|
+
* [@amatsuda assigned but unused variable - any](https://github.com/mbleigh/acts-as-taggable-on/pull/787)
|
58
|
+
* [@gmcnaughton Fix incorrect call of 'self.class' on methods which are already class](https://github.com/mbleigh/acts-as-taggable-on/pull/782)
|
59
|
+
* [@gmcnaughton Fixed #712 (incompatibility with ActiveRecord::Sanitization#quoted_id)](https://github.com/mbleigh/acts-as-taggable-on/pull/782)
|
60
|
+
* [@arpitchauhan Guard against indexes already existing](https://github.com/mbleigh/acts-as-taggable-on/pull/779)
|
61
|
+
* [@arpitchauhan Rename migration to avoid conflicts](https://github.com/mbleigh/acts-as-taggable-on/pull/774)
|
62
|
+
* [@lukeasrodgers "Bugfix `TagList#concat` with non-duplicates."](https://github.com/mbleigh/acts-as-taggable-on/pull/729)
|
63
|
+
* [@fabn Revert "Added missed indexes."](https://github.com/mbleigh/acts-as-taggable-on/pull/709)
|
64
|
+
|
65
|
+
* Documentation
|
66
|
+
* [@logicminds Adds a table of contents to the readme and contributing files](https://github.com/mbleigh/acts-as-taggable-on/pull/803)
|
67
|
+
* [@ashishg-qburst Fix typo in README](https://github.com/mbleigh/acts-as-taggable-on/pull/800)
|
68
|
+
* [@praveenangyan Update README.md](https://github.com/mbleigh/acts-as-taggable-on/pull/798)
|
69
|
+
* [@colemerrick update finding tagged objects in readme](https://github.com/mbleigh/acts-as-taggable-on/pull/794)
|
70
|
+
* [@jaredbeck Help people upgrade to 4.0.0](https://github.com/mbleigh/acts-as-taggable-on/pull/784)
|
71
|
+
* [@vasinov Update README.md](https://github.com/mbleigh/acts-as-taggable-on/pull/776)
|
45
72
|
|
46
73
|
### [4.0.0 / 2016-08-08](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.5.0...v4.0.0)
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
* [@
|
54
|
-
|
55
|
-
|
56
|
-
* [@
|
57
|
-
* [@
|
58
|
-
* [@
|
59
|
-
* [@
|
60
|
-
* [@
|
61
|
-
* [@
|
62
|
-
* [@
|
63
|
-
* [@
|
64
|
-
* [@
|
65
|
-
* [@
|
66
|
-
* [@
|
67
|
-
* [@
|
74
|
+
|
75
|
+
* Breaking Changes
|
76
|
+
* [@krzysiek1507 drop support for Ruby < 2](https://github.com/mbleigh/acts-as-taggable-on/pull/758)
|
77
|
+
* [@krzysiek1507 drop support for Rails < 4](https://github.com/mbleigh/acts-as-taggable-on/pull/757)
|
78
|
+
|
79
|
+
* Features
|
80
|
+
* [@jessieay Rails 5](https://github.com/mbleigh/acts-as-taggable-on/pull/763)
|
81
|
+
|
82
|
+
* Fixes
|
83
|
+
* [@rikettsie #623 collation parameter is ignored if it generates an exception](https://github.com/mbleigh/acts-as-taggable-on/pull/650)
|
84
|
+
* [@bwvoss References working parser in deprectation warning](https://github.com/mbleigh/acts-as-taggable-on/pull/659)
|
85
|
+
* [@jh125486 Updated tagging_contexts to include dynamic contexts](https://github.com/mbleigh/acts-as-taggable-on/pull/660)
|
86
|
+
* [@jh125486 Fixed wildcard test (postgres returning rows with unexpected order)](https://github.com/mbleigh/acts-as-taggable-on/pull/660)
|
87
|
+
* [@FlowerWrong Add rails 5.0.0 alpha support, not hack rails <5](https://github.com/mbleigh/acts-as-taggable-on/pull/673)
|
88
|
+
* [@ryanfox1985 Added missed indexes.](https://github.com/mbleigh/acts-as-taggable-on/pull/682)
|
89
|
+
* [@zapnap scope tags to specific tagging](https://github.com/mbleigh/acts-as-taggable-on/pull/697)
|
90
|
+
* [@amatsuda method redefined](https://github.com/mbleigh/acts-as-taggable-on/pull/715)
|
91
|
+
* [@klacointe Rails 5: Tagger is optional in Tagging relation](https://github.com/mbleigh/acts-as-taggable-on/pull/720)
|
92
|
+
* [@mark-jacobs Update clean! method to use case insensitive uniq! when strict_case_match false](https://github.com/mbleigh/acts-as-taggable-on/commit/90c86994b70a399b8b1cbc0ae88835e14d6aadfc)
|
93
|
+
* [@lukeasrodgers BugFix flackey time test](https://github.com/mbleigh/acts-as-taggable-on/pull/727)
|
94
|
+
* [@pcupueran Add rspec tests for context scopes for tagging_spec](https://github.com/mbleigh/acts-as-taggable-on/pull/740)
|
95
|
+
* [@emerson-h Remove existing selects from relation](https://github.com/mbleigh/acts-as-taggable-on/pull/743)
|
96
|
+
* [@keerthisiv fix issue with custom delimiter](https://github.com/mbleigh/acts-as-taggable-on/pull/748)
|
97
|
+
* [@priyank-gupta specify tag table name for mysql collation query](https://github.com/mbleigh/acts-as-taggable-on/pull/760)
|
68
98
|
* [@seuros Remove warning messages](https://github.com/mbleigh/acts-as-taggable-on/commit/cda08c764b07a18b8582b948d1c5b3910a376965)
|
69
|
-
* [@rbritom
|
70
|
-
* [@rbritom
|
71
|
-
* [@rbritom
|
72
|
-
* [@seuros Remove more deprecations
|
73
|
-
* [@lukeasrodgers
|
74
|
-
* [@seuros
|
75
|
-
* [@rbritom
|
76
|
-
* [@rbritom
|
77
|
-
*[@rbritom add index on down method . ](https://github.com/mbleigh/acts-as-taggable-on/pull/767)
|
99
|
+
* [@rbritom Fix migration, #references already adds index](https://github.com/mbleigh/acts-as-taggable-on/commit/95f743010954b6b738a6e8c17315112c878f7a81)
|
100
|
+
* [@rbritom Fix deprecation warning](https://github.com/mbleigh/acts-as-taggable-on/commit/62e4a6fa74ae3faed615683cd3ad5b5cdacf5c96)
|
101
|
+
* [@rbritom fix scope array arguments](https://github.com/mbleigh/acts-as-taggable-on/commit/a415a8d6367b2e91bd7e363589135f953929b8cc)
|
102
|
+
* [@seuros Remove more deprecations](https://github.com/mbleigh/acts-as-taggable-on/commit/05794170f64f8bf250b34d2d594e368721009278)
|
103
|
+
* [@lukeasrodgers Bugfix `TagList#concat` with non-duplicates.](https://github.com/mbleigh/acts-as-taggable-on/commit/2c6214f0ddf8c6440ab81eec04d1fbf9d97c8826)
|
104
|
+
* [@seuros clean! should return self.](https://github.com/mbleigh/acts-as-taggable-on/commit/c739422f56f8ff37e3f321235e74997422a1c980)
|
105
|
+
* [@rbritom renable appraisals](https://github.com/mbleigh/acts-as-taggable-on/commit/0ca1f1c5b059699c683a28b522e86a3d5cd7639e)
|
106
|
+
* [@rbritom remove index conditionally on up method.](https://github.com/mbleigh/acts-as-taggable-on/commit/9cc580e7f88164634eb10c8826e5b30ea0e00544)
|
107
|
+
* [@rbritom add index on down method . ](https://github.com/mbleigh/acts-as-taggable-on/pull/767)
|
78
108
|
* [@rbritom remove index conditionally on up method](https://github.com/mbleigh/acts-as-taggable-on/commit/9cc580e7f88164634eb10c8826e5b30ea0e00544)
|
79
109
|
|
80
|
-
|
110
|
+
* Documentation
|
81
111
|
* [@logicminds Adds table of contents using doctoc utility](https://github.com/mbleigh/acts-as-taggable-on/pull/803)
|
82
|
-
* [@jamesprior
|
112
|
+
* [@jamesprior Changing ActsAsTaggable to ActsAsTaggableOn](https://github.com/mbleigh/acts-as-taggable-on/pull/637)
|
83
113
|
* [@markgandolfo Update README.md](https://github.com/mbleigh/acts-as-taggable-on/pull/645))
|
84
114
|
* [@snowblink Update release date for 3.5.0](https://github.com/mbleigh/acts-as-taggable-on/pull/647)
|
85
|
-
* [@AlexVPopov Update README.md
|
115
|
+
* [@AlexVPopov Update README.md](https://github.com/mbleigh/acts-as-taggable-on/pull/671)
|
86
116
|
* [@schnmudgal README.md, Improve documentation for Tag Ownership](https://github.com/mbleigh/acts-as-taggable-on/pull/706)
|
87
117
|
|
88
118
|
### [3.5.0 / 2015-03-03](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.4.4...v3.5.0)
|
89
119
|
|
90
|
-
|
91
|
-
|
92
|
-
*Misc
|
93
|
-
* [@pcupueran Add rspec test for tagging_spec completeness]()
|
120
|
+
* Fixes
|
121
|
+
* [@rikettsie Fixed collation for MySql via rake rule or config parameter](https://github.com/mbleigh/acts-as-taggable-on/pull/634)
|
94
122
|
|
95
|
-
|
123
|
+
* Misc
|
124
|
+
* [@pcupueran Add rspec test for tagging_spec completeness]()
|
96
125
|
|
97
|
-
|
98
|
-
* [@d4rky-pl Add context constraint to find_related_* methods](https://github.com/mbleigh/acts-as-taggable-on/pull/629)
|
126
|
+
### [3.4.4 / 2015-02-11](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.4.3...v3.4.4)
|
99
127
|
|
128
|
+
* Fixes
|
129
|
+
* [@d4rky-pl Add context constraint to find_related_* methods](https://github.com/mbleigh/acts-as-taggable-on/pull/629)
|
100
130
|
|
101
131
|
### [3.4.3 / 2014-09-26](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.4.2...v3.4.3)
|
102
132
|
|
103
|
-
|
104
|
-
|
133
|
+
* Fixes
|
134
|
+
* [@warp clears column cache on reset_column_information resolves](https://github.com/mbleigh/acts-as-taggable-on/issues/621)
|
105
135
|
|
106
136
|
### [3.4.2 / 2014-09-26](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.4.1...v3.4.2)
|
107
137
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
138
|
+
* Fixes
|
139
|
+
* [@stiff fixed tagged_with :any in postgresql](https://github.com/mbleigh/acts-as-taggable-on/pull/570)
|
140
|
+
* [@jerefrer fixed encoding in mysql](https://github.com/mbleigh/acts-as-taggable-on/pull/588)
|
141
|
+
* [@markedmondson Ensure taggings context aliases are maintained when joining multiple taggables](https://github.com/mbleigh/acts-as-taggable-on/pull/589)
|
112
142
|
|
113
143
|
### [3.4.1 / 2014-09-01](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.4.0...v3.4.1)
|
114
|
-
|
115
|
-
|
144
|
+
|
145
|
+
* Fixes
|
146
|
+
* [@konukhov fix owned ordered taggable bug](https://github.com/mbleigh/acts-as-taggable-on/pull/585)
|
116
147
|
|
117
148
|
### [3.4.0 / 2014-08-29](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.3.0...v3.4.0)
|
118
149
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
*
|
125
|
-
|
150
|
+
* Features
|
151
|
+
* [@ProGM Support for custom parsers for tags](https://github.com/mbleigh/acts-as-taggable-on/pull/579)
|
152
|
+
* [@lolaodelola #577 Popular feature](https://github.com/mbleigh/acts-as-taggable-on/pull/577)
|
153
|
+
|
154
|
+
* Fixes
|
155
|
+
* [@twalpole Update for rails edge (4.2)](https://github.com/mbleigh/acts-as-taggable-on/pull/583)
|
156
|
+
|
157
|
+
* Performance
|
158
|
+
* [@ashanbrown #584 Use pluck instead of select](https://github.com/mbleigh/acts-as-taggable-on/pull/584)
|
126
159
|
|
127
160
|
### [3.3.0 / 2014-07-08](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.6...v3.3.0)
|
128
161
|
|
@@ -131,12 +164,11 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
131
164
|
|
132
165
|
* Fixes
|
133
166
|
* [@tonytonyjan #560 Fix for `ActsAsTaggableOn.remove_unused_tags` doesn't work](https://github.com/mbleigh/acts-as-taggable-on/pull/560)
|
134
|
-
* [@
|
167
|
+
* [@TheLarkInn #555 Fix for `tag_cloud` helper to generate correct css tags](https://github.com/mbleigh/acts-as-taggable-on/pull/555)
|
135
168
|
|
136
169
|
* Performance
|
137
170
|
* [@pcai #556 Add back taggables index in the taggins table](https://github.com/mbleigh/acts-as-taggable-on/pull/556)
|
138
171
|
|
139
|
-
|
140
172
|
### [3.2.6 / 2014-05-28](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.5...v3.2.6)
|
141
173
|
|
142
174
|
* Fixes
|
@@ -146,13 +178,11 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
146
178
|
* [@seuros Remove actionpack dependency](https://github.com/mbleigh/acts-as-taggable-on/commit/5d20e0486c892fbe21af42fdcd79d0b6ebe87ed4)
|
147
179
|
* [@seuros #547 Add tests for update_attributes](https://github.com/mbleigh/acts-as-taggable-on/issues/547)
|
148
180
|
|
149
|
-
|
150
181
|
### [3.2.5 / 2014-05-25](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.4...v3.2.5)
|
151
182
|
|
152
183
|
* Fixes
|
153
184
|
* [@seuros #546 Fix autoload bug. Now require engine file instead of autoloading it](https://github.com/mbleigh/acts-as-taggable-on/issues/546)
|
154
185
|
|
155
|
-
|
156
186
|
### [3.2.4 / 2014-05-24](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.3...v3.2.4)
|
157
187
|
|
158
188
|
* Fixes
|
@@ -164,13 +194,11 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
164
194
|
* [@seuros #543 Introduce lazy loading](https://github.com/mbleigh/acts-as-taggable-on/pull/543)
|
165
195
|
* [@seuros #541 Deprecate ActsAsTaggableOn::Utils](https://github.com/mbleigh/acts-as-taggable-on/pull/541)
|
166
196
|
|
167
|
-
|
168
197
|
### [3.2.3 / 2014-05-16](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.2...v3.2.3)
|
169
198
|
|
170
199
|
* Fixes
|
171
200
|
* [@seuros #540 Fix for tags removal (it was affecting all records with the same tag)](https://github.com/mbleigh/acts-as-taggable-on/pull/540)
|
172
|
-
* [@
|
173
|
-
|
201
|
+
* [@akicho8 #535 Fix for `options` Hash passed to methods from being deleted by those methods](https://github.com/mbleigh/acts-as-taggable-on/pull/535)
|
174
202
|
|
175
203
|
### [3.2.2 / 2014-05-07](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.1...v3.2.2)
|
176
204
|
|
@@ -184,7 +212,6 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
184
212
|
* [@seuros #526 Delete outdated benchmark script](https://github.com/mbleigh/acts-as-taggable-on/pull/526)
|
185
213
|
* [@seuros #525 Fix tests so that they pass with MySQL](https://github.com/mbleigh/acts-as-taggable-on/pull/525)
|
186
214
|
|
187
|
-
|
188
215
|
### [3.2.1 / 2014-05-06](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.2.0...v3.2.1)
|
189
216
|
|
190
217
|
* Misc
|
@@ -193,47 +220,54 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
193
220
|
* [@seuros #523 Introduce database_cleaner in specs](https://github.com/mbleigh/acts-as-taggable-on/pull/523)
|
194
221
|
* [@seuros #520 Tag_list cleanup](https://github.com/mbleigh/acts-as-taggable-on/pull/520)
|
195
222
|
|
196
|
-
|
197
223
|
### [3.2.0 / 2014-05-01](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.1.1...v3.2.0)
|
198
224
|
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
225
|
+
* Breaking Changes
|
226
|
+
* ActsAsTaggableOn::Tag is not extend with ActsAsTaggableOn::Utils anymore
|
227
|
+
|
228
|
+
* Features
|
229
|
+
* [@ches #413 Hook to support STI subclasses of Tag in save_tags](https://github.com/mbleigh/acts-as-taggable-on/pull/413)
|
230
|
+
|
231
|
+
* Fixes
|
232
|
+
* [@jdelStrother #515 Rename Compatibility methods to reduce chance of conflicts](https://github.com/mbleigh/acts-as-taggable-on/pull/515)
|
233
|
+
* [@seuros #512 fix for << method](https://github.com/mbleigh/acts-as-taggable-on/pull/512)
|
234
|
+
* [@sonots #510 fix IN subquery error for mysql](https://github.com/mbleigh/acts-as-taggable-on/pull/510)
|
235
|
+
* [@jonseaberg #499 fix for race condition when multiple processes try to add the same tag](https://github.com/mbleigh/acts-as-taggable-on/pull/499)
|
236
|
+
* [@leklund #496 Fix for distinct and postgresql json columns errors](https://github.com/mbleigh/acts-as-taggable-on/pull/496)
|
237
|
+
* [@thatbettina & @plexus #394 Multiple quoted tags](https://github.com/mbleigh/acts-as-taggable-on/pull/394)
|
238
|
+
|
239
|
+
* Performance
|
240
|
+
|
241
|
+
* Misc
|
242
|
+
* [@seuros #511 Rspec 3](https://github.com/mbleigh/acts-as-taggable-on/pull/511)
|
213
243
|
|
214
244
|
### [3.1.0 / 2014-03-31](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.0.1...v3.1.0)
|
215
245
|
|
216
246
|
* Fixes
|
217
247
|
* [@mikehale #487 Match_all respects context](https://github.com/mbleigh/acts-as-taggable-on/pull/487)
|
248
|
+
|
218
249
|
* Performance
|
219
250
|
* [@dgilperez #390 Add taggings counter cache](https://github.com/mbleigh/acts-as-taggable-on/pull/390)
|
251
|
+
|
220
252
|
* Misc
|
221
|
-
|
222
|
-
|
223
|
-
|
253
|
+
* [@jonseaberg Add missing indexes to schema used in specs #474](https://github.com/mbleigh/acts-as-taggable-on/pull/474)
|
254
|
+
* [@seuros Specify Ruby >= 1.9.3 required in gemspec](https://github.com/mbleigh/acts-as-taggable-on/pull/502)
|
255
|
+
* [@kiasaki Add missing quotes to code example](https://github.com/mbleigh/acts-as-taggable-on/pull/501)
|
224
256
|
|
225
257
|
### [3.1.0.rc1 / 2014-02-26](https://github.com/mbleigh/acts-as-taggable-on/compare/v3.0.1...v3.1.0.rc1)
|
226
258
|
|
227
259
|
* Features
|
228
|
-
* [@
|
260
|
+
* [@Burkazoid #467 Add :order_by_matching_tag_count option](https://github.com/mbleigh/acts-as-taggable-on/pull/469)
|
261
|
+
|
229
262
|
* Fixes
|
230
263
|
* [@rafael #406 Dirty attributes not correctly derived](https://github.com/mbleigh/acts-as-taggable-on/pull/406)
|
231
|
-
* [@
|
264
|
+
* [@BenZhang #440 Did not respect strict_case_match](https://github.com/mbleigh/acts-as-taggable-on/pull/440)
|
232
265
|
* [@znz #456 Fix breaking encoding of tag](https://github.com/mbleigh/acts-as-taggable-on/pull/456)
|
233
266
|
* [@rgould #417 Let '.count' work when tagged_with is accompanied by a group clause](https://github.com/mbleigh/acts-as-taggable-on/pull/417)
|
234
267
|
* [@developer88 #461 Move 'Distinct' out of select string and use .uniq instead](https://github.com/mbleigh/acts-as-taggable-on/pull/461)
|
235
268
|
* [@gerard-leijdekkers #473 Fixed down migration index name](https://github.com/mbleigh/acts-as-taggable-on/pull/473)
|
236
269
|
* [@leo-souza #498 Use database's lower function for case-insensitive match](https://github.com/mbleigh/acts-as-taggable-on/pull/498)
|
270
|
+
|
237
271
|
* Misc
|
238
272
|
* [@billychan #463 Thread safe support](https://github.com/mbleigh/acts-as-taggable-on/pull/463)
|
239
273
|
* [@billychan #386 Add parse:true instructions to README](https://github.com/mbleigh/acts-as-taggable-on/pull/386)
|
@@ -246,8 +280,9 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
246
280
|
|
247
281
|
* Fixes
|
248
282
|
* [@rafael #406 Dirty attributes not correctly derived](https://github.com/mbleigh/acts-as-taggable-on/pull/406)
|
249
|
-
* [@
|
283
|
+
* [@BenZhang #440 Did not respect strict_case_match](https://github.com/mbleigh/acts-as-taggable-on/pull/440)
|
250
284
|
* [@znz #456 Fix breaking encoding of tag](https://github.com/mbleigh/acts-as-taggable-on/pull/456)
|
285
|
+
|
251
286
|
* Misc
|
252
287
|
* [@billychan #386 Add parse:true instructions to README](https://github.com/mbleigh/acts-as-taggable-on/pull/386)
|
253
288
|
* [@seuros #449 Improve README/UPGRADING/post install docs](https://github.com/mbleigh/acts-as-taggable-on/pull/449)
|
@@ -259,26 +294,28 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
259
294
|
|
260
295
|
* Breaking Changes
|
261
296
|
* No longer supports Ruby 1.8.
|
297
|
+
|
262
298
|
* Features
|
263
299
|
* Supports Rails 4.1.
|
300
|
+
|
264
301
|
* Misc (TODO: expand)
|
265
|
-
* [
|
266
|
-
* [rsl #367](https://github.com/mbleigh/acts-as-taggable-on/pull/367)
|
267
|
-
* [ktdreyer #383](https://github.com/mbleigh/acts-as-taggable-on/pull/383)
|
268
|
-
* [cwoodcox #346](https://github.com/mbleigh/acts-as-taggable-on/pull/346)
|
269
|
-
* [mrb #421](https://github.com/mbleigh/acts-as-taggable-on/pull/421)
|
270
|
-
* [bf4 #430](https://github.com/mbleigh/acts-as-taggable-on/pull/430)
|
271
|
-
* [sanemat #368](https://github.com/mbleigh/acts-as-taggable-on/pull/368)
|
272
|
-
* [bf4 #343](https://github.com/mbleigh/acts-as-taggable-on/pull/343)
|
273
|
-
* [marclennox #429](https://github.com/mbleigh/acts-as-taggable-on/pull/429)
|
274
|
-
* [shekibobo #403](https://github.com/mbleigh/acts-as-taggable-on/pull/403)
|
275
|
-
* [ches ktdreyer #410](https://github.com/mbleigh/acts-as-taggable-on/pull/410)
|
276
|
-
* [makaroni4 #371](https://github.com/mbleigh/acts-as-taggable-on/pull/371)
|
277
|
-
* [kenzai
|
278
|
-
* [bf4 joelcogen shekibobo aaronchi #438](https://github.com/mbleigh/acts-as-taggable-on/pull/438)
|
279
|
-
* [seuros #442](https://github.com/mbleigh/acts-as-taggable-on/pull/442)
|
280
|
-
* [bf4 #445](https://github.com/mbleigh/acts-as-taggable-on/pull/445)
|
281
|
-
* [
|
302
|
+
* [@zquestz #359](https://github.com/mbleigh/acts-as-taggable-on/pull/359)
|
303
|
+
* [@rsl #367](https://github.com/mbleigh/acts-as-taggable-on/pull/367)
|
304
|
+
* [@ktdreyer #383](https://github.com/mbleigh/acts-as-taggable-on/pull/383)
|
305
|
+
* [@cwoodcox #346](https://github.com/mbleigh/acts-as-taggable-on/pull/346)
|
306
|
+
* [@mrb #421](https://github.com/mbleigh/acts-as-taggable-on/pull/421)
|
307
|
+
* [@bf4 #430](https://github.com/mbleigh/acts-as-taggable-on/pull/430)
|
308
|
+
* [@sanemat #368](https://github.com/mbleigh/acts-as-taggable-on/pull/368)
|
309
|
+
* [@bf4 #343](https://github.com/mbleigh/acts-as-taggable-on/pull/343)
|
310
|
+
* [@marclennox #429](https://github.com/mbleigh/acts-as-taggable-on/pull/429)
|
311
|
+
* [@shekibobo #403](https://github.com/mbleigh/acts-as-taggable-on/pull/403)
|
312
|
+
* [@ches @ktdreyer #410](https://github.com/mbleigh/acts-as-taggable-on/pull/410)
|
313
|
+
* [@makaroni4 #371](https://github.com/mbleigh/acts-as-taggable-on/pull/371)
|
314
|
+
* [kenzai @davidstosik @awt #431](https://github.com/mbleigh/acts-as-taggable-on/pull/431)
|
315
|
+
* [@bf4 @joelcogen @shekibobo @aaronchi #438](https://github.com/mbleigh/acts-as-taggable-on/pull/438)
|
316
|
+
* [@seuros #442](https://github.com/mbleigh/acts-as-taggable-on/pull/442)
|
317
|
+
* [@bf4 #445](https://github.com/mbleigh/acts-as-taggable-on/pull/445)
|
318
|
+
* [@eagletmt #446](https://github.com/mbleigh/acts-as-taggable-on/pull/446)
|
282
319
|
|
283
320
|
### 3.0.0.rc2 [changes](https://github.com/mbleigh/acts-as-taggable-on/compare/fork-v3.0.0.rc1...fork-v3.0.0.rc2)
|
284
321
|
|
@@ -287,5 +324,7 @@ As such, a _Feature_ would map to either major or minor. A _bug fix_ to a patch.
|
|
287
324
|
### [2.4.1 / 2013-05-07](https://github.com/mbleigh/acts-as-taggable-on/compare/v2.4.0...v2.4.1)
|
288
325
|
|
289
326
|
* Features
|
327
|
+
|
290
328
|
* Fixes
|
329
|
+
|
291
330
|
* Misc
|