inversify 4.14.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/package.json +4 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project from 4.14.0 forward will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [4.14.0] - 2018-10-16
|
|
10
|
+
### Added
|
|
11
|
+
- Updating constructor injection wiki document with concrete injection example #922
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Change GUID to incremented counter for better performance #882
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- fix broken compilation by adding `.toString()` so symbols serialization #893
|
|
18
|
+
- Fix problem with applying options on Container.resolve (fix #914) #915
|
|
19
|
+
- Fixed documentation issues
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inversify",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
|
|
5
5
|
"main": "lib/inversify.js",
|
|
6
6
|
"jsnext:main": "es/inversify.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/chai": "4.1.4",
|
|
39
39
|
"@types/harmony-proxy": "1.0.29",
|
|
40
40
|
"@types/mocha": "5.2.3",
|
|
41
|
-
"@types/sinon": "5.0.
|
|
41
|
+
"@types/sinon": "5.0.5",
|
|
42
42
|
"bluebird": "3.5.2",
|
|
43
43
|
"browserify": "16.2.3",
|
|
44
44
|
"chai": "4.1.2",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"karma-sinon": "1.0.5",
|
|
69
69
|
"mocha": "5.2.0",
|
|
70
70
|
"performance-now": "2.1.0",
|
|
71
|
-
"publish-please": "4.0
|
|
71
|
+
"publish-please": "4.1.0",
|
|
72
72
|
"reflect-metadata": "0.1.12",
|
|
73
73
|
"run-sequence": "2.2.1",
|
|
74
74
|
"sinon": "6.0.1",
|
|
@@ -77,4 +77,4 @@
|
|
|
77
77
|
"vinyl-buffer": "1.0.1",
|
|
78
78
|
"vinyl-source-stream": "2.0.0"
|
|
79
79
|
}
|
|
80
|
-
}
|
|
80
|
+
}
|