Releases: Netflix/eureka
v2.0.4
What's Changed
- Upgrade Jackson to 2.13.5. Upgrade Woodstox to 6.4.0. by @OlgaMaciaszek in #1557
Full Changelog: v2.0.3...v2.0.4
v2.0.3
Merge pull request #1552 from OlgaMaciaszek/2.x-xstream-1_4_20 Upgrade xstream to 1.4.20.
2.0.2 Release
What's Changed
- Call size method on Application to avoid copying instance info by @kilink in #1511
- Upgrade jettison to 1.5.4. by @OlgaMaciaszek in #1531
New Contributors
Full Changelog: v2.0.1...v2.0.2
2.0.1 Release
Bug fixes
2.0.0 Release
Eureka 2.0.0 Release Notes
Eureka 2.0.0 has been released. This release is a new effort and is not related to a previous preview of code released in the 2.x-archive branch which was an experimental re-architecture of Eureka.
The Eureka Server HTTP API and wire data formats have not changed for the 2.0.0 release. Eureka servers and clients should be backwards and forwards compatible over the wire. This release was primarily driven for compatibility with Spring Framework 6.0 and Spring Boot 3.0 and the change to Jakarta EE 9.
What has changed?
The Eureka 2.0.0 Java client API is not backwards compatible with 1.x.
Eureka 1.x included support for Jersey 1 and optional Support for Jersey 2. In many cases, Jersey 1 was the default and was baked into the eureka-core
and eureka-client
modules. Having a default client has been removed. The new eureka-client-jersey3
and eureka-core-jersey3
should now be used if no other implementation is provided (such as Spring Cloud support for a RestTemplate
implementation).
The DiscoveryClient constructors
have been updated to have a new required TransportClientFactories
parameter. The majority of the Eureka 2.0.0 Java client API has remained unchanged.
All references to javax.*
classes have been changed to jakarta.*
classes and the appropriate modules have been added.
The eureka-server-governator
module was removed. There is no current support for the JakartaEE version of @Inject
.
The eureka-server
module currently does not build a functional WAR file. The recommended way of creating a Eureka 2.0.0 server is via Spring Cloud Netflix as a Spring Boot application.
The build now requires JDK 11 because of some tests that require Jetty and the version of Jetty that supports Jakarta EE 9 requires Java 11. The build still targets Java 8.
Feedback
Please try things out and provide any feedback or issues at https://github.com/Netflix/eureka/issues.
v1.10.18
v2.0.0-rc.4: Merge pull request #1473 from spencergibb/fixme-2-0-patch1
Candidate release for Spring Cloud 3.0
v2.0.0-rc.3: Merge pull request #1469 from spencergibb/publish2xsnapshots
Candidate release for SpringBoot 3.0 Eureka OSS.