Skip to content

Commit 63a9bf8

Browse files
committed
v1.2.0
1 parent 7c099be commit 63a9bf8

File tree

20 files changed

+262
-22
lines changed

20 files changed

+262
-22
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)
7+
8+
9+
### Features
10+
11+
* **types:** Use Key Remapping in Mapped Types. ([#17](https://github.com/azu/kvs/issues/17)) ([7c099be](https://github.com/azu/kvs/commit/7c099be4ae39adedba78d111574347395e024362))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **types:** require TypeScript 4.1+
17+
18+
It aims to support to following schema:
19+
20+
```ts
21+
const storage = kvs<{
22+
[index: string]: string;
23+
}>;
24+
```
25+
26+
27+
28+
29+
630
# [1.1.0](https://github.com/azu/kvs/compare/v1.0.0...v1.1.0) (2020-10-29)
731

832

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "1.1.0"
5+
"version": "1.2.0"
66
}

packages/common-test-case/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)
7+
8+
9+
### Features
10+
11+
* **types:** Use Key Remapping in Mapped Types. ([#17](https://github.com/azu/kvs/issues/17)) ([7c099be](https://github.com/azu/kvs/commit/7c099be4ae39adedba78d111574347395e024362))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **types:** require TypeScript 4.1+
17+
18+
It aims to support to following schema:
19+
20+
```ts
21+
const storage = kvs<{
22+
[index: string]: string;
23+
}>;
24+
```
25+
26+
27+
28+
29+
630
# [1.1.0](https://github.com/azu/kvs/compare/v1.0.0...v1.1.0) (2020-10-29)
731

832

packages/common-test-case/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kvs/common-test-case",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Common Test Case for KVS",
55
"homepage": "https://github.com/azu/kvs/tree/master/packages/common-test-case/",
66
"bugs": {
@@ -40,7 +40,7 @@
4040
"trailingComma": "none"
4141
},
4242
"dependencies": {
43-
"@kvs/types": "^1.1.0"
43+
"@kvs/types": "^1.2.0"
4444
},
4545
"devDependencies": {
4646
"@types/mocha": "^8.0.1",

packages/env/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)
7+
8+
9+
### Features
10+
11+
* **types:** Use Key Remapping in Mapped Types. ([#17](https://github.com/azu/kvs/issues/17)) ([7c099be](https://github.com/azu/kvs/commit/7c099be4ae39adedba78d111574347395e024362))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **types:** require TypeScript 4.1+
17+
18+
It aims to support to following schema:
19+
20+
```ts
21+
const storage = kvs<{
22+
[index: string]: string;
23+
}>;
24+
```
25+
26+
27+
28+
29+
630
# [1.1.0](https://github.com/azu/kvs/compare/v1.0.0...v1.1.0) (2020-10-29)
731

832

packages/env/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kvs/env",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Universal Storage for KVS.",
55
"keywords": [
66
"kvs",
@@ -46,8 +46,8 @@
4646
"trailingComma": "none"
4747
},
4848
"dependencies": {
49-
"@kvs/indexeddb": "^1.1.0",
50-
"@kvs/node-localstorage": "^1.1.0"
49+
"@kvs/indexeddb": "^1.2.0",
50+
"@kvs/node-localstorage": "^1.2.0"
5151
},
5252
"devDependencies": {
5353
"@jsdevtools/karma-config": "^3.1.7",

packages/indexeddb/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)
7+
8+
9+
### Features
10+
11+
* **types:** Use Key Remapping in Mapped Types. ([#17](https://github.com/azu/kvs/issues/17)) ([7c099be](https://github.com/azu/kvs/commit/7c099be4ae39adedba78d111574347395e024362))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **types:** require TypeScript 4.1+
17+
18+
It aims to support to following schema:
19+
20+
```ts
21+
const storage = kvs<{
22+
[index: string]: string;
23+
}>;
24+
```
25+
26+
27+
28+
29+
630
# [1.1.0](https://github.com/azu/kvs/compare/v1.0.0...v1.1.0) (2020-10-29)
731

832

packages/indexeddb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kvs/indexeddb",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "IndexedDB for KVS",
55
"keywords": [
66
"kvs",
@@ -45,11 +45,11 @@
4545
"trailingComma": "none"
4646
},
4747
"dependencies": {
48-
"@kvs/types": "^1.1.0"
48+
"@kvs/types": "^1.2.0"
4949
},
5050
"devDependencies": {
5151
"@jsdevtools/karma-config": "^3.1.7",
52-
"@kvs/common-test-case": "^1.1.0",
52+
"@kvs/common-test-case": "^1.2.0",
5353
"@types/mocha": "^8.0.1",
5454
"@types/node": "^14.0.27",
5555
"karma": "^5.1.1",

packages/localstorage/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)
7+
8+
9+
### Features
10+
11+
* **types:** Use Key Remapping in Mapped Types. ([#17](https://github.com/azu/kvs/issues/17)) ([7c099be](https://github.com/azu/kvs/commit/7c099be4ae39adedba78d111574347395e024362))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **types:** require TypeScript 4.1+
17+
18+
It aims to support to following schema:
19+
20+
```ts
21+
const storage = kvs<{
22+
[index: string]: string;
23+
}>;
24+
```
25+
26+
27+
28+
29+
630
# [1.1.0](https://github.com/azu/kvs/compare/v1.0.0...v1.1.0) (2020-10-29)
731

832

packages/localstorage/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kvs/localstorage",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "localstorage for KVS.",
55
"keywords": [
66
"kvs",
@@ -45,7 +45,7 @@
4545
"trailingComma": "none"
4646
},
4747
"dependencies": {
48-
"@kvs/storage": "^1.1.0"
48+
"@kvs/storage": "^1.2.0"
4949
},
5050
"devDependencies": {
5151
"@jsdevtools/karma-config": "^3.1.7",

0 commit comments

Comments
 (0)