Skip to content

Commit

Permalink
chore: release v14.0.0-nightly.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Kluge committed Jan 11, 2021
1 parent 82e4f4c commit 24bd3f5
Show file tree
Hide file tree
Showing 54 changed files with 343 additions and 81 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [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)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "14.0.0-nightly.4",
"version": "14.0.0-nightly.5",
"registry": "https://registry.npmjs.org/",
"command": {
"version": {
Expand Down
8 changes: 8 additions & 0 deletions packages/apollo-mock-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions packages/apollo-mock-server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down
15 changes: 15 additions & 0 deletions packages/bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 8 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
8 changes: 8 additions & 0 deletions packages/create-hops-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/create-hops-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-hops-app",
"version": "14.0.0-nightly.4",
"version": "14.0.0-nightly.5",
"description": "CLI tool to create Hops applications",
"keywords": [
"hops",
Expand Down
8 changes: 8 additions & 0 deletions packages/development-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/development-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-development-proxy",
"version": "14.0.0-nightly.4",
"version": "14.0.0-nightly.5",
"description": "Proxy",
"keywords": [
"hops"
Expand All @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions packages/express/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
8 changes: 4 additions & 4 deletions packages/express/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-graphql",
"version": "14.0.0-nightly.4",
"version": "14.0.0-nightly.5",
"description": "React and GraphQL implementation for Hops",
"keywords": [
"hops",
Expand All @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions packages/hops/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions packages/hops/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
8 changes: 8 additions & 0 deletions packages/info/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/info/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions packages/jest-environment/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
2 changes: 1 addition & 1 deletion packages/jest-environment/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 8 additions & 0 deletions packages/jest-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-preset/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
Loading

0 comments on commit 24bd3f5

Please sign in to comment.