8000 Releases · riot/riot · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: riot/riot

v10.0.0-alpha.3

23 May 21:21
v10.0.0-alpha.3
ccb4ec1
Compare
Choose a tag to compare
v10.0.0-alpha.3 Pre-release
Pre-release
  • Fix #3021
  • Update attributes handling. Truthy and Falsy attributes will be rendered more consistently

v10.0.0-alpha.2

16 May 21:31
v10.0.0-alpha.2
13cc1b6
Compare
Choose a tag to compare
v10.0.0-alpha.2 Pre-release
Pre-release

v10.0.0-alpha.1

16 May 20:35
v10.0.0-alpha.1
56a8651
Compare
Choose a tag to compare
v10.0.0-alpha.1 Pre-release
Pre-release
  • Update compiler and dom bindings to fix #3023
  • Breaking Change tags root attributes will be no longer automatically rendered. See example below

With Riot.js < 10:

Component

<parent>
  <child class="colored" role={computed} />

  <script>
    export default { role: 'alert' }
  </script>
</parent>

Output

<parent>
  <child class="colored" role="alert" />
</parent>

With Riot.js >= 10:

<parent>
  <!-- you will need to render these props inside the child component by yourself -->
  <child class="colored" role={computed} />

  <script>
    export default { role: 'alert' }
  </script>
</parent>

Output

<parent>
  <child />
</parent>

To get the Riot.js < 10 output you will need to add the attributes manually into you <child> component for example:

<child class={props.class} role={props.role}>
   ...
</child>

v9.4.7

18 Apr 22:04
v9.4.7
a27e20b
Compare
Choose a tag to compare

v9.4.6

28 Feb 22:23
v9.4.6
c178812
Compare
Choose a tag to compare
  • Update stabilize the ref API

v9.4.5

14 Feb 21:49
v9.4.5
8c30057
Compare
Choose a tag to compare
  • Improve the types using the withTypes method #3046

v9.4.4

08 Nov 23:16
Compare
Choose a tag to compare

v9.4.3

18 Oct 21:32
Compare
Choose a tag to compare

v9.4.2

18 Oct 20:51
Compare
Choose a tag to compare
  • Fix #3025
  • Fix the e2e tests
  • Update documentation regarding contributions. The main branch will be used for development and releases

v9.4.1

11 Oct 21:03
Compare
Choose a tag to compare
  • Fix unmount DOM rendering in components without template #3025
0