Releases: ca-archived/aeromock
Releases · ca-archived/aeromock
0.2.5
30 May 08:00
Compare
Sorry, something went wrong.
No results found
Fixed
#43 Template stacktrace is not displayed
Detail of stacktrace on template was broken at v0.2.4.
Improved
#41 upgrade netty to 4.0.28
#42 use scala 2.11.6
0.2.4
22 Mar 13:11
Compare
Sorry, something went wrong.
No results found
Fixed
#40 Cannot respond static files when messagepack setting enabled.
Improved
Update dependencies.
Netty to 4.0.26.Final
snakeyaml to 1.15
args4j to 2.0.29
protoparser to 3.1.5
json4s-native to 3.2.11
0.2.3
16 Jan 04:17
Compare
Sorry, something went wrong.
No results found
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
[project.yaml]
ajax:
root: ./ajax
jsonp_callback_name: callback
[Request]
http://localhost:3183/test?callback=callbackFunc
[Response]
callbackFunc({"param":"value"})
0.2.2
08 Jan 03:31
Compare
Sorry, something went wrong.
No results found
Fixed
#34 msgpack handling structure type
Be able to handle msgpack data structure type. json(default) and compact.
0.2.1
31 Dec 07:54
Compare
Sorry, something went wrong.
No results found
Features
#33 support messagepack
Please check user guide!
#31 add various MIME types
0.2.0
27 Nov 16:31
Compare
Sorry, something went wrong.
No results found
Fixed
#27 When path of directory include period, it occurs 404.
Features
Support Protocol Buffers officially at this version.
Updated protobuf-java to 2.6.1
Updated libraries
0.2.0-RC3
11 Nov 07:24
Compare
Sorry, something went wrong.
No results found
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
06 Nov 04:03
Compare
Sorry, something went wrong.
No results found
Fixed
#22 aeromock-cli test error
#23 NPE when illegal data file on protobuf
0.2.0-RC1
02 Nov 18:45
Compare
Sorry, something went wrong.
No results found
Features
#11 Support Protocol Buffer
Please check user guide!
0.1.4
02 Oct 06:35
Compare
Sorry, something went wrong.
No results found
Fixed
#16 GString cast error at data.groovy
#17 aeromock-unit test score is mistake.
#19 When use custom config path, occurs NPE.