Skip to content

Commit

Permalink
Prepare 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Jul 9, 2021
1 parent 445375b commit 22bf790
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.11 - 2021-07-09

- Add `amqpProperties` option for async
- trigger async produce via HTTP endpoint response's `triggerAsyncProducer` option
- add API toggle to enable unhandled requests capture. Otherwise, we get OOMed easily.
- MQTT support for async services
- make Google Pub/Sub and SQS dependencies optional, to minimize Docker image size

## v0.10 - 2021-06-22

- Serve mocks from OpenAPI and Postman collections, also allow converting into config
Expand Down Expand Up @@ -136,11 +144,6 @@

# Next Version

- Add `amqpProperties` option for async
- trigger async produce via HTTP endpoint response's `triggerAsyncProducer` option
- add API toggle to enable unhandled requests capture. Otherwise, we get OOMed easily.
- MQTT support for async services
- make Google Pub/Sub and SQS dependencies optional, to minimize Docker image size

---

Expand Down Expand Up @@ -174,7 +177,6 @@
- test the performance of ourself and optimize it


- make cloud dependencies optional, have second docker image and instructions how to enable cloud features
- support fragment same way we support query string - both in `path` and as standalone `fragment` option
- add support of array/list parameters on query strings like
`/service2q?a=b&a=c` or `/service2q?a[]=b&a[]=c` and form data with multiple values for the same key to the request
Expand Down
2 changes: 1 addition & 1 deletion mockintosh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from prance import ValidationError
from prance.util.url import ResolutionError

__version__ = "0.10"
__version__ = "0.11"
__location__ = path.abspath(path.dirname(__file__))

should_cov = environ.get('COVERAGE_PROCESS_START', False)
Expand Down

0 comments on commit 22bf790

Please sign in to comment.