Update dependency riot to v6 - autoclosed #11
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^3.13.2
->^6.0.0
Release Notes
riot/riot
v6.1.2
Compare Source
v6.1.1
Compare Source
v6.1.0
Compare Source
v6.0.4
Compare Source
v6.0.3
Compare Source
@riotjs/dom-bindings
types adding better typescript supportv6.0.2
Compare Source
v6.0.1
Compare Source
@riotjs/compiler
improving the typescript support for type aliases like export type ComponentInterface = RiotComponent<MyComponentProps, MyComponentState>v6.0.0
Compare Source
slots
https://github.com/riot/riot/issues/2920If you are not a typescript user this release doesn't introduce any braking change. If you are a typescript user you can start writing Riot.js components as follows
Many thanks to https://github.com/kachurun for his help on this major release
v5.4.5
Compare Source
v5.4.4
Compare Source
v5.4.3
Compare Source
v5.4.2
Compare Source
mount
andunmount
type declarations https://github.com/riot/riot/pull/2909 @kachurunv5.4.1
Compare Source
v5.4.0
Compare Source
acorn
javascript parser with the (bigger but more modern)@babel/parser
<script>
tagsNotice:
Riot.js will not type check your components scripts nor transpile them. This version allows you to use the
typescript
syntax without forcing the use of a typescript preprocessor, but type checking and transpilation should be handled with tools likebabel
orts-loader
You can check the new compiler here with the following demo component:
v5.3.3
Compare Source
v5.3.2
Compare Source
v5.3.1
Compare Source
v5.3.0
Compare Source
Now you can recursively render tags without having to register them globally
v5.2.0
Compare Source
Some liked more the old RIot.js syntax so you can now write components also as follows
v5.1.4
Compare Source
<template>
fragments https://github.com/riot/riot/issues/2892v5.1.3
Compare Source
v5.1.2
Compare Source
master
->main
if
oreach
directivesv5.1.1
Compare Source
v5.1.0
Compare Source
<template>
slot tags https://github.com/riot/riot/issues/2888console
methods in expressions: Before{window.console.log('hello')}
-> After{console.log('hello')}
v5.0.0
Compare Source
This release is completely backward compatible, make sure to update the
@riotjs/compiler@5.0.0
along withriot@5.0.0
. All the Riot.js echosystem tools should keep working as expected without needing major release updates.Changelog
window
properties breaking changeold
{ location.href }
new{ window.location.href }
v4.14.0
Compare Source
v4.13.6
Compare Source
v4.13.5
Compare Source
v4.13.4
Compare Source
v4.13.3
Compare Source
v4.13.2
Compare Source
v4.13.1
Compare Source
v4.13.0
Compare Source
v4.12.4
Compare Source
v4.12.3
Compare Source
v4.12.2
Compare Source
v4.12.1
Compare Source
v4.12.0
Compare Source
v4.11.1
Compare Source
v4.11.0
Compare Source
v4.10.1
Compare Source
props
objectv4.10.0
Compare Source
v4.9.3
Compare Source
DOMBindings
v4.9.2
Compare Source
v4.9.1
Compare Source
v4.9.0
Compare Source
import()
expressions, improving the interoperability with @riotjs/lazycompiler
key to theriot+compiler
bundle. The Riot.js compiler API is now also available from your browserv4.8.9
Compare Source
riot.component
parentScope
parameterv4.8.8
Compare Source
parentScope
to theriot.component
methodv4.8.7
Compare Source
v4.8.6
Compare Source
v4.8.5
Compare Source
v4.8.4
Compare Source
props
only in themount
andcomponent
callsthis.props
components attribute notwritable
norenumerable
v4.8.3
Compare Source
v4.8.2
Compare Source
<p {...{myAttribute}}>
v4.8.1
Compare Source
v4.8.0
Compare Source
@riotjs/dom-bindings
riot.pure
adding more granular control over the components renderingv4.7.2
Compare Source
v4.7.1
Compare Source
v4.7.0
Compare Source
meta
parameter to thecomponent
function to injectslots
andattributes
v4.6.6
Compare Source
v4.6.5
Compare Source
v4.6.4
Compare Source
v4.6.3
Compare Source
v4.6.2
Compare Source
v4.6.1
Compare Source
<template>
tags containing<slot>
text nodesv4.6.0
Compare Source
<template>
tags<slot>
attributes for example:Provider
Consumer
v4.5.1
Compare Source
v4.5.0
Compare Source
v4.4.1
Compare Source
v4.4.0
Compare Source
riot.compile
riot.compileFromUrl
for examplev4.3.9
Compare Source
mount
definition https://github.com/riot/riot/pull/2749v4.3.8
Compare Source
v4.3.7
Compare Source
@riotjs/compiler
fixing the following issuesv4.3.6
Compare Source
new
keyword https://github.com/riot/riot/issues/2737<progress>
tags and on non form elements https://github.com/riot/compiler/issues/122v4.3.5
Compare Source
p { content: '\263c'; }
v4.3.4
Compare Source
v4.3.3
Compare Source
v4.3.2
Compare Source
v4.3.1
Compare Source
v4.3.0
Compare Source
keepRootElement
parameter to theriot.unmount
method https://github.com/riot/riot/pull/2721v4.2.0
Compare Source
<template>
tag to support html fragment rendering foreach
andif
directives https://github.com/riot/riot/issues/2692v4.1.1
Compare Source
v4.1.0
Compare Source
v4.0.8
Compare Source
v4.0.7
Compare Source
riot+compiler.min.js
broken bybabel-minify
, I will use terser instead. https://github.com/riot/riot/issues/2703v4.0.6
Compare Source
value
attributes get passed down to the children tagsv4.0.5
Compare Source
Fix spread parsing issue https://github.com/riot/riot/issues/2700
v4.0.4
Compare Source
v4.0.3
Compare Source
v4.0.2
Compare Source
v4.0.1
Compare Source
v4.0.0
Compare Source
A complete rewrite of the framework.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.