Skip to content

Commit bd942a3

Browse files
committed
Fix upgrade to Spring Data Gosling RELEASE
Closes spring-projectsgh-3860
1 parent 0b24a44 commit bd942a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hateoas/HypermediaAutoConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 the original author or authors.
2+
* Copyright 2012-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -101,7 +101,7 @@ private void registerHalModule(ObjectMapper objectMapper) {
101101
objectMapper.registerModule(new Jackson2HalModule());
102102
Jackson2HalModule.HalHandlerInstantiator instantiator = new Jackson2HalModule.HalHandlerInstantiator(
103103
HalObjectMapperConfiguration.this.relProvider,
104-
HalObjectMapperConfiguration.this.curieProvider);
104+
HalObjectMapperConfiguration.this.curieProvider, null);
105105
objectMapper.setHandlerInstantiator(instantiator);
106106
}
107107

spring-boot-dependencies/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<spring-cloud-connectors.version>1.2.0.RELEASE</spring-cloud-connectors.version>
131131
<spring-batch.version>3.0.5.RELEASE</spring-batch.version>
132132
<spring-data-releasetrain.version>Gosling-RELEASE</spring-data-releasetrain.version>
133-
<spring-hateoas.version>0.18.0.RELEASE</spring-hateoas.version>
133+
<spring-hateoas.version>0.19.0.RELEASE</spring-hateoas.version>
134134
<spring-integration.version>4.2.0.RC1</spring-integration.version>
135135
<spring-loaded.version>1.2.4.RELEASE</spring-loaded.version>
136136
<spring-mobile.version>1.1.5.RELEASE</spring-mobile.version>

0 commit comments

Comments
 (0)