Skip to content

Commit

Permalink
v0.12.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmv437 committed Oct 17, 2018
1 parent 780babc commit 8a7c489
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [v0.12.0-rc.0] - 2018-10-17

### Changed

* ⚠️ **[Breaking]** Changed the way that data is scoped
* 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)
* Using an polyfill for `React.Fragment` so now the library should work in React < 16

### Added

* 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.

## [v0.11.0] - 2018-10-11

### Changed
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ npm install --save @isobar-us/redux-form-gen
### 🏖 Code Sandboxes 🏖

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

### Simple Usage
Expand Down
2 changes: 1 addition & 1 deletion examples/all-fields/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"dependencies": {
"@isobar-us/redux-form-gen": "0.11.0",
"@isobar-us/redux-form-gen": "0.12.0-rc.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"dependencies": {
"@isobar-us/redux-form-gen": "0.11.0",
"@isobar-us/redux-form-gen": "0.12.0-rc.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
Expand Down
2 changes: 1 addition & 1 deletion examples/conditional/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"dependencies": {
"@isobar-us/redux-form-gen": "0.11.0",
"@isobar-us/redux-form-gen": "0.12.0-rc.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
Expand Down
2 changes: 1 addition & 1 deletion examples/reactstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"dependencies": {
"@isobar-us/redux-form-gen": "0.11.0",
"@isobar-us/redux-form-gen": "0.12.0-rc.0",
"bootstrap": "3.3.7",
"react": "16.2.0",
"react-dom": "16.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/wizard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"dependencies": {
"@isobar-us/redux-form-gen": "0.11.0",
"@isobar-us/redux-form-gen": "0.12.0-rc.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@isobar-us/redux-form-gen",
"version": "0.11.0",
"version": "0.12.0-rc.0",
"description": "A pluggable form generator for redux-form",
"main": "./lib/index.js",
"files": [
Expand Down

0 comments on commit 8a7c489

Please sign in to comment.