You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+60-1Lines changed: 60 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,72 @@ All notable changes to this project from 5.0.0 forward will be documented in thi
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [Unreleased]
7
+
## [7.0.0-alpha.0]
8
8
9
9
### Added
10
+
- Added `BindInFluentSyntax`.
11
+
- Added `BindInWhenOnFluentSyntax`.
12
+
- Added `BindOnFluentSyntax`.
13
+
- Added `BindingScope`.
14
+
- Added `BindToFluentSyntax`.
15
+
- Added `BindWhenFluentSyntax`.
16
+
- Added `BindWhenOnFluentSyntax`.
17
+
- Added `ContainerModuleLoadOptions`.
18
+
- Added `DynamicValueBuilder`.
19
+
- Added `Factory`.
20
+
- Added `GetOptions`.
21
+
- Added `GetOptionsTagConstraint`.
22
+
- Added `IsBoundOptions`.
23
+
- Added `MetadataName`.
24
+
- Added `MetadataTag`.
25
+
- Added `MetadataTargetName`.
26
+
- Added `OptionalGetOptions`.
27
+
- Added `Provider`.
28
+
- Added `ResolutionContext`.
29
+
- Added `bindingScopeValues`.
30
+
- Added `bindingTypeValues`.
31
+
- Added `injectFromBase` decorator.
10
32
11
33
### Changed
34
+
- Updated `injectable` with optional `scope`.
35
+
-[Breaking] Updated `ContainerModule` constructor to receive a callback with `ContainerModuleLoadOptions` instead of `interfaces.ContainerModuleCallBack`.
36
+
-[Breaking] Updated `ContainerModule`.load to return `Promise<void>`.
37
+
- Updated `ContainerOptions` with `parent`.
38
+
- Updated `ContainerOptions` without `autoBindInjectable` and `skipBaseClassChecks`.
39
+
-[Breaking] Updated `Container` to no longer expose `id`, `parent` nor `options`.
40
+
-[Breaking] Updated `Container` with no `applyCustomMetadataReader`, `applyMiddleware`, `createChild`, `merge` and `rebind` methods.
41
+
-[Breaking] Updated `Container` with no `isCurrentBound`, `isBoundNamed`, `isBoundTagged` methods in favor of using `Container.isBound` with `isBoundOptions`.
42
+
-[Breaking] Updated `Container` with no `getNamed`, `getTagged`, `tryGet`, `tryGetNamed` and `tryGetTagged` methods in favor of `Container.get` with `OptionalGetOptions` options.
43
+
-[Breaking] Updated `Container` with no `getNamedAsync`, `getTaggedAsync`, `tryGetAsync`, `tryGetNamedAsync` and `tryGetTaggedAsync` methods in favor of `Container.getAsync` with `OptionalGetOptions` options.
44
+
-[Breaking] Updated `Container` with no `getAllNamed`, `getAllTagged`, `tryGetAll`, `tryGetAllNamed` and `tryGetAllTagged` methods in favor of `Container.getAll` with `GetOptions` options.
45
+
-[Breaking] Updated `Container` with no `getAllNamedAsync`, `getAllTaggedAsync`, `tryGetAllAsync`, `tryGetAllNamedAsync` and `tryGetAllTaggedAsync` methods in favor of `Container.getAllAsync` with `GetOptions` options.
46
+
-[Breaking] Updated `Container` with no `loadAsync` in favor of an async `Container.load`.
47
+
-[Breaking] Updated `Container` with no `unbindAsync` in favor of an async `Container.unbind`.
48
+
-[Breaking] Updated `Container` with no `unbindAllAsync` in favor of an async `Container.unbindAll`.
49
+
-[Breaking] Updated `Container` with no `unloadAsync` in favor of an async `Container.unload`.
50
+
12
51
13
52
### Fixed
53
+
- Updated `decorate` to no longer require a unexpected prototypes to decorate property nor methods.
54
+
55
+
### Removed
56
+
-[Breaking] Removed deprecated `LazyServiceIdentifer`. Use `LazyServiceIdentifier` instead.
57
+
-[Breaking] Removed `BindingScopeEnum`. Use `bindingScopeValues` instead.
58
+
-[Breaking] Removed `BindingTypeEnum`.
59
+
-[Breaking] Removed `TargetTypeEnum`.
60
+
-[Breaking] Removed `METADATA_KEY`.
61
+
-[Breaking] Removed `AsyncContainerModule`. Use `ContainerModule` instead.
62
+
-[Breaking] Removed `createTaggedDecorator`.
63
+
-[Breaking] Removed `MetadataReader`.
64
+
-[Breaking] Removed `id`.
65
+
-[Breaking] Removed `interfaces` types. Rely on new types instead.
0 commit comments