# 0.12.5 * Roar runs with representable <= 1.8. # 0.12.4 * The `HAL` module supports [CURIE links](https://github.com/mikekelly/hal_specification/blob/f937dbc9f9e1fa25be824834794407fdcb8f116f/hal_specification.md#curies) now using the `::curie` method. * Allow old and new API in HttpVerbs#get and friends. # 0.12.3 * Allow basic authentication with `basic_auth: [:admin, :password]`. * Allow HTTPS. * Removed `NetHTTP#do_request`. It is in `NetHTTP::Request` now. ### Changes for `HttpVerbs#get` and friends: * They now yield the request object to add headers etc before request is sent. * They NO LONGER support positional arguments but one hash with `uri: "https://roar.de", body:, .. as: ..` and so on. # 0.12.2 * Fix a bug where hyperlinks from nested objects weren't rendered in XML. # 0.12.1 Allow representable >= 1.6. # 0.11.18 * Updating to representable-1.5.2. # 0.11.17 * Fixing HAL + Decorator. * Requiring representable-1.5.0. # 0.11.16 * Added `Roar::Decorator::HypermediaConsumer` which propagates incoming hypermedia links to the represented object (it has to have accessors for `:links`). # 0.11.15 * Fixing [#66](https://github.com/apotonick/roar/issues/66). # 0.11.14 * Fixing Gemfile. # 0.11.13 * Adding `Roar::Decorator`, see [representable docs](https://github.com/apotonick/representable#decorator-vs-extend) for now. # 0.11.12 * Moved `::inheritable_array` from `Hypermedia` to `Representer`. # 0.11.11 * Allow use of `::link(string)`. ## 0.11.10 * Fix a syntax error for Ruby 1.8. * Store link definitions in `representable_attrs(:links)` now and no longer in the `LinksDefinition` instance itself. removing `#links_definition` in favor of `#link_configs`. ## 0.11.9 * When using `Feature::Client` hyperlinks are no longer rendered in POST and PUT since we pass `links: false`. * `Transport::NetHttp` now sets both `Accept:` and `Content-type:` header since Rails services seems to get confused. ## 0.11.8 * Fixed `JSON::HAL::Links` so that it keys links with `links` and not `_links`. The latter is still done by `JSON::HAL`. ## 0.11.7 * Maintenance release: Fixing the horrible bug fix from 0.11.6 and make it a bit less horrible. ## 0.11.6 * "Fixing" a bug where `links_definition_option` was missing when no link was set in a representer. Note that this is a quick and horrible bugfix and will soon be cleaned up. ## 0.11.5 * Introducing HAL::links method to map arrays of link objects in the HAL format. This completes the HAL/JSON specification. ## 0.11.4 * Links can now return a hash of attributes as `link :self do {:href => fruit_path(self), :title => "Yummy stuff"} end`. ## 0.11.3 * Fixed an installation issue under Windows. ## 0.11.2 * The request body in POST, PUT and PATCH is now actually sent in HttpVerbs. Thanks to @nleguen for finding this embarrassing bug. That's what happens when you don't have proper tests, kids! ## 0.11.1 * Since some users don't have access to my local hard-drive we now really require representable-1.2.2. ## 0.11.0 * Using representable-1.2.2 now. Be warned that in 1.2 parsing and rendering slightly changed. When a property is not found in the incoming document, it is ignored and thus might not be initialised in your represented model (empty collections are still set to an empty array). Also, the way `false` and `nil` values are rendered changed. Quoted from the representable CHANGES file: * A property with false value will now be included in the rendered representation. Same applies to parsing, false values will now be included. That particularly means properties that used to be unset (i.e. nil) after parsing might be false now. * You can include nil values now in your representations since #property respects :represent_nil => true. * The `:except` option got deprecated in favor of `:exclude`. * Hyperlinks can now have arbitrary attributes. To render, just provide `#link` with the options link :self, :title => "Mee!", "data-remote" => true When parsing, the options are avaible via `OpenStruct` compliant readers. link = Hyperlink.from_json({\"rel\":\"self\",\"data-url\":\"http://self\"} ) link.rel #=> "self" link.send("data-url") #=> "http://self" ## 0.10.2 * You can now pass values from outside to the render method (e.g. `#to_json`), they will be available as block parameters inside `#link`. ## 0.10.1 * Adding the Coercion feature. ## 0.10.0 * Requiring representable-0.1.3. * Added JSON-HAL support. * Links are no longer rendered when `href` is `nil` or `false`. * `Representer.link` class method now accepts either the `rel` value, only, or a hash of link attributes (defined in `Hypermedia::Hyperlink.params`), like `link :rel => :self, :title => "You're good" do..` * API CHANGE: `Representer#links` no longer returns the `href` value but the link object. Use it like `object.links[:self].href` to retrieve the URL. * `#from_json` won't throw an exception anymore when passed an empty json document. ## 0.9.2 * Using representable-1.1. ## 0.9.1 * Removed @Representer#to_attributes@ and @#from_attributes@. * Using representable-1.0.1 now. ## 0.9.0 * Using representable-0.12.x. * `Representer::Base` is now simply `Representer`. * Removed all the class methods from `HttpVerbs` except for `get`. ## 0.8.3 * Maintenance release for representable compat. ## 0.8.2 * Removing `restfulie` dependency - we now use `Net::HTTP`. ## 0.8.1 * Added the :except and :include options to `#from_*`.