diff --git a/CHANGELOG.md b/CHANGELOG.md index ff8788927..3d39bfa29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + + +### Bug Fixes + +* use the correct type to determine ts target ([64eec6b](https://github.com/xing/hops/commit/64eec6bcffa1c874915e4ace4a393e14cc382434)) + + +### Features + +* **react:** pass on Webpack's magic comments in importComponent ([23e0a2f](https://github.com/xing/hops/commit/23e0a2f72561f2db8baba0b70d1d2f1fc8deb469)) +* **react:** print resource hints during SSR ([6360396](https://github.com/xing/hops/commit/6360396fe5057846894d0cb9ea6e1cc91dce1200)) +* **webpack:** include entrypoints into stats object ([965c5c0](https://github.com/xing/hops/commit/965c5c024ec99486a086777d3aed35c4f36ee949)) + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) diff --git a/lerna.json b/lerna.json index ce53f5bdd..190ee8240 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "12.2.2", + "version": "12.3.0", "registry": "https://registry.npmjs.org/", "command": { "version": { diff --git a/packages/apollo-mock-server/CHANGELOG.md b/packages/apollo-mock-server/CHANGELOG.md index 0a9e1a41a..53aefd3f7 100644 --- a/packages/apollo-mock-server/CHANGELOG.md +++ b/packages/apollo-mock-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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-apollo-mock-server + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-apollo-mock-server diff --git a/packages/apollo-mock-server/package.json b/packages/apollo-mock-server/package.json index 65f60ab71..6a29c120d 100644 --- a/packages/apollo-mock-server/package.json +++ b/packages/apollo-mock-server/package.json @@ -1,6 +1,6 @@ { "name": "hops-apollo-mock-server", - "version": "12.2.2", + "version": "12.3.0", "description": "Apollo based mock server for Hops", "keywords": [ "hops", @@ -26,9 +26,9 @@ "express": "^4.17.1", "graphql": "^14.5.8", "graphql-tools": "^5.0.0", - "hops-config": "^12.2.2", - "hops-mixin": "^12.2.2", - "hops-webpack": "^12.2.2" + "hops-config": "^12.3.0", + "hops-mixin": "^12.3.0", + "hops-webpack": "^12.3.0" }, "peerDependencies": { "graphql-tag": "^2.10.0" diff --git a/packages/bootstrap/CHANGELOG.md b/packages/bootstrap/CHANGELOG.md index 294a63f30..5d02a09c2 100644 --- a/packages/bootstrap/CHANGELOG.md +++ b/packages/bootstrap/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-bootstrap + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-bootstrap diff --git a/packages/bootstrap/package.json b/packages/bootstrap/package.json index 1205b9829..73ad6868c 100644 --- a/packages/bootstrap/package.json +++ b/packages/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "hops-bootstrap", - "version": "12.2.2", + "version": "12.3.0", "description": "Hops bootstrap", "repository": { "type": "git", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 3f514cbe6..ac9147893 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-config + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-config diff --git a/packages/config/package.json b/packages/config/package.json index c628ecee7..d42c925db 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "hops-config", - "version": "12.2.2", + "version": "12.3.0", "description": "Hops core configuration", "keywords": [ "hops", @@ -18,8 +18,8 @@ }, "dependencies": { "depd": "^2.0.0", - "hops-bootstrap": "^12.2.2", - "hops-webpack": "^12.2.2" + "hops-bootstrap": "^12.3.0", + "hops-webpack": "^12.3.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/config#readme" } diff --git a/packages/create-hops-app/CHANGELOG.md b/packages/create-hops-app/CHANGELOG.md index 36f1d9391..d1a61d7aa 100644 --- a/packages/create-hops-app/CHANGELOG.md +++ b/packages/create-hops-app/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package create-hops-app + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package create-hops-app diff --git a/packages/create-hops-app/package.json b/packages/create-hops-app/package.json index fa9807d42..35e07c274 100644 --- a/packages/create-hops-app/package.json +++ b/packages/create-hops-app/package.json @@ -1,6 +1,6 @@ { "name": "create-hops-app", - "version": "12.2.2", + "version": "12.3.0", "description": "CLI tool to create Hops applications", "keywords": [ "hops", diff --git a/packages/development-proxy/CHANGELOG.md b/packages/development-proxy/CHANGELOG.md index 79c062da3..de9aab714 100644 --- a/packages/development-proxy/CHANGELOG.md +++ b/packages/development-proxy/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-development-proxy + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-development-proxy diff --git a/packages/development-proxy/package.json b/packages/development-proxy/package.json index 06ab91ff4..68032be09 100644 --- a/packages/development-proxy/package.json +++ b/packages/development-proxy/package.json @@ -1,6 +1,6 @@ { "name": "hops-development-proxy", - "version": "12.2.2", + "version": "12.3.0", "description": "Proxy", "keywords": [ "hops" @@ -15,7 +15,7 @@ }, "dependencies": { "debug": "^4.1.1", - "hops-mixin": "^12.2.2", + "hops-mixin": "^12.3.0", "http-proxy-middleware": "^1.0.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/development-proxy#readme" diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index a546ad2df..1b4538a31 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-express + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) diff --git a/packages/express/package.json b/packages/express/package.json index 3675be9d7..c100f6a35 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "hops-express", - "version": "12.2.2", + "version": "12.3.0", "description": "Customization for the our express server", "keywords": [ "hops", @@ -27,9 +27,9 @@ "express": "^4.17.1", "finalhandler": "^1.1.2", "helmet": "^3.21.1", - "hops-bootstrap": "^12.2.2", - "hops-mixin": "^12.2.2", - "hops-yargs": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-mixin": "^12.3.0", + "hops-yargs": "^12.3.0", "is-plain-obj": "^2.0.0", "mime": "^2.4.4", "mixinable": "^5.0.1", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 33c914657..f7cbc2dec 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-graphql + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 22217d9dc..8c0853a61 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-graphql", - "version": "12.2.2", + "version": "12.3.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -18,8 +18,8 @@ "url": "https://github.com/xing/hops.git" }, "dependencies": { - "hops-apollo-mock-server": "^12.2.2", - "hops-react-apollo": "^12.2.2" + "hops-apollo-mock-server": "^12.3.0", + "hops-react-apollo": "^12.3.0" }, "peerDependencies": { "graphql-tag": "^2.10.0", diff --git a/packages/hops/CHANGELOG.md b/packages/hops/CHANGELOG.md index b06e1a774..d801bf4bc 100644 --- a/packages/hops/CHANGELOG.md +++ b/packages/hops/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops diff --git a/packages/hops/package.json b/packages/hops/package.json index 775356795..85e2c2f6e 100644 --- a/packages/hops/package.json +++ b/packages/hops/package.json @@ -1,6 +1,6 @@ { "name": "hops", - "version": "12.2.2", + "version": "12.3.0", "description": "Hops main Package to build and run Hops applications", "keywords": [ "hops", @@ -27,12 +27,12 @@ "url": "https://github.com/xing/hops.git" }, "dependencies": { - "hops-express": "^12.2.2", - "hops-info": "^12.2.2", - "hops-mixin": "^12.2.2", - "hops-react": "^12.2.2", - "hops-webpack": "^12.2.2", - "hops-yargs": "^12.2.2", + "hops-express": "^12.3.0", + "hops-info": "^12.3.0", + "hops-mixin": "^12.3.0", + "hops-react": "^12.3.0", + "hops-webpack": "^12.3.0", + "hops-yargs": "^12.3.0", "webpack-bundle-analyzer": "^3.5.2" }, "peerDependencies": { diff --git a/packages/info/CHANGELOG.md b/packages/info/CHANGELOG.md index 6b4e07ab4..2ff61fcfc 100644 --- a/packages/info/CHANGELOG.md +++ b/packages/info/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-info + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-info diff --git a/packages/info/package.json b/packages/info/package.json index 85ef2f0ad..3fd5ab646 100644 --- a/packages/info/package.json +++ b/packages/info/package.json @@ -1,6 +1,6 @@ { "name": "hops-info", - "version": "12.2.2", + "version": "12.3.0", "description": "Hops info mixin", "repository": { "type": "git", @@ -16,8 +16,8 @@ "duplitect": "^2.0.1", "enhanced-resolve": "^4.1.1", "escape-string-regexp": "^4.0.0", - "hops-bootstrap": "^12.2.2", - "hops-mixin": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-mixin": "^12.3.0", "mixinable": "^5.0.1" }, "engines": { diff --git a/packages/jest-preset/CHANGELOG.md b/packages/jest-preset/CHANGELOG.md index 17df4234f..89a4510c4 100644 --- a/packages/jest-preset/CHANGELOG.md +++ b/packages/jest-preset/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package jest-preset-hops + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package jest-preset-hops diff --git a/packages/jest-preset/package.json b/packages/jest-preset/package.json index 0a303f54e..d9bc9d345 100644 --- a/packages/jest-preset/package.json +++ b/packages/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "jest-preset-hops", - "version": "12.2.2", + "version": "12.3.0", "description": "Jest preset to work with Hops powered projects", "keywords": [ "hops", @@ -28,7 +28,7 @@ "@babel/preset-react": "^7.9.4", "babel-jest": "^24.9.0", "core-js": "^3.2.1", - "hops": "^12.2.2", + "hops": "^12.3.0", "identity-obj-proxy": "^3.0.0", "jest-config": "^24.9.0", "regenerator-runtime": "^0.13.3", diff --git a/packages/lambda/CHANGELOG.md b/packages/lambda/CHANGELOG.md index 986b2633d..04be570ad 100644 --- a/packages/lambda/CHANGELOG.md +++ b/packages/lambda/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-lambda + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-lambda diff --git a/packages/lambda/package.json b/packages/lambda/package.json index bf5045c2d..3a2694425 100644 --- a/packages/lambda/package.json +++ b/packages/lambda/package.json @@ -1,6 +1,6 @@ { "name": "hops-lambda", - "version": "12.2.2", + "version": "12.3.0", "description": "Quick and easy deployment of Hops applications to AWS Lambda", "keywords": [ "hops", @@ -21,10 +21,10 @@ "archiver": "^4.0.0", "aws-sdk": "^2.546.0", "globby": "^11.0.0", - "hops-bootstrap": "^12.2.2", - "hops-config": "^12.2.2", - "hops-express": "^12.2.2", - "hops-mixin": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-config": "^12.3.0", + "hops-express": "^12.3.0", + "hops-mixin": "^12.3.0", "pathifist": "^1.0.0", "prompt": "^1.0.0", "resolve-tree": "^0.1.14", diff --git a/packages/mixin/CHANGELOG.md b/packages/mixin/CHANGELOG.md index 29c930275..1ec0c5100 100644 --- a/packages/mixin/CHANGELOG.md +++ b/packages/mixin/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-mixin + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-mixin diff --git a/packages/mixin/package.json b/packages/mixin/package.json index a64d496b3..35f6e400a 100644 --- a/packages/mixin/package.json +++ b/packages/mixin/package.json @@ -1,6 +1,6 @@ { "name": "hops-mixin", - "version": "12.2.2", + "version": "12.3.0", "description": "Building blocks to build cusom hops mixins", "keywords": [ "hops", @@ -17,7 +17,7 @@ "url": "https://github.com/xing/hops.git" }, "dependencies": { - "hops-bootstrap": "^12.2.2", + "hops-bootstrap": "^12.3.0", "mixinable": "^5.0.1" }, "homepage": "https://github.com/xing/hops/tree/master/packages/mixin#readme" diff --git a/packages/postcss/CHANGELOG.md b/packages/postcss/CHANGELOG.md index e63557213..13af827a4 100644 --- a/packages/postcss/CHANGELOG.md +++ b/packages/postcss/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-postcss + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-postcss diff --git a/packages/postcss/package.json b/packages/postcss/package.json index b25777c71..7a5b055c1 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "hops-postcss", - "version": "12.2.2", + "version": "12.3.0", "description": "Configuration of PostCSS and Webpack for Hops", "keywords": [ "hops", @@ -21,7 +21,7 @@ "core-js": "^3.2.1", "css-loader": "^3.2.0", "enhanced-resolve": "^4.1.1", - "hops-mixin": "^12.2.2", + "hops-mixin": "^12.3.0", "mini-css-extract-plugin": "^0.9.0", "optimize-css-assets-webpack-plugin": "^5.0.3", "pathifist": "^1.0.0", diff --git a/packages/pwa/CHANGELOG.md b/packages/pwa/CHANGELOG.md index e1eee2fbb..6ab7d2137 100644 --- a/packages/pwa/CHANGELOG.md +++ b/packages/pwa/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-pwa + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-pwa diff --git a/packages/pwa/package.json b/packages/pwa/package.json index e94f39a7f..765c33e5b 100644 --- a/packages/pwa/package.json +++ b/packages/pwa/package.json @@ -1,6 +1,6 @@ { "name": "hops-pwa", - "version": "12.2.2", + "version": "12.3.0", "description": "ServiceWorker and Web App Manifest support for Hops", "keywords": [ "hops", @@ -22,9 +22,9 @@ "dependencies": { "app-manifest-loader": "^2.4.1", "file-loader": "^6.0.0", - "hops-bootstrap": "^12.2.2", - "hops-mixin": "^12.2.2", - "hops-webpack": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-mixin": "^12.3.0", + "hops-webpack": "^12.3.0", "lodash.get": "^4.4.2", "lodash.set": "^4.3.2", "pathifist": "^1.0.0", diff --git a/packages/react-apollo/CHANGELOG.md b/packages/react-apollo/CHANGELOG.md index ec3632a13..fdf87dbe1 100644 --- a/packages/react-apollo/CHANGELOG.md +++ b/packages/react-apollo/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-react-apollo + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-react-apollo diff --git a/packages/react-apollo/package.json b/packages/react-apollo/package.json index a9fa4754e..57b682480 100644 --- a/packages/react-apollo/package.json +++ b/packages/react-apollo/package.json @@ -1,6 +1,6 @@ { "name": "hops-react-apollo", - "version": "12.2.2", + "version": "12.3.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -27,9 +27,9 @@ "depd": "^2.0.0", "graphql": "^14.5.8", "graphql-tools": "^5.0.0", - "hops-config": "^12.2.2", - "hops-mixin": "^12.2.2", - "hops-react": "^12.2.2", + "hops-config": "^12.3.0", + "hops-mixin": "^12.3.0", + "hops-react": "^12.3.0", "strip-indent": "^3.0.0" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 3eac460dd..3c92cecf3 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + + +### Features + +* **react:** pass on Webpack's magic comments in importComponent ([23e0a2f](https://github.com/xing/hops/commit/23e0a2f72561f2db8baba0b70d1d2f1fc8deb469)) +* **react:** print resource hints during SSR ([6360396](https://github.com/xing/hops/commit/6360396fe5057846894d0cb9ea6e1cc91dce1200)) + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) diff --git a/packages/react/package.json b/packages/react/package.json index 4287af7bf..41041970c 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hops-react", - "version": "12.2.2", + "version": "12.3.0", "description": "React and ReactRouter setup for Hops", "keywords": [ "hops", @@ -26,8 +26,8 @@ "clone": "^2.1.2", "depd": "^2.0.0", "duplitect": "^2.0.1", - "hops-bootstrap": "^12.2.2", - "hops-mixin": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-mixin": "^12.3.0", "is-plain-obj": "^2.0.0", "mixinable": "^5.0.1", "pathifist": "^1.0.0", diff --git a/packages/redux/CHANGELOG.md b/packages/redux/CHANGELOG.md index 18fdd6631..b2cbb166e 100644 --- a/packages/redux/CHANGELOG.md +++ b/packages/redux/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-redux + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 5e46db5c5..6decb03b6 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-redux", - "version": "12.2.2", + "version": "12.3.0", "description": "React and Redux implementation for Hops", "keywords": [ "hops", @@ -23,7 +23,7 @@ "dependencies": { "depd": "^2.0.0", "history": "^4.10.1", - "hops-mixin": "^12.2.2", + "hops-mixin": "^12.3.0", "prop-types": "^15.7.2" }, "peerDependencies": { diff --git a/packages/spec/CHANGELOG.md b/packages/spec/CHANGELOG.md index 047c2840a..787742039 100644 --- a/packages/spec/CHANGELOG.md +++ b/packages/spec/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-spec + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) diff --git a/packages/spec/package.json b/packages/spec/package.json index d17a986e8..de0a16081 100644 --- a/packages/spec/package.json +++ b/packages/spec/package.json @@ -1,6 +1,6 @@ { "name": "hops-spec", - "version": "12.2.2", + "version": "12.3.0", "private": true, "files": [], "eslintConfig": { @@ -26,7 +26,7 @@ }, "devDependencies": { "@testing-library/react": "^10.0.0", - "create-hops-app": "^12.2.2", + "create-hops-app": "^12.3.0", "cross-fetch": "^3.0.4", "fs-extra": "^9.0.0", "jest-environment-node": "^24.9.0", diff --git a/packages/styled-components/CHANGELOG.md b/packages/styled-components/CHANGELOG.md index 91a9a77fe..1e6b61de3 100644 --- a/packages/styled-components/CHANGELOG.md +++ b/packages/styled-components/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-styled-components + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-styled-components diff --git a/packages/styled-components/package.json b/packages/styled-components/package.json index 41a4e4c57..46bd03c06 100644 --- a/packages/styled-components/package.json +++ b/packages/styled-components/package.json @@ -1,6 +1,6 @@ { "name": "hops-styled-components", - "version": "12.2.2", + "version": "12.3.0", "description": "Styled components support for Hops applications", "keywords": [ "hops", @@ -19,7 +19,7 @@ }, "dependencies": { "babel-plugin-styled-components": "^1.10.6", - "hops-mixin": "^12.2.2" + "hops-mixin": "^12.3.0" }, "peerDependencies": { "react": "^16.8.0", diff --git a/packages/template-graphql/CHANGELOG.md b/packages/template-graphql/CHANGELOG.md index 4d858a408..3def661aa 100644 --- a/packages/template-graphql/CHANGELOG.md +++ b/packages/template-graphql/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-template-graphql + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-template-graphql diff --git a/packages/template-graphql/package.json b/packages/template-graphql/package.json index 9b0951f5b..f7fb5a4e6 100644 --- a/packages/template-graphql/package.json +++ b/packages/template-graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-graphql", - "version": "12.2.2", + "version": "12.3.0", "main": "src/app.js", "license": "MIT", "hops": { @@ -17,9 +17,9 @@ }, "dependencies": { "graphql-tag": "^2.10.1", - "hops": "^12.2.2", - "hops-graphql": "^12.2.2", - "hops-postcss": "^12.2.2", + "hops": "^12.3.0", + "hops-graphql": "^12.3.0", + "hops-postcss": "^12.3.0", "prop-types": "^15.7.2", "react": "^16.10.2", "react-apollo": "^3.1.2", @@ -29,7 +29,7 @@ }, "devDependencies": { "jest": "^24.9.0", - "jest-preset-hops": "^12.2.2", + "jest-preset-hops": "^12.3.0", "react-test-renderer": "^16.10.2" }, "jest": { diff --git a/packages/template-react/CHANGELOG.md b/packages/template-react/CHANGELOG.md index c39465c06..93f037ba4 100644 --- a/packages/template-react/CHANGELOG.md +++ b/packages/template-react/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-template-react + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-template-react diff --git a/packages/template-react/package.json b/packages/template-react/package.json index 68324025f..462559e43 100644 --- a/packages/template-react/package.json +++ b/packages/template-react/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-react", - "version": "12.2.2", + "version": "12.3.0", "main": "src/app.js", "license": "MIT", "hops": { @@ -16,8 +16,8 @@ "serve": "hops serve" }, "dependencies": { - "hops": "^12.2.2", - "hops-postcss": "^12.2.2", + "hops": "^12.3.0", + "hops-postcss": "^12.3.0", "prop-types": "^15.7.2", "react": "^16.10.2", "react-dom": "^16.10.2", @@ -26,7 +26,7 @@ }, "devDependencies": { "jest": "^24.9.0", - "jest-preset-hops": "^12.2.2", + "jest-preset-hops": "^12.3.0", "react-test-renderer": "^16.10.2" }, "jest": { diff --git a/packages/template-redux/CHANGELOG.md b/packages/template-redux/CHANGELOG.md index 7100fe7bf..e1bc5ed1b 100644 --- a/packages/template-redux/CHANGELOG.md +++ b/packages/template-redux/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-template-redux + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-template-redux diff --git a/packages/template-redux/package.json b/packages/template-redux/package.json index a7610a325..edb7be02e 100644 --- a/packages/template-redux/package.json +++ b/packages/template-redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-redux", - "version": "12.2.2", + "version": "12.3.0", "main": "src/app.js", "license": "MIT", "hops": { @@ -16,9 +16,9 @@ "serve": "hops serve" }, "dependencies": { - "hops": "^12.2.2", - "hops-postcss": "^12.2.2", - "hops-redux": "^12.2.2", + "hops": "^12.3.0", + "hops-postcss": "^12.3.0", + "hops-redux": "^12.3.0", "prop-types": "^15.7.2", "react": "^16.10.2", "react-dom": "^16.10.2", @@ -30,7 +30,7 @@ }, "devDependencies": { "jest": "^24.9.0", - "jest-preset-hops": "^12.2.2", + "jest-preset-hops": "^12.3.0", "react-test-renderer": "^16.10.2" }, "jest": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 6a8161cab..c3598d308 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + + +### Bug Fixes + +* use the correct type to determine ts target ([64eec6b](https://github.com/xing/hops/commit/64eec6bcffa1c874915e4ace4a393e14cc382434)) + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-typescript diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 1fd35ba39..4f5728cfc 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hops-typescript", - "version": "12.2.2", + "version": "12.3.0", "description": "TypeScript support for Hops applications", "keywords": [ "hops", @@ -15,7 +15,7 @@ "url": "https://github.com/xing/hops.git" }, "dependencies": { - "hops-mixin": "^12.2.2", + "hops-mixin": "^12.3.0", "ts-loader": "^7.0.0" }, "peerDependencies": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index f5378170e..324be6ff4 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + + +### Features + +* **webpack:** include entrypoints into stats object ([965c5c0](https://github.com/xing/hops/commit/965c5c024ec99486a086777d3aed35c4f36ee949)) + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 553519979..269d6c429 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "hops-webpack", - "version": "12.2.2", + "version": "12.3.0", "description": "webpack support for Hops applications", "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/hops-webpack#readme", @@ -21,9 +21,9 @@ "event-source-polyfill": "^1.0.9", "file-loader": "^6.0.0", "find-up": "^4.1.0", - "hops-bootstrap": "^12.2.2", - "hops-express": "^12.2.2", - "hops-yargs": "^12.2.2", + "hops-bootstrap": "^12.3.0", + "hops-express": "^12.3.0", + "hops-yargs": "^12.3.0", "is-plain-obj": "^2.0.0", "jsesc": "^3.0.0", "loader-utils": "^2.0.0", diff --git a/packages/yargs/CHANGELOG.md b/packages/yargs/CHANGELOG.md index 4aacab17d..8ef4937dc 100644 --- a/packages/yargs/CHANGELOG.md +++ b/packages/yargs/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. +# [12.3.0](https://github.com/xing/hops/compare/v12.2.2...v12.3.0) (2020-05-18) + +**Note:** Version bump only for package hops-yargs + + + + + ## [12.2.2](https://github.com/xing/hops/compare/v12.2.1...v12.2.2) (2020-05-14) **Note:** Version bump only for package hops-yargs diff --git a/packages/yargs/package.json b/packages/yargs/package.json index dbdbc4809..dc74681af 100644 --- a/packages/yargs/package.json +++ b/packages/yargs/package.json @@ -1,6 +1,6 @@ { "name": "hops-yargs", - "version": "12.2.2", + "version": "12.3.0", "description": "yargs support for Hops applications", "repository": { "type": "git", @@ -9,7 +9,7 @@ "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/yargs#readme", "dependencies": { - "hops-bootstrap": "^12.2.2", + "hops-bootstrap": "^12.3.0", "is-plain-obj": "^2.0.0", "mixinable": "^5.0.1", "yargs": "^13.0.0"