Skip to content

Commit

Permalink
chore(dependencies): Autobump korkVersion (#4602)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump korkVersion

* fix(core): give the ObjectMapper bean two names: mapper and objectMapper

to match the names other code expects.  With the introduction of another ObjectMapper bean
in the spring context from ArtifactStoreConfiguration (artifactObjectMapper) in
spinnaker/kork#1120, spring needs some way to know which to use.
With the additional name, all the current uses of the ObjectMapper from OrcaConfiguration
continue to get the bean they got before PR 1120.

---------

Co-authored-by: root <root@140f03da0671>
Co-authored-by: David Byron <[email protected]>
  • Loading branch information
3 people committed Nov 20, 2023
1 parent 976d469 commit 3e0c67a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fiatVersion=1.42.0
korkVersion=7.201.0
korkVersion=7.202.0
kotlinVersion=1.4.32
org.gradle.parallel=true
spinnakerGradleVersion=8.31.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public Scheduler scheduler() {
return Schedulers.io();
}

@Bean
@Bean(name = {"mapper", "objectMapper"})
public ObjectMapper mapper() {
return OrcaObjectMapper.getInstance();
}
Expand Down

0 comments on commit 3e0c67a

Please sign in to comment.