diff --git a/CHANGELOG.md b/CHANGELOG.md index a9bafbaf..a03c2f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Bug Fixes + +* **user:** remove bcrypt round check as this is low level enough. ([cd32d9c](https://github.com/usehenri/henri/commit/cd32d9c)) + + +### Features + +* **disk:** using sequelize with sqlite ([4057150](https://github.com/usehenri/henri/commit/4057150)) +* **log:** adding a timestamp to monitor long calls ([2c1be45](https://github.com/usehenri/henri/commit/2c1be45)) +* **model:** base for new db adapters and optimization ([ccc5e2d](https://github.com/usehenri/henri/commit/ccc5e2d)) +* **mssql:** using sequelize with tedious (mssql) ([0b47556](https://github.com/usehenri/henri/commit/0b47556)) +* **mysql:** using sequelize with mysql2 (mysql, mariadb) ([06dc7f8](https://github.com/usehenri/henri/commit/06dc7f8)) +* **postgresql:** using sequelize with pg ([0538271](https://github.com/usehenri/henri/commit/0538271)) +* **react:** add a helper to render named routes (pathFor) ([952a16c](https://github.com/usehenri/henri/commit/952a16c)) +* **router:** go back to :id params ([26e19d4](https://github.com/usehenri/henri/commit/26e19d4)) +* **router:** provide named routes to the client if needed ([354f689](https://github.com/usehenri/henri/commit/354f689)) +* **sequelize:** base class for sequelize adapters ([286f6ae](https://github.com/usehenri/henri/commit/286f6ae)) + + +### Performance Improvements + +* **react:** uglify distributed libraries ([3e72b49](https://github.com/usehenri/henri/commit/3e72b49)) + + + + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/lerna.json b/lerna.json index 4307e8a0..ef268161 100644 --- a/lerna.json +++ b/lerna.json @@ -1,8 +1,10 @@ { "lerna": "2.2.0", "conventionalCommits": "true", - "packages": ["packages/*"], + "packages": [ + "packages/*" + ], "npmClient": "yarn", "useWorkspaces": true, - "version": "0.19.0" + "version": "0.20.0" } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4d201843..55d2c8c1 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **router:** go back to :id params ([26e19d4](https://github.com/usehenri/henri/commit/26e19d4)) + + + + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/cli/package.json b/packages/cli/package.json index 2d3a1d09..38fb8e57 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,18 +1,18 @@ { "name": "@usehenri/cli", - "version": "0.19.0", + "version": "0.20.0", "description": "henri cli runner", "main": "index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/config": "^0.19.0", + "@usehenri/config": "^0.20.0", "@usehenri/controller": "^0.18.0", - "@usehenri/model": "^0.18.0", - "@usehenri/router": "^0.19.0", - "@usehenri/server": "^0.19.0", - "@usehenri/user": "^0.18.0", - "@usehenri/view": "^0.19.0", + "@usehenri/model": "^0.20.0", + "@usehenri/router": "^0.20.0", + "@usehenri/server": "^0.20.0", + "@usehenri/user": "^0.20.0", + "@usehenri/view": "^0.20.0", "chalk": "^2.3.0", "cross-spawn": "^5.1.0", "fs-extra": "^4.0.3", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 916ffb34..ec642c74 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **router:** provide named routes to the client if needed ([354f689](https://github.com/usehenri/henri/commit/354f689)) + + + + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/config/package.json b/packages/config/package.json index 10c08c3c..25605c9e 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,12 +1,12 @@ { "name": "@usehenri/config", - "version": "0.19.0", + "version": "0.20.0", "description": "henri configuration manager", "main": "lib/index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/log": "^0.18.0", + "@usehenri/log": "^0.20.0", "callsite": "^1.0.0", "config": "^1.28.1" } diff --git a/packages/disk/CHANGELOG.md b/packages/disk/CHANGELOG.md index 68fd7c6e..4c8aef3a 100644 --- a/packages/disk/CHANGELOG.md +++ b/packages/disk/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **disk:** using sequelize with sqlite ([4057150](https://github.com/usehenri/henri/commit/4057150)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/disk/package.json b/packages/disk/package.json index e82b3c1f..615ef6cb 100644 --- a/packages/disk/package.json +++ b/packages/disk/package.json @@ -1,12 +1,12 @@ { "name": "@usehenri/disk", - "version": "0.18.0", + "version": "0.20.0", "description": "henri disk database connector", "main": "index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/sequelize": "^0.18.0", + "@usehenri/sequelize": "^0.20.0", "sqlite3": "^3.1.13" } } diff --git a/packages/henri/CHANGELOG.md b/packages/henri/CHANGELOG.md index b76c3ae2..916df2e7 100644 --- a/packages/henri/CHANGELOG.md +++ b/packages/henri/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + + + +**Note:** Version bump only for package henri + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/henri/package.json b/packages/henri/package.json index 93a68c67..cf25856f 100644 --- a/packages/henri/package.json +++ b/packages/henri/package.json @@ -1,6 +1,6 @@ { "name": "henri", - "version": "0.19.0", + "version": "0.20.0", "description": "henri is an easy to learn rails-like, react server-side rendered framework with a powerful and versatile ORM", "main": "index.js", "preferGlobal": true, @@ -25,6 +25,6 @@ }, "homepage": "https://github.com/usehenri/henri#readme", "dependencies": { - "@usehenri/cli": "^0.19.0" + "@usehenri/cli": "^0.20.0" } } diff --git a/packages/log/CHANGELOG.md b/packages/log/CHANGELOG.md index 23d863a2..cee7f49a 100644 --- a/packages/log/CHANGELOG.md +++ b/packages/log/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **log:** adding a timestamp to monitor long calls ([2c1be45](https://github.com/usehenri/henri/commit/2c1be45)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/log/package.json b/packages/log/package.json index 9fa9dfa7..9902755a 100644 --- a/packages/log/package.json +++ b/packages/log/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/log", - "version": "0.18.0", + "version": "0.20.0", "description": "henri logger", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/model/CHANGELOG.md b/packages/model/CHANGELOG.md index 6a494388..890cba10 100644 --- a/packages/model/CHANGELOG.md +++ b/packages/model/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **model:** base for new db adapters and optimization ([ccc5e2d](https://github.com/usehenri/henri/commit/ccc5e2d)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/model/package.json b/packages/model/package.json index db2b18c5..e55e9901 100644 --- a/packages/model/package.json +++ b/packages/model/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/model", - "version": "0.18.0", + "version": "0.20.0", "description": "henri model loader", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/mongoose/CHANGELOG.md b/packages/mongoose/CHANGELOG.md index c46390fc..c5291a0e 100644 --- a/packages/mongoose/CHANGELOG.md +++ b/packages/mongoose/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + + + +**Note:** Version bump only for package @usehenri/mongoose + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/mongoose/package.json b/packages/mongoose/package.json index f734c3a5..28027227 100644 --- a/packages/mongoose/package.json +++ b/packages/mongoose/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/mongoose", - "version": "0.19.0", + "version": "0.20.0", "description": "henri mongoose database connector", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/mssql/CHANGELOG.md b/packages/mssql/CHANGELOG.md new file mode 100644 index 00000000..06b75372 --- /dev/null +++ b/packages/mssql/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **mssql:** using sequelize with tedious (mssql) ([0b47556](https://github.com/usehenri/henri/commit/0b47556)) diff --git a/packages/mssql/package.json b/packages/mssql/package.json index 38a329fe..f0f38515 100644 --- a/packages/mssql/package.json +++ b/packages/mssql/package.json @@ -1,12 +1,12 @@ { "name": "@usehenri/mssql", - "version": "0.18.0", + "version": "0.20.0", "description": "henri mssql database connector", "main": "index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/sequelize": "^0.18.0", + "@usehenri/sequelize": "^0.20.0", "tedious": "^2.1.5" } } diff --git a/packages/mysql/CHANGELOG.md b/packages/mysql/CHANGELOG.md index 4d6e6a15..78c6f397 100644 --- a/packages/mysql/CHANGELOG.md +++ b/packages/mysql/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **mssql:** using sequelize with tedious (mssql) ([0b47556](https://github.com/usehenri/henri/commit/0b47556)) +* **mysql:** using sequelize with mysql2 (mysql, mariadb) ([06dc7f8](https://github.com/usehenri/henri/commit/06dc7f8)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/mysql/package.json b/packages/mysql/package.json index 614eae57..7d5a2bc3 100644 --- a/packages/mysql/package.json +++ b/packages/mysql/package.json @@ -1,12 +1,12 @@ { "name": "@usehenri/mysql", - "version": "0.18.0", + "version": "0.20.0", "description": "henri mariadb/mysql database connector", "main": "index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/sequelize": "^0.18.0", + "@usehenri/sequelize": "^0.20.0", "mysql2": "^1.5.1" } } diff --git a/packages/postgresql/CHANGELOG.md b/packages/postgresql/CHANGELOG.md index de9ce863..c9512d04 100644 --- a/packages/postgresql/CHANGELOG.md +++ b/packages/postgresql/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **postgresql:** using sequelize with pg ([0538271](https://github.com/usehenri/henri/commit/0538271)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/postgresql/package.json b/packages/postgresql/package.json index 2ba014e9..019f407d 100644 --- a/packages/postgresql/package.json +++ b/packages/postgresql/package.json @@ -1,12 +1,12 @@ { "name": "@usehenri/postgresql", - "version": "0.18.0", + "version": "0.20.0", "description": "henri postgresql database connector", "main": "index.js", "author": "Felix-Antoine Paradis", "license": "MIT", "dependencies": { - "@usehenri/sequelize": "^0.18.0", + "@usehenri/sequelize": "^0.20.0", "pg": "6", "pg-hstore": "^2.3.2" } diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 641cbb85..972f5ba3 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **react:** add a helper to render named routes (pathFor) ([952a16c](https://github.com/usehenri/henri/commit/952a16c)) + + +### Performance Improvements + +* **react:** uglify distributed libraries ([3e72b49](https://github.com/usehenri/henri/commit/3e72b49)) + + + + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/react/package.json b/packages/react/package.json index 6bf0ab53..c19308ec 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/react", - "version": "0.19.0", + "version": "0.20.0", "description": "react components for henri", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 4af92df0..a4f32b09 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **router:** go back to :id params ([26e19d4](https://github.com/usehenri/henri/commit/26e19d4)) +* **router:** provide named routes to the client if needed ([354f689](https://github.com/usehenri/henri/commit/354f689)) + + + + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/router/package.json b/packages/router/package.json index 077506c1..a92c9e19 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/router", - "version": "0.19.0", + "version": "0.20.0", "description": "henri router", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/sequelize/CHANGELOG.md b/packages/sequelize/CHANGELOG.md new file mode 100644 index 00000000..73f49392 --- /dev/null +++ b/packages/sequelize/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Features + +* **sequelize:** base class for sequelize adapters ([286f6ae](https://github.com/usehenri/henri/commit/286f6ae)) diff --git a/packages/sequelize/package.json b/packages/sequelize/package.json index 88883324..c81ead7c 100644 --- a/packages/sequelize/package.json +++ b/packages/sequelize/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/sequelize", - "version": "0.18.0", + "version": "0.20.0", "description": "henri sequalize class provider", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index ebe35149..f2ac8bd6 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + + + +**Note:** Version bump only for package @usehenri/server + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/server/package.json b/packages/server/package.json index ab08566d..8397a3f7 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/server", - "version": "0.19.0", + "version": "0.20.0", "description": "henri http server (express)", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/user/CHANGELOG.md b/packages/user/CHANGELOG.md index fa2ef271..87b75169 100644 --- a/packages/user/CHANGELOG.md +++ b/packages/user/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + +### Bug Fixes + +* **user:** remove bcrypt round check as this is low level enough. ([cd32d9c](https://github.com/usehenri/henri/commit/cd32d9c)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/user/package.json b/packages/user/package.json index ebac9ab7..4c06f9dc 100644 --- a/packages/user/package.json +++ b/packages/user/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/user", - "version": "0.18.0", + "version": "0.20.0", "description": "henri user management", "main": "index.js", "author": "Felix-Antoine Paradis", diff --git a/packages/view/CHANGELOG.md b/packages/view/CHANGELOG.md index 5d62e824..e7699373 100644 --- a/packages/view/CHANGELOG.md +++ b/packages/view/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.20.0](https://github.com/usehenri/henri/compare/v0.19.0...v0.20.0) (2017-12-07) + + + + +**Note:** Version bump only for package @usehenri/view + # [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) diff --git a/packages/view/package.json b/packages/view/package.json index 281f3e69..f054e791 100644 --- a/packages/view/package.json +++ b/packages/view/package.json @@ -1,6 +1,6 @@ { "name": "@usehenri/view", - "version": "0.19.0", + "version": "0.20.0", "description": "henri view handler", "main": "index.js", "author": "Felix-Antoine Paradis",