diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c4d0140..a9bafbaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. + +# [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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/lerna.json b/lerna.json index 2ae45785..03e2aa1c 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ "packages/*" ], "npmClient": "yarn", - "version": "0.18.0" + "version": "0.19.0" } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 42c5bce3..4d201843 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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. + +# [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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/cli/package.json b/packages/cli/package.json index 75d9edf3..fde7e8c2 100644 --- a/packages/cli/package.json +++ b/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", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index cef3cbc9..916ffb34 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/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.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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/config/package.json b/packages/config/package.json index 2158d3e2..a64f6759 100644 --- a/packages/config/package.json +++ b/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", diff --git a/packages/henri/CHANGELOG.md b/packages/henri/CHANGELOG.md index 73716289..b76c3ae2 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.19.0](https://github.com/usehenri/henri/compare/v0.18.0...v0.19.0) (2017-11-25) + + + + +**Note:** Version bump only for package henri + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/henri/package.json b/packages/henri/package.json index 92ddd5a3..93a68c67 100644 --- a/packages/henri/package.json +++ b/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": { @@ -26,6 +25,6 @@ }, "homepage": "https://github.com/usehenri/henri#readme", "dependencies": { - "@usehenri/cli": "^0.18.0" + "@usehenri/cli": "^0.19.0" } } diff --git a/packages/mongoose/CHANGELOG.md b/packages/mongoose/CHANGELOG.md index 32810086..c46390fc 100644 --- a/packages/mongoose/CHANGELOG.md +++ b/packages/mongoose/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.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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/mongoose/package.json b/packages/mongoose/package.json index 37bb0c21..fbb3d20f 100644 --- a/packages/mongoose/package.json +++ b/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", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md new file mode 100644 index 00000000..641cbb85 --- /dev/null +++ b/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. + + +# [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)) diff --git a/packages/react/package.json b/packages/react/package.json index 91d46dae..edd598b0 100644 --- a/packages/react/package.json +++ b/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", @@ -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", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 21fbb7f1..4af92df0 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -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. + +# [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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/router/package.json b/packages/router/package.json index fbe982fd..077506c1 100644 --- a/packages/router/package.json +++ b/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", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 0a668c7f..ebe35149 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/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.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)) + + + + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/server/package.json b/packages/server/package.json index 1551009d..7dc482ad 100644 --- a/packages/server/package.json +++ b/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", diff --git a/packages/view/CHANGELOG.md b/packages/view/CHANGELOG.md index e1788522..5d62e824 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.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 + # [0.18.0](https://github.com/usehenri/henri/compare/v0.17.0...v0.18.0) (2017-11-17) diff --git a/packages/view/package.json b/packages/view/package.json index 20d87c1d..8c9bae35 100644 --- a/packages/view/package.json +++ b/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",