# Changelog ## 0.8.0 - ✨ Add support for having multiple link headers with the same `rel` ## 0.7.0 - ✨ Add `extract_set_links` to serializer for collection links ## 0.7.0.beta1 - 🐛 Fix non-serializer media types replacing known serializers - 🐛 Fix passed in media type for HTML as fallback (actual type instead of html) - 🐛 Fix passed in media type for API Viewer (actual type instead of API Viewer) - 🐛 Fix migrations failing on versioning text/html - 🐛 Fix HTML non-overwrite logic (first one wins, unless there is an override) - ✨ Add `api_viewer_media_type` param for api viewers to set the serialization type - ✨ Add api viewer links in the api viewer: - For representations: use `.api_viewer` unless it's `.html` - For body links: use .api_viewer unless it already has a `.format` - For HTTP links: leave them alone ## 0.6.2 - 🐛 Update `http_headers-accept`: 0.2.1 → 0.2.2 ## 0.6.1 - 🚨 Update nokogiri: 1.10.1 → 1.10.3 ## 0.6.0 - Add `accept_api_viewer` which is on by default - Add `overwrite` parameter to `accept_html` - Add `api_viewer_layout` configuration option - Add generator to initialize the gem and copy the API Viewer ## 0.5.1 - Correctly expose `current_media_type` and `current_view` - Fix cyclic requires - Add documentation for overwriting wrappers ## 0.5.0 - Change wrappers to extend from `SimpleDelegator` - Move `RootKey` to `Base.root_key` method so it can be overridden - Move `MediaWrapper.wrap` to `Base.wrap` method so it can be overridden - Move `MediaObjectWrapper::AUTO_UNWRAP_KLAZZES` to `MediaObjectWrapper.auto_unwrap_klazzes` option - Add `::MediaTypes::Serialization.html_wrapper_layout` option - Add `MediaObjectWrapper#unwrapped_serializable` which can be overridden in `Base#unwrapped_serializable` - Add `MediaIndexWrapper#wrapped_serializable` which can be overridden in `Base#wrapped_serializable` - Add `MediaCollectionWrapper#wrapped_serializable` which can be overridden in `Base#wrapped_serializable` - Fix empty link handler (`{ rel: nil }`) - Fix `NoSerializerForContentType` error message - Add tests for `root_key`, `wrap`, `MediaObjectWrapper`, `MediaIndexWrapper` and `MediaCollectionWrapper` ## 0.4.0 - Change `extract_links` to `extract_links(view:)` and mimic `header_links(view:)` - Use `extract_links` in `index` and `collection` wrapper output ## 0.3.2 - Rename `collect_links` to `header_links` to actually expose the links ## 0.3.1 - Fix classes sharing `media_type_constructable`, `serializes_html_flag` and `media_type_versions` - Change `instance_methods(false)` check to `instance_methods` check in `MimeTypeSupport` - Add `view` to `header_links` call - Add `collect_links_for_index` option to collect links for index views - Add `collect_links_for_collection` option to collect links for collection views ## 0.3.0 - Change `to_link_header` to return a string ready to be used as header - Change `header_links` to actually return the links for the header in object form ## 0.2.0 - Change `method_missing` and base methods for `Base` - Add test for `HtmlWrapper` ## 0.1.0 :baby: initial release