Skip to content

Releases: dmjio/miso

1.8.4

07 May 11:11
8f4e05a
Compare
Choose a tag to compare

Support building w/ new js backend.

1.8.3

09 Sep 22:10
8f651ae
Compare
Choose a tag to compare
  • Implemented workaround for GHC bug in 9.0.2 where hidden functions are still colliding with Prelude functions (e.g. elem)
  • Added Haskell favicon to https://haskell-miso.org
  • Indentation adjustments in JS files.
  • Async version bump in JS tests.
  • Support text-1.2.5

1.8.2

07 Apr 19:40
15886bd
Compare
Choose a tag to compare
  • Fix usage of tabs and spaces 94a384d
  • Fix parse view to not drop unclosed tags b691e8d
  • Add jsstring only flag 23119ee

1.8.1

21 Dec 00:21
7dacb11
Compare
Choose a tag to compare
  • Fixes bug in event delegator where events raised from a select element's onchange option wasn't handled appropriately.
  • Move simple exe to examples 9e394bd
  • TodoMVC CSS fix
  • Build system updates

1.8

13 Sep 07:13
0da0223
Compare
Choose a tag to compare
1.8
  • Added rawHtml combinator. Useful for converting raw HTML into virtual DOM.
  • Backend and frontend fully merged (@tysonzero)
  • styleInline combinator (@developandplay)
  • Pixel Card Wars (@smelc)
  • Delegate uses synchronous instead of asynchronous (@parthshah31)
  • Nix refactoring
  • GitHub CI
  • Hosted examples via nixops.

1.7.1

05 Jul 18:35
Compare
Choose a tag to compare
  • Allows for adding multiple classes together
view _ = div_ [ class_ "foo", class_ "bar" ] [ ]

Will be shown on the DOM as class="foo bar"

  • Bug fixes related to isomorphic rendering.

1.7

26 Jun 17:55
Compare
Choose a tag to compare
1.7
  • Added textRaw
    • style_ and script_ can now contain CSS and JS in body.
  • Add collapse sibling text nodes.
    • Solves the prerendering runtime failure problem.
    • Allows for consecutive text nodes to be present in a View a
  • Various jsaddle fixes.
  • Bug fixes to https://haskell-miso.org (regarding links)
  • Added LogLevel

1.6

07 Jun 01:14
Compare
Choose a tag to compare
1.6
  • Properly prerender img, br, hr, etc.
  • Update .gitignore
  • Add ref_
  • Update mouseenter defaults
  • Update nixpkgs infra.

1.5.2

17 May 20:24
f4cc27e
Compare
Choose a tag to compare
  • Fixes error where selectionStart (and others) cause type errors to be thrown when looked up on a DOM node from Safari.

1.5.1

24 Apr 20:38
035a0f7
Compare
Choose a tag to compare
  • Add special case for diffing properties of checked and value.
    • This fixes a problem where diffing ignores that fact the input field state is different than both the old and new models.
    • This is considered an edge case and only arises when both the old and new models are the exact same, yet a user has typed into an input or checked a check box.
    • Solves: #578