This repository was archived by the owner on Dec 27, 2024. It is now read-only.
0.16.0
See Milestone 0.16.0
What's new
- #136 Generated documentation has been moved out of the project. You can still run
npm run docs:serveto build the latest docs locally. You can get API docs for the master and develop branches here: https://github.com/sakuraapi/docs-core - #152 calling
closeon your instance of SakuraApi will now also close your db connections for you - #172 Dependencies are now deregistered when you call SakuraApi's
closemethod. You no longer have to callsapi.deregisterDependencieswhen unit testing. By default, SakuraApi will also no longer throw an error if you do not deregister a dependency between registrations in SakuraApi instances. This is a scenario that normally occurs during testing. To turn this behavior back on, use the throwDependencyAlreadyInjectedError option when instantiating your instance of SakuraApi. (This should also resolve #158). - #198
.ideahas been included to make it easier for other contributors to match styling and setup.