Skip to content

Commit

Permalink
v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reel committed Dec 7, 2017
1 parent c949ff2 commit ca43289
Show file tree
Hide file tree
Showing 34 changed files with 235 additions and 30 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
6 changes: 4 additions & 2 deletions 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"
}
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
14 changes: 7 additions & 7 deletions 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",
Expand Down
11 changes: 11 additions & 0 deletions packages/config/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
4 changes: 2 additions & 2 deletions 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"
}
Expand Down
11 changes: 11 additions & 0 deletions packages/disk/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.18.0"></a>
# [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17)

Expand Down
4 changes: 2 additions & 2 deletions 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"
}
}
8 changes: 8 additions & 0 deletions packages/henri/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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

<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
4 changes: 2 additions & 2 deletions 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,
Expand All @@ -25,6 +25,6 @@
},
"homepage": "https://github.com/usehenri/henri#readme",
"dependencies": {
"@usehenri/cli": "^0.19.0"
"@usehenri/cli": "^0.20.0"
}
}
11 changes: 11 additions & 0 deletions packages/log/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.18.0"></a>
# [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17)

Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
11 changes: 11 additions & 0 deletions packages/model/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.18.0"></a>
# [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17)

Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
8 changes: 8 additions & 0 deletions packages/mongoose/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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

<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
12 changes: 12 additions & 0 deletions 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.

<a name="0.20.0"></a>
# [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))
4 changes: 2 additions & 2 deletions 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"
}
}
12 changes: 12 additions & 0 deletions packages/mysql/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.18.0"></a>
# [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17)

Expand Down
4 changes: 2 additions & 2 deletions 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"
}
}
11 changes: 11 additions & 0 deletions packages/postgresql/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.18.0"></a>
# [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17)

Expand Down
4 changes: 2 additions & 2 deletions 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"
}
Expand Down
16 changes: 16 additions & 0 deletions packages/react/CHANGELOG.md
Expand Up @@ -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.

<a name="0.20.0"></a>
# [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))




<a name="0.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)

Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit ca43289

Please sign in to comment.