4.6 KiB
4.6 KiB
Change Log
unreleased
0.10.1
- Fix support for Date objects and other non-plain objects (https://github.com/substantial/updeep/issues/36)
0.10.0
- Add support for wildcards (
*
) tou.updateIn
. (https://github.com/substantial/updeep/issues/27)
0.9.0
- Do not add object during false branch of
u.if
. (https://github.com/substantial/updeep/issues/35)
0.8.0
- Default to empty array if update keys are integers. (https://github.com/substantial/updeep/issues/22)
0.7.2
- Fix curried functions not reporting their correct arity. (https://github.com/substantial/updeep/issues/31)
0.7.1
- Fix update omitting empty object. (https://github.com/substantial/updeep/issues/29)
0.7.0
- Add
u._
placeholder for curried functions. - Add
u.constant
for replacing an object outright. (https://github.com/substantial/updeep/issues/10) - Fix handling null differently than undefined.
u
and friends will now coerce null to an object if there are updates for it. (https://github.com/substantial/updeep/issues/20)
0.6.0
- Remove support for
_.placeholder
in curried methods. This may come back, but it was necessary for the next item. - Improve performance of curried methods. (https://github.com/substantial/updeep/issues/16)
- Improve examples in docs, thanks hedgerh.
u.map
will now return the same instance if nothing changes.- Improve performance of
u.map
. - Removed a couple lodash dependencies.
0.5.0
- Add
u.is
to test predicates in a single path. (https://github.com/substantial/updeep/issues/13) - Rename
u.in
tou.updateIn
. Withu.is
andu.if
it was too confusing. - Make
u
available atu.update
as well.
0.4.0
- Add
u.if
andu.ifElse
to conditionally update objects. (https://github.com/substantial/updeep/issues/12) - Add
u.map
to update all values in an array or object. - Replace object outright if null or constant provided as
updates
. - Freeze objects returned by helper methods that use
update
likewithDefault
,map
,in
, etc. Previously, onlyu
did freezing.
0.3.1
- Actually expose
u.in
.
0.3.0
- Add
u.freeze
to freeze an object deeply. (https://github.com/substantial/updeep/issues/7) - Add
u.in
to update a single value in an object with a specified path. (https://github.com/substantial/updeep/issues/6)
0.2.3
- Fix cannot update value to null (https://github.com/substantial/updeep/issues/8)
- Add umd distribution builds via webpack. (https://github.com/aaronjensen/updeep/issues/3)
0.2.2
- Fix
Object.isFrozen
breaking on null in chrome. (https://github.com/aaronjensen/updeep/pull/5)
0.2.1
- Fix
Object.isFrozen
breaking on non-freezables in PhantomJS. (https://github.com/aaronjensen/updeep/issues/1)
0.2.0
- Freeze objects returned by default. It doesn't actually make sense to return
unfrozen objects, as the original object could be mutated and it would
affect the new object. Object freezing is disabled if
NODE_ENV
is"production'
. - Update README with example for
reject
.
0.1.3
- Update README.
0.1.2
- Fix package description.
0.1.1
- Update README and description.
0.1.0
- Initial release