Skip to content

Commit

Permalink
chore: release v12.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZauberNerd committed Oct 7, 2019
1 parent 6d306fa commit 94ae43c
Show file tree
Hide file tree
Showing 40 changed files with 517 additions and 47 deletions.
77 changes: 77 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,83 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* update dependency tar to v5 ([fb03c51](https://github.com/xing/hops/commit/fb03c51))
* **jest-preset:** add missing regenerator-runtime dependency ([e8512e5](https://github.com/xing/hops/commit/e8512e5))
* **jest-preset:** remove unneeded dependency to @types/jest ([f83b331](https://github.com/xing/hops/commit/f83b331))
* **jest-preset:** use core-js v3 ([ab77b4c](https://github.com/xing/hops/commit/ab77b4c))
* upgrade untool ([6d306fa](https://github.com/xing/hops/commit/6d306fa))


### chore

* **spec:** bump minimum required node version ([7d254f5](https://github.com/xing/hops/commit/7d254f5))
* bump minimum required node version ([a018301](https://github.com/xing/hops/commit/a018301))
* **config:** bump minimum required node version ([207fe29](https://github.com/xing/hops/commit/207fe29))
* **create-hops-app:** bump minimum required node version ([dd38f1c](https://github.com/xing/hops/commit/dd38f1c))
* **development-proxy:** bump minimum required node version ([73f0ce6](https://github.com/xing/hops/commit/73f0ce6))
* **express:** bump minimum required node version ([4e584ad](https://github.com/xing/hops/commit/4e584ad))
* **graphql:** bump minimum required node version ([175ce71](https://github.com/xing/hops/commit/175ce71))
* **hops:** bump minimum required node version ([97afc00](https://github.com/xing/hops/commit/97afc00))
* **jest-preset:** bump minimum required node version ([67d5dd3](https://github.com/xing/hops/commit/67d5dd3))
* **lambda:** bump minimum required node version ([ca4dabb](https://github.com/xing/hops/commit/ca4dabb))
* **mixin:** bump minimum required node version ([6b7db65](https://github.com/xing/hops/commit/6b7db65))
* **postcss:** bump minimum required node version ([313435b](https://github.com/xing/hops/commit/313435b))
* **pwa:** bump minimum required node version ([fc109e9](https://github.com/xing/hops/commit/fc109e9))
* **react:** bump minimum required node version ([bda65a2](https://github.com/xing/hops/commit/bda65a2))
* **redux:** bump minimum required node version ([800d595](https://github.com/xing/hops/commit/800d595))
* **styled-components:** bump minimum required node version ([fd15d9b](https://github.com/xing/hops/commit/fd15d9b))
* **typescript:** bump minimum required node version ([3e4c637](https://github.com/xing/hops/commit/3e4c637))


### Features

* upgrade to jest v24 ([1e60458](https://github.com/xing/hops/commit/1e60458)), closes [#815](https://github.com/xing/hops/issues/815)
* **hops:** improve type definitions for withServerData and withConfig ([4cd6185](https://github.com/xing/hops/commit/4cd6185))
* **hops:** simplify typings ([966989c](https://github.com/xing/hops/commit/966989c))
* **postcss:** upgrade to css-loader v3 ([31067c2](https://github.com/xing/hops/commit/31067c2))
* **typescript:** make typescript a peer dependency ([aa0c2ee](https://github.com/xing/hops/commit/aa0c2ee))


### BREAKING CHANGES

* **jest-preset:** Hops drops support for Node v8
* **postcss:** This upgrade contains two major releases of css-loader
Please check out their release notes about breaking changes and upgrade
guides:
- https://github.com/webpack-contrib/css-loader/releases/tag/v2.0.0
- https://github.com/webpack-contrib/css-loader/releases/tag/v3.0.0
* **redux:** Hops drops support for Node v8
* **development-proxy:** Hops drops support for Node v8
* **lambda:** Hops drops support for Node v8
* **create-hops-app:** Hops drops support for Node v8
* **pwa:** Hops drops support for Node v8
* **graphql:** Hops drops support for Node v8
* **spec:** Hops drops support for Node v8
* **postcss:** Hops drops support for Node v8
* **react:** Hops drops support for Node v8
* **typescript:** Hops drops support for Node v8
* **config:** Hops drops support for Node v8
* **express:** Hops drops support for Node v8
* **hops:** Hops drops support for Node v8
* **styled-components:** Hops drops support for Node v8
* Hops drops support for Node v8
* **hops:** `withConfig` and `withServerData` have a simpler type definition now. They only take one generic argument instead of three.

Co-Authored-By: Emanuel Kluge <[email protected]>
* Jest v23 is no longer supported. Applications must
provide Jest v24 through their dependencies.
* **typescript:** TypeScript is now a peer dependency.
* **mixin:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"registry": "https://registry.npmjs.org/",
"command": {
"version": {
Expand Down
21 changes: 21 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* upgrade untool ([6d306fa](https://github.com/xing/hops/commit/6d306fa))


### chore

* **config:** bump minimum required node version ([207fe29](https://github.com/xing/hops/commit/207fe29))


### BREAKING CHANGES

* **config:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)

**Note:** Version bump only for package hops-config
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-config",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "Hops core configuration",
"keywords": [
"hops",
Expand Down
21 changes: 21 additions & 0 deletions packages/create-hops-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* update dependency tar to v5 ([fb03c51](https://github.com/xing/hops/commit/fb03c51))


### chore

* **create-hops-app:** bump minimum required node version ([dd38f1c](https://github.com/xing/hops/commit/dd38f1c))


### BREAKING CHANGES

* **create-hops-app:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)

**Note:** Version bump only for package create-hops-app
Expand Down
2 changes: 1 addition & 1 deletion packages/create-hops-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-hops-app",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "CLI tool to create Hops applications",
"keywords": [
"hops",
Expand Down
16 changes: 16 additions & 0 deletions packages/development-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
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.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### chore

* **development-proxy:** bump minimum required node version ([73f0ce6](https://github.com/xing/hops/commit/73f0ce6))


### BREAKING CHANGES

* **development-proxy:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)

**Note:** Version bump only for package hops-development-proxy
Expand Down
4 changes: 2 additions & 2 deletions packages/development-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-development-proxy",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "Proxy",
"keywords": [
"hops"
Expand All @@ -15,7 +15,7 @@
},
"dependencies": {
"debug": "^4.0.0",
"hops-mixin": "^12.0.0-alpha.1",
"hops-mixin": "^12.0.0-alpha.2",
"http-proxy-middleware": "^0.20.0"
},
"homepage": "https://github.com/xing/hops/tree/master/packages/development-proxy#readme"
Expand Down
16 changes: 16 additions & 0 deletions packages/express/CHANGELOG.md
Original file line number Diff line number Diff line change
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.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### chore

* **express:** bump minimum required node version ([4e584ad](https://github.com/xing/hops/commit/4e584ad))


### BREAKING CHANGES

* **express:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)

**Note:** Version bump only for package hops-express
Expand Down
4 changes: 2 additions & 2 deletions packages/express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-express",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "Customization for the our express server",
"keywords": [
"hops",
Expand All @@ -19,7 +19,7 @@
"dependencies": {
"compression": "^1.7.3",
"depd": "^2.0.0",
"hops-mixin": "^12.0.0-alpha.1"
"hops-mixin": "^12.0.0-alpha.2"
},
"homepage": "https://github.com/xing/hops/tree/master/packages/express#readme"
}
21 changes: 21 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* upgrade untool ([6d306fa](https://github.com/xing/hops/commit/6d306fa))


### chore

* **graphql:** bump minimum required node version ([175ce71](https://github.com/xing/hops/commit/175ce71))


### BREAKING CHANGES

* **graphql:** Hops drops support for Node v8





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)

**Note:** Version bump only for package hops-graphql
Expand Down
6 changes: 3 additions & 3 deletions packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-graphql",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "React and GraphQL implementation for Hops",
"keywords": [
"hops",
Expand Down Expand Up @@ -30,8 +30,8 @@
"express": "^4.16.3",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.0",
"hops-config": "^12.0.0-alpha.1",
"hops-mixin": "^12.0.0-alpha.1",
"hops-config": "^12.0.0-alpha.2",
"hops-mixin": "^12.0.0-alpha.2",
"strip-indent": "^3.0.0"
},
"peerDependencies": {
Expand Down
30 changes: 30 additions & 0 deletions packages/hops/CHANGELOG.md
Original file line number Diff line number Diff line change
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.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* upgrade untool ([6d306fa](https://github.com/xing/hops/commit/6d306fa))


### chore

* **hops:** bump minimum required node version ([97afc00](https://github.com/xing/hops/commit/97afc00))


### Features

* **hops:** improve type definitions for withServerData and withConfig ([4cd6185](https://github.com/xing/hops/commit/4cd6185))
* **hops:** simplify typings ([966989c](https://github.com/xing/hops/commit/966989c))


### BREAKING CHANGES

* **hops:** Hops drops support for Node v8
* **hops:** `withConfig` and `withServerData` have a simpler type definition now. They only take one generic argument instead of three.

Co-Authored-By: Emanuel Kluge <[email protected]>





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)


Expand Down
6 changes: 3 additions & 3 deletions packages/hops/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops",
"version": "12.0.0-alpha.1",
"version": "12.0.0-alpha.2",
"description": "Hops main Package to build and run Hops applications",
"keywords": [
"hops",
Expand Down Expand Up @@ -31,8 +31,8 @@
"@untool/info": "^2.0.0-alpha.3",
"@untool/webpack": "^2.0.0-alpha.3",
"@untool/yargs": "^2.0.0-alpha.3",
"hops-mixin": "^12.0.0-alpha.1",
"hops-react": "^12.0.0-alpha.1",
"hops-mixin": "^12.0.0-alpha.2",
"hops-react": "^12.0.0-alpha.2",
"webpack-bundle-analyzer": "^3.0.4"
},
"peerDependencies": {
Expand Down
30 changes: 30 additions & 0 deletions packages/jest-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
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.

# [12.0.0-alpha.2](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.2) (2019-10-07)


### Bug Fixes

* **jest-preset:** add missing regenerator-runtime dependency ([e8512e5](https://github.com/xing/hops/commit/e8512e5))
* **jest-preset:** remove unneeded dependency to @types/jest ([f83b331](https://github.com/xing/hops/commit/f83b331))
* **jest-preset:** use core-js v3 ([ab77b4c](https://github.com/xing/hops/commit/ab77b4c))


### chore

* **jest-preset:** bump minimum required node version ([67d5dd3](https://github.com/xing/hops/commit/67d5dd3))


### Features

* upgrade to jest v24 ([1e60458](https://github.com/xing/hops/commit/1e60458)), closes [#815](https://github.com/xing/hops/issues/815)


### BREAKING CHANGES

* **jest-preset:** Hops drops support for Node v8
* Jest v23 is no longer supported. Applications must
provide Jest v24 through their dependencies.





# [12.0.0-alpha.1](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.1) (2019-09-12)


Expand Down
Loading

0 comments on commit 94ae43c

Please sign in to comment.