Skip to content

Releases: Meituan-Dianping/lyrebird

v0.13.3

10 Sep 08:54
b6e625f
Compare
Choose a tag to compare

Fix:
There is no content-length in headers

v0.13.2

28 Aug 07:25
cf0b920
Compare
Choose a tag to compare

New

  1. Custom config
    lyrebird -c your/config/file/path
    Then lyrebird will start with this custom config
    If this custom config did not have prop like mock.port, lyrebird will load default setting to set this prop
    e.g.
    your custom conf is:
    {
        "my-key": "my-value"
     }
    Lyrebird actually load config:
     {
          "mock.port": 9090,
          "mock.data":"./data",
          ...
          my-key": "my-value"
      }
    
  2. Template system for config file
    We import jinjia2 for config. Now you can use val current_dir in the config file, to set a file path
    like
    {
        "key":"{{current_dir}}/my/data/file"
    }
    
    Then lyrebird actually load a config:
    {
        ...
        "key":"/your/config/root/dir/my/data/file"
    }
    

v0.13.1

27 Aug 03:00
8230dd3
Compare
Choose a tag to compare

Fix

  • logger color formatter working in file handler

v0.13.0

27 Aug 02:27
02f9271
Compare
Choose a tag to compare

New

  • New command line
  • You can using a custom config file to start lyrebird

Fix

  • Inspector can't deselect current line but deselect the last one

v0.12.1

15 Aug 02:19
5c1d1cc
Compare
Choose a tag to compare
v0.12.1 (#22)

* Feature/docs deploy script and background server (#21)

* add travis-ci config for unit test

* Add vuepress build setting

* Use yarn for building

* update test case :test_mock_api

* background task service

* v0.12.1

v0.12.0

08 Aug 08:09
9ce21e0
Compare
Choose a tag to compare

New events bus

New

  • Event bus: keep latest message as channel's state

v0.11.0

06 Aug 02:44
e3a1259
Compare
Choose a tag to compare
  • Save selected flow into data group
  • Inspector search box

v0.10.5

03 Aug 07:30
02e6ebd
Compare
Choose a tag to compare
Merge pull request #10 from meituan/development

Merge from development