rum

Simple, decomplected, isomorphic HTML UI library for Clojure and ClojureScript | 0.12.8 https://github.com/tonsky/rum/blob/gh-pages/CHANGELOG.md#0128
2020-04-15T11:52:54.005300Z

Release candidate with a bunch of fixes and new stuff https://github.com/tonsky/rum/blob/gh-pages/CHANGELOG.md#0115-snapshot Give it a try on your projects and report any issues in the repo 0.11.5-SNAPSHOT

serioga 2020-04-15T12:11:23.006Z

can it be released in SNAPSHOT?

2020-04-15T12:14:30.007600Z

@serioga I should ask Nikita to push a release to Clojars, but git deps is easier for me, since it doesn't require anything. Is there a way to test things locally for you?

serioga 2020-04-15T12:18:32.008700Z

not sure if I'm ready to do something harder than changing version in project.clj 🙂

2020-04-15T12:19:25.009Z

yeah that's fine

2020-04-15T13:12:22.009400Z

@serioga 0.11.5-SNAPSHOT

serioga 2020-04-15T13:25:41.010700Z

@roman01la why react 16.8.6-0? I use 16.13.0-0 without problem.

2020-04-15T13:26:39.011300Z

we are gonna move gradually

serioga 2020-04-15T13:27:38.012200Z

@roman01la should I try snapshot with recent libs as well?

2020-04-15T13:28:47.012800Z

Ideally you'd use 16.8.6-0, but any other newer version should be fine I think

serioga 2020-04-15T13:30:38.013800Z

I see warnings

Warning: componentWillMount has been renamed, and is not recommended for use. See <https://fb.me/react-unsafe-component-lifecycles> for details.

* Move code with side effects to componentDidMount, and set initial state in the constructor.
* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: player-search react-dom.inc.js:82:32
Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See <https://fb.me/react-unsafe-component-lifecycles> for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: <https://fb.me/react-derived-state>
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: player-search, wrapped-input
is it solvable?

2020-04-15T13:32:33.014200Z

is that on 16.13.0-0?

serioga 2020-04-15T13:33:41.014700Z

> is that on 16.13.0-0? no. With your dependencies.

serioga 2020-04-15T13:34:30.015200Z

I see these warnings since long time ago

2020-04-15T13:34:38.015400Z

yeah, those are deprecations

2020-04-15T13:34:46.015600Z

not a problem for now

serioga 2020-04-15T13:35:11.016Z

so no solution for this deprecations at the moment?

2020-04-15T13:35:22.016200Z

no, not now

2020-04-15T13:38:36.016900Z

Is that related to JVM SSR?

serioga 2020-04-15T13:42:06.018Z

> Is that related to JVM SSR? yes, I generate code on server and hydrate. sometimes there are differences.