prometheusresearch-archive / react-forms

Forms library for React.
1.16k stars 112 forks source link

Release a version for React 0.12.0 #62

Closed jsdf closed 8 years ago

jsdf commented 10 years ago

react-forms@0.6.3 seems to be compatible with react@0.12.0 but they can't be installed together due to react-forms peerDependency constraint.

Can you please publish a 0.6.4 version to npm to update the peerDependency constraint, as it is blocking us from starting to migrate our code to React 0.12.

pandark commented 9 years ago

+1

johanneslumpe commented 9 years ago

+1

Even though it's actually not 100% compatible. When using Reactify, you'll get the following error:

node_modules/react-forms/lib/Form.js: Lower case component names (component) are no longer supported in JSX: See http://fb.me/react-jsx-lower-case while parsing file: node_modules/react-forms/lib/Form.js
pandark commented 9 years ago

@johanneslumpe The pull request #64 addresses that issue…

mgan59 commented 9 years ago

:+1: starting with react 0.12 and was going to give this module a try

andreypopp commented 9 years ago

There's next branch which is React 0.12 ready but also has some API changes around schema.

On Thu Nov 13 2014 at 5:13:52 AM Morgan Craft notifications@github.com wrote:

[image: :+1:] starting with react 0.12 and was going to give this module a try

— Reply to this email directly or view it on GitHub https://github.com/prometheusresearch/react-forms/issues/62#issuecomment-62794536 .

ArnoBuschmann commented 9 years ago

+1

Would love to use it with React 0.12. Is there a plan when the 'next' branch will/could become an official release together with some documentation on the API changes around schema?

andreypopp commented 9 years ago

yes, next branch is merged into master and have updated docs (still incomplete though). Will be released after we validate new API on our apps.

OAGr commented 9 years ago

Is there a status on this? Bower is still complaining that the most recent version is 0.6.1

jackp commented 9 years ago

Would also love to use this, but having same dependency issue as mentioned above. Issue is solved by directly requiring master, but would be nice to be able to install from npm

seance commented 9 years ago

+1

kriswallsmith commented 9 years ago

For the next person stuck, this should get you by…

{
  "dependencies": {
    "react-forms": "git://github.com/prometheusresearch/react-forms.git"
  }
}
forestbelton commented 9 years ago

+1

ku-s-h commented 9 years ago

how stable is the 1.0.0-rc3 ?

ericdfields commented 9 years ago

@singhkushagra i can't even build it…

ku-s-h commented 9 years ago

Is there any timeline for the stable release ?

jgod commented 9 years ago

looking forward to this

blackbing commented 9 years ago

+1

iroy2000 commented 9 years ago

Looks like I open the same issue here

https://github.com/prometheusresearch/react-forms/issues/89

janmyler commented 9 years ago

It would be quite handy if there was a note in the README file, that the NPM version doesn't play well with React >=0.12.0 and that the linked documentation describes API which has been changed.

It took me some time to learn about the whole “old” API just to realize both mentioned things.

76

jsdf commented 9 years ago

if you want to use the old (0.6) API with React 0.12 you can try this fork: https://github.com/agworld/react-forms

blackbing commented 9 years ago

+1

blackbing commented 9 years ago

@jsdf thanks for your patch, it is really helpful on my project.