Skip to content

Commit

Permalink
v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reel committed Nov 25, 2017
1 parent f20f4d1 commit c3dac17
Show file tree
Hide file tree
Showing 18 changed files with 172 additions and 18 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,45 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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


### Bug Fixes

* **cli:** remove the logs also, and recreate directory ([ca13738](https://github.com/usehenri/henri/commit/ca13738))
* **react:** no tests, no coverage, kthx ([fc76556](https://github.com/usehenri/henri/commit/fc76556))
* **router:** fix object assign to create new object and return a 501 error on controller-less routes ([3d5950f](https://github.com/usehenri/henri/commit/3d5950f))
* **router:** rename ressources to resources to match rails convention (en francais?) ([918a8c3](https://github.com/usehenri/henri/commit/918a8c3))
* **router:** return empty data to prevent exception ([bff9c36](https://github.com/usehenri/henri/commit/bff9c36))
* **router:** use _id instead of id.. consistent with mongodb models (why not?) ([6f1341b](https://github.com/usehenri/henri/commit/6f1341b))


### Features

* **cli:** add the generate crud cli ([f20f4d1](https://github.com/usehenri/henri/commit/f20f4d1))
* **cli:** adding generators for models and controllers ([64ea839](https://github.com/usehenri/henri/commit/64ea839))
* **cli:** adding show view to scaffold ([839d510](https://github.com/usehenri/henri/commit/839d510))
* **cli:** adding the about command ([aac06a2](https://github.com/usehenri/henri/commit/aac06a2))
* **cli:** adding the edit page to scaffold ([05393aa](https://github.com/usehenri/henri/commit/05393aa))
* **cli:** adding the scaffold command! generates a small MVC [WIP] ([23e4f6e](https://github.com/usehenri/henri/commit/23e4f6e))
* **react:** adding custom methods to form and fetch ([df011c6](https://github.com/usehenri/henri/commit/df011c6))
* **react:** adding withHenri HOC and forms components (WIP) ([9953147](https://github.com/usehenri/henri/commit/9953147))
* **react:** change fetchData to hydrate, and add a fetch method ([b35a5c6](https://github.com/usehenri/henri/commit/b35a5c6))
* **react:** forms component ([418dc2d](https://github.com/usehenri/henri/commit/418dc2d))
* **react:** withHenri HOC to help fetch data ([1273c8d](https://github.com/usehenri/henri/commit/1273c8d))
* **router:** add crud type routes (resources without views) ([344774a](https://github.com/usehenri/henri/commit/344774a))
* **router:** add the ressources for routes ([6db1c50](https://github.com/usehenri/henri/commit/6db1c50))
* **router:** adding scope to ressources ([99ff697](https://github.com/usehenri/henri/commit/99ff697))
* **router:** it is now possible to embed roles in routes definition ([007a109](https://github.com/usehenri/henri/commit/007a109))
* **router:** parsing routes and validating verbs ([1fe95f3](https://github.com/usehenri/henri/commit/1fe95f3))
* **server:** check the file changes with prettier and output errors (and don't reload) ([8fa958c](https://github.com/usehenri/henri/commit/8fa958c))
* **server:** clear the terminal on reload ([8f6e868](https://github.com/usehenri/henri/commit/8f6e868))
* **user:** add roles support (mongoose) ([4bb0f59](https://github.com/usehenri/henri/commit/4bb0f59))




<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 lerna.json
Expand Up @@ -5,5 +5,5 @@
"packages/*"
],
"npmClient": "yarn",
"version": "0.18.0"
"version": "0.19.0"
}
22 changes: 22 additions & 0 deletions packages/cli/CHANGELOG.md
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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


### Bug Fixes

* **cli:** remove the logs also, and recreate directory ([ca13738](https://github.com/usehenri/henri/commit/ca13738))


### Features

* **cli:** add the generate crud cli ([f20f4d1](https://github.com/usehenri/henri/commit/f20f4d1))
* **cli:** adding generators for models and controllers ([64ea839](https://github.com/usehenri/henri/commit/64ea839))
* **cli:** adding show view to scaffold ([839d510](https://github.com/usehenri/henri/commit/839d510))
* **cli:** adding the about command ([aac06a2](https://github.com/usehenri/henri/commit/aac06a2))
* **cli:** adding the edit page to scaffold ([05393aa](https://github.com/usehenri/henri/commit/05393aa))
* **cli:** adding the scaffold command! generates a small MVC [WIP] ([23e4f6e](https://github.com/usehenri/henri/commit/23e4f6e))
* **user:** add roles support (mongoose) ([4bb0f59](https://github.com/usehenri/henri/commit/4bb0f59))




<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
10 changes: 5 additions & 5 deletions packages/cli/package.json
@@ -1,18 +1,18 @@
{
"name": "@usehenri/cli",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri cli runner",
"main": "index.js",
"author": "Felix-Antoine Paradis",
"license": "MIT",
"dependencies": {
"@usehenri/config": "^0.18.0",
"@usehenri/config": "^0.19.0",
"@usehenri/controller": "^0.18.0",
"@usehenri/model": "^0.18.0",
"@usehenri/router": "^0.18.0",
"@usehenri/server": "^0.18.0",
"@usehenri/router": "^0.19.0",
"@usehenri/server": "^0.19.0",
"@usehenri/user": "^0.18.0",
"@usehenri/view": "^0.18.0",
"@usehenri/view": "^0.19.0",
"chalk": "^2.3.0",
"cross-spawn": "^5.1.0",
"fs-extra": "^4.0.1",
Expand Down
12 changes: 12 additions & 0 deletions packages/config/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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)


### Features

* **router:** it is now possible to embed roles in routes definition ([007a109](https://github.com/usehenri/henri/commit/007a109))
* **server:** clear the terminal on reload ([8f6e868](https://github.com/usehenri/henri/commit/8f6e868))




<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/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/config",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri configuration manager",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand Down
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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)




**Note:** Version bump only for package henri

<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
7 changes: 3 additions & 4 deletions packages/henri/package.json
@@ -1,8 +1,7 @@
{
"name": "henri",
"version": "0.18.0",
"description":
"henri is an easy to learn rails-like, react server-side rendered framework with a powerful and versatile ORM",
"version": "0.19.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,
"scripts": {
Expand All @@ -26,6 +25,6 @@
},
"homepage": "https://github.com/usehenri/henri#readme",
"dependencies": {
"@usehenri/cli": "^0.18.0"
"@usehenri/cli": "^0.19.0"
}
}
11 changes: 11 additions & 0 deletions packages/mongoose/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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)


### Features

* **user:** add roles support (mongoose) ([4bb0f59](https://github.com/usehenri/henri/commit/4bb0f59))




<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/mongoose/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/mongoose",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri mongoose database connector",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand Down
16 changes: 16 additions & 0 deletions packages/react/CHANGELOG.md
@@ -0,0 +1,16 @@
# 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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)


### Features

* **react:** adding custom methods to form and fetch ([df011c6](https://github.com/usehenri/henri/commit/df011c6))
* **react:** adding withHenri HOC and forms components (WIP) ([9953147](https://github.com/usehenri/henri/commit/9953147))
* **react:** change fetchData to hydrate, and add a fetch method ([b35a5c6](https://github.com/usehenri/henri/commit/b35a5c6))
* **react:** forms component ([418dc2d](https://github.com/usehenri/henri/commit/418dc2d))
* **react:** withHenri HOC to help fetch data ([1273c8d](https://github.com/usehenri/henri/commit/1273c8d))
10 changes: 7 additions & 3 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/react",
"version": "0.18.0",
"version": "0.19.0",
"description": "react components for henri",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand All @@ -12,12 +12,16 @@
},
"devDependencies": {
"@taskr/babel": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/watch": "^1.1.0",
"taskr": "^1.1.0"
},
"files": ["dist", "forms.js", "withHenri.js"],
"files": [
"dist",
"forms.js",
"withHenri.js"
],
"dependencies": {
"axios": "^0.17.1",
"prop-types": "^15.6.0",
Expand Down
23 changes: 23 additions & 0 deletions packages/router/CHANGELOG.md
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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


### Bug Fixes

* **router:** fix object assign to create new object and return a 501 error on controller-less routes ([3d5950f](https://github.com/usehenri/henri/commit/3d5950f))
* **router:** rename ressources to resources to match rails convention (en francais?) ([918a8c3](https://github.com/usehenri/henri/commit/918a8c3))
* **router:** return empty data to prevent exception ([bff9c36](https://github.com/usehenri/henri/commit/bff9c36))
* **router:** use _id instead of id.. consistent with mongodb models (why not?) ([6f1341b](https://github.com/usehenri/henri/commit/6f1341b))


### Features

* **router:** add crud type routes (resources without views) ([344774a](https://github.com/usehenri/henri/commit/344774a))
* **router:** add the ressources for routes ([6db1c50](https://github.com/usehenri/henri/commit/6db1c50))
* **router:** adding scope to ressources ([99ff697](https://github.com/usehenri/henri/commit/99ff697))
* **router:** it is now possible to embed roles in routes definition ([007a109](https://github.com/usehenri/henri/commit/007a109))
* **router:** parsing routes and validating verbs ([1fe95f3](https://github.com/usehenri/henri/commit/1fe95f3))




<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/router/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/router",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri router",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand Down
12 changes: 12 additions & 0 deletions packages/server/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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)


### Features

* **server:** check the file changes with prettier and output errors (and don't reload) ([8fa958c](https://github.com/usehenri/henri/commit/8fa958c))
* **server:** clear the terminal on reload ([8f6e868](https://github.com/usehenri/henri/commit/8f6e868))




<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/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/server",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri http server (express)",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand Down
8 changes: 8 additions & 0 deletions packages/view/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.19.0"></a>
# [0.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25)




**Note:** Version bump only for package @usehenri/view

<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/view/package.json
@@ -1,6 +1,6 @@
{
"name": "@usehenri/view",
"version": "0.18.0",
"version": "0.19.0",
"description": "henri view handler",
"main": "index.js",
"author": "Felix-Antoine Paradis",
Expand Down

0 comments on commit c3dac17

Please sign in to comment.