forked from JakeGinnivan/WebApi.Hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.txt
29 lines (25 loc) · 1.39 KB
/
Readme.txt
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
Release Notes
Version 2.3.0.1
- Fix bug introduced in 2.3.0 of non-array embedded Representation getting serialized improperly as array
- Serialize link Title
- Don't create self link if href is unspecified
Version 2.3.0
- Serialization of one-item SimpleListRepresentation (now is always an array)
- Support .net 4.5 (Currently is 4.5.1 for no reason)
- Update WebApi references to 5.1.2
Version 2.2.0
- Deserialize HAL resources into C# objects
- Representation.Href and .Rel virtual
- Support absolute URIs
- A few minor fixes for better serialization
Version 2.1.0
- Enhancements to provide adherence to the HAL spec:
- Support array of link objects for any given rel, instead of only allowing a single link object.
- Support embedded single resource object for any given rel, instead of only allowing an array of resource objects.
- Support multiple rels within embedded, instead of only allowing one rel for an array of resource objects.
- Support RFC6570 URI Templates.
- Deprecated WebApi.Hal.RepresentationList: use WebApi.Hal.SimpleListRepresentation instead.
- A future release will remove WebApi.Hal.RepresentationList.
- SimpleListRepresentation removes the need to manually specify the list hypermedia
- Removed WebApi.Hal.Link.RegisterLinkWithWebApi.
- Use ordinary MVC/WebApi machinery. HAL UriTemplates must comply with RFC6570, which was in conflict with route generation helpers.