diff --git a/CHANGELOG.md b/CHANGELOG.md index 2493e446e..f8e3f57c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,35 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Bug Fixes + +* **msw:** correct type definition for main export ([17a2d25](https://github.com/xing/hops/commit/17a2d25875534e2974b769d901b76c34c23b49a7)) +* **msw:** do not install msw if browser does not support service workers ([faa82b3](https://github.com/xing/hops/commit/faa82b321fc46efbaa3c0f852b818869780a4833)) +* update dependency msw to ^0.31.0 ([d8d4984](https://github.com/xing/hops/commit/d8d4984202a2e6f566f59ee1d66b85a3deac77d5)) +* update dependency msw to ^0.33.0 ([3833165](https://github.com/xing/hops/commit/3833165f73246e8870b7920fd44242e841fe2230)) +* **msw:** provide empty hops-msw/handlers file to fix webpack errors ([50f66d5](https://github.com/xing/hops/commit/50f66d5e449f87cbd8f2dc3d6039354f33e95736)) +* update dependency serialize-javascript to v6 ([a133b9c](https://github.com/xing/hops/commit/a133b9c8fc1bd33369926a1a104019064a920cf1)) +* **create-hops-app:** remove intermediary hack ([4363e09](https://github.com/xing/hops/commit/4363e09da43b6d9ea20969f633a0c192be4804a1)) + + +### Features + +* **jest-preset:** automatically set-up graphql and msw ([860a8fe](https://github.com/xing/hops/commit/860a8fe9ba558f6195842edb73d1724fd50419b4)) +* **msw:** allow to skip waiting for browser mocks ([78ecff9](https://github.com/xing/hops/commit/78ecff9846edc5b61cc2955ee6e4b1eaeda39894)) +* **msw:** allow to specify a handlers file to use during development ([f83409a](https://github.com/xing/hops/commit/f83409aca4303c5024eddfa52f4b8359087bbd87)) +* **msw:** introduce new hops-msw package ([c01c062](https://github.com/xing/hops/commit/c01c06268f67b349bc9f249b09b438f3007f8e7e)) +* **msw:** only wait for browser mocks in integration tests ([a4318f0](https://github.com/xing/hops/commit/a4318f0b2752bda91a93c0f041e50fc24068143e)) +* **msw:** print debug information from the mixins ([de2d02c](https://github.com/xing/hops/commit/de2d02c72d41a75cc1ed925f5a421abdf2b2f13f)) +* **react-apollo:** expose helper functions for unit testing ([7908021](https://github.com/xing/hops/commit/7908021694a0b3822c0b0835bdecf78f992a1827)) +* **template-graphql:** use msw for development mode ([f84f4a3](https://github.com/xing/hops/commit/f84f4a38eb2140eeb958ab22ea5eb469ba64f692)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) diff --git a/lerna.json b/lerna.json index 2d9e458a3..2ccbfe4f9 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "14.2.1", + "version": "14.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 e40badfea..137a7b24d 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-apollo-mock-server + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **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 24a72822a..aaed2bc69 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.2.1", + "version": "14.3.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": "14.2.1", - "hops-mixin": "14.2.1", - "hops-webpack": "14.2.1" + "hops-config": "14.3.0", + "hops-mixin": "14.3.0", + "hops-webpack": "14.3.0" }, "homepage": "https://github.com/xing/hops/tree/master/packages/graphql#readme" } diff --git a/packages/bootstrap/CHANGELOG.md b/packages/bootstrap/CHANGELOG.md index 487365463..79e4de6c2 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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-bootstrap + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-bootstrap diff --git a/packages/bootstrap/package.json b/packages/bootstrap/package.json index 3c80eee7e..731e09365 100644 --- a/packages/bootstrap/package.json +++ b/packages/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "hops-bootstrap", - "version": "14.2.1", + "version": "14.3.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": "14.2.1", + "hops-debug": "14.3.0", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1", "supports-color": "^8.0.0" diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index b057d91d9..3a73f71d8 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-config + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-config diff --git a/packages/config/package.json b/packages/config/package.json index 3c01de78f..787e00cf7 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "hops-config", - "version": "14.2.1", + "version": "14.3.0", "description": "Hops core configuration", "keywords": [ "hops", @@ -21,7 +21,7 @@ }, "dependencies": { "depd": "^2.0.0", - "hops-bootstrap": "14.2.1" + "hops-bootstrap": "14.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 f3e9f4cf5..392112ab0 100644 --- a/packages/create-hops-app/CHANGELOG.md +++ b/packages/create-hops-app/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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Bug Fixes + +* **create-hops-app:** remove intermediary hack ([4363e09](https://github.com/xing/hops/commit/4363e09da43b6d9ea20969f633a0c192be4804a1)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) diff --git a/packages/create-hops-app/package.json b/packages/create-hops-app/package.json index 6d8dcb616..7b45fe7fd 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.2.1", + "version": "14.3.0", "description": "CLI tool to create Hops applications", "keywords": [ "hops", diff --git a/packages/debug/CHANGELOG.md b/packages/debug/CHANGELOG.md index 89d34e991..3ba2f47b1 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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-debug + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-debug diff --git a/packages/debug/package.json b/packages/debug/package.json index ac769012d..1310e9f1c 100644 --- a/packages/debug/package.json +++ b/packages/debug/package.json @@ -1,6 +1,6 @@ { "name": "hops-debug", - "version": "14.2.1", + "version": "14.3.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 60768dcf2..45fae7329 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-development-proxy + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-development-proxy diff --git a/packages/development-proxy/package.json b/packages/development-proxy/package.json index 447b986bb..e848a6077 100644 --- a/packages/development-proxy/package.json +++ b/packages/development-proxy/package.json @@ -1,6 +1,6 @@ { "name": "hops-development-proxy", - "version": "14.2.1", + "version": "14.3.0", "description": "Proxy", "keywords": [ "hops" @@ -17,8 +17,8 @@ "displayName": "unit" }, "dependencies": { - "hops-debug": "14.2.1", - "hops-mixin": "14.2.1", + "hops-debug": "14.3.0", + "hops-mixin": "14.3.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 c62f18614..021d66a0b 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-express + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-express diff --git a/packages/express/package.json b/packages/express/package.json index 049288b39..96649f1be 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "hops-express", - "version": "14.2.1", + "version": "14.3.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": "14.2.1", - "hops-debug": "14.2.1", - "hops-mixin": "14.2.1", - "hops-yargs": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-debug": "14.3.0", + "hops-mixin": "14.3.0", + "hops-yargs": "14.3.0", "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 68f17516b..79f5e60b3 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-graphql + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index f458a48b1..f17562c5a 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-graphql", - "version": "14.2.1", + "version": "14.3.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -21,8 +21,8 @@ "displayName": "unit" }, "dependencies": { - "hops-apollo-mock-server": "14.2.1", - "hops-react-apollo": "14.2.1" + "hops-apollo-mock-server": "14.3.0", + "hops-react-apollo": "14.3.0" }, "peerDependencies": { "@apollo/client": "^3.3.11", diff --git a/packages/hops/CHANGELOG.md b/packages/hops/CHANGELOG.md index 895a5357f..8d68ab221 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops diff --git a/packages/hops/package.json b/packages/hops/package.json index ab609b761..a3bfa68a0 100644 --- a/packages/hops/package.json +++ b/packages/hops/package.json @@ -1,6 +1,6 @@ { "name": "hops", - "version": "14.2.1", + "version": "14.3.0", "description": "Hops main Package to build and run Hops applications", "keywords": [ "hops", @@ -30,12 +30,12 @@ "displayName": "unit" }, "dependencies": { - "hops-express": "14.2.1", - "hops-info": "14.2.1", - "hops-mixin": "14.2.1", - "hops-react": "14.2.1", - "hops-webpack": "14.2.1", - "hops-yargs": "14.2.1", + "hops-express": "14.3.0", + "hops-info": "14.3.0", + "hops-mixin": "14.3.0", + "hops-react": "14.3.0", + "hops-webpack": "14.3.0", + "hops-yargs": "14.3.0", "webpack-bundle-analyzer": "^4.1.0" }, "peerDependencies": { diff --git a/packages/info/CHANGELOG.md b/packages/info/CHANGELOG.md index db7a9142d..366f54506 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-info + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-info diff --git a/packages/info/package.json b/packages/info/package.json index e18e64ce6..c10f24d4a 100644 --- a/packages/info/package.json +++ b/packages/info/package.json @@ -1,6 +1,6 @@ { "name": "hops-info", - "version": "14.2.1", + "version": "14.3.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": "14.2.1", - "hops-mixin": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-mixin": "14.3.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 508d1c420..69477599a 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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package jest-environment-hops + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package jest-environment-hops diff --git a/packages/jest-environment/package.json b/packages/jest-environment/package.json index c6382c863..6b3ddb8c9 100644 --- a/packages/jest-environment/package.json +++ b/packages/jest-environment/package.json @@ -1,6 +1,6 @@ { "name": "jest-environment-hops", - "version": "14.2.1", + "version": "14.3.0", "description": "Opinionated Jest environment to run Puppeteer-powered tests against Hops apps", "keywords": [ "hops", @@ -23,7 +23,7 @@ "colors": "^1.4.0", "eprom": "^1.0.0", "fs-extra": "^10.0.0", - "hops-debug": "14.2.1", + "hops-debug": "14.3.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 3d531f1ae..8fa21e5f8 100644 --- a/packages/jest-preset/CHANGELOG.md +++ b/packages/jest-preset/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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Features + +* **jest-preset:** automatically set-up graphql and msw ([860a8fe](https://github.com/xing/hops/commit/860a8fe9ba558f6195842edb73d1724fd50419b4)) +* **msw:** allow to specify a handlers file to use during development ([f83409a](https://github.com/xing/hops/commit/f83409aca4303c5024eddfa52f4b8359087bbd87)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package jest-preset-hops diff --git a/packages/jest-preset/package.json b/packages/jest-preset/package.json index 39abc4072..00abcf35b 100644 --- a/packages/jest-preset/package.json +++ b/packages/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "jest-preset-hops", - "version": "14.2.1", + "version": "14.3.0", "description": "Jest preset to work with Hops powered projects", "keywords": [ "hops", @@ -29,7 +29,7 @@ "@babel/preset-react": "^7.9.4", "colors": "^1.4.0", "core-js": "^3.2.1", - "hops": "14.2.1", + "hops": "14.3.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 e536ffbbc..cb1331499 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-lambda + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-lambda diff --git a/packages/lambda/package.json b/packages/lambda/package.json index a9a650768..5fe824177 100644 --- a/packages/lambda/package.json +++ b/packages/lambda/package.json @@ -1,6 +1,6 @@ { "name": "hops-lambda", - "version": "14.2.1", + "version": "14.3.0", "description": "Quick and easy deployment of Hops applications to AWS Lambda", "keywords": [ "hops", @@ -24,10 +24,10 @@ "archiver": "^5.0.0", "aws-sdk": "^2.546.0", "globby": "^11.0.0", - "hops-bootstrap": "14.2.1", - "hops-config": "14.2.1", - "hops-express": "14.2.1", - "hops-mixin": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-config": "14.3.0", + "hops-express": "14.3.0", + "hops-mixin": "14.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 11a946139..cacf39574 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-mixin + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-mixin diff --git a/packages/mixin/package.json b/packages/mixin/package.json index 039f05710..1362be30b 100644 --- a/packages/mixin/package.json +++ b/packages/mixin/package.json @@ -1,6 +1,6 @@ { "name": "hops-mixin", - "version": "14.2.1", + "version": "14.3.0", "description": "Building blocks to build cusom hops mixins", "keywords": [ "hops", diff --git a/packages/msw/CHANGELOG.md b/packages/msw/CHANGELOG.md index e4d87c4d4..5553b597f 100644 --- a/packages/msw/CHANGELOG.md +++ b/packages/msw/CHANGELOG.md @@ -2,3 +2,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Bug Fixes + +* **msw:** correct type definition for main export ([17a2d25](https://github.com/xing/hops/commit/17a2d25875534e2974b769d901b76c34c23b49a7)) +* **msw:** do not install msw if browser does not support service workers ([faa82b3](https://github.com/xing/hops/commit/faa82b321fc46efbaa3c0f852b818869780a4833)) +* update dependency msw to ^0.31.0 ([d8d4984](https://github.com/xing/hops/commit/d8d4984202a2e6f566f59ee1d66b85a3deac77d5)) +* update dependency msw to ^0.33.0 ([3833165](https://github.com/xing/hops/commit/3833165f73246e8870b7920fd44242e841fe2230)) +* **msw:** provide empty hops-msw/handlers file to fix webpack errors ([50f66d5](https://github.com/xing/hops/commit/50f66d5e449f87cbd8f2dc3d6039354f33e95736)) + + +### Features + +* **msw:** allow to skip waiting for browser mocks ([78ecff9](https://github.com/xing/hops/commit/78ecff9846edc5b61cc2955ee6e4b1eaeda39894)) +* **msw:** allow to specify a handlers file to use during development ([f83409a](https://github.com/xing/hops/commit/f83409aca4303c5024eddfa52f4b8359087bbd87)) +* **msw:** introduce new hops-msw package ([c01c062](https://github.com/xing/hops/commit/c01c06268f67b349bc9f249b09b438f3007f8e7e)) +* **msw:** only wait for browser mocks in integration tests ([a4318f0](https://github.com/xing/hops/commit/a4318f0b2752bda91a93c0f041e50fc24068143e)) +* **msw:** print debug information from the mixins ([de2d02c](https://github.com/xing/hops/commit/de2d02c72d41a75cc1ed925f5a421abdf2b2f13f)) diff --git a/packages/msw/package.json b/packages/msw/package.json index 245b78b11..22ab4a452 100644 --- a/packages/msw/package.json +++ b/packages/msw/package.json @@ -1,6 +1,6 @@ { "name": "hops-msw", - "version": "14.2.1", + "version": "14.3.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": "14.2.1", - "hops-mixin": "14.2.1", + "hops-debug": "14.3.0", + "hops-mixin": "14.3.0", "msw": "^0.33.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 ea5590052..e3a7420e8 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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-postcss + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-postcss diff --git a/packages/postcss/package.json b/packages/postcss/package.json index b993321a3..779b530f8 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "hops-postcss", - "version": "14.2.1", + "version": "14.3.0", "description": "Configuration of PostCSS and Webpack for Hops", "keywords": [ "hops", @@ -22,7 +22,7 @@ }, "dependencies": { "css-loader": "^5.0.1", - "hops-mixin": "14.2.1", + "hops-mixin": "14.3.0", "mini-css-extract-plugin": "^1.0.0", "optimize-css-assets-webpack-plugin": "^6.0.0", "pathifist": "^1.0.0", diff --git a/packages/pwa/CHANGELOG.md b/packages/pwa/CHANGELOG.md index 466dcf810..4963e1727 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-pwa + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-pwa diff --git a/packages/pwa/package.json b/packages/pwa/package.json index 58b4d6c07..ced10a584 100644 --- a/packages/pwa/package.json +++ b/packages/pwa/package.json @@ -1,6 +1,6 @@ { "name": "hops-pwa", - "version": "14.2.1", + "version": "14.3.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": "14.2.1", - "hops-mixin": "14.2.1", - "hops-webpack": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-mixin": "14.3.0", + "hops-webpack": "14.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 ead5439d0..48f4700be 100644 --- a/packages/react-apollo/CHANGELOG.md +++ b/packages/react-apollo/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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Features + +* **react-apollo:** expose helper functions for unit testing ([7908021](https://github.com/xing/hops/commit/7908021694a0b3822c0b0835bdecf78f992a1827)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-react-apollo diff --git a/packages/react-apollo/package.json b/packages/react-apollo/package.json index 8cb50217c..6ff2935f7 100644 --- a/packages/react-apollo/package.json +++ b/packages/react-apollo/package.json @@ -1,6 +1,6 @@ { "name": "hops-react-apollo", - "version": "14.2.1", + "version": "14.3.0", "description": "React and GraphQL implementation for Hops", "keywords": [ "hops", @@ -32,9 +32,9 @@ "depd": "^2.0.0", "find-up": "^5.0.0", "graphql": "^15.0.0", - "hops-config": "14.2.1", - "hops-mixin": "14.2.1", - "hops-react": "14.2.1", + "hops-config": "14.3.0", + "hops-mixin": "14.3.0", + "hops-react": "14.3.0", "strip-indent": "^3.0.0" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index c52483b47..ee37a0602 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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Bug Fixes + +* update dependency serialize-javascript to v6 ([a133b9c](https://github.com/xing/hops/commit/a133b9c8fc1bd33369926a1a104019064a920cf1)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-react diff --git a/packages/react/package.json b/packages/react/package.json index 8814368ae..329b17f78 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "hops-react", - "version": "14.2.1", + "version": "14.3.0", "description": "React and ReactRouter setup for Hops", "keywords": [ "hops", @@ -30,8 +30,8 @@ "clone": "^2.1.2", "depd": "^2.0.0", "duplitect": "^3.0.0", - "hops-bootstrap": "14.2.1", - "hops-mixin": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-mixin": "14.3.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 f919453ed..73122fec2 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-redux + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-redux diff --git a/packages/redux/package.json b/packages/redux/package.json index 644897d70..047b14c04 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-redux", - "version": "14.2.1", + "version": "14.3.0", "description": "React and Redux implementation for Hops", "keywords": [ "hops", @@ -25,7 +25,7 @@ }, "dependencies": { "history": "^4.10.1", - "hops-mixin": "14.2.1", + "hops-mixin": "14.3.0", "prop-types": "^15.7.2" }, "peerDependencies": { diff --git a/packages/spec/CHANGELOG.md b/packages/spec/CHANGELOG.md index 29c28e50a..d2280cc03 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-spec + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-spec diff --git a/packages/spec/package.json b/packages/spec/package.json index 5a50af623..d2059618b 100644 --- a/packages/spec/package.json +++ b/packages/spec/package.json @@ -1,6 +1,6 @@ { "name": "hops-spec", - "version": "14.2.1", + "version": "14.3.0", "private": true, "files": [], "eslintConfig": { @@ -35,12 +35,12 @@ "@graphql-tools/stitch": "^7.0.4", "@testing-library/react": "^12.0.0", "@types/styled-components": "^5.1.8", - "create-hops-app": "14.2.1", + "create-hops-app": "14.3.0", "cross-fetch": "^3.0.4", "esbuild-jest": "^0.5.0", "esbuild-loader": "^2.10.0", "execa": "^5.1.1", - "jest-environment-hops": "14.2.1", + "jest-environment-hops": "14.3.0", "raw-body": "^2.4.1", "react-apollo": "^3.1.2", "react-helmet-async": "^1.0.4", diff --git a/packages/styled-components/CHANGELOG.md b/packages/styled-components/CHANGELOG.md index 310421886..f7ac93c55 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-styled-components + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-styled-components diff --git a/packages/styled-components/package.json b/packages/styled-components/package.json index edfc2fe43..cd583793f 100644 --- a/packages/styled-components/package.json +++ b/packages/styled-components/package.json @@ -1,6 +1,6 @@ { "name": "hops-styled-components", - "version": "14.2.1", + "version": "14.3.0", "description": "Styled components support for Hops applications", "keywords": [ "hops", @@ -22,7 +22,7 @@ }, "dependencies": { "babel-plugin-styled-components": "^1.10.6", - "hops-mixin": "14.2.1" + "hops-mixin": "14.3.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0", diff --git a/packages/template-graphql/CHANGELOG.md b/packages/template-graphql/CHANGELOG.md index 0c286bf32..8014ae328 100644 --- a/packages/template-graphql/CHANGELOG.md +++ b/packages/template-graphql/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. +# [14.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + + +### Features + +* **msw:** allow to specify a handlers file to use during development ([f83409a](https://github.com/xing/hops/commit/f83409aca4303c5024eddfa52f4b8359087bbd87)) +* **template-graphql:** use msw for development mode ([f84f4a3](https://github.com/xing/hops/commit/f84f4a38eb2140eeb958ab22ea5eb469ba64f692)) + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-template-graphql diff --git a/packages/template-graphql/package.json b/packages/template-graphql/package.json index 05a901581..f109f8a8f 100644 --- a/packages/template-graphql/package.json +++ b/packages/template-graphql/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-graphql", - "version": "14.2.1", + "version": "14.3.0", "main": "src/app.jsx", "license": "MIT", "hops": { @@ -15,9 +15,9 @@ }, "dependencies": { "@apollo/client": "^3.3.11", - "hops": "14.2.1", - "hops-postcss": "14.2.1", - "hops-react-apollo": "14.2.1", + "hops": "14.3.0", + "hops-postcss": "14.3.0", + "hops-react-apollo": "14.3.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": "14.2.1", + "hops-msw": "14.3.0", "jest": "^26.0.0", - "jest-preset-hops": "14.2.1", + "jest-preset-hops": "14.3.0", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/template-react/CHANGELOG.md b/packages/template-react/CHANGELOG.md index c0cb684b9..0f4f97138 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-template-react + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-template-react diff --git a/packages/template-react/package.json b/packages/template-react/package.json index f540fb18b..4ac8a53a9 100644 --- a/packages/template-react/package.json +++ b/packages/template-react/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-react", - "version": "14.2.1", + "version": "14.3.0", "main": "src/app.jsx", "license": "MIT", "scripts": { @@ -10,8 +10,8 @@ "serve": "hops serve" }, "dependencies": { - "hops": "14.2.1", - "hops-postcss": "14.2.1", + "hops": "14.3.0", + "hops-postcss": "14.3.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -20,7 +20,7 @@ }, "devDependencies": { "jest": "^26.0.0", - "jest-preset-hops": "14.2.1", + "jest-preset-hops": "14.3.0", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/template-redux/CHANGELOG.md b/packages/template-redux/CHANGELOG.md index 4a9433def..625e1161b 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-template-redux + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-template-redux diff --git a/packages/template-redux/package.json b/packages/template-redux/package.json index 8f2de137b..02e604966 100644 --- a/packages/template-redux/package.json +++ b/packages/template-redux/package.json @@ -1,6 +1,6 @@ { "name": "hops-template-redux", - "version": "14.2.1", + "version": "14.3.0", "main": "src/app.jsx", "license": "MIT", "scripts": { @@ -10,9 +10,9 @@ "serve": "hops serve" }, "dependencies": { - "hops": "14.2.1", - "hops-postcss": "14.2.1", - "hops-redux": "14.2.1", + "hops": "14.3.0", + "hops-postcss": "14.3.0", + "hops-redux": "14.3.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -24,7 +24,7 @@ }, "devDependencies": { "jest": "^26.0.0", - "jest-preset-hops": "14.2.1", + "jest-preset-hops": "14.3.0", "react-test-renderer": "^17.0.1" }, "jest": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 7f7c3d80d..15180fafc 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-typescript + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-typescript diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 9a13d41f9..5a9d6bd41 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "hops-typescript", - "version": "14.2.1", + "version": "14.3.0", "description": "TypeScript support for Hops applications", "keywords": [ "hops", @@ -18,7 +18,7 @@ "displayName": "unit" }, "dependencies": { - "hops-mixin": "14.2.1", + "hops-mixin": "14.3.0", "ts-loader": "^8.0.0" }, "peerDependencies": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 9cf1889bc..a2eb6889d 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-webpack + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-webpack diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 0f69e0837..5185a6630 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "hops-webpack", - "version": "14.2.1", + "version": "14.3.0", "description": "webpack support for Hops applications", "license": "MIT", "homepage": "https://github.com/xing/hops/tree/master/packages/hops-webpack#readme", @@ -23,11 +23,11 @@ "event-source-polyfill": "^1.0.9", "file-loader": "^6.0.0", "find-up": "^5.0.0", - "hops-bootstrap": "14.2.1", - "hops-debug": "14.2.1", - "hops-express": "14.2.1", - "hops-mixin": "14.2.1", - "hops-yargs": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-debug": "14.3.0", + "hops-express": "14.3.0", + "hops-mixin": "14.3.0", + "hops-yargs": "14.3.0", "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 999f971f0..37ba02adc 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.3.0](https://github.com/xing/hops/compare/v14.2.1...v14.3.0) (2021-07-27) + +**Note:** Version bump only for package hops-yargs + + + + + ## [14.2.1](https://github.com/xing/hops/compare/v14.2.0...v14.2.1) (2021-06-22) **Note:** Version bump only for package hops-yargs diff --git a/packages/yargs/package.json b/packages/yargs/package.json index 879cc1282..6048d5479 100644 --- a/packages/yargs/package.json +++ b/packages/yargs/package.json @@ -1,6 +1,6 @@ { "name": "hops-yargs", - "version": "14.2.1", + "version": "14.3.0", "description": "yargs support for Hops applications", "repository": { "type": "git", @@ -12,8 +12,8 @@ "displayName": "unit" }, "dependencies": { - "hops-bootstrap": "14.2.1", - "hops-mixin": "14.2.1", + "hops-bootstrap": "14.3.0", + "hops-mixin": "14.3.0", "is-plain-obj": "^3.0.0", "mixinable": "^5.0.1", "yargs": "^17.0.0"