From f45aabe8acfbec10f45ee82983691553d7a57f8a Mon Sep 17 00:00:00 2001 From: luvarqpp Date: Wed, 23 Oct 2019 21:35:34 +0200 Subject: [PATCH] #1101 - Migrate HAL_JSON_UTF8 to HAL_JSON. org.springframework.hateoas.MediaTypes.HAL_JSON_UTF8 value was removed and only HAL_JSON is present. UTF8 is considered as default encoding for application/hal+json type. --- etc/migrate-to-1.0.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/migrate-to-1.0.sh b/etc/migrate-to-1.0.sh index a303577da..18bd3092f 100755 --- a/etc/migrate-to-1.0.sh +++ b/etc/migrate-to-1.0.sh @@ -65,6 +65,7 @@ s/hateoas\.core\.MethodParameters/hateoas.server.core.MethodParameters/g;\ s/hateoas\.core\.Relation/hateoas.server.core.Relation/g;\ \ s/hateoas\.hal/hateoas.mediatype.hal/g;\ +s/HAL_JSON_UTF8/HAL_JSON/g;\ \ s/hateoas\.mvc\.BasicLinkBuilder/hateoas.server.mvc.BasicLinkBuilder/g;\ s/hateoas\.mvc\.ControllerLinkBuilder/hateoas.server.mvc.WebMvcLinkBuilder/g;\