Skip to content

v25

Compare
Choose a tag to compare
@hatemhosny hatemhosny released this 01 Mar 21:28
· 224 commits to develop since this release
12e6a1a

v25 (2024-03-01)

Most notable changes in this release:

  • Adds support for JSR, the new JavaScript package registry, using esm.sh. Use the prefix jsr: in imports.

    Example:

    import { yassify } from 'jsr:@kwhinnery/yassify';
    
    console.log(yassify('Hello, World!'));
  • Adds BBCode language support.

  • Changes polyfill CDN to https://cdnjs.cloudflare.com/polyfill/. See #519 (Thanks @gapmiss).

  • Adds a noscript block to notify users that JavaScript is required. (Thanks @saidbakr)

  • Adds a temporary workaround for CSS nesting in Monaco editor. See #515 (Thanks @gapmiss).

Bug Fixes

  • Editor: monaco editor css nesting workaround (c932c29)
  • Templates: fix preact template imports (efbab86)

Features

  • App: add noscript block (e455240)
  • App: change polyfill CDN (1606b3f), closes #519
  • compilers: add support for BBCode (2f15b95)
  • Modules: add support for jsr package registry (e574ec3)