diff --git a/CHANGELOG.md b/CHANGELOG.md index 1544783f9..867f764ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + + +### Bug Fixes + +* update dependency loader-utils to v3 ([3de91e1](https://github.com/xing/hops/commit/3de91e1988286e8c5e3729d7b877e434acd166d3)) +* update dependency react-refresh to ^0.11.0 ([7adebdc](https://github.com/xing/hops/commit/7adebdc44a9c818d030efb24c3a084c6881b9995)) + + +### Features + +* **express:** make helmet headers configurable ([71bd502](https://github.com/xing/hops/commit/71bd50295226eb4cdfd855964b0ca14ee20c3384)) + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) diff --git a/lerna.json b/lerna.json index a822f1995..6892dc3d0 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "15.1.2", + "version": "15.2.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 18c0cc822..9cecb27f2 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-apollo-mock-server + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **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 ea56c7821..3a9e7191d 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": "15.1.2", + "version": "15.2.0", "description": "Apollo based mock server for Hops", "keywords": [ "hops", @@ -28,9 +28,9 @@ "express": "^4.17.1", "graphql": "^15.0.0", "graphql-tag": "^2.12.3", - "hops-config": "15.1.2", - "hops-mixin": "15.1.2", - "hops-webpack": "15.1.2" + "hops-config": "15.2.0", + "hops-mixin": "15.2.0", + "hops-webpack": "15.2.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/graphql#readme", "gitHead": "015197ee2f876911d9fa781cac1777ebed405015" diff --git a/packages/bootstrap/CHANGELOG.md b/packages/bootstrap/CHANGELOG.md index 74f1d2c41..4067c4def 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-bootstrap + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-bootstrap diff --git a/packages/bootstrap/package.json b/packages/bootstrap/package.json index 3222ac22a..67324bc5d 100644 --- a/packages/bootstrap/package.json +++ b/packages/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "hops-bootstrap", - "version": "15.1.2", + "version": "15.2.0", "description": "Hops bootstrap", "repository": { "type": "git", @@ -21,7 +21,7 @@ "escape-string-regexp": "^4.0.0", "find-up": "^5.0.0", "flat": "^5.0.0", - "hops-debug": "15.1.2", + "hops-debug": "15.2.0", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1" }, diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index f91d82912..f3a32de68 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-config + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-config diff --git a/packages/config/package.json b/packages/config/package.json index a21ab58a6..b6bf0cced 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "hops-config", - "version": "15.1.2", + "version": "15.2.0", "description": "Hops core configuration", "keywords": [ "hops", @@ -21,7 +21,7 @@ }, "dependencies": { "depd": "^2.0.0", - "hops-bootstrap": "15.1.2" + "hops-bootstrap": "15.2.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/config#readme", "gitHead": "015197ee2f876911d9fa781cac1777ebed405015" diff --git a/packages/create-hops-app/CHANGELOG.md b/packages/create-hops-app/CHANGELOG.md index 06fc0663f..d03afe756 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package create-hops-app + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **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 07ae27997..52a34674e 100644 --- a/packages/create-hops-app/package.json +++ b/packages/create-hops-app/package.json @@ -1,6 +1,6 @@ { "name": "create-hops-app", - "version": "15.1.2", + "version": "15.2.0", "description": "CLI tool to create Hops applications", "keywords": [ "hops", diff --git a/packages/debug/CHANGELOG.md b/packages/debug/CHANGELOG.md index e45665973..bfc1e5fb2 100644 --- a/packages/debug/CHANGELOG.md +++ b/packages/debug/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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-debug + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-debug diff --git a/packages/debug/package.json b/packages/debug/package.json index 6d9dbeca6..c6a0f9834 100644 --- a/packages/debug/package.json +++ b/packages/debug/package.json @@ -1,6 +1,6 @@ { "name": "hops-debug", - "version": "15.1.2", + "version": "15.2.0", "description": "Hops debug wrapper", "main": "node.js", "browser": "browser.js", diff --git a/packages/development-proxy/CHANGELOG.md b/packages/development-proxy/CHANGELOG.md index 792a6f1a2..b3b3ac96d 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-development-proxy + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-development-proxy diff --git a/packages/development-proxy/package.json b/packages/development-proxy/package.json index 94e59f9c5..4063ebb13 100644 --- a/packages/development-proxy/package.json +++ b/packages/development-proxy/package.json @@ -1,6 +1,6 @@ { "name": "hops-development-proxy", - "version": "15.1.2", + "version": "15.2.0", "description": "Proxy", "keywords": [ "hops" @@ -17,8 +17,8 @@ "displayName": "unit" }, "dependencies": { - "hops-debug": "15.1.2", - "hops-mixin": "15.1.2", + "hops-debug": "15.2.0", + "hops-mixin": "15.2.0", "http-proxy-middleware": "^2.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 ce125dc10..d7f447eef 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + + +### Features + +* **express:** make helmet headers configurable ([71bd502](https://github.com/xing/hops/commit/71bd50295226eb4cdfd855964b0ca14ee20c3384)) + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) diff --git a/packages/express/package.json b/packages/express/package.json index e7939d51c..5cd0f5247 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "hops-express", - "version": "15.1.2", + "version": "15.2.0", "description": "Customization for the our express server", "keywords": [ "hops", @@ -28,10 +28,10 @@ "express": "^4.17.1", "finalhandler": "^1.1.2", "helmet": "^4.0.0", - "hops-bootstrap": "15.1.2", - "hops-debug": "15.1.2", - "hops-mixin": "15.1.2", - "hops-yargs": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-debug": "15.2.0", + "hops-mixin": "15.2.0", + "hops-yargs": "15.2.0", "is-plain-obj": "^3.0.0", "mime": "^3.0.0", "mixinable": "^5.0.1", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index a5363310b..12b54cd27 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-graphql + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 00f29ef9d..e7221645a 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-graphql", - "version": "15.1.2", + "version": "15.2.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -21,8 +21,8 @@ "displayName": "unit" }, "dependencies": { - "hops-apollo-mock-server": "15.1.2", - "hops-react-apollo": "15.1.2" + "hops-apollo-mock-server": "15.2.0", + "hops-react-apollo": "15.2.0" }, "peerDependencies": { "@apollo/client": "^3.3.11", diff --git a/packages/hops/CHANGELOG.md b/packages/hops/CHANGELOG.md index 24cd37bec..ee31e11e2 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops diff --git a/packages/hops/package.json b/packages/hops/package.json index 3c3f57510..83923d1a8 100644 --- a/packages/hops/package.json +++ b/packages/hops/package.json @@ -1,6 +1,6 @@ { "name": "hops", - "version": "15.1.2", + "version": "15.2.0", "description": "Hops main Package to build and run Hops applications", "keywords": [ "hops", @@ -30,12 +30,12 @@ "displayName": "unit" }, "dependencies": { - "hops-express": "15.1.2", - "hops-info": "15.1.2", - "hops-mixin": "15.1.2", - "hops-react": "15.1.2", - "hops-webpack": "15.1.2", - "hops-yargs": "15.1.2", + "hops-express": "15.2.0", + "hops-info": "15.2.0", + "hops-mixin": "15.2.0", + "hops-react": "15.2.0", + "hops-webpack": "15.2.0", + "hops-yargs": "15.2.0", "webpack-bundle-analyzer": "^4.1.0" }, "peerDependencies": { diff --git a/packages/info/CHANGELOG.md b/packages/info/CHANGELOG.md index 74d0c5e03..92b06542a 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-info + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-info diff --git a/packages/info/package.json b/packages/info/package.json index f35bf3fa7..7aae6b230 100644 --- a/packages/info/package.json +++ b/packages/info/package.json @@ -1,6 +1,6 @@ { "name": "hops-info", - "version": "15.1.2", + "version": "15.2.0", "description": "Hops info mixin", "repository": { "type": "git", @@ -20,8 +20,8 @@ "enhanced-resolve": "^5.0.0", "eprom": "^1.0.0", "escape-string-regexp": "^4.0.0", - "hops-bootstrap": "15.1.2", - "hops-mixin": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-mixin": "15.2.0", "mixinable": "^5.0.1", "web-vitals": "^2.0.0" }, diff --git a/packages/jest-environment/CHANGELOG.md b/packages/jest-environment/CHANGELOG.md index 9844f07c2..6192026d7 100644 --- a/packages/jest-environment/CHANGELOG.md +++ b/packages/jest-environment/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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package jest-environment-hops + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) diff --git a/packages/jest-environment/package.json b/packages/jest-environment/package.json index ed48a69c8..4118072ea 100644 --- a/packages/jest-environment/package.json +++ b/packages/jest-environment/package.json @@ -1,6 +1,6 @@ { "name": "jest-environment-hops", - "version": "15.1.2", + "version": "15.2.0", "description": "Opinionated Jest environment to run Puppeteer-powered tests against Hops apps", "keywords": [ "hops", @@ -23,7 +23,7 @@ "chalk": "^4.0.0", "eprom": "^1.0.0", "fs-extra": "^10.0.0", - "hops-debug": "15.1.2", + "hops-debug": "15.2.0", "import-from": "^4.0.0", "mkdirp": "^1.0.4", "mktemp": "^1.0.0", diff --git a/packages/jest-preset/CHANGELOG.md b/packages/jest-preset/CHANGELOG.md index 698c9bd74..2f3491308 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package jest-preset-hops + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package jest-preset-hops diff --git a/packages/jest-preset/package.json b/packages/jest-preset/package.json index 91bedf17f..445d726b4 100644 --- a/packages/jest-preset/package.json +++ b/packages/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "jest-preset-hops", - "version": "15.1.2", + "version": "15.2.0", "description": "Jest preset to work with Hops powered projects", "keywords": [ "hops", @@ -30,7 +30,7 @@ "@babel/preset-react": "^7.9.4", "chalk": "^4.0.0", "core-js": "^3.2.1", - "hops": "15.1.2", + "hops": "15.2.0", "identity-obj-proxy": "^3.0.0", "import-from": "^4.0.0", "regenerator-runtime": "^0.13.3" diff --git a/packages/lambda/CHANGELOG.md b/packages/lambda/CHANGELOG.md index 4588b8add..c445faf48 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-lambda + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-lambda diff --git a/packages/lambda/package.json b/packages/lambda/package.json index be31dd7b1..203f695f0 100644 --- a/packages/lambda/package.json +++ b/packages/lambda/package.json @@ -1,6 +1,6 @@ { "name": "hops-lambda", - "version": "15.1.2", + "version": "15.2.0", "description": "Quick and easy deployment of Hops applications to AWS Lambda", "keywords": [ "hops", @@ -25,10 +25,10 @@ "aws-sdk": "^2.546.0", "chalk": "^4.0.0", "globby": "^11.0.0", - "hops-bootstrap": "15.1.2", - "hops-config": "15.1.2", - "hops-express": "15.1.2", - "hops-mixin": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-config": "15.2.0", + "hops-express": "15.2.0", + "hops-mixin": "15.2.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 6cc678f21..78db50635 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-mixin + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-mixin diff --git a/packages/mixin/package.json b/packages/mixin/package.json index 6ea333ac6..e9228cbe1 100644 --- a/packages/mixin/package.json +++ b/packages/mixin/package.json @@ -1,6 +1,6 @@ { "name": "hops-mixin", - "version": "15.1.2", + "version": "15.2.0", "description": "Building blocks to build cusom hops mixins", "keywords": [ "hops", diff --git a/packages/msw/CHANGELOG.md b/packages/msw/CHANGELOG.md index 08cb4b33c..bc68eb94b 100644 --- a/packages/msw/CHANGELOG.md +++ b/packages/msw/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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-msw + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-msw diff --git a/packages/msw/package.json b/packages/msw/package.json index a4f3b2503..1c1f01e0e 100644 --- a/packages/msw/package.json +++ b/packages/msw/package.json @@ -1,6 +1,6 @@ { "name": "hops-msw", - "version": "15.1.2", + "version": "15.2.0", "description": "Mock service worker support for Hops", "main": "index.js", "keywords": [ @@ -26,8 +26,8 @@ "cookie-parser": "^1.4.4", "cross-fetch": "^3.1.4", "execa": "^5.1.1", - "hops-debug": "15.1.2", - "hops-mixin": "15.1.2", + "hops-debug": "15.2.0", + "hops-mixin": "15.2.0", "msw": "^0.35.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/msw#readme", diff --git a/packages/postcss/CHANGELOG.md b/packages/postcss/CHANGELOG.md index 00ddc338d..4dd669314 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-postcss + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-postcss diff --git a/packages/postcss/package.json b/packages/postcss/package.json index f8ac1ef7d..53b633822 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "hops-postcss", - "version": "15.1.2", + "version": "15.2.0", "description": "Configuration of PostCSS and Webpack for Hops", "keywords": [ "hops", @@ -23,7 +23,7 @@ "dependencies": { "css-loader": "^6.0.0", "css-minimizer-webpack-plugin": "^3.0.1", - "hops-mixin": "15.1.2", + "hops-mixin": "15.2.0", "mini-css-extract-plugin": "^1.6.0", "pathifist": "^1.0.0", "postcss": "^8.2.1", diff --git a/packages/pwa/CHANGELOG.md b/packages/pwa/CHANGELOG.md index 55fe6ff8d..804d3ab0e 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-pwa + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-pwa diff --git a/packages/pwa/package.json b/packages/pwa/package.json index 7d703292a..8555f6998 100644 --- a/packages/pwa/package.json +++ b/packages/pwa/package.json @@ -1,6 +1,6 @@ { "name": "hops-pwa", - "version": "15.1.2", + "version": "15.2.0", "description": "ServiceWorker and Web App Manifest support for Hops", "keywords": [ "hops", @@ -25,9 +25,9 @@ "dependencies": { "app-manifest-loader": "^2.4.1", "file-loader": "^6.0.0", - "hops-bootstrap": "15.1.2", - "hops-mixin": "15.1.2", - "hops-webpack": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-mixin": "15.2.0", + "hops-webpack": "15.2.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 9acb26dee..b82bc9a08 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-react-apollo + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-react-apollo diff --git a/packages/react-apollo/package.json b/packages/react-apollo/package.json index 9de9bd97f..89663de2d 100644 --- a/packages/react-apollo/package.json +++ b/packages/react-apollo/package.json @@ -1,6 +1,6 @@ { "name": "hops-react-apollo", - "version": "15.1.2", + "version": "15.2.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -28,9 +28,9 @@ "cross-fetch": "^3.0.4", "find-up": "^5.0.0", "graphql": "^15.0.0", - "hops-config": "15.1.2", - "hops-mixin": "15.1.2", - "hops-react": "15.1.2", + "hops-config": "15.2.0", + "hops-mixin": "15.2.0", + "hops-react": "15.2.0", "strip-indent": "^3.0.0" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 7b9c7f32f..423d54ef1 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + + +### Bug Fixes + +* update dependency react-refresh to ^0.11.0 ([7adebdc](https://github.com/xing/hops/commit/7adebdc44a9c818d030efb24c3a084c6881b9995)) + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) diff --git a/packages/react/package.json b/packages/react/package.json index 778ca8adb..5efc13f8f 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hops-react", - "version": "15.1.2", + "version": "15.2.0", "description": "React and ReactRouter setup for Hops", "keywords": [ "hops", @@ -31,8 +31,8 @@ "clone": "^2.1.2", "depd": "^2.0.0", "duplitect": "^3.0.0", - "hops-bootstrap": "15.1.2", - "hops-mixin": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-mixin": "15.2.0", "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 0c9b1b199..ca9b8ef20 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-redux + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 72ab40c6f..907ff2cb7 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-redux", - "version": "15.1.2", + "version": "15.2.0", "description": "React and Redux implementation for Hops", "keywords": [ "hops", @@ -25,7 +25,7 @@ }, "dependencies": { "history": "^4.10.1", - "hops-mixin": "15.1.2", + "hops-mixin": "15.2.0", "prop-types": "^15.7.2" }, "peerDependencies": { diff --git a/packages/spec/CHANGELOG.md b/packages/spec/CHANGELOG.md index 184d386f5..718fc67a5 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-spec + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-spec diff --git a/packages/spec/package.json b/packages/spec/package.json index 7f95e7e94..01316183d 100644 --- a/packages/spec/package.json +++ b/packages/spec/package.json @@ -1,6 +1,6 @@ { "name": "hops-spec", - "version": "15.1.2", + "version": "15.2.0", "private": true, "files": [], "eslintConfig": { @@ -35,12 +35,12 @@ "@graphql-tools/stitch": "^8.0.0", "@testing-library/react": "^12.0.0", "@types/styled-components": "^5.1.8", - "create-hops-app": "15.1.2", + "create-hops-app": "15.2.0", "cross-fetch": "^3.1.4", "esbuild-jest": "^0.5.0", "esbuild-loader": "^2.13.1", "execa": "^5.1.1", - "jest-environment-hops": "15.1.2", + "jest-environment-hops": "15.2.0", "raw-body": "^2.4.1", "react-helmet-async": "^1.0.9", "semver": "^7.3.5" diff --git a/packages/styled-components/CHANGELOG.md b/packages/styled-components/CHANGELOG.md index 31b665166..3a4f9d038 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-styled-components + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-styled-components diff --git a/packages/styled-components/package.json b/packages/styled-components/package.json index 3ad97d9fb..d507fd30f 100644 --- a/packages/styled-components/package.json +++ b/packages/styled-components/package.json @@ -1,6 +1,6 @@ { "name": "hops-styled-components", - "version": "15.1.2", + "version": "15.2.0", "description": "Styled components support for Hops applications", "keywords": [ "hops", @@ -22,7 +22,7 @@ }, "dependencies": { "babel-plugin-styled-components": "1.12.1", - "hops-mixin": "15.1.2" + "hops-mixin": "15.2.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0", diff --git a/packages/template-graphql/CHANGELOG.md b/packages/template-graphql/CHANGELOG.md index 41ca5c931..817b9e050 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-template-graphql + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-template-graphql diff --git a/packages/template-graphql/package.json b/packages/template-graphql/package.json index ad1a5f2a8..b391c8e93 100644 --- a/packages/template-graphql/package.json +++ b/packages/template-graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-graphql", - "version": "15.1.2", + "version": "15.2.0", "main": "src/app.jsx", "license": "MIT", "hops": { @@ -15,9 +15,9 @@ }, "dependencies": { "@apollo/client": "3.4.17", - "hops": "15.1.2", - "hops-postcss": "15.1.2", - "hops-react-apollo": "15.1.2", + "hops": "15.2.0", + "hops-postcss": "15.2.0", + "hops-react-apollo": "15.2.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -25,9 +25,9 @@ "react-router-dom": "^5.1.2" }, "devDependencies": { - "hops-msw": "15.1.2", + "hops-msw": "15.2.0", "jest": "^27.0.0", - "jest-preset-hops": "15.1.2", + "jest-preset-hops": "15.2.0", "react-test-renderer": "^17.0.2" }, "jest": { diff --git a/packages/template-react/CHANGELOG.md b/packages/template-react/CHANGELOG.md index 4b0c0c5eb..29f290860 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-template-react + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-template-react diff --git a/packages/template-react/package.json b/packages/template-react/package.json index c73bd0790..d44730305 100644 --- a/packages/template-react/package.json +++ b/packages/template-react/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-react", - "version": "15.1.2", + "version": "15.2.0", "main": "src/app.jsx", "license": "MIT", "scripts": { @@ -10,8 +10,8 @@ "serve": "hops serve" }, "dependencies": { - "hops": "15.1.2", - "hops-postcss": "15.1.2", + "hops": "15.2.0", + "hops-postcss": "15.2.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -20,7 +20,7 @@ }, "devDependencies": { "jest": "^27.0.0", - "jest-preset-hops": "15.1.2", + "jest-preset-hops": "15.2.0", "react-test-renderer": "^17.0.2" }, "jest": { diff --git a/packages/template-redux/CHANGELOG.md b/packages/template-redux/CHANGELOG.md index e7e072609..769486866 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-template-redux + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-template-redux diff --git a/packages/template-redux/package.json b/packages/template-redux/package.json index 320cf8e4f..31e4564ba 100644 --- a/packages/template-redux/package.json +++ b/packages/template-redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-redux", - "version": "15.1.2", + "version": "15.2.0", "main": "src/app.jsx", "license": "MIT", "scripts": { @@ -10,9 +10,9 @@ "serve": "hops serve" }, "dependencies": { - "hops": "15.1.2", - "hops-postcss": "15.1.2", - "hops-redux": "15.1.2", + "hops": "15.2.0", + "hops-postcss": "15.2.0", + "hops-redux": "15.2.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -24,7 +24,7 @@ }, "devDependencies": { "jest": "^27.0.0", - "jest-preset-hops": "15.1.2", + "jest-preset-hops": "15.2.0", "react-test-renderer": "^17.0.2" }, "jest": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 8bd163c9b..afa000cf7 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-typescript + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-typescript diff --git a/packages/typescript/package.json b/packages/typescript/package.json index c0e00b6d3..0e33f76f9 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hops-typescript", - "version": "15.1.2", + "version": "15.2.0", "description": "TypeScript support for Hops applications", "keywords": [ "hops", @@ -18,7 +18,7 @@ "displayName": "unit" }, "dependencies": { - "hops-mixin": "15.1.2", + "hops-mixin": "15.2.0", "ts-loader": "^9.2.2" }, "peerDependencies": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 4706dd073..7ee46ce1c 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + + +### Bug Fixes + +* update dependency loader-utils to v3 ([3de91e1](https://github.com/xing/hops/commit/3de91e1988286e8c5e3729d7b877e434acd166d3)) + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 4cd917bd6..3462c3644 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "hops-webpack", - "version": "15.1.2", + "version": "15.2.0", "description": "webpack support for Hops applications", "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/hops-webpack#readme", @@ -22,11 +22,11 @@ "escape-string-regexp": "^4.0.0", "event-source-polyfill": "^1.0.9", "find-up": "^5.0.0", - "hops-bootstrap": "15.1.2", - "hops-debug": "15.1.2", - "hops-express": "15.1.2", - "hops-mixin": "15.1.2", - "hops-yargs": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-debug": "15.2.0", + "hops-express": "15.2.0", + "hops-mixin": "15.2.0", + "hops-yargs": "15.2.0", "is-plain-obj": "^3.0.0", "jsesc": "^3.0.0", "lodash.get": "^4.4.2", diff --git a/packages/yargs/CHANGELOG.md b/packages/yargs/CHANGELOG.md index fc8f554e4..cd462a0ae 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. +# [15.2.0](https://github.com/xing/hops/compare/v15.1.2...v15.2.0) (2022-04-06) + +**Note:** Version bump only for package hops-yargs + + + + + ## [15.1.2](https://github.com/xing/hops/compare/v15.1.1...v15.1.2) (2022-02-23) **Note:** Version bump only for package hops-yargs diff --git a/packages/yargs/package.json b/packages/yargs/package.json index 59dc047a2..a01df002d 100644 --- a/packages/yargs/package.json +++ b/packages/yargs/package.json @@ -1,6 +1,6 @@ { "name": "hops-yargs", - "version": "15.1.2", + "version": "15.2.0", "description": "yargs support for Hops applications", "repository": { "type": "git", @@ -12,8 +12,8 @@ "displayName": "unit" }, "dependencies": { - "hops-bootstrap": "15.1.2", - "hops-mixin": "15.1.2", + "hops-bootstrap": "15.2.0", + "hops-mixin": "15.2.0", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1", "yargs": "^17.0.0"