Skip to content

Commit b93072f

Browse files
committed
1.1.0 Release 🎉 🎆 🔔
1 parent bbb37d3 commit b93072f

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## [1.1.0](https://github.com/leapfrogtechnology/async-store/tree/1.1.0) (2019-11-14)
4+
[Full Changelog](https://github.com/leapfrogtechnology/async-store/compare/1.0.2...1.1.0)
5+
6+
**Closed Issues**
7+
8+
- New accessor function to retrieve a list of values by keys [\#28](https://github.com/leapfrogtechnology/async-store/issues/28) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[hacktoberfest](https://github.com/leapfrogtechnology/async-store/labels/hacktoberfest)]
9+
- New accessor function to get all the store contents as a flat object [\#27](https://github.com/leapfrogtechnology/async-store/issues/27) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[hacktoberfest](https://github.com/leapfrogtechnology/async-store/labels/hacktoberfest)] [[improvement](https://github.com/leapfrogtechnology/async-store/labels/improvement)]
10+
- Ability to get short id from store.getId\(\) using a flag [\#26](https://github.com/leapfrogtechnology/async-store/issues/26) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[hacktoberfest](https://github.com/leapfrogtechnology/async-store/labels/hacktoberfest)] [[improvement](https://github.com/leapfrogtechnology/async-store/labels/improvement)]
11+
- CI - Integrate test code coverage reporting [\#21](https://github.com/leapfrogtechnology/async-store/issues/21) [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[help wanted](https://github.com/leapfrogtechnology/async-store/labels/help%20wanted)] [[test](https://github.com/leapfrogtechnology/async-store/labels/test)]
12+
- Add an example project for a basic http server built with just node [\#20](https://github.com/leapfrogtechnology/async-store/issues/20) [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[help wanted](https://github.com/leapfrogtechnology/async-store/labels/help%20wanted)]
13+
- Add an example project for koa js [\#17](https://github.com/leapfrogtechnology/async-store/issues/17) [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] [[good first issue](https://github.com/leapfrogtechnology/async-store/labels/good%20first%20issue)] [[hacktoberfest](https://github.com/leapfrogtechnology/async-store/labels/hacktoberfest)] [[help wanted](https://github.com/leapfrogtechnology/async-store/labels/help%20wanted)]
14+
- Example with request id logging for express sample app [\#16](https://github.com/leapfrogtechnology/async-store/issues/16) [[example](https://github.com/leapfrogtechnology/async-store/labels/example)]
15+
16+
**Changes**
17+
18+
- Add example project for koa [\#36](https://github.com/leapfrogtechnology/async-store/pull/36) [[documentation](https://github.com/leapfrogtechnology/async-store/labels/documentation)] [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] ([Swechhya](https://github.com/Swechhya))
19+
- Add implementation to get short id [\#35](https://github.com/leapfrogtechnology/async-store/pull/35) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] ([silwalanish](https://github.com/silwalanish))
20+
- Remove unreachable code [\#34](https://github.com/leapfrogtechnology/async-store/pull/34) [[improvement](https://github.com/leapfrogtechnology/async-store/labels/improvement)] ([mesaugat](https://github.com/mesaugat))
21+
- Add missing tests for edge cases [\#33](https://github.com/leapfrogtechnology/async-store/pull/33) [[test](https://github.com/leapfrogtechnology/async-store/labels/test)] ([kabirbaidhya](https://github.com/kabirbaidhya))
22+
- Add new accessor function getAll\(\) [\#32](https://github.com/leapfrogtechnology/async-store/pull/32) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] ([evless](https://github.com/evless))
23+
- Add new accessor function getByKeys\(\) [\#30](https://github.com/leapfrogtechnology/async-store/pull/30) [[feature](https://github.com/leapfrogtechnology/async-store/labels/feature)] ([spencerwi](https://github.com/spencerwi))
24+
- Refactor all the examples for consistency and simplicity [\#29](https://github.com/leapfrogtechnology/async-store/pull/29) [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] [[refactor](https://github.com/leapfrogtechnology/async-store/labels/refactor)] ([kabirbaidhya](https://github.com/kabirbaidhya))
25+
- Add an example project for a basic http server built with just node [\#25](https://github.com/leapfrogtechnology/async-store/pull/25) [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] [[node](https://github.com/leapfrogtechnology/async-store/labels/node)] [[web server](https://github.com/leapfrogtechnology/async-store/labels/web%20server)] ([silwalanish](https://github.com/silwalanish))
26+
- Add example for request id logging [\#24](https://github.com/leapfrogtechnology/async-store/pull/24) [[documentation](https://github.com/leapfrogtechnology/async-store/labels/documentation)] [[example](https://github.com/leapfrogtechnology/async-store/labels/example)] ([silwalanish](https://github.com/silwalanish))
27+
- Include only source files in test coverage [\#23](https://github.com/leapfrogtechnology/async-store/pull/23) [[coverage](https://github.com/leapfrogtechnology/async-store/labels/coverage)] ([mesaugat](https://github.com/mesaugat))
28+
- Integrate test code coverage reporting with Codecov and Travis [\#22](https://github.com/leapfrogtechnology/async-store/pull/22) [[coverage](https://github.com/leapfrogtechnology/async-store/labels/coverage)] [[test](https://github.com/leapfrogtechnology/async-store/labels/test)] ([ghost](https://github.com/ghost))
29+
330
## [1.0.2](https://github.com/leapfrogtechnology/async-store/tree/1.0.2) (2019-07-31)
431
[Full Changelog](https://github.com/leapfrogtechnology/async-store/compare/1.0.1...1.0.2)
532

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@leapfrogtechnology/async-store",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Global store utility for an async operation lifecycle and chain of callbacks",
55
"license": "MIT",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)