From 1a67d3f4e3cee9c15f8acdac5849f954e22fd0b2 Mon Sep 17 00:00:00 2001 From: Max P Date: Sat, 24 Aug 2024 02:40:21 +0200 Subject: [PATCH] docs: Reflect curent changes to the changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8845a2e..4d9fe40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- feat: Add new `IdentifierRequiredError` class for missing identifiers. +- feat: Add the option to use the decorators without passing the identifier: In this case, the identifier will be the class name (register) or the property name (inject). ### Deprecated ### Removed +- feat!: Disable `experimentalDecorators` and `emitDecoratorMetadata` in the `tsconfig.json` file to reflect the change to the stable decorators api. ### Fixed +- feat!: Update `Register`, `RegisterInstance` and `Inject` decorators to reflect the change to the stable decorators api. +- feat!: Update `Inject` Decorator typing to reflect the correct property type. ### Security