Releases: ca-archived/aeromock
Releases · ca-archived/aeromock
0.2.5
0.2.4
0.2.3
Features
#35 Support application/json POST request
- Support Content-Type: application/json request.
- Be able to get this data from POST_DATA of builtin variables.
- FORM_DATA is deprecated, will be removed at 0.3.0 over. Please use POST_DATA.
- POST_DATA supports application/json, pplication/x-www-form-urlencoded, multipart/form-data.
#36 Support JSONP
- Example
[project.yaml]
ajax:
root: ./ajax
jsonp_callback_name: callback
[Request]
http://localhost:3183/test?callback=callbackFunc
[Response]
callbackFunc({"param":"value"})
0.2.2
0.2.1
0.2.0
0.2.0-RC3
Fixed
#24 Avoiding 'Too many open files
By using Aeromock for a long time, sometimes it has caused "Too many open files". However, this problem has resolved completely at this version!
Features
#25 updated Netty to 4.0.24
#26 [protobuf]Nested type
Support nested structure of proto, as follows.
message Nest2Response {
message Nest2Inner {
required int32 id = 10;
required string name = 20;
}
required uint32 id = 1;
required Nest2Inner inner = 2;
repeated Nest2Inner innerList = 3;
}
0.2.0-RC2
0.2.0-RC1
Features
#11 Support Protocol Buffer
Please check user guide!