Skip to content

Releases: morsdyce/mimic

v1.2.0

12 Feb 20:42
Compare
Choose a tag to compare

Auto record mode

Now you can automatically record and mock every request that goes out in your browser.

Improved console output

You can see a quicker, more compact view of your mocked requests from Mimic

Changes

  • Feature (scenarios): Add confirmation modal when removing a scenario
  • Feature (Interceptor): Add auto recording of requests
  • Feature (request history): reverse requests list so the latest requests are shown on top
  • Feature (console): improve console output to better show the currently mocked request
  • Feature (Request History): Show requests by type (all, error, mocked, unmocked)
  • Feature (mock status codes): Add ability to add custom http status codes
  • Fix (interceptor): delay requests until data from local storage is fully loaded
  • Fix (web worker): Fix web worker not correctly mocking requests

Thanks to all the people who made this release happen.
@ilyagelman @iddan @liorpr

v1.1.2

23 Jan 17:59
Compare
Choose a tag to compare

React Native support

We published support for react native. you can read more about setting it up here

Changes

  • fix (react-native): Fix default options for remote connections
  • feat(add scenario): Add ability to create a new scenario by pressing enter in new scenario dialog
  • fix(Import): Fix mocked request overriding when importing a scenario with new mocks
  • feat(Mock Editing): Add ability to give a name to a mock
  • feat(Mock editing): Allow to duplicate a mocked request

V1.1.0

12 Jan 18:16
Compare
Choose a tag to compare

This release introduces support for mocking requests in react native.

More info on how to use Mimic with react native will be released soon.

V1.0.3

29 Oct 19:42
Compare
Choose a tag to compare

New Features

  • Add support for web workers (#142)
  • Add ability to prettify exports in the API (#143)
  • Add new export dialog with ability to prettify exports and select specific mocks or scenarios (#143)

Bug fixes

  • fix(export): Remove an incorrect check of the content type to attempt parsing request parameters (#146)
  • Streamline the npm run test:integration command (#147)

General

  • Tests: Add Interceptor E2E tests (#147)
  • Added API Documentation to the website

v0.3.4

12 Sep 20:49
Compare
Choose a tag to compare

Bugfix: exporting a mock with request params in json format caused import to fail on a json parsing error.
Bugfix: json beautify failing when recieving an empty string
Bugfix: Fix interceptor failing on fetch POST requests with request body
Bugfix: Fix the correct scenario not being selected when editing a mocked request from request list

V0.3.3

04 Sep 21:24
Compare
Choose a tag to compare

Bugfix: Fix duplicated scenarios mocks were saving to the original scenario.
Feature: Added JSON auto formatting both on initial request load and on user paste.