8000 Release v1.33.0 · likec4/likec4 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v1.33.0

Compare
Choose a tag to compare
@likec4-ci likec4-ci released this 25 Jun 09:01
· 55 commits to main since this release
6a00b16

🚀 Features

  • Markdown

    Strings with triple qoutes (""" markdown """ or ''' markdown ''') are now parsed as Markdown.
    This is the first step in adopting Markdown support, and it’s currently limited to descriptions only:

    model {
      mobile = application {
        description '''
          ### Multi-platform application
    
          [React Native](https://reactnative.dev)
        '''
      }
    
      web = application {
        description """
          ### Web Application
    
          > Provides services to customers through
          > the web interface.
    
          | checks     |     |
          | :--------- | :-- |
          | check 1    | ✅  |
          | check 2    | ⛔️  |
          | check 3    | ✅  |
        """
      }
    }

    Closes #1124

Bug Fixes

  • dsl: resilient parser for specification tags (ba9619b)
  • api: inherit deployed instances titles from model (5cc6ac5), closes #1527
  • layout: round font size values to prevent decimal pixel sizes in graphviz labels (199c024)
0