1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/packages/object-util/CHANGELOG.md
Florian Bouillon f804e0f43c
Some checks failed
CodeQL / Analyze (javascript) (push) Failing after 54s
bump: object-util v1.7.0
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
2023-09-04 14:19:32 +02:00

3.8 KiB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[1.7.0] - 2023-09-04

Added

  • a new objectFind function to find elements in an object

[1.6.1] - 2023-07-12

Fixed

  • Import order not respected for some loaders

[1.6.0] - 2023-06-28

Changed

  • Better support for both ESM and CommonJS

[1.5.0] - 2023-03-14

Added

  • new option for objectClean that clean falthy values
  • new objectRemap function that allow to create a new object from the key/value of the old object while applying modifications
  • Tests to better support Arrays

Changed

  • Export previously internal types BasiceObject and BasicObjectKeys

Fixed

  • Missing JSDocs for the retuns

[1.4.6] - 2023-02-22

Fixed

  • Handle arrays with empty elements

[1.4.5] - 2022-12-08

Fixed

  • Typescript returning errors when object can contains undefined

[1.4.4] - 2022-12-08

Fixed

  • Export being borked

[1.4.3] - 2022-12-08

Fixed

  • 6be80cb2e1 Missing type declaration for some callback functions

Changed

[1.4.2] - 2021-09-29

Fixed

Changed

[1.4.1] - 2021-09-29

Changed

[1.4.0] - 2021-09-28

Added

  • cb97ded195 new objectOmit function that allows you to remove items from an object

[1.3.0] - 2021-09-21

Added

  • 4efb33c0cb new objectClean cleanup null/undefined from an object (more in options)
  • 4efb33c0cb new isObject function that allows verify is your variable is an object

1.2.0 - 2021-05-21

Added

  • objectValues - this does the same thing has objectToArray but make the naming better

Changed

  • objectLoop and objectMap now include an index after the key

Deprecated

  • objectToArray has been renamed to objectValues

1.1.1 - 2021-04-11

Added

  • objectSort parameter second parameter can now ba an array of keys

1.0.5 - 2021-02-08

Changed

  • Renamed cloneObject to objectClone

Deprecated

  • cloneObject function

1.0.4 - 2020-11-23

Added

  • Code Documentation
  • objectKey function

Changed

  • (cloneObject): Changed internal typing
  • (objectLoop): Made the stop check lighter

Fixed

  • (objectEqual): Fixed bug where object2 was larger and still returning true

1.0.2 - 2020-10-20

Changed

  • Dependencies

1.0.1 - 2020-09-11

Fixed

  • Main file error

1.0.0 - 2020-09-11

Added

  • objectMap Function
  • objectLoop Function
  • objectToArray Function
  • objectSize Function
  • objectSort Function
  • cloneObject Function
  • objectSet Function
  • objectEqual Function