Skip to content

Releases: dmjio/miso

1.8.7

11 Feb 01:49
4e88347
Compare
Choose a tag to compare

What's Changed

  • Use javascript_HOST_ARCH over ghcjs_HOST_OS by @dmjio in #760
  • Updated GC settings on server

Full Changelog: 1.8.6...1.8.7

1.8.6

10 Feb 01:07
c313836
Compare
Choose a tag to compare
  • Hides the implicit show export from Data.Text in Miso.String
  • Merges new syntax for GHC JS, preserving GHCJS backwards compatibility

What's Changed

  • Fix build with text 2.1.2 by @georgefst in #752
  • Add robots.txt to haskell-miso.org by @dmjio in #753
  • Add Internals.md documentation. by @dmjio in #755
  • Hide show re-exports on text > 2.1.2 in Miso.String by @dmjio in #756
  • New syntax support, backwards compat cpp for ghcjs by @dmjio in #757
  • Bump to 1.8.6 by @dmjio in #758

New Contributors

Full Changelog: 1.8.5...1.8.6

1.8.5

31 Oct 18:26
Compare
Choose a tag to compare

Expose global sink as sink

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