diff --git a/CHANGELOG.md b/CHANGELOG.md index b1ef0c768..1cc0affd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + + +### Bug Fixes + +* **bootstrap:** add Ajv formats ([7a516dc](https://github.com/xing/hops/commit/7a516dc358a6899ff8889eadbe7c43dc1ea47ed9)) +* **bootstrap:** limit pattern properties, too ([9e8c045](https://github.com/xing/hops/commit/9e8c0457d19d0c697f61d55948709ad52c98d946)) +* **bootstrap:** opt out of Ajv's strict mode ([28b429b](https://github.com/xing/hops/commit/28b429b228f3205831cdf6d85500fb58b8874bef)) +* **bootstrap:** use default import of Ajv ([49fa6e9](https://github.com/xing/hops/commit/49fa6e98938e0c1e52c872bef9a3289a28e5ced8)) +* update dependency ajv to v7 ([b2cac42](https://github.com/xing/hops/commit/b2cac42847dc9b5b110dc8eff0eb7499c9fc2b04)) +* **postcss:** update Webpack's CSS compilation ([c7e8b1e](https://github.com/xing/hops/commit/c7e8b1e236e1e1ed745917f6c83783efee161828)) +* **webpack:** ensure forked compiler exits when done ([642459e](https://github.com/xing/hops/commit/642459ecad38a529235c474404905b28459fe665)) + + +### Features + +* **jest-environment:** add package jest-environment-hops ([e5a7941](https://github.com/xing/hops/commit/e5a7941888b3fb8115b583dacd78e95f39a104d9)) +* **postcss:** add option to enable named exports for CSS Modules ([426c051](https://github.com/xing/hops/commit/426c051f129a0c5ef0e5cc65d47bdaf6355e9084)) +* **postcss:** export CSS Modules as ES Modules ([5f4ff80](https://github.com/xing/hops/commit/5f4ff80bf2897f737ba1bdcf3d9ea8322f35326e)) + + +### BREAKING CHANGES + +* **postcss:** CSS Modules switched to ESM and now export the styles +object as a `default`-export. + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) diff --git a/lerna.json b/lerna.json index a0df07bd7..d7d3e9f10 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "registry": "https://registry.npmjs.org/", "command": { "version": { diff --git a/packages/apollo-mock-server/CHANGELOG.md b/packages/apollo-mock-server/CHANGELOG.md index 23e8094cb..bd697590b 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-apollo-mock-server + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **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 dbe2452c9..1bbd163c4 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": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Apollo based mock server for Hops", "keywords": [ "hops", @@ -24,9 +24,9 @@ "cross-fetch": "^3.0.4", "express": "^4.17.1", "graphql": "^15.0.0", - "hops-config": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-webpack": "^14.0.0-nightly.4" + "hops-config": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-webpack": "^14.0.0-nightly.5" }, "peerDependencies": { "graphql-tag": "^2.10.0" diff --git a/packages/bootstrap/CHANGELOG.md b/packages/bootstrap/CHANGELOG.md index f2373302a..6d6c6a7f8 100644 --- a/packages/bootstrap/CHANGELOG.md +++ b/packages/bootstrap/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + + +### Bug Fixes + +* **bootstrap:** add Ajv formats ([7a516dc](https://github.com/xing/hops/commit/7a516dc358a6899ff8889eadbe7c43dc1ea47ed9)) +* **bootstrap:** limit pattern properties, too ([9e8c045](https://github.com/xing/hops/commit/9e8c0457d19d0c697f61d55948709ad52c98d946)) +* **bootstrap:** opt out of Ajv's strict mode ([28b429b](https://github.com/xing/hops/commit/28b429b228f3205831cdf6d85500fb58b8874bef)) +* **bootstrap:** use default import of Ajv ([49fa6e9](https://github.com/xing/hops/commit/49fa6e98938e0c1e52c872bef9a3289a28e5ced8)) +* update dependency ajv to v7 ([b2cac42](https://github.com/xing/hops/commit/b2cac42847dc9b5b110dc8eff0eb7499c9fc2b04)) + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) diff --git a/packages/bootstrap/package.json b/packages/bootstrap/package.json index b91f169e8..605061c03 100644 --- a/packages/bootstrap/package.json +++ b/packages/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "hops-bootstrap", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Hops bootstrap", "repository": { "type": "git", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 976536dc1..258828815 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-config + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-config diff --git a/packages/config/package.json b/packages/config/package.json index d2f1693bd..0b8a7dcf7 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "hops-config", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Hops core configuration", "keywords": [ "hops", @@ -18,7 +18,7 @@ }, "dependencies": { "depd": "^2.0.0", - "hops-bootstrap": "^14.0.0-nightly.4" + "hops-bootstrap": "^14.0.0-nightly.5" }, "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 5386527f1..1a907cde3 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package create-hops-app + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) diff --git a/packages/create-hops-app/package.json b/packages/create-hops-app/package.json index 053508005..e36df1bfe 100644 --- a/packages/create-hops-app/package.json +++ b/packages/create-hops-app/package.json @@ -1,6 +1,6 @@ { "name": "create-hops-app", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "CLI tool to create Hops applications", "keywords": [ "hops", diff --git a/packages/development-proxy/CHANGELOG.md b/packages/development-proxy/CHANGELOG.md index a41da8c32..3f66ac9d1 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-development-proxy + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-development-proxy diff --git a/packages/development-proxy/package.json b/packages/development-proxy/package.json index e718c88fe..d9046b288 100644 --- a/packages/development-proxy/package.json +++ b/packages/development-proxy/package.json @@ -1,6 +1,6 @@ { "name": "hops-development-proxy", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Proxy", "keywords": [ "hops" @@ -15,7 +15,7 @@ }, "dependencies": { "debug": "^4.1.1", - "hops-mixin": "^14.0.0-nightly.4", + "hops-mixin": "^14.0.0-nightly.5", "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 d979c1cf4..6228ffa30 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-express + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) diff --git a/packages/express/package.json b/packages/express/package.json index 9337ffad3..907eea5f2 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "hops-express", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Customization for the our express server", "keywords": [ "hops", @@ -26,9 +26,9 @@ "express": "^4.17.1", "finalhandler": "^1.1.2", "helmet": "^4.0.0", - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-yargs": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-yargs": "^14.0.0-nightly.5", "is-plain-obj": "^3.0.0", "mime": "^2.4.4", "mixinable": "^5.0.1", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 643b3275c..5cc6942bd 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-graphql + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 10895aab3..208375c95 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-graphql", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "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": "^14.0.0-nightly.4", - "hops-react-apollo": "^14.0.0-nightly.4" + "hops-apollo-mock-server": "^14.0.0-nightly.5", + "hops-react-apollo": "^14.0.0-nightly.5" }, "peerDependencies": { "graphql-tag": "^2.10.0", diff --git a/packages/hops/CHANGELOG.md b/packages/hops/CHANGELOG.md index 2ad8cfec7..439d70ab9 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops diff --git a/packages/hops/package.json b/packages/hops/package.json index e8723f904..52da15cba 100644 --- a/packages/hops/package.json +++ b/packages/hops/package.json @@ -1,6 +1,6 @@ { "name": "hops", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "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": "^14.0.0-nightly.4", - "hops-info": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-react": "^14.0.0-nightly.4", - "hops-webpack": "^14.0.0-nightly.4", - "hops-yargs": "^14.0.0-nightly.4", + "hops-express": "^14.0.0-nightly.5", + "hops-info": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-react": "^14.0.0-nightly.5", + "hops-webpack": "^14.0.0-nightly.5", + "hops-yargs": "^14.0.0-nightly.5", "webpack-bundle-analyzer": "^4.1.0" }, "peerDependencies": { diff --git a/packages/info/CHANGELOG.md b/packages/info/CHANGELOG.md index 68122c3ee..5c898f6fa 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-info + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-info diff --git a/packages/info/package.json b/packages/info/package.json index 3775ca3b3..1a5d8eaf8 100644 --- a/packages/info/package.json +++ b/packages/info/package.json @@ -1,6 +1,6 @@ { "name": "hops-info", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Hops info mixin", "repository": { "type": "git", @@ -18,8 +18,8 @@ "enhanced-resolve": "^5.0.0", "eprom": "^1.0.0", "escape-string-regexp": "^4.0.0", - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", "mixinable": "^5.0.1" }, "engines": { diff --git a/packages/jest-environment/CHANGELOG.md b/packages/jest-environment/CHANGELOG.md index e4d87c4d4..3cc481a08 100644 --- a/packages/jest-environment/CHANGELOG.md +++ b/packages/jest-environment/CHANGELOG.md @@ -2,3 +2,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + + +### Features + +* **jest-environment:** add package jest-environment-hops ([e5a7941](https://github.com/xing/hops/commit/e5a7941888b3fb8115b583dacd78e95f39a104d9)) diff --git a/packages/jest-environment/package.json b/packages/jest-environment/package.json index b996751ef..dc7e63a1d 100644 --- a/packages/jest-environment/package.json +++ b/packages/jest-environment/package.json @@ -1,6 +1,6 @@ { "name": "jest-environment-hops", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Opinionated Jest environment to run Puppeteer-powered tests against Hops apps", "keywords": [ "hops", diff --git a/packages/jest-preset/CHANGELOG.md b/packages/jest-preset/CHANGELOG.md index eac21cb74..75d693a60 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package jest-preset-hops + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package jest-preset-hops diff --git a/packages/jest-preset/package.json b/packages/jest-preset/package.json index eb81b0de2..92e01f561 100644 --- a/packages/jest-preset/package.json +++ b/packages/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "jest-preset-hops", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Jest preset to work with Hops powered projects", "keywords": [ "hops", @@ -28,7 +28,7 @@ "@babel/preset-react": "^7.9.4", "colors": "^1.4.0", "core-js": "^3.2.1", - "hops": "^14.0.0-nightly.4", + "hops": "^14.0.0-nightly.5", "identity-obj-proxy": "^3.0.0", "import-from": "^3.0.0", "regenerator-runtime": "^0.13.3" diff --git a/packages/lambda/CHANGELOG.md b/packages/lambda/CHANGELOG.md index ec027723f..c17a969df 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-lambda + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-lambda diff --git a/packages/lambda/package.json b/packages/lambda/package.json index ab2c2b683..a38e89c80 100644 --- a/packages/lambda/package.json +++ b/packages/lambda/package.json @@ -1,6 +1,6 @@ { "name": "hops-lambda", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Quick and easy deployment of Hops applications to AWS Lambda", "keywords": [ "hops", @@ -21,10 +21,10 @@ "archiver": "^5.0.0", "aws-sdk": "^2.546.0", "globby": "^11.0.0", - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-config": "^14.0.0-nightly.4", - "hops-express": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-config": "^14.0.0-nightly.5", + "hops-express": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", "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 cb05c0545..ed72fb35f 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-mixin + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-mixin diff --git a/packages/mixin/package.json b/packages/mixin/package.json index 62f2d2c74..0716d4982 100644 --- a/packages/mixin/package.json +++ b/packages/mixin/package.json @@ -1,6 +1,6 @@ { "name": "hops-mixin", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Building blocks to build cusom hops mixins", "keywords": [ "hops", diff --git a/packages/postcss/CHANGELOG.md b/packages/postcss/CHANGELOG.md index 0499cc96d..302f44cf9 100644 --- a/packages/postcss/CHANGELOG.md +++ b/packages/postcss/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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + + +### Bug Fixes + +* **postcss:** update Webpack's CSS compilation ([c7e8b1e](https://github.com/xing/hops/commit/c7e8b1e236e1e1ed745917f6c83783efee161828)) + + +### Features + +* **postcss:** add option to enable named exports for CSS Modules ([426c051](https://github.com/xing/hops/commit/426c051f129a0c5ef0e5cc65d47bdaf6355e9084)) +* **postcss:** export CSS Modules as ES Modules ([5f4ff80](https://github.com/xing/hops/commit/5f4ff80bf2897f737ba1bdcf3d9ea8322f35326e)) + + +### BREAKING CHANGES + +* **postcss:** CSS Modules switched to ESM and now export the styles +object as a `default`-export. + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-postcss diff --git a/packages/postcss/package.json b/packages/postcss/package.json index e4849fb81..ff1a12eef 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "hops-postcss", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Configuration of PostCSS and Webpack for Hops", "keywords": [ "hops", @@ -19,7 +19,7 @@ }, "dependencies": { "css-loader": "^5.0.1", - "hops-mixin": "^14.0.0-nightly.4", + "hops-mixin": "^14.0.0-nightly.5", "mini-css-extract-plugin": "^1.0.0", "optimize-css-assets-webpack-plugin": "^5.0.4", "pathifist": "^1.0.0", diff --git a/packages/pwa/CHANGELOG.md b/packages/pwa/CHANGELOG.md index 7cb85de33..f95ccd5cf 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-pwa + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-pwa diff --git a/packages/pwa/package.json b/packages/pwa/package.json index d08afe2cb..0cbe93861 100644 --- a/packages/pwa/package.json +++ b/packages/pwa/package.json @@ -1,6 +1,6 @@ { "name": "hops-pwa", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "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": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-webpack": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-webpack": "^14.0.0-nightly.5", "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 2658466c2..960630c86 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-react-apollo + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-react-apollo diff --git a/packages/react-apollo/package.json b/packages/react-apollo/package.json index 268dfb02a..37b6adc3a 100644 --- a/packages/react-apollo/package.json +++ b/packages/react-apollo/package.json @@ -1,6 +1,6 @@ { "name": "hops-react-apollo", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -27,9 +27,9 @@ "apollo-link-http": "^1.5.16", "cross-fetch": "^3.0.4", "graphql": "^15.0.0", - "hops-config": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-react": "^14.0.0-nightly.4", + "hops-config": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-react": "^14.0.0-nightly.5", "strip-indent": "^3.0.0" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 28ced2765..9628f92cf 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-react + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-react diff --git a/packages/react/package.json b/packages/react/package.json index 6a9c15059..f5e5df6c8 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hops-react", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "React and ReactRouter setup for Hops", "keywords": [ "hops", @@ -26,8 +26,8 @@ "clone": "^2.1.2", "depd": "^2.0.0", "duplitect": "^3.0.0", - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1", "pathifist": "^1.0.0", diff --git a/packages/redux/CHANGELOG.md b/packages/redux/CHANGELOG.md index a4daa69ae..a2ed69ccf 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-redux + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 1d7f21857..2c943f620 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-redux", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "React and Redux implementation for Hops", "keywords": [ "hops", @@ -22,7 +22,7 @@ }, "dependencies": { "history": "^4.10.1", - "hops-mixin": "^14.0.0-nightly.4", + "hops-mixin": "^14.0.0-nightly.5", "prop-types": "^15.7.2" }, "peerDependencies": { diff --git a/packages/spec/CHANGELOG.md b/packages/spec/CHANGELOG.md index 827bbcf16..0f35eb43d 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-spec + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-spec diff --git a/packages/spec/package.json b/packages/spec/package.json index 1152e9fdb..cbd13265c 100644 --- a/packages/spec/package.json +++ b/packages/spec/package.json @@ -1,6 +1,6 @@ { "name": "hops-spec", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "private": true, "files": [], "eslintConfig": { @@ -32,9 +32,9 @@ "@graphql-tools/stitch": "^7.0.4", "@testing-library/react": "^11.0.0", "@types/styled-components": "5.1.7", - "create-hops-app": "^14.0.0-nightly.4", + "create-hops-app": "^14.0.0-nightly.5", "cross-fetch": "^3.0.4", - "jest-environment-hops": "^14.0.0-nightly.4", + "jest-environment-hops": "^14.0.0-nightly.5", "react-helmet-async": "^1.0.4" }, "dependencies": { diff --git a/packages/styled-components/CHANGELOG.md b/packages/styled-components/CHANGELOG.md index 22a76e13f..85592e2e1 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-styled-components + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-styled-components diff --git a/packages/styled-components/package.json b/packages/styled-components/package.json index e9a41b989..36a7cc0ca 100644 --- a/packages/styled-components/package.json +++ b/packages/styled-components/package.json @@ -1,6 +1,6 @@ { "name": "hops-styled-components", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "Styled components support for Hops applications", "keywords": [ "hops", @@ -19,7 +19,7 @@ }, "dependencies": { "babel-plugin-styled-components": "^1.10.6", - "hops-mixin": "^14.0.0-nightly.4" + "hops-mixin": "^14.0.0-nightly.5" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0", diff --git a/packages/template-graphql/CHANGELOG.md b/packages/template-graphql/CHANGELOG.md index 4f1cc11b6..4b6d4b762 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-template-graphql + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-template-graphql diff --git a/packages/template-graphql/package.json b/packages/template-graphql/package.json index 39c4f6a95..f7278c133 100644 --- a/packages/template-graphql/package.json +++ b/packages/template-graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-graphql", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "main": "src/app.js", "license": "MIT", "hops": { @@ -17,9 +17,9 @@ }, "dependencies": { "graphql-tag": "^2.10.1", - "hops": "^14.0.0-nightly.4", - "hops-graphql": "^14.0.0-nightly.4", - "hops-postcss": "^14.0.0-nightly.4", + "hops": "^14.0.0-nightly.5", + "hops-graphql": "^14.0.0-nightly.5", + "hops-postcss": "^14.0.0-nightly.5", "prop-types": "^15.7.2", "react": "^17.0.1", "react-apollo": "^3.1.2", @@ -29,7 +29,7 @@ }, "devDependencies": { "jest": "^26.0.0", - "jest-preset-hops": "^14.0.0-nightly.4", + "jest-preset-hops": "^14.0.0-nightly.5", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/template-react/CHANGELOG.md b/packages/template-react/CHANGELOG.md index 834793238..d6683e470 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-template-react + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-template-react diff --git a/packages/template-react/package.json b/packages/template-react/package.json index 172b9592d..bb9f0c11e 100644 --- a/packages/template-react/package.json +++ b/packages/template-react/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-react", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "main": "src/app.js", "license": "MIT", "hops": { @@ -16,8 +16,8 @@ "serve": "hops serve" }, "dependencies": { - "hops": "^14.0.0-nightly.4", - "hops-postcss": "^14.0.0-nightly.4", + "hops": "^14.0.0-nightly.5", + "hops-postcss": "^14.0.0-nightly.5", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -26,7 +26,7 @@ }, "devDependencies": { "jest": "^26.0.0", - "jest-preset-hops": "^14.0.0-nightly.4", + "jest-preset-hops": "^14.0.0-nightly.5", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/template-redux/CHANGELOG.md b/packages/template-redux/CHANGELOG.md index 63f10bc34..2d450d266 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-template-redux + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-template-redux diff --git a/packages/template-redux/package.json b/packages/template-redux/package.json index 63b8d6528..8127e9d44 100644 --- a/packages/template-redux/package.json +++ b/packages/template-redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-redux", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "main": "src/app.js", "license": "MIT", "hops": { @@ -16,9 +16,9 @@ "serve": "hops serve" }, "dependencies": { - "hops": "^14.0.0-nightly.4", - "hops-postcss": "^14.0.0-nightly.4", - "hops-redux": "^14.0.0-nightly.4", + "hops": "^14.0.0-nightly.5", + "hops-postcss": "^14.0.0-nightly.5", + "hops-redux": "^14.0.0-nightly.5", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -30,7 +30,7 @@ }, "devDependencies": { "jest": "^26.0.0", - "jest-preset-hops": "^14.0.0-nightly.4", + "jest-preset-hops": "^14.0.0-nightly.5", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 5417da3e4..c1da6c83c 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-typescript + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-typescript diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 2dd6fc6f9..0076bcdb2 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hops-typescript", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "TypeScript support for Hops applications", "keywords": [ "hops", @@ -15,7 +15,7 @@ "url": "https://github.com/xing/hops.git" }, "dependencies": { - "hops-mixin": "^14.0.0-nightly.4", + "hops-mixin": "^14.0.0-nightly.5", "ts-loader": "^8.0.0" }, "peerDependencies": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 65f9992ef..dd3070024 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + + +### Bug Fixes + +* **webpack:** ensure forked compiler exits when done ([642459e](https://github.com/xing/hops/commit/642459ecad38a529235c474404905b28459fe665)) + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) diff --git a/packages/webpack/package.json b/packages/webpack/package.json index f771c3279..bf4032fde 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "hops-webpack", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "webpack support for Hops applications", "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/hops-webpack#readme", @@ -21,10 +21,10 @@ "event-source-polyfill": "^1.0.9", "file-loader": "^6.0.0", "find-up": "^5.0.0", - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-express": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", - "hops-yargs": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-express": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", + "hops-yargs": "^14.0.0-nightly.5", "is-plain-obj": "^3.0.0", "jsesc": "^3.0.0", "loader-utils": "^2.0.0", diff --git a/packages/yargs/CHANGELOG.md b/packages/yargs/CHANGELOG.md index 989156d28..df1de29f0 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. +# [14.0.0-nightly.5](https://github.com/xing/hops/compare/v14.0.0-nightly.4...v14.0.0-nightly.5) (2021-01-11) + +**Note:** Version bump only for package hops-yargs + + + + + # [14.0.0-nightly.4](https://github.com/xing/hops/compare/v14.0.0-nightly.3...v14.0.0-nightly.4) (2020-12-07) **Note:** Version bump only for package hops-yargs diff --git a/packages/yargs/package.json b/packages/yargs/package.json index 8e6fcf52f..10827f0e8 100644 --- a/packages/yargs/package.json +++ b/packages/yargs/package.json @@ -1,6 +1,6 @@ { "name": "hops-yargs", - "version": "14.0.0-nightly.4", + "version": "14.0.0-nightly.5", "description": "yargs support for Hops applications", "repository": { "type": "git", @@ -9,8 +9,8 @@ "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/yargs#readme", "dependencies": { - "hops-bootstrap": "^14.0.0-nightly.4", - "hops-mixin": "^14.0.0-nightly.4", + "hops-bootstrap": "^14.0.0-nightly.5", + "hops-mixin": "^14.0.0-nightly.5", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1", "yargs": "^16.1.1"