Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Feb 19, 2022
1 parent 2a8d783 commit b43dd2f
Show file tree
Hide file tree
Showing 20 changed files with 282 additions and 22 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "1.2.0"
"version": "2.0.0"
}
26 changes: 26 additions & 0 deletions packages/common-test-case/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/common-test-case/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/common-test-case",
"version": "1.2.0",
"version": "2.0.0",
"description": "Common Test Case for KVS",
"homepage": "https://github.com/azu/kvs/tree/master/packages/common-test-case/",
"bugs": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/types": "^1.2.0"
"@kvs/types": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
Expand Down
26 changes: 26 additions & 0 deletions packages/env/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/env/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/env",
"version": "1.2.0",
"version": "2.0.0",
"description": "Universal Storage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -46,8 +46,8 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/indexeddb": "^1.2.0",
"@kvs/node-localstorage": "^1.2.0"
"@kvs/indexeddb": "^2.0.0",
"@kvs/node-localstorage": "^2.0.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
Expand Down
26 changes: 26 additions & 0 deletions packages/indexeddb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/indexeddb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/indexeddb",
"version": "1.2.0",
"version": "2.0.0",
"description": "IndexedDB for KVS",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,11 +45,11 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/types": "^1.2.0"
"@kvs/types": "^2.0.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^1.2.0",
"@kvs/common-test-case": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"karma": "^6.3.4",
Expand Down
26 changes: 26 additions & 0 deletions packages/localstorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/localstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/localstorage",
"version": "1.2.0",
"version": "2.0.0",
"description": "localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,7 +45,7 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/storage": "^1.2.0"
"@kvs/storage": "^2.0.0"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
Expand Down
26 changes: 26 additions & 0 deletions packages/memorystorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
4 changes: 2 additions & 2 deletions packages/memorystorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/memorystorage",
"version": "1.2.0",
"version": "2.0.0",
"description": "Node.js localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^1.2.0",
"@kvs/common-test-case": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"mocha": "^9.1.1",
Expand Down
26 changes: 26 additions & 0 deletions packages/node-localstorage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down
6 changes: 3 additions & 3 deletions packages/node-localstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kvs/node-localstorage",
"version": "1.2.0",
"version": "2.0.0",
"description": "Node.js localstorage for KVS.",
"keywords": [
"kvs",
Expand Down Expand Up @@ -45,14 +45,14 @@
"trailingComma": "none"
},
"dependencies": {
"@kvs/storage": "^1.2.0",
"@kvs/storage": "^2.0.0",
"app-root-path": "^3.0.0",
"mkdirp": "^1.0.4",
"node-localstorage": "^2.1.6"
},
"devDependencies": {
"@jsdevtools/karma-config": "^3.1.7",
"@kvs/common-test-case": "^1.2.0",
"@kvs/common-test-case": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"mocha": "^9.1.1",
Expand Down
26 changes: 26 additions & 0 deletions packages/storage-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/azu/kvs/compare/v1.2.0...v2.0.0) (2022-02-19)


### Bug Fixes

* **storage:** use name as namespace ([#21](https://github.com/azu/kvs/issues/21)) ([2a8d783](https://github.com/azu/kvs/commit/2a8d7831bed970c94ae4fdad84639f5f373a8b6b))


### BREAKING CHANGES

* **storage:** storage package sperate storags by `name` option

## Affected Packages

- `@kvs/env` in Node.js
- 📝 Browser is not affected because it uses IndexedDB
- `@kvs/storage`
- `@kvs/localstorage`
- `@kvs/memorystorage`
- `@kvs/node-localstorage`
- `@kvs/storage-sync`





# [1.2.0](https://github.com/azu/kvs/compare/v1.1.0...v1.2.0) (2021-04-17)


Expand Down

0 comments on commit b43dd2f

Please sign in to comment.