-
Notifications
You must be signed in to change notification settings - Fork 9
/
CHANGES
62 lines (53 loc) · 2.28 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
1.7.0 (2021-02-14)
==================
* lazy deserialization regime for message fields and associated
option -fieldmod
Refer to "Evaluation regime" section in doc/language-mapping.md
* improved codegen for monomorphic record types
* -mli option to generate .mli signatures
* -export-type-io option to export monomorphic record type
(de)serialization functions and allow to reference the type in other
protocols
* -assume-subsets option to enable cross-protocol subsets of messages
(use in proto for whose messages subsets will be created)
* support for extlib 1.7.8
1.6.0 (2018-10-16)
==================
* compatibility with safe-string (and thus default 4.06 OCaml)
1.5.0 (2017-12-07)
==================
* optimized message subset deserializers
* optional subset field type ascription (useful for "deep subsets")
* allow to specify default value for primitive types
* -nolocs option to remove precise error location info from runtime
deserialization exceptions (yields 10-15% code size reduction)
* detect typos in type options/annotations
1.4.0 (2017-10-05)
==================
* "include" directive (ygrek)
1.3.0 (2016-08-27)
==================
* support polymorphic type in ocaml.type
* allow to specify default value for ocaml.type
* use of semicolon separators in ocaml.type to allow multi-parametric types
* support cross-compilation using OCAMLFIND_TOOLCHAIN
* allow "horizontal" sum type extension, e.g.
type foo = A int -> type bar = Bar | Baz int
type foo = A int bar
where the "bar" field will have the default value Bar in old values lacking
lack that 'constructor field'
* remove sexplib dependency (along with rarely if ever used --debug-concrete
and --debug-reduced compiler flags)
1.2.0 (2015-08-29)
=====
* use internal buffer pool in Extprot.Msg_buffer in order to avoid allocating
large buffers when serializing. It can be disabled by defining the
EXTPROT_DISABLE_BUFFER_POOL environment variable.
1.1.2 (2014-11-29)
------------------
* conditionally enable -bin-annot for ocaml >= 4.00 (ygrek)
* change in generated pretty-printers for records: print module path only for
first field
* keep relative order of constant and non-constant constructors in generated
OCaml type definition (required for "type_equals").
* OCaml 4.02.0 compatibility