Skip to content

Commit 85a0869

Browse files
committed
v0.12.0
1 parent 42f3ece commit 85a0869

File tree

8 files changed

+35
-12
lines changed

8 files changed

+35
-12
lines changed

CHANGELOG.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [v0.12.0] - 2018-11-29
10+
11+
### Changed
12+
13+
* ⚠️ **[Breaking]** Changed the way that data is scoped
14+
* You can now specify `globalScope` next to a `questionId` in either field or conditional objects to change the base scope. By default the scope will be prefixed based on it's parent (such as an `array` or `section` type)
15+
* Using an polyfill for `React.Fragment` so now the library should work in React < 16
16+
17+
### Fixed
18+
19+
* Issue where `FormGenerator` and `GenField` were blocking context updates for components using the old context API (before `React.createContext()`) #36
20+
21+
### Added
22+
23+
* `consumeReduxFormContext()` now takes a second parameter to subscribe to select parts of the `_reduxForm` context. #36
24+
925
## [v0.12.0-rc.1] - 2018-11-6
1026

1127
### Fixed
@@ -28,13 +44,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2844

2945
* The `section` type can now accept a `questionId` in order to wrap it's children in a `<FormSection>`. This will prefix all it's childFields.
3046

47+
---
48+
3149
## [v0.11.0] - 2018-10-11
3250

3351
### Changed
3452

3553
* ⚠️ **[Breaking]** evalCondValid() now returns `true` if the value is `nil` or empty string #31
3654
* This should create more consistency in the usage of operators between `conditionalValid` and other conditional props
3755

56+
---
57+
3858
## [v0.10.0] - 2018-08-28
3959

4060
### Changed
@@ -43,6 +63,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4363
* This change effects the following conditional operators:
4464
* `lessThan`, `greaterThan`, `lessThanEqual`, `greaterThanEqual`
4565

66+
---
67+
4668
## [v0.9.12] - 2018-07-16
4769

4870
### Added
@@ -417,8 +439,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
417439

418440
* first release
419441

420-
[Unreleased]: https://github.com/isobar-us/redux-form-gen/compare/v0.12.0-rc.1...HEAD
442+
[Unreleased]: https://github.com/isobar-us/redux-form-gen/compare/v0.12.0...HEAD
421443

444+
[v0.12.0]: https://github.com/isobar-us/redux-form-gen/compare/v0.11.0...v0.12.0
422445
[v0.12.0-rc.1]: https://github.com/isobar-us/redux-form-gen/compare/v0.12.0-rc.0...v0.12.0-rc.1
423446
[v0.12.0-rc.0]: https://github.com/isobar-us/redux-form-gen/compare/v0.11.0...v0.12.0-rc.0
424447

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ npm install --save @isobar-us/redux-form-gen
3838
### 🏖 Code Sandboxes 🏖
3939

4040
<!-- EXAMPLE-LINKS-LIST:START -->
41-
* [Basic Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0-rc.1/examples/basic)
42-
* [All Fields Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0-rc.1/examples/all-fields)
43-
* [Conditional Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0-rc.1/examples/conditional)
44-
* [Wizard Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0-rc.1/examples/wizard)
45-
* [Reactstrap Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0-rc.1/examples/reactstrap) (uses `customFieldTypes`)
41+
* [Basic Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0/examples/basic)
42+
* [All Fields Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0/examples/all-fields)
43+
* [Conditional Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0/examples/conditional)
44+
* [Wizard Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0/examples/wizard)
45+
* [Reactstrap Example](https://codesandbox.io/s/github/isobar-us/redux-form-gen/tree/v0.12.0/examples/reactstrap) (uses `customFieldTypes`)
4646
<!-- EXAMPLE-LINKS-LIST:END -->
4747

4848
### Simple Usage

examples/all-fields/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@isobar-us/redux-form-gen": "0.12.0-rc.1",
6+
"@isobar-us/redux-form-gen": "0.12.0",
77
"react": "16.2.0",
88
"react-dom": "16.2.0",
99
"react-redux": "5.0.6",

examples/basic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@isobar-us/redux-form-gen": "0.12.0-rc.1",
6+
"@isobar-us/redux-form-gen": "0.12.0",
77
"react": "16.2.0",
88
"react-dom": "16.2.0",
99
"react-redux": "5.0.6",

examples/conditional/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@isobar-us/redux-form-gen": "0.12.0-rc.1",
6+
"@isobar-us/redux-form-gen": "0.12.0",
77
"react": "16.2.0",
88
"react-dom": "16.2.0",
99
"react-redux": "5.0.6",

examples/reactstrap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@isobar-us/redux-form-gen": "0.12.0-rc.1",
6+
"@isobar-us/redux-form-gen": "0.12.0",
77
"bootstrap": "3.3.7",
88
"react": "16.2.0",
99
"react-dom": "16.2.0",

examples/wizard/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@isobar-us/redux-form-gen": "0.12.0-rc.1",
6+
"@isobar-us/redux-form-gen": "0.12.0",
77
"react": "16.2.0",
88
"react-dom": "16.2.0",
99
"react-redux": "5.0.6",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@isobar-us/redux-form-gen",
3-
"version": "0.12.0-rc.1",
3+
"version": "0.12.0",
44
"description": "A pluggable form generator for redux-form",
55
"main": "./lib/index.js",
66
"files": [

0 commit comments

Comments
 (0)