Aeromock Versions Save

Lightweight mock web application server

v0.2.5

8 years ago

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

v0.2.4

9 years ago

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

v0.2.3

9 years ago

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"})

v0.2.2

9 years ago

Fixed

#34 msgpack handling structure type

Be able to handle msgpack data structure type. json(default) and compact.

v0.2.1

9 years ago

Features

#33 support messagepack Please check user guide!

#31 add various MIME types

v0.2.0

9 years ago

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

v0.2.0-RC3

9 years ago

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;
}

v0.2.0-RC2

9 years ago

Fixed

#22 aeromock-cli test error
#23 NPE when illegal data file on protobuf

v0.2.0-RC1

9 years ago

Features

#11 Support Protocol Buffer Please check user guide!

v0.1.4

9 years ago

Fixed

#16 GString cast error at data.groovy
#17 aeromock-unit test score is mistake.
#19 When use custom config path, occurs NPE.