Skip to content

Commit

Permalink
chore: release v13.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Kluge committed Jul 31, 2020
1 parent 51d3030 commit dde3c67
Show file tree
Hide file tree
Showing 52 changed files with 358 additions and 80 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,41 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)


### Bug Fixes

* **react:** declare propTypes for Import component ([a929c7d](https://github.com/xing/hops/commit/a929c7d20a5f477930373d1f99f2eea079a4880e))
* **react:** remove support of react-helmet ([3ea3cc5](https://github.com/xing/hops/commit/3ea3cc534f83cb75dcf8bff61a0dad8ac4cb7d45))
* **react:** require export resolver function in importComponent ([ff71be6](https://github.com/xing/hops/commit/ff71be69ad4d03f453d2c3bdc4177da7961c2bdd))
* **react:** require module loader function in importComponent ([dd6e501](https://github.com/xing/hops/commit/dd6e5017422fff1e3cb20a610c9010e8acc3c2fb))
* **react-apollo:** remove support for shouldPrefetchOnServer ([e52a467](https://github.com/xing/hops/commit/e52a467749f95d4fefacf023198166d967000f49))
* **redux:** remove support for shouldPrefetchOnServer ([1e2e1f2](https://github.com/xing/hops/commit/1e2e1f2bd7ed21fb7d22d95b2803e6ccffcac250))
* **webpack:** reset stats promise on watch run events ([0cd654d](https://github.com/xing/hops/commit/0cd654d33c56f068fdf5412e6e45901312948b0d))
* update dependency archiver to v5 ([30740dc](https://github.com/xing/hops/commit/30740dc6bc34310254052cb2393bf4e900c42ba5))


### BREAKING CHANGES

* **react:** Hops does not support the synchronous
`react-helmet`-package anymore; you have thus to update your
`import`-statements to import the `Helmet`-component from
`react-helmet-async` instead.
* **react:** `importComponent` does not accept a module identifier
as the first argument anymore, but requires you to pass in a function,
that returns the `Promise` of the dynamic import of the module.
* **react:** `importComponent` now requires the second argument,
that resolves a named export, to be a function.
* **redux:** Replace the outdated `shouldPrefetchOnServer` in your Hops
configuration with the new config value `allowServerSideDataFetching`.
* **react-apollo:** Replace the outdated `shouldPrefetchOnServer` in your Hops
configuration with the new config value `allowServerSideDataFetching`.





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-apollo-mock-server





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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": "^13.0.0-alpha.0",
"hops-mixin": "^13.0.0-alpha.0",
"hops-webpack": "^13.0.0-alpha.0"
"hops-config": "^13.0.0-alpha.1",
"hops-mixin": "^13.0.0-alpha.1",
"hops-webpack": "^13.0.0-alpha.1"
},
"peerDependencies": {
"graphql-tag": "^2.10.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/bootstrap/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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-bootstrap





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-config





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


Expand Down
6 changes: 3 additions & 3 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-config",
"version": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"description": "Hops core configuration",
"keywords": [
"hops",
Expand All @@ -18,8 +18,8 @@
},
"dependencies": {
"depd": "^2.0.0",
"hops-bootstrap": "^13.0.0-alpha.0",
"hops-webpack": "^13.0.0-alpha.0"
"hops-bootstrap": "^13.0.0-alpha.1",
"hops-webpack": "^13.0.0-alpha.1"
},
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package create-hops-app





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-development-proxy





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"description": "Proxy",
"keywords": [
"hops"
Expand All @@ -15,7 +15,7 @@
},
"dependencies": {
"debug": "^4.1.1",
"hops-mixin": "^13.0.0-alpha.0",
"hops-mixin": "^13.0.0-alpha.1",
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-express





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"description": "Customization for the our express server",
"keywords": [
"hops",
Expand All @@ -26,9 +26,9 @@
"express": "^4.17.1",
"finalhandler": "^1.1.2",
"helmet": "^3.21.1",
"hops-bootstrap": "^13.0.0-alpha.0",
"hops-mixin": "^13.0.0-alpha.0",
"hops-yargs": "^13.0.0-alpha.0",
"hops-bootstrap": "^13.0.0-alpha.1",
"hops-mixin": "^13.0.0-alpha.1",
"hops-yargs": "^13.0.0-alpha.1",
"is-plain-obj": "^2.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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-graphql





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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": "^13.0.0-alpha.0",
"hops-react-apollo": "^13.0.0-alpha.0"
"hops-apollo-mock-server": "^13.0.0-alpha.1",
"hops-react-apollo": "^13.0.0-alpha.1"
},
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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": "^13.0.0-alpha.0",
"hops-info": "^13.0.0-alpha.0",
"hops-mixin": "^13.0.0-alpha.0",
"hops-react": "^13.0.0-alpha.0",
"hops-webpack": "^13.0.0-alpha.0",
"hops-yargs": "^13.0.0-alpha.0",
"hops-express": "^13.0.0-alpha.1",
"hops-info": "^13.0.0-alpha.1",
"hops-mixin": "^13.0.0-alpha.1",
"hops-react": "^13.0.0-alpha.1",
"hops-webpack": "^13.0.0-alpha.1",
"hops-yargs": "^13.0.0-alpha.1",
"webpack-bundle-analyzer": "^3.5.2"
},
"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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package hops-info





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"description": "Hops info mixin",
"repository": {
"type": "git",
Expand All @@ -16,8 +16,8 @@
"duplitect": "^3.0.0",
"enhanced-resolve": "^4.1.1",
"escape-string-regexp": "^4.0.0",
"hops-bootstrap": "^13.0.0-alpha.0",
"hops-mixin": "^13.0.0-alpha.0",
"hops-bootstrap": "^13.0.0-alpha.1",
"hops-mixin": "^13.0.0-alpha.1",
"mixinable": "^5.0.1"
},
"engines": {
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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)

**Note:** Version bump only for package jest-preset-hops





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


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": "13.0.0-alpha.0",
"version": "13.0.0-alpha.1",
"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",
"babel-jest": "^26.0.0",
"core-js": "^3.2.1",
"hops": "^13.0.0-alpha.0",
"hops": "^13.0.0-alpha.1",
"identity-obj-proxy": "^3.0.0",
"jest-config": "^26.0.0",
"regenerator-runtime": "^0.13.3",
Expand Down
11 changes: 11 additions & 0 deletions packages/lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [13.0.0-alpha.1](https://github.com/xing/hops/compare/v13.0.0-alpha.0...v13.0.0-alpha.1) (2020-07-31)


### Bug Fixes

* update dependency archiver to v5 ([30740dc](https://github.com/xing/hops/commit/30740dc6bc34310254052cb2393bf4e900c42ba5))





# [13.0.0-alpha.0](https://github.com/xing/hops/compare/v12.0.0-rc99...v13.0.0-alpha.0) (2020-07-23)


Expand Down
Loading

0 comments on commit dde3c67

Please sign in to comment.