From 6056bde78a358ed3b320b23555be2652da66da58 Mon Sep 17 00:00:00 2001 From: Florian Bouillon Date: Tue, 8 Dec 2020 11:53:44 +0100 Subject: [PATCH] Added Changelog for packages Signed-off-by: Florian Bouillon --- .gitattributes | 2 + packages/dom-manager/CHANGELOG.md | 45 ++++++++++++++++++++ packages/listener/CHANGELOG.md | 15 +++++++ packages/logger/CHANGELOG.md | 68 +++++++++++++++++++++++++++++++ packages/object-util/CHANGELOG.md | 57 ++++++++++++++++++++++++++ packages/queue/CHANGELOG.md | 56 +++++++++++++++++++++++++ packages/url-manager/CHANGELOG.md | 48 ++++++++++++++++++++++ 7 files changed, 291 insertions(+) create mode 100644 .gitattributes create mode 100644 packages/dom-manager/CHANGELOG.md create mode 100644 packages/listener/CHANGELOG.md create mode 100644 packages/logger/CHANGELOG.md create mode 100644 packages/object-util/CHANGELOG.md create mode 100644 packages/queue/CHANGELOG.md create mode 100644 packages/url-manager/CHANGELOG.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bb15c53 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/packages/dom-manager/CHANGELOG.md b/packages/dom-manager/CHANGELOG.md new file mode 100644 index 0000000..7d15a41 --- /dev/null +++ b/packages/dom-manager/CHANGELOG.md @@ -0,0 +1,45 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.2.2] - 2020-10-20 + +### Changed + +- Updated Typescript Version + +## [1.2.1] - 2020-09-11 + +### Changed + +- Test script + +## [1.2.0] - 2020-09-02 + +### Added + +- (DOMElement): Typing for static `get` +- (DOMFleetManager): Added initialisation from DOMElement +- (DOMFleetManager): Added function to get last element `last` + +## [1.1.0] - 2020-09-02 + +### Added + +- (DOMElement): More Positionning options (`placeAsChildOf` `place`) + +## [1.0.0] - 2020-09-02 + +### Added + +- Added base Manager + +[1.2.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fdom-manager%401.2.2 +[1.2.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fdom-manager%401.2.1 +[1.2.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fdom-manager%401.2.0 +[1.1.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fdom-manager%401.1.0 +[1.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fdom-manager%401.0.0 diff --git a/packages/listener/CHANGELOG.md b/packages/listener/CHANGELOG.md new file mode 100644 index 0000000..707224f --- /dev/null +++ b/packages/listener/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.0] - 2020-11-23 + +### Added + +- Implementation of custom Listener for cross platform listener + +[1.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flistener%401.0.0 diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md new file mode 100644 index 0000000..be5d2e4 --- /dev/null +++ b/packages/logger/CHANGELOG.md @@ -0,0 +1,68 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.2] - 2020-10-20 + +### Changed + +- Updated Typescript + +## [2.0.1] - 2020-08-18 + +### Changed + +- Space Builder now using `padStart` + +## [2.0.0] - 2020-08-17 + +### Fixed + +- Null and undefined being text colo instead of custom color + +## [2.0.0-alpha.0] - 2020-07-07 + +### Added + +- Theme handling (default to black for Terminals and whit for Browser) + +### Changed + +- Switched from chalk to ansi-colors for color formatting +- From custom Object to Console implementation + +## [1.1.1] - 2020-07-01 + +### Fixed + +- Formatting not working for urgent messages + +## [1.1.0] - 2020-07-01 + +### Added + +- Basic support for objects +- Support for Node LTS (Was already present but now it's written) + +## [1.0.1]() - 2020-06-26 + +### Fixed + +- Typing not included in compiled code + +## [1.0.0]() - 2020-06-26 + +### Added + +- Basic Logger with log and urgent functions + +[2.0.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%402.0.2 +[2.0.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%402.0.1 +[2.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%402.0.0 +[2.0.0-alpha.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%402.0.0-alpha.0 +[1.1.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%401.1.1 +[1.1.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Flogger%401.1.0 diff --git a/packages/object-util/CHANGELOG.md b/packages/object-util/CHANGELOG.md new file mode 100644 index 0000000..519d11c --- /dev/null +++ b/packages/object-util/CHANGELOG.md @@ -0,0 +1,57 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased]() + +### 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 + + +[1.0.4]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fobject-util%401.0.4 +[1.0.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fobject-util%401.0.2 +[1.0.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fobject-util%401.0.1 +[1.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fobject-util%401.0.0 diff --git a/packages/queue/CHANGELOG.md b/packages/queue/CHANGELOG.md new file mode 100644 index 0000000..83a2970 --- /dev/null +++ b/packages/queue/CHANGELOG.md @@ -0,0 +1,56 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.1.2] - 2020-10-20 + +### Changed +- Updated Typescript + +## [1.1.1] - 2020-08-31 + +### Added +- fake test + +## [1.1.0] - 2020-11-23 + +### Added + +- Error Throwing + +## [1.0.3] - 2020-07-17 + +### Removed + +- Custom Logger + +## [1.0.2] - 2020-07-07 + +### Removed + +- Unecessary compiled files + +## [1.0.1] - 2020-07-07 + +### Changed + +- Logger version + +## [1.0.0] - 2020-07-07 + +### Added + +- EVERYTHING + + +[1.1.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.1.2 +[1.1.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.1.1 +[1.1.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.1.0 +[1.0.3]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.0.3 +[1.0.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.0.2 +[1.0.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.0.1 +[1.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Fqueue%401.0.0 diff --git a/packages/url-manager/CHANGELOG.md b/packages/url-manager/CHANGELOG.md new file mode 100644 index 0000000..b6f1416 --- /dev/null +++ b/packages/url-manager/CHANGELOG.md @@ -0,0 +1,48 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.4] - 2020-11-23 + +### Added + +- Typing for multiple elements ([#3](https://github.com/dzeiocom/libs/issues/3)) + +### Changed + +- FromUrl and ToString formatting to match ESLint + +## [1.0.3] - 2020-11-23 + +### Fixed + +- Path not correctly compilinh with only a protocol + +## [1.0.2] - 2020-10-20 + +### Removed + +- Webpack Browser version as it don't nedd any changes from the base version + +## [1.0.1] - 2020-09-02 + +### Changed + +- Test Coverage + +## [1.0.0] - 2020-08-31 + +### Added + +- EVERYTHING + + +[1.0.4]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Furl-manager%401.0.4 +[1.0.3]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Furl-manager%401.0.3 +[1.0.2]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Furl-manager%401.0.2 +[1.0.1]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Furl-manager%401.0.1 +[1.0.0]: https://github.com/dzeiocom/libs/releases/tag/%40dzeio%2Furl-manager%401.0.0