Skip to content

Commit 08b39a6

Browse files
Publish
- @respond-framework/boilerplate@0.1.1-test.3 - integration-tests@1.0.1-test.3 - @respond-framework/react@0.1.1-test.2 - @respond-framework/rudy@0.1.1-test.3
1 parent cb45152 commit 08b39a6

8 files changed

Lines changed: 89 additions & 7 deletions

File tree

packages/boilerplate/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.1.1-test.3](https://github.com/respond-framework/rudy/compare/@respond-framework/boilerplate@0.1.1-test.2...@respond-framework/boilerplate@0.1.1-test.3) (2019-06-07)
7+
8+
9+
### Features
10+
11+
* add compatibility with react-redux 6+ ([#33](https://github.com/respond-framework/rudy/issues/33)) ([cb45152](https://github.com/respond-framework/rudy/commit/cb45152))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* The object returned from createRouter now contains a key `api` which contains `routes`, `ctx` and such things. Previously they were in the root object.
17+
* The `link` package has been renamed to `react`.
18+
* The `Link` component now must be rendered as a descendant of the new `RudyProvider`.
19+
* The core no longer monkey patches redux `getState` to have a key `api` with the rudy API.
20+
21+
22+
23+
24+
625
## [0.1.1-test.2](https://github.com/respond-framework/rudy/compare/@respond-framework/boilerplate@0.1.1-test.1...@respond-framework/boilerplate@0.1.1-test.2) (2019-06-06)
726

827

packages/boilerplate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@respond-framework/boilerplate",
33
"description": "Universal Rudy Demo",
4-
"version": "0.1.1-test.2",
4+
"version": "0.1.1-test.3",
55
"main": "server/index.js",
66
"author": "James Gillmore <james@faceyspacey.com>",
77
"license": "MIT",
@@ -22,8 +22,8 @@
2222
},
2323
"dependencies": {
2424
"@babel/polyfill": "^7.4.4",
25-
"@respond-framework/react": "^0.1.1-test.1",
26-
"@respond-framework/rudy": "^0.1.1-test.2",
25+
"@respond-framework/react": "^0.1.1-test.2",
26+
"@respond-framework/rudy": "^0.1.1-test.3",
2727
"express": "^4.15.2",
2828
"react": "^16.8.0",
2929
"react-dom": "^16.8.0",

packages/integration-tests/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.0.1-test.3](https://github.com/respond-framework/rudy/tree/master/packages/integration-tests/compare/integration-tests@1.0.1-test.2...integration-tests@1.0.1-test.3) (2019-06-07)
7+
8+
9+
### Features
10+
11+
* add compatibility with react-redux 6+ ([#33](https://github.com/respond-framework/rudy/tree/master/packages/integration-tests/issues/33)) ([cb45152](https://github.com/respond-framework/rudy/tree/master/packages/integration-tests/commit/cb45152))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* The object returned from createRouter now contains a key `api` which contains `routes`, `ctx` and such things. Previously they were in the root object.
17+
* The `link` package has been renamed to `react`.
18+
* The `Link` component now must be rendered as a descendant of the new `RudyProvider`.
19+
* The core no longer monkey patches redux `getState` to have a key `api` with the rudy API.
20+
21+
22+
23+
24+
625
## [1.0.1-test.2](https://github.com/respond-framework/rudy/tree/master/packages/integration-tests/compare/integration-tests@1.0.1-test.1...integration-tests@1.0.1-test.2) (2019-06-06)
726

827
**Note:** Version bump only for package integration-tests

packages/integration-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "integration-tests",
3-
"version": "1.0.1-test.2",
3+
"version": "1.0.1-test.3",
44
"description": "Integration tests for the respond framework",
55
"main": "index.js",
66
"repository": "https://github.com/respond-framework/rudy/tree/master/packages/integration-tests",
@@ -15,7 +15,7 @@
1515
"lint": "eslint --config ../../.eslintrc.js --ignore-path ../../.eslintignore . || true"
1616
},
1717
"dependencies": {
18-
"@respond-framework/rudy": "^0.1.1-test.2",
18+
"@respond-framework/rudy": "^0.1.1-test.3",
1919
"react": "^16.4.2",
2020
"react-redux": "^5.0.7",
2121
"react-test-renderer": "^16.4.2",

packages/react/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 0.1.1-test.2 (2019-06-07)
7+
8+
9+
### Features
10+
11+
* add compatibility with react-redux 6+ ([#33](https://github.com/respond-framework/rudy/tree/master/packages/react/issues/33)) ([cb45152](https://github.com/respond-framework/rudy/tree/master/packages/react/commit/cb45152))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* The object returned from createRouter now contains a key `api` which contains `routes`, `ctx` and such things. Previously they were in the root object.
17+
* The `link` package has been renamed to `react`.
18+
* The `Link` component now must be rendered as a descendant of the new `RudyProvider`.
19+
* The core no longer monkey patches redux `getState` to have a key `api` with the rudy API.
20+
21+
22+
23+
24+
625
## 0.1.1-test.1 (2019-04-15)
726

827
**Note:** Version bump only for package @respond-framework/react

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@respond-framework/react",
3-
"version": "0.1.1-test.1",
3+
"version": "0.1.1-test.2",
44
"description": "React component to create links which dispatch rudy routing actions",
55
"main": "cjs/index.js",
66
"module": "es/index.js",

packages/rudy/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.1.1-test.3](https://github.com/respond-framework/rudy/tree/master/packages/rudy/compare/@respond-framework/rudy@0.1.1-test.2...@respond-framework/rudy@0.1.1-test.3) (2019-06-07)
7+
8+
9+
### Build System
10+
11+
* add ability to publish to git instead of NPM ([#34](https://github.com/respond-framework/rudy/tree/master/packages/rudy/issues/34)) ([95e59e0](https://github.com/respond-framework/rudy/tree/master/packages/rudy/commit/95e59e0))
12+
13+
14+
### Features
15+
16+
* add compatibility with react-redux 6+ ([#33](https://github.com/respond-framework/rudy/tree/master/packages/rudy/issues/33)) ([cb45152](https://github.com/respond-framework/rudy/tree/master/packages/rudy/commit/cb45152))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* The object returned from createRouter now contains a key `api` which contains `routes`, `ctx` and such things. Previously they were in the root object.
22+
* The `link` package has been renamed to `react`.
23+
* The `Link` component now must be rendered as a descendant of the new `RudyProvider`.
24+
* The core no longer monkey patches redux `getState` to have a key `api` with the rudy API.
25+
* Remove UMD builds
26+
27+
28+
29+
30+
631
## [0.1.1-test.2](https://github.com/respond-framework/rudy/tree/master/packages/rudy/compare/@respond-framework/rudy@0.1.1-test.1...@respond-framework/rudy@0.1.1-test.2) (2019-06-06)
732

833

packages/rudy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@respond-framework/rudy",
3-
"version": "0.1.1-test.2",
3+
"version": "0.1.1-test.3",
44
"description": "think of your app in states not routes (and, yes, while keeping the address bar in sync)",
55
"main": "dist/index.js",
66
"module": "es/index.js",

0 commit comments

Comments
 (0)