Skip to content

Commit

Permalink
chore: release v12.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Kluge committed Oct 29, 2019
1 parent 787c9d3 commit c534f0d
Show file tree
Hide file tree
Showing 24 changed files with 150 additions and 24 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Bug Fixes

* **graphql:** add graphqlUri to browser whitelist ([e5279b8](https://github.com/xing/hops/commit/e5279b8c9717d77ba1b725a3148b0eadb90969ae))


### Features

* **apollo:** deprecate config value "shouldPrefetchOnServer" ([2758f43](https://github.com/xing/hops/commit/2758f431bac85c77a529ba6e3a2ac37591d7f017))
* **apollo:** introduce package ([f8892ff](https://github.com/xing/hops/commit/f8892ff01072168a7c76300ff6c2669c5cad9c6e))
* **apollo-mock-server:** introduce package ([b35f618](https://github.com/xing/hops/commit/b35f6181166d7a7146e15846a808319c801ee21d))
* **hops:** add typings for config & server-data context hooks ([8677c9e](https://github.com/xing/hops/commit/8677c9e2df68bd1dd9ef7bef224000674ae24dff))
* **hops:** re-export config & server-data hooks from hops-react ([578407e](https://github.com/xing/hops/commit/578407e274cf07f6055cde944c0446daecf4b742))
* **react:** provide hooks for config & server-data contexts ([6bfaf55](https://github.com/xing/hops/commit/6bfaf55b72fbc12f86f1cd3f55420e8f6c19f678))
* **redux:** deprecate config value "shouldPrefetchOnServer" ([2fc424e](https://github.com/xing/hops/commit/2fc424eb3b22b6003e9a8112a8db9d959ad4fd8b))





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


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": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"registry": "https://registry.npmjs.org/",
"command": {
"version": {
Expand Down
11 changes: 11 additions & 0 deletions packages/apollo-mock-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Features

* **apollo-mock-server:** introduce package ([b35f618](https://github.com/xing/hops/commit/b35f6181166d7a7146e15846a808319c801ee21d))
2 changes: 1 addition & 1 deletion 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": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "Apollo based mock server for Hops",
"keywords": [
"hops",
Expand Down
11 changes: 11 additions & 0 deletions packages/graphql/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Bug Fixes

* **graphql:** add graphqlUri to browser whitelist ([e5279b8](https://github.com/xing/hops/commit/e5279b8c9717d77ba1b725a3148b0eadb90969ae))





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


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": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"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": "^12.0.0-alpha.3",
"hops-react-apollo": "^12.0.0-alpha.3"
"hops-apollo-mock-server": "^12.0.0-alpha.4",
"hops-react-apollo": "^12.0.0-alpha.4"
},
"peerDependencies": {
"graphql-tag": "^2.10.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/hops/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Features

* **hops:** add typings for config & server-data context hooks ([8677c9e](https://github.com/xing/hops/commit/8677c9e2df68bd1dd9ef7bef224000674ae24dff))
* **hops:** re-export config & server-data hooks from hops-react ([578407e](https://github.com/xing/hops/commit/578407e274cf07f6055cde944c0446daecf4b742))





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/hops/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "Hops main Package to build and run Hops applications",
"keywords": [
"hops",
Expand Down Expand Up @@ -32,7 +32,7 @@
"@untool/webpack": "^2.0.0-alpha.4",
"@untool/yargs": "^2.0.0-alpha.4",
"hops-mixin": "^12.0.0-alpha.3",
"hops-react": "^12.0.0-alpha.3",
"hops-react": "^12.0.0-alpha.4",
"webpack-bundle-analyzer": "^3.5.2"
},
"peerDependencies": {
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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

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





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


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": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "Jest preset to work with Hops powered projects",
"keywords": [
"hops",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/preset-react": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"hops": "^12.0.0-alpha.3",
"hops": "^12.0.0-alpha.4",
"identity-obj-proxy": "^3.0.0",
"jest-config": "^24.9.0",
"regenerator-runtime": "^0.13.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-apollo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

**Note:** Version bump only for package hops-react-apollo
2 changes: 1 addition & 1 deletion packages/react-apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-react-apollo",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "React and GraphQL implementation for Hops",
"keywords": [
"hops",
Expand Down
11 changes: 11 additions & 0 deletions packages/react/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Features

* **react:** provide hooks for config & server-data contexts ([6bfaf55](https://github.com/xing/hops/commit/6bfaf55b72fbc12f86f1cd3f55420e8f6c19f678))





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-react",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "React and ReactRouter setup for Hops",
"keywords": [
"hops",
Expand Down
11 changes: 11 additions & 0 deletions packages/redux/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)


### Features

* **redux:** deprecate config value "shouldPrefetchOnServer" ([2fc424e](https://github.com/xing/hops/commit/2fc424eb3b22b6003e9a8112a8db9d959ad4fd8b))





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/redux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-redux",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"description": "React and Redux implementation for Hops",
"keywords": [
"hops",
Expand Down
8 changes: 8 additions & 0 deletions packages/spec/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

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





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/spec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-spec",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"private": true,
"files": [],
"eslintConfig": {
Expand Down
8 changes: 8 additions & 0 deletions packages/template-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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

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





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
8 changes: 4 additions & 4 deletions packages/template-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-template-graphql",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"main": "src/app.js",
"license": "MIT",
"hops": {
Expand All @@ -17,8 +17,8 @@
},
"dependencies": {
"graphql-tag": "^2.10.1",
"hops": "^12.0.0-alpha.3",
"hops-graphql": "^12.0.0-alpha.3",
"hops": "^12.0.0-alpha.4",
"hops-graphql": "^12.0.0-alpha.4",
"hops-postcss": "^12.0.0-alpha.3",
"prop-types": "^15.7.2",
"react": "^16.10.2",
Expand All @@ -29,7 +29,7 @@
},
"devDependencies": {
"jest": "^24.9.0",
"jest-preset-hops": "^12.0.0-alpha.3",
"jest-preset-hops": "^12.0.0-alpha.4",
"react-test-renderer": "^16.10.2"
},
"jest": {
Expand Down
8 changes: 8 additions & 0 deletions packages/template-react/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

**Note:** Version bump only for package hops-template-react





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
6 changes: 3 additions & 3 deletions packages/template-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-template-react",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"main": "src/app.js",
"license": "MIT",
"hops": {
Expand All @@ -16,7 +16,7 @@
"serve": "hops serve"
},
"dependencies": {
"hops": "^12.0.0-alpha.3",
"hops": "^12.0.0-alpha.4",
"hops-postcss": "^12.0.0-alpha.3",
"prop-types": "^15.7.2",
"react": "^16.10.2",
Expand All @@ -26,7 +26,7 @@
},
"devDependencies": {
"jest": "^24.9.0",
"jest-preset-hops": "^12.0.0-alpha.3",
"jest-preset-hops": "^12.0.0-alpha.4",
"react-test-renderer": "^16.10.2"
},
"jest": {
Expand Down
8 changes: 8 additions & 0 deletions packages/template-redux/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.

# [12.0.0-alpha.4](https://github.com/xing/hops/compare/v12.0.0-alpha.3...v12.0.0-alpha.4) (2019-10-29)

**Note:** Version bump only for package hops-template-redux





# [12.0.0-alpha.3](https://github.com/xing/hops/compare/v11.9.1...v12.0.0-alpha.3) (2019-10-28)


Expand Down
8 changes: 4 additions & 4 deletions packages/template-redux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hops-template-redux",
"version": "12.0.0-alpha.3",
"version": "12.0.0-alpha.4",
"main": "src/app.js",
"license": "MIT",
"hops": {
Expand All @@ -16,9 +16,9 @@
"serve": "hops serve"
},
"dependencies": {
"hops": "^12.0.0-alpha.3",
"hops": "^12.0.0-alpha.4",
"hops-postcss": "^12.0.0-alpha.3",
"hops-redux": "^12.0.0-alpha.3",
"hops-redux": "^12.0.0-alpha.4",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
Expand All @@ -30,7 +30,7 @@
},
"devDependencies": {
"jest": "^24.9.0",
"jest-preset-hops": "^12.0.0-alpha.3",
"jest-preset-hops": "^12.0.0-alpha.4",
"react-test-renderer": "^16.10.2"
},
"jest": {
Expand Down

0 comments on commit c534f0d

Please sign in to comment.