Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump riot from 3.13.2 to 4.2.0 #7193

Closed
wants to merge 1 commit into from

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jun 25, 2019

Bumps riot from 3.13.2 to 4.2.0.

Release notes

Sourced from riot's releases.

v4.2.0

  • Fix: attributes removal for numerical values #2711
  • Add: the \<template> tag to support html fragment rendering for each and if directives #2692
<!-- each + template -->
<dl>
  \<template each={ item in items }>
    <dt>{ item.title }</dt>
    <dd>{ item.description }</dd>
  </template>
</dl>
<!-- if + template -->
<div>
  \<template if={ meta }>
    <h1>{ meta.title }</h1>
    <h2>{ meta.subtitle }</h2>
  </template>
</div>
  • Add: typescript generics support for component definitions #2709
  • Add: improve rendering performance of custom looped components

v4.1.1

  • Add: the RiotComponentExport interface to simplify the components creation in typescript, for example:
import Child from './child.riot'
import {RiotComponentExport} from 'riot'

interface MyComponentInterface extends RiotComponentExport {
  onClick(event: MouseEvent): void
  clearMessage(): void
  state: {
    message: string
  }
}

function MyComponent(): MyComponentInterface {
  return {
    state: {
      message: 'hello'
    },
    onClick(event) {
      this.update({
        message: 'goodbye'
      })
    },
    clearMessage() {
</tr></table> ... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@vercel
Copy link

vercel bot commented Jun 25, 2019

This pull request is automatically deployed with Now.
To access deployments, click Details below or on the icon next to each push.

@damusix
Copy link

damusix commented Jun 26, 2019

#7101 (comment)

Riot has been upgraded to version 4, and it is not compatible with Riot 3. Lot of the dependencies currently in Storybook/Riot will not work with Riot 4. If you'd like to see an example of Riot4 with webpack, I have one in my boilerplate project. Check out how the dependencies are now different.

To add to this comment:

Please let me know if I can be of help.

@github-actions
Copy link
Contributor

github-actions bot commented Jun 26, 2019

Fails
🚫 PR is marked with "do not merge", "BREAKING CHANGE" labels.
🚫

Please choose only one of these labels: ["BREAKING CHANGE","dependencies:update"]

Generated by 🚫 dangerJS against 5293eb7

Bumps [riot](https://github.com/riot/riot) from 3.13.2 to 4.2.0.
- [Release notes](https://github.com/riot/riot/releases)
- [Commits](riot/riot@v3.13.2...v4.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview
Copy link
Contributor Author

Superseded by #7238.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/riot-4.2.0 branch July 1, 2019 10:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants