Closed greenkeeper[bot] closed 7 years ago
@greenkeeper[bot], thanks for your PR! By analyzing the history of the files in this pull request, we identified @greenkeeperio-bot, @tiagoschenkel and @greenkeeper to be potential reviewers.
Update to this version instead 🚀
The main addition of this release is a feature that allows library and framework authors to customize the annotation phase.
@remojansen Refactoring binding (#491) … 0ee96ad
@greenkeeper Update gulp-mocha to version 4.0.0 (#494) … 83491d0
@remojansen Bug fix 496 (#502) … a92d13f
@Dirrk Update bluebird to 3.5.0 (#503) f5354a9
@Dirrk Updated sinon to 2.0.0 (#511) 96230ab
@remojansen Support for metadata middleware (#507) … d60a053
The new version differs by 7 commits .
1410309
Update package.json
d60a053
Support for metadata middleware (#507)
96230ab
Updated sinon to 2.0.0 (#511)
f5354a9
update bluebird to 3.5.0 (#503)
a92d13f
Bug fix 496 (#502)
83491d0
chore(package): update gulp-mocha to version 4.0.0 (#494)
0ee96ad
Refactoring binding (#491)
See the full diff.
Update to this version instead 🚀
This release adds support for #505 ad solves #497
@remojansen Implements #505 (#512) be1c2fc
@remojansen Implements #497 (#513) 95c8f3a
Update to this version instead 🚀
There is a breaking change in this release. The change is likely to affect a very small group of users but it is a breaking change which explains why this release is 4.0.0.
The breaking change is caused by a fix in a typo in a public API:
The public method getConstrucotorMetadata
is now getConstructorMetadata
:
interface MetadataReader {
getConstrucotorMetadata(constructorFunc: Function): ConstructorMetadata;
getPropertiesMetadata(constructorFunc: Function): MetadataMap;
}
Is now:
interface MetadataReader {
getConstructorMetadata(constructorFunc: Function): ConstructorMetadata;
getPropertiesMetadata(constructorFunc: Function): MetadataMap;
}
@greenkeeper update tslint to version 5.0.0 (#519) … 0c14e57
@greenkeeper update @types/sinon to version 2.1.0 (#518) … 17e4541
@remojansen remojansen Add some test cases & solve coverage issues (#538) … 7a6a60e
@remojansen remojansen Fixes typo in public API #536 (#539) 93f83c2
@greenkeeper Update gulp-tslint to the latest version
@remojansen remojansen Added test case for #528 (#540) … 3553c79
The new version differs by 6 commits0.
3553c79
Added test case for #528 (#540)
52596e0
Update gulp-tslint to the latest version 🚀 (#529)
93f83c2
Fixes typo in public API #536 (#539)
7a6a60e
Add some test cases & solve coverage issues (#538)
17e4541
chore(package): update @types/sinon to version 2.1.0 (#518)
0c14e57
chore(package): update tslint to version 5.0.0 (#519)
false
See the full diff
Update to this version instead 🚀
@Greenkeeper update gulp-mocha to version 4.3.1 (#547) … f888d44
@remojansen remojansen Implements #546 081929d
@remojansen remojansen Update readme.md 24b2882
@remojansen remojansen Update injecting_npm_modules.md 6068dc4
@remojansen remojansen Update injecting_npm_modules.md 86e41d7
@Greenkeeper update gulp-uglify to version 3.0.0 (#555) 8f337a4
@remojansen remojansen Fixes issue #559 …
The new version differs by 7 commits.
d66c29c
Fixes issue #559
8f337a4
chore(package): update gulp-uglify to version 3.0.0 (#555)
86e41d7
Update injecting_npm_modules.md
6068dc4
Update injecting_npm_modules.md
24b2882
Update readme.md
081929d
Implements #546
f888d44
chore(package): update gulp-mocha to version 4.3.1 (#547)
See the full diff
Update to this version instead 🚀
@remojansen Fixing build (#578) 14f36fe
@remojansen Update README.md 75dd911
@Greenkeeper update del to version 3.0.0 (#580) fa442ff
@AltekkeE Added @PostConstruct method decorator (#588) c822d75
@AltekkeE VS Code mocha debugging (#589) dff05d4
@Greenkeeper Update run-sequence to version 2.0.0 (#591) b4d66aa
@remojansen Update dependencies (#592) 67f2a39
The new version differs by 7 commits.
67f2a39
Update dependencies (#592)
b4d66aa
chore(package): update run-sequence to version 2.0.0 (#591)
dff05d4
VS Code mocha debugging (#589)
c822d75
added @postConstruct method decorator (#588)
fa442ff
chore(package): update del to version 3.0.0 (#580)
75dd911
Update README.md
14f36fe
Fixing build (#578)
See the full diff
Update to this version instead 🚀
@remojansen Create CODE_OF_CONDUCT.md (#594) c756c7f
@AltekkeE Travis tests are failing due to latest update to tslint #602 (#603) 1bdb3ac
@theodesp Issue-605 Documented @PostConstruct Decorator (#608) 7c9e83c
@sanex3339 Fixes issue #615 (#616) 11109c5
@theodesp Issue-612 Fixed typos all over the codebase. Tests still pass. (#613) c944009
@tiagoschenkel isBound, isBoundNamed and isBoundTagged methods are checking ancestors 3a712d7
The new version differs by 7 commits.
4901923
4.3.0
3a712d7
isBound, isBoundNamed and isBoundTagged methods are checking ancestors (#614)
c944009
Issue-612 Fixed typos all over the codebase. Tests still pass. (#613)
11109c5
Fixes issue inversify/InversifyJS#615 (#616)
7c9e83c
Issue-605 Documented @postConstruct Decorator (#608)
1bdb3ac
Travis tests are failing due to latest update to tslint #602 (#603)
c756c7f
Create CODE_OF_CONDUCT.md (#594)
See the full diff
Version 3.1.0 of inversify just got published.
The version 3.1.0 is not covered by your current version range.
Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.
I recommend you look into these changes and try to get onto the latest version of inversify. Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.
Release Notes
3.1.0container.rebind
Commits
The new version differs by 43 commits .
3ab1225
Implements container.rebind support #484 (#490)
afe64db
Prettify code samples (#485)
7533fc9
Update ecosystem.md
0c8a7b3
Updated browserify (#482)
286d203
Updated tslint and vscode config
c031af0
Fixed linting errors
0c81c92
typo (#479)
75d1785
Update dependencies (#477)
dfc8465
3.0.0 release
01a2fd8
chore(package): update performance-now to version 2.0.0 (#476)
1da6f85
fix links (#474)
af9f207
chore(package): update performance-now to version 1.0.0 (#470)
76a24d6
Implements #460 (#467)
5202c41
Update package.json
7886e61
Update package.json
There are 43 commits in total. See the full diff.
Not sure how things should work exactly?
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: