hashie 4.1.0 → 5.1.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/CHANGELOG.md +82 -53
- data/LICENSE +1 -1
- data/README.md +131 -51
- data/Rakefile +3 -0
- data/UPGRADING.md +38 -0
- data/hashie.gemspec +4 -0
- data/lib/hashie/dash.rb +17 -17
- data/lib/hashie/extensions/coercion.rb +1 -8
- data/lib/hashie/extensions/dash/indifferent_access.rb +9 -0
- data/lib/hashie/extensions/dash/predefined_values.rb +88 -0
- data/lib/hashie/extensions/dash/property_translation.rb +6 -1
- data/lib/hashie/extensions/deep_locate.rb +1 -1
- data/lib/hashie/extensions/ignore_undeclared.rb +4 -5
- data/lib/hashie/extensions/indifferent_access.rb +36 -3
- data/lib/hashie/extensions/mash/symbolize_keys.rb +5 -5
- data/lib/hashie/extensions/method_access.rb +1 -1
- data/lib/hashie/extensions/symbolize_keys.rb +12 -1
- data/lib/hashie/hash.rb +2 -2
- data/lib/hashie/mash.rb +26 -25
- data/lib/hashie/version.rb +1 -1
- data/lib/hashie.rb +1 -0
- metadata +22 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1292246547719e837e23614580afa9f7a86f5289f2853f7ea357ec2f47865b0e
|
|
4
|
+
data.tar.gz: 31ef91ffd52a01456dc265d5905a40a7dde661034ffc6df70fc1f3e946be3889
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 183d5309171cd3adb28decf8295cb08c47566d1ae7a551a94e4a77a9a9395d26f2e46bfac0b1ebf39744ae5f43249debec7a96b061c3cef5293df36c5991317a
|
|
7
|
+
data.tar.gz: b4124bd8447025f7be8bd8f4d7f19f29e209dc4f7ac2829feda89182cbe38bfa571ffa525ac3a1dd9487ee89dd9caa26c12988e328877b79b184217cf1d4c03e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,62 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
project adheres to [Semantic Versioning 2.0.0][semver]. Any violations of this
|
|
5
|
-
scheme are considered to be bugs.
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
6
4
|
|
|
7
|
-
[
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
Any violations of this scheme are considered to be bugs.
|
|
8
|
+
|
|
9
|
+
## [5.1.0] - 2025-12-24
|
|
10
|
+
|
|
11
|
+
[5.1.0]: https://github.com/hashie/hashie/compare/v5.0.0...v5.1.0
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
* [#569](https://github.com/hashie/hashie/pull/569): Added support for Rails 7 - [@aflansburg](https://github.com/aflansburg).
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
* [#571](https://github.com/hashie/hashie/pull/571): Test with Ruby 3.2 - [@petergoldstein](https://github.com/petergoldstein).
|
|
20
|
+
* [#558](https://github.com/hashie/hashie/pull/558): Test with Ruby 3.1 - [@petergoldstein](https://github.com/petergoldstein).
|
|
21
|
+
* [#582](https://github.com/hashie/hashie/pull/582): Test with Ruby 3.3 and 3.4 - [@btalayeminaei](https://github.com/btalayeminaei).
|
|
22
|
+
* [#589](https://github.com/hashie/hashie/pull/589): Requires Ruby 2.7+ and upgraded Rubocop to 1.82.0 - [@sue445](https://github.com/sue445).
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
* [#583](https://github.com/hashie/hashie/pull/583): Fix a warning about the `logger` gem on Ruby 3.4 - [@earlopain](https://github.com/earlopain).
|
|
27
|
+
|
|
28
|
+
## [5.0.0] - 2021-11-08
|
|
29
|
+
|
|
30
|
+
[5.0.0]: https://github.com/hashie/hashie/compare/v4.1.0...v5.0.0
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
* [#523](https://github.com/hashie/hashie/pull/523): Added TOC, ensure a keep-a-changelog formatted CHANGELOG - [@dblock](https://github.com/dblock).
|
|
35
|
+
* [#522](https://github.com/hashie/hashie/pull/522): Added eierlegende Wollmilchsau mascot graphic - [@carolineartz](https://github.com/carolineartz).
|
|
36
|
+
* [#530](https://github.com/hashie/hashie/pull/530): Added Hashie::Extensions::Dash::PredefinedValues - [@caalberts](https://github.com/caalberts).
|
|
37
|
+
* [#536](https://github.com/hashie/hashie/pull/536): Added exporting a normal Hash from an indifferent one through the `#to_hash` method - [@michaelherold](https://github.com/michaelherold).
|
|
38
|
+
* [#539](https://github.com/hashie/hashie/pull/539): Run 2.7 tests once - [@anakinj](https://github.com/anakinj).
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
* [#521](https://github.com/hashie/hashie/pull/499): Do not convert keys that cannot be represented as symbols to `String` in `Mash` initialization - [@carolineartz](https://github.com/carolineartz).
|
|
43
|
+
* [#524](https://github.com/hashie/hashie/pull/524): Test with Ruby 2.7 - [@aried3r](https://github.com/aried3r).
|
|
44
|
+
* [#525](https://github.com/hashie/hashie/pull/525): Use `indifferent_writer` in `IndifferentAccess#convert!` - [@yogeshjain999](https://github.com/yogeshjain999).
|
|
45
|
+
* [#527](https://github.com/hashie/hashie/pull/527): Updated Copyright to (c) 2009-2020 Intridea, Inc., and Contributors - [@dblock](https://github.com/dblock).
|
|
46
|
+
* [#555](https://github.com/hashie/hashie/pull/555): Test with Ruby 3.0 - [@dblock](https://github.com/dblock).
|
|
47
|
+
|
|
48
|
+
### Removed
|
|
49
|
+
|
|
50
|
+
* [#538](https://github.com/hashie/hashie/pull/538): Dropped testing for JRuby 9.0, though not support - [@michaelherold](https://github.com/michaelherold).
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
* [#516](https://github.com/hashie/hashie/issues/516): Fixed `NoMethodError` raised when including `Hashie::Extensions::Mash::SymbolizeKeys` and `Hashie::Extensions::SymbolizeKeys` in mashes/hashes with non string or symbol keys - [@carolineartz](https://github.com/carolineartz).
|
|
55
|
+
* [#531](https://github.com/hashie/hashie/pull/531): Fixed [slice doesn't work using symbols](https://github.com/hashie/hashie/issues/529) using hash with `IndifferentAccess` extension - [@gnomex](https://github.com/gnomex).
|
|
56
|
+
* [#533](https://github.com/hashie/hashie/pull/533): Fixed `NoMethodError: undefined method 'to_json'` at `hashie/dash_spec` - [@gnomex](https://github.com/gnomex).
|
|
57
|
+
* [#535](https://github.com/hashie/hashie/pull/535): Restored the exporting of all properties as part of `Dash#to_h` and `Dash#to_hash` - [@michaelherold](https://github.com/michaelherold).
|
|
58
|
+
* [#537](https://github.com/hashie/hashie/pull/537): Fixed inconsistencies with handling defaults in `Dash` with and without `IgnoreUnclared` mixed in - [@michaelherold](https://github.com/michaelherold).
|
|
59
|
+
* [#547](https://github.com/hashie/hashie/pull/547): Fixed issue where a source hash key can be used in translating multiple properties - [@danwa5](https://github.com/danwa5).
|
|
8
60
|
|
|
9
61
|
## [4.1.0] - 2020-02-01
|
|
10
62
|
|
|
@@ -12,8 +64,13 @@ scheme are considered to be bugs.
|
|
|
12
64
|
|
|
13
65
|
### Added
|
|
14
66
|
|
|
67
|
+
* [#545](https://github.com/hashie/hashie/pull/545): Add `Hashie::Mash#except` and `Hashie::Extensions::IndifferentAccess#except` when running under Ruby 3 to match newly added Ruby stdlib method - [@jackjennings](https://github.com/jackjennings).
|
|
15
68
|
* [#499](https://github.com/hashie/hashie/pull/499): Add `Hashie::Extensions::Mash::PermissiveRespondTo` to make specific subclasses of Mash fully respond to messages for use with `SimpleDelegator` - [@michaelherold](https://github.com/michaelherold).
|
|
16
69
|
|
|
70
|
+
### Changed
|
|
71
|
+
|
|
72
|
+
* [#498](https://github.com/hashie/hashie/pull/498): Exclude tests from the gem release to reduce installation size and improve installation speed - [@michaelherold](https://github.com/michaelherold).
|
|
73
|
+
|
|
17
74
|
### Fixed
|
|
18
75
|
|
|
19
76
|
* [#467](https://github.com/intridea/hashie/pull/467): Fixed `DeepMerge#deep_merge` mutating nested values within the receiver - [@michaelherold](https://github.com/michaelherold).
|
|
@@ -27,11 +84,6 @@ scheme are considered to be bugs.
|
|
|
27
84
|
* [#512](https://github.com/hashie/hashie/pull/512): Suppress an integer unification warning for using Ruby 2.4.0+ - [@koic](https://github.com/koic).
|
|
28
85
|
* [#513](https://github.com/hashie/hashie/pull/513): Suppress a Ruby's warning when using Ruby 2.6.0+ - [@koic](https://github.com/koic).
|
|
29
86
|
|
|
30
|
-
### Miscellaneous
|
|
31
|
-
|
|
32
|
-
* [#981](https://github.com/hashie/hashie/pull/981): Exclude tests from the gem release to reduce installation size and improve installation speed - [@michaelherold](https://github.com/michaelherold).
|
|
33
|
-
* Your contribution here.
|
|
34
|
-
|
|
35
87
|
## [4.0.0] - 2019-10-30
|
|
36
88
|
|
|
37
89
|
[4.0.0]: https://github.com/hashie/hashie/compare/v3.6.0...v4.0.0
|
|
@@ -47,6 +99,7 @@ scheme are considered to be bugs.
|
|
|
47
99
|
### Changed
|
|
48
100
|
|
|
49
101
|
* [#481](https://github.com/hashie/hashie/pull/481): Implement non-destructive standard Hash methods - [@bobbymcwho](https://github.com/bobbymcwho).
|
|
102
|
+
* [#482](https://github.com/hashie/hashie/pull/482): Update Travis configs to make jruby builds run on trusty dist - [@BobbyMcWho](https://github.com/BobbyMcWho).
|
|
50
103
|
|
|
51
104
|
### Fixed
|
|
52
105
|
|
|
@@ -54,11 +107,7 @@ scheme are considered to be bugs.
|
|
|
54
107
|
* [#465](https://github.com/hashie/hashie/pull/465): Fixed `deep_update` to call any readers when a key exists - [@laertispappas](https://github.com/laertispappas).
|
|
55
108
|
* [#479](https://github.com/hashie/hashie/pull/479): Fixed an issue with `Hash#except` not returning a `Mash` in Rails 6 - [@bobbymcwho](https://github.com/bobbymcwho).
|
|
56
109
|
* [#489](https://github.com/hashie/hashie/pull/489): Updated the documentation to exlain the behavior of `Mash` and keyword arguments - [@Bhacaz](https://github.com/Bhacaz).
|
|
57
|
-
|
|
58
|
-
### Miscellaneous
|
|
59
|
-
|
|
60
110
|
* [#465](https://github.com/hashie/hashie/pull/465): Clean up our RuboCop configuration and fix the outstanding line length violations. This involved some minor refactoring on `Hashie::Extensions::Coercion`, `Hashie::Extensions::Dash::IndifferentAccess`, `Hashie::Extensions::DeepLocate`, `Hashie::Extensions::Mash::SafeAssignment`, and `Hashie::Hash`, but none that were detectable via the test suite - [@michaelherold](https://github.com/michaelherold).
|
|
61
|
-
* [#482](https://github.com/hashie/hashie/pull/482): Update Travis configs to make jruby builds run on trusty dist. - [@BobbyMcWho](https://github.com/BobbyMcWho).
|
|
62
111
|
|
|
63
112
|
## [3.6.0] - 2018-08-13
|
|
64
113
|
|
|
@@ -67,6 +116,12 @@ scheme are considered to be bugs.
|
|
|
67
116
|
### Added
|
|
68
117
|
|
|
69
118
|
* [#455](https://github.com/hashie/hashie/pull/455): Allow overriding methods when passing in a hash - [@lnestor](https://github.com/lnestor).
|
|
119
|
+
* [#434](https://github.com/hashie/hashie/pull/434): Add documentation around Mash sub-Hashes - [@michaelherold](https://github.com/michaelherold).
|
|
120
|
+
* [#439](https://github.com/hashie/hashie/pull/439): Add an integration spec for Elasticsearch - [@michaelherold](https://github.com/michaelherold).
|
|
121
|
+
|
|
122
|
+
### Changed
|
|
123
|
+
|
|
124
|
+
* [#433](https://github.com/hashie/hashie/pull/433): Update Rubocop to the most recent version - [@michaelherold](https://github.com/michaelherold).
|
|
70
125
|
|
|
71
126
|
### Fixed
|
|
72
127
|
|
|
@@ -76,21 +131,15 @@ scheme are considered to be bugs.
|
|
|
76
131
|
* [#438](https://github.com/hashie/hashie/pull/438): Fix: `NameError (uninitialized constant Hashie::Extensions::Parsers::YamlErbParser::Pathname)` in `Hashie::Mash.load` - [@onk](https://github.com/onk).
|
|
77
132
|
* [#457](https://github.com/hashie/hashie/pull/457): Fix `Trash` to allow it to copy properties from other properties - [@michaelherold](https://github.com/michaelherold).
|
|
78
133
|
|
|
79
|
-
### Miscellaneous
|
|
80
|
-
|
|
81
|
-
* [#433](https://github.com/hashie/hashie/pull/433): Update Rubocop to the most recent version - [@michaelherold](https://github.com/michaelherold).
|
|
82
|
-
* [#434](https://github.com/hashie/hashie/pull/434): Add documentation around Mash sub-Hashes - [@michaelherold](https://github.com/michaelherold).
|
|
83
|
-
* [#439](https://github.com/hashie/hashie/pull/439): Add an integration spec for Elasticsearch - [@michaelherold](https://github.com/michaelherold).
|
|
84
|
-
|
|
85
134
|
## [3.5.7] - 2017-12-19
|
|
86
135
|
|
|
87
136
|
[3.5.7]: https://github.com/hashie/hashie/compare/v3.5.6...v3.5.7
|
|
88
137
|
|
|
89
138
|
### Fixed
|
|
90
139
|
|
|
91
|
-
[#430](https://github.com/hashie/hashie/pull/430): Fix Hashie::Rash randomly losing items - [@Antti](https://github.com/Antti)
|
|
140
|
+
* [#430](https://github.com/hashie/hashie/pull/430): Fix Hashie::Rash randomly losing items - [@Antti](https://github.com/Antti).
|
|
92
141
|
|
|
93
|
-
###
|
|
142
|
+
### Changed
|
|
94
143
|
|
|
95
144
|
* [#425](https://github.com/hashie/hashie/pull/425): Update rubies in CI - [@kachick](https://github.com/kachick).
|
|
96
145
|
|
|
@@ -98,7 +147,7 @@ scheme are considered to be bugs.
|
|
|
98
147
|
|
|
99
148
|
[3.5.6]: https://github.com/hashie/hashie/compare/v3.5.5...v3.5.6
|
|
100
149
|
|
|
101
|
-
###
|
|
150
|
+
### Fixed
|
|
102
151
|
|
|
103
152
|
* [#416](https://github.com/hashie/hashie/pull/416): Fix `warning: instance variable @disable_warnings not initialized` - [@axfcampos](https://github.com/axfcampos).
|
|
104
153
|
|
|
@@ -124,7 +173,7 @@ scheme are considered to be bugs.
|
|
|
124
173
|
|
|
125
174
|
### Fixed
|
|
126
175
|
|
|
127
|
-
* [#409](https://github.com/hashie/hashie/pull/409): Fixed Railtie detection for projects where Rails is defined but Railties are not
|
|
176
|
+
* [#409](https://github.com/hashie/hashie/pull/409): Fixed Railtie detection for projects where Rails is defined but Railties are not available - [@CallumD](https://github.com/callumd).
|
|
128
177
|
* [#411](https://github.com/hashie/hashie/pull/411): Fixed a performance regression from 3.4.3 that caused a 10x slowdown in OmniAuth - [@michaelherold](https://github.com/michaelherold).
|
|
129
178
|
|
|
130
179
|
## [3.5.3] - 2017-02-11
|
|
@@ -145,16 +194,13 @@ scheme are considered to be bugs.
|
|
|
145
194
|
|
|
146
195
|
* [#395](https://github.com/hashie/hashie/pull/395): Add the ability to disable warnings in Mash subclasses - [@michaelherold](https://github.com/michaelherold).
|
|
147
196
|
* [#400](https://github.com/hashie/hashie/pull/400): Fix Hashie.logger load and set the Hashie logger to the Rails logger in a Rails environment - [@michaelherold](https://github.com/michaelherold).
|
|
197
|
+
* [#397](https://github.com/hashie/hashie/pull/397): Add the integration specs harness into the main test tasks - [@michaelherold](https://github.com/michaelherold).
|
|
148
198
|
|
|
149
199
|
### Fixed
|
|
150
200
|
|
|
151
201
|
* [#396](https://github.com/hashie/hashie/pull/396): Fix for specs in #381: Incorrect use of shared context meant example was not being run - [@biinari](https://github.com/biinari).
|
|
152
202
|
* [#399](https://github.com/hashie/hashie/pull/399): Fix passing Pathname object to Hashie::Mesh.load() - [@albb0920](https://github.com/albb0920).
|
|
153
203
|
|
|
154
|
-
### Miscellanous
|
|
155
|
-
|
|
156
|
-
* [#397](https://github.com/hashie/hashie/pull/397): Add the integration specs harness into the main test tasks - [@michaelherold](https://github.com/michaelherold).
|
|
157
|
-
|
|
158
204
|
## [3.5.1] - 2017-01-31
|
|
159
205
|
|
|
160
206
|
* [#392](https://github.com/hashie/hashie/pull/392): Fix for #391: Require all dependencies of Hashie::Mash - [@dblock](https://github.com/dblock).
|
|
@@ -183,10 +229,7 @@ scheme are considered to be bugs.
|
|
|
183
229
|
* [#377](https://github.com/hashie/hashie/pull/377): Dont use Rubygems to check ruby version - [@sazor](https://github.com/sazor).
|
|
184
230
|
* [#378](https://github.com/hashie/hashie/pull/378): Deep find all searches inside all nested hashes - [@sazor](https://github.com/sazor).
|
|
185
231
|
* [#380](https://github.com/hashie/hashie/pull/380): Evaluate procs default values of Dash in object initialization - [@sazor](https://github.com/sazor).
|
|
186
|
-
|
|
187
|
-
### Miscellanous
|
|
188
|
-
|
|
189
|
-
* [#387](https://github.com/hashie/hashie/pull/387): Fix builds failing due to Rake 11 having a breaking change - [@michaelherold](https://github.com/michaelherold).
|
|
232
|
+
* [#387](https://github.com/hashie/hashie/pull/387): Fixed builds failing due to Rake 11 having a breaking change - [@michaelherold](https://github.com/michaelherold).
|
|
190
233
|
|
|
191
234
|
## [3.4.6] - 2016-09-16
|
|
192
235
|
|
|
@@ -203,6 +246,7 @@ scheme are considered to be bugs.
|
|
|
203
246
|
### Added
|
|
204
247
|
|
|
205
248
|
* [#337](https://github.com/hashie/hashie/pull/337), [#331](https://github.com/hashie/hashie/issues/331): `Hashie::Mash#load` accepts a `Pathname` object - [@gipcompany](https://github.com/gipcompany).
|
|
249
|
+
* [#366](https://github.com/hashie/hashie/pull/366): Added Danger, PR linter - [@dblock](https://github.com/dblock).
|
|
206
250
|
|
|
207
251
|
### Deprecated
|
|
208
252
|
|
|
@@ -213,10 +257,6 @@ scheme are considered to be bugs.
|
|
|
213
257
|
* [#358](https://github.com/hashie/hashie/pull/358): Fixed support for Array#dig - [@modosc](https://github.com/modosc).
|
|
214
258
|
* [#365](https://github.com/hashie/hashie/pull/365): Ensured ActiveSupport::HashWithIndifferentAccess is defined before use in #deep_locate - [@mikejarema](https://github.com/mikejarema).
|
|
215
259
|
|
|
216
|
-
### Miscellanous
|
|
217
|
-
|
|
218
|
-
* [#366](https://github.com/hashie/hashie/pull/366): Added Danger, PR linter - [@dblock](https://github.com/dblock).
|
|
219
|
-
|
|
220
260
|
## [3.4.4] - 2016-04-29
|
|
221
261
|
|
|
222
262
|
[3.4.4]: https://github.com/hashie/hashie/compare/v3.4.3...v3.4.4
|
|
@@ -248,7 +288,7 @@ scheme are considered to be bugs.
|
|
|
248
288
|
* [#304](https://github.com/hashie/hashie/pull/304): Ensured compatibility of `Hash` extensions with singleton objects - [@regexident](https://github.com/regexident).
|
|
249
289
|
* [#310](https://github.com/hashie/hashie/pull/310): Fixed `Hashie::Extensions::SafeAssignment` bug with private methods - [@marshall-lee](https://github.com/marshall-lee).
|
|
250
290
|
|
|
251
|
-
###
|
|
291
|
+
### Changed
|
|
252
292
|
|
|
253
293
|
* [#313](https://github.com/hashie/hashie/pull/313): Restrict pending spec to only Ruby versions 2.2.0-2.2.2 - [@pboling](https://github.com/pboling).
|
|
254
294
|
* [#315](https://github.com/hashie/hashie/pull/315): Default `bin/` scripts: `console` and `setup` - [@pboling](https://github.com/pboling).
|
|
@@ -383,8 +423,6 @@ scheme are considered to be bugs.
|
|
|
383
423
|
|
|
384
424
|
[3.0.0]: https://github.com/hashie/hashie/compare/v2.1.2...v3.0.0
|
|
385
425
|
|
|
386
|
-
Note: This version introduces several backward incompatible API changes. See [UPGRADING](UPGRADING.md) for details.
|
|
387
|
-
|
|
388
426
|
### Added
|
|
389
427
|
|
|
390
428
|
* [#149](https://github.com/hashie/hashie/issues/149): Allow IgnoreUndeclared and DeepMerge to be used with undeclared properties - [@jhaesus](https://github.com/jhaesus).
|
|
@@ -414,7 +452,7 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
414
452
|
|
|
415
453
|
### Fixed
|
|
416
454
|
|
|
417
|
-
* [#131](https://github.com/hashie/hashie/pull/131): Added IgnoreUndeclared, an extension to silently ignore undeclared properties at
|
|
455
|
+
* [#131](https://github.com/hashie/hashie/pull/131): Added IgnoreUndeclared, an extension to silently ignore undeclared properties at initialization - [@righi](https://github.com/righi).
|
|
418
456
|
* [#138](https://github.com/hashie/hashie/pull/138): Added Hashie::Rash, a hash whose keys can be regular expressions or ranges - [@epitron](https://github.com/epitron).
|
|
419
457
|
* [#144](https://github.com/hashie/hashie/issues/144): Fixed regression invoking `to_hash` with no parameters - [@mbleigh](https://github.com/mbleigh).
|
|
420
458
|
|
|
@@ -429,6 +467,7 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
429
467
|
### Changed
|
|
430
468
|
|
|
431
469
|
* [#89](https://github.com/hashie/hashie/issues/89): Do not respond to every method with suffix in Hashie::Mash, fixes Rails strong_parameters - [@Maxim-Filimonov](https://github.com/Maxim-Filimonov).
|
|
470
|
+
* Ruby style now enforced with Rubocop - [@dblock](https://github.com/dblock).
|
|
432
471
|
|
|
433
472
|
### Removed
|
|
434
473
|
|
|
@@ -450,10 +489,6 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
450
489
|
* [#130](https://github.com/hashie/hashie/pull/130): IndifferentAccess now works without MergeInitializer - [@npj](https://github.com/npj).
|
|
451
490
|
* [#133](https://github.com/hashie/hashie/pull/133): Fixed Hash##to_hash with symbolize_keys - [@mhuggins](https://github.com/mhuggins).
|
|
452
491
|
|
|
453
|
-
### Miscellaneous
|
|
454
|
-
|
|
455
|
-
* Ruby style now enforced with Rubocop - [@dblock](https://github.com/dblock).
|
|
456
|
-
|
|
457
492
|
## [2.0.5] - 2013-05-10
|
|
458
493
|
|
|
459
494
|
[2.0.5]: https://github.com/hashie/hashie/compare/v2.0.4...v2.0.5
|
|
@@ -470,7 +505,7 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
470
505
|
|
|
471
506
|
* [#94](https://github.com/hashie/hashie/pull/94): Made #fetch method consistent with normal Hash - [@markiz](https://github.com/markiz).
|
|
472
507
|
|
|
473
|
-
###
|
|
508
|
+
### Changed
|
|
474
509
|
|
|
475
510
|
* [#90](https://github.com/hashie/hashie/pull/90): Various doc tweaks - [@craiglittle](https://github.com/craiglittle).
|
|
476
511
|
|
|
@@ -498,10 +533,7 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
498
533
|
### Removed
|
|
499
534
|
|
|
500
535
|
* [#81](https://github.com/hashie/hashie/pull/81): Removed Mash#object_id override - [@matschaffer](https://github.com/matschaffer).
|
|
501
|
-
|
|
502
|
-
### Miscellaneous
|
|
503
|
-
|
|
504
|
-
* Gem cleanup: removed VERSION, Gemfile.lock - [@jch](https://github.com/jch), [@mbleigh](https://github.com/mbleigh).
|
|
536
|
+
* Removed VERSION and Gemfile.lock - [@jch](https://github.com/jch), [@mbleigh](https://github.com/mbleigh).
|
|
505
537
|
|
|
506
538
|
## [2.0.0] - 2013-02-16
|
|
507
539
|
|
|
@@ -511,6 +543,7 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
511
543
|
|
|
512
544
|
* [#41](https://github.com/hashie/hashie/pull/41): DeepMerge extension - [@nashby](https://github.com/nashby).
|
|
513
545
|
* [#78](https://github.com/hashie/hashie/pull/78): Merge and update accepts a block - [@jch](https://github.com/jch).
|
|
546
|
+
* [#72](https://github.com/hashie/hashie/pull/72): Updated gemspec with license info - [@jordimassaguerpla](https://github.com/jordimassaguerpla).
|
|
514
547
|
|
|
515
548
|
### Changed
|
|
516
549
|
|
|
@@ -525,7 +558,3 @@ Note: This version introduces several backward incompatible API changes. See [UP
|
|
|
525
558
|
* [#62](https://github.com/hashie/hashie/pull/62): Updated respond_to? method signature to match ruby core definition - [@dlupu](https://github.com/dlupu).
|
|
526
559
|
* [#63](https://github.com/hashie/hashie/pull/63): Dash defaults are dup'ed before assigned - [@ohrite](https://github.com/ohrite).
|
|
527
560
|
* [#66](https://github.com/hashie/hashie/pull/66): Mash#fetch works with symbol or string keys - [@arthwood](https://github.com/arthwood).
|
|
528
|
-
|
|
529
|
-
### Miscellaneous
|
|
530
|
-
|
|
531
|
-
* [#72](https://github.com/hashie/hashie/pull/72): Updated gemspec with license info - [@jordimassaguerpla](https://github.com/jordimassaguerpla).
|
data/LICENSE
CHANGED