All Versions
18
Latest Version
Avg Release Cycle
49 days
Latest Release
1384 days ago

Changelog History
Page 1

  • v1.7.1 Changes

    July 05, 2020
    • ๐Ÿ‘ 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.
  • v1.7 Changes

    June 26, 2020
    • โž• 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
  • v1.6 Changes

    June 07, 2020
    • Properly prerender img, br, hr, etc.
    • โšก๏ธ Update .gitignore
    • โž• Add ref_
    • โšก๏ธ Update mouseenter defaults
    • โšก๏ธ Update nixpkgs infra.
  • v1.5.2 Changes

    May 17, 2020
    • ๐Ÿ›  Fixes error where selectionStart (and others) cause type errors to be thrown when looked up on a DOM node from Safari.
  • v1.5.1 Changes

    April 24, 2020
    • โž• 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
  • v1.5 Changes

    March 25, 2020
    • Factored out fromMisoString into it's own class FromMisoString (major breaking change)
    • ๐ŸŽ Performance improvements, dead code elimination in js code.
    • โž• Additional documentation
    • โšก๏ธ Websocket API updates.
    • โœ… Test deps. bump.
  • v1.4 Changes

    November 16, 2019
    • ๐Ÿ›  Fixed issues related to keys patch
    • ๐Ÿ“š Documentation updates
    • โž• Add ghcjs-dom to miso's nixpkgs
  • v1.3 Changes

    October 22, 2019
    • โšก๏ธ Update sample app hashes
    • โž• Added consoleLogJSVal, changed consoleLog signature.
    • โž• Add sample-app-jsaddle w/ documentation
    • โž• Add Transition README.md
    • hpack fix for GHCJS
    • โž• Add new cachix cache miso-haskell.cachix.com
    • โž• Add onBeforeDestroyed
    • ๐Ÿ›  isomorphic.js bugfix.
  • v1.2 Changes

    August 01, 2019
    • โž• Add bugfix + test for keys patch dealing with prepending keys.
  • v1.1.0.0 Changes

    July 22, 2019
    • โž• Adds jsaddle-wkwebview and the ability to cross-compile to ARM
    • ๐Ÿ”จ Refactors examples into their own cabal package.
    • ๐Ÿ‘ท Travis CI support
    • ๐ŸŽ‰ Initialize empty window when no DOM present.