You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5.0 KiB
5.0 KiB
Version 7.6
- Adds base api support via single-inheritance interfaces
Version 7.5
+* Added possibility to leave slash encoded in path parameters
Version 7.4
- Allows
@Headers
to be applied to a type
Version 7.3
- Adds Request.Options support to RibbonClient
- Adds LBClientFactory to enable caching of Ribbon LBClients
- Updates to Ribbon 2.0-RC13
- Updates to Jackson 2.5.1
- Supports query parameters without values
Version 7.2
- Adds
Feign.Builder.build()
- Opens constructor for Gson and Jackson codecs which accepts type adapters
- Adds EmptyTarget for interfaces who exclusively declare URI methods
- Reformats code according to Google Java Style
Version 7.1
- Introduces feign.@Param to annotate template parameters. Users must migrate from
javax.inject.@Named
tofeign.@Param
before updating to Feign 8.0.- Supports custom expansion via
@Param(value = "name", expander = CustomExpander.class)
- Supports custom expansion via
- Adds OkHttp integration
- Allows multiple headers with the same name.
- Ensures Accept headers default to
*/*
Version 7.0
- Expose reflective dispatch hook: InvocationHandlerFactory
- Add JAXB integration
- Add SLF4J integration
- Upgrade to Dagger 1.2.2.
- Note: Dagger-generated code prior to version 1.2.0 is incompatible with Dagger 1.2.0 and beyond. Dagger users should upgrade Dagger to at least version 1.2.0, and recompile any dependency-injected classes.
Version 6.1.3
- Updates to Ribbon 2.0-RC5
Version 6.1.1
- Fix for #85
Version 6.1.0
- Add SLF4J integration
Version 6.0.1
- Fix for BasicAuthRequestInterceptor when username and/or password are long.
Version 6.0
- Support binary request and response bodies.
- Don't throw http status code exceptions when return type is
Response
.
Version 5.4.0
- Add
BasicAuthRequestInterceptor
- Add Jackson integration
Version 5.3.0
- Split
GsonCodec
intoGsonEncoder
andGsonDecoder
, which are easy to use withFeign.Builder
- Deprecate
GsonCodec
- Update to Ribbon 0.2.3
Version 5.2.0
- Support usage of
GsonCodec
viaFeign.Builder
Version 5.1.0
- Correctly handle IOExceptions wrapped by Ribbon.
- Miscellaneous findbugs fixes.
Version 5.0.1
Decoder.decode()
is no longer called forResponse
orvoid
types.
Version 5.0
- Remove support for Observable methods.
- Use single non-generic Decoder/Encoder instead of sets of type-specific Decoders/Encoders.
- Decoders/Encoders are now more flexible, having access to the Response/RequestTemplate respectively.
- Moved SaxDecoder into
feign-sax
dependency.- SaxDecoder now decodes multiple types.
- Remove pattern decoders in favor of SaxDecoder.
- Added Feign.Builder to simplify client customizations without using Dagger.
- Gson type adapters can be registered as Dagger set bindings.
Feign.create(...)
now requires specifying an encoder and decoder.
Version 4.4.1
- Fix NullPointerException on calling equals and hashCode.
Version 4.4
- Support overriding default HostnameVerifier.
- Support GZIP content encoding for request bodies.
- Support Iterable args for query parameters.
- Support urls which have query parameters.
Version 4.3
- Add ability to configure zero or more RequestInterceptors.
- Remove
overrides = true
on codec modules.
Version 4.2/3.3
- Document and enforce JAX-RS annotation processing from server POV
- Skip query template parameters when corresponding java arg is null
Version 4.1/3.2
- update to dagger 1.1
- Add wikipedia search example
- Allow
@Path
on types in feign-jaxrs
Version 4.0
- Support RxJava-style Observers.
- Return type can be
Observable<T>
for an async equiv ofIterable<T>
. Observer<T>
replacesIncrementalCallback<T>
and is passed toObservable.subscribe()
.- On
Subscription.unsubscribe()
,Observer.onNext()
will stop being called.
- Return type can be
Version 3.1
- Log when an http request is retried or a response fails due to an IOException.
Version 3.0
- Added support for asynchronous callbacks via
IncrementalCallback<T>
andIncrementalDecoder.TextStream<T>
. - Wire is now Logger, with configurable Logger.Level.
- Added
feign-gson
codec, used vianew GsonModule()
- changed codec to be similar to WebSocket JSR 356
- Decoder is now
Decoder.TextStream<T>
- BodyEncoder is now
Encoder.Text<T>
- FormEncoder is now
Encoder.Text<Map<String, ?>>
- Decoder is now
- Encoder and Decoders are specified via
Provides.Type.SET
binding. - Default Encoder and Form Encoder is
Encoder.Text<Object>
- Default Decoder is
Decoder.TextStream<Object>
- ErrorDecoder now returns Exception, not fallback.
- There can only be one
ErrorDecoder
andRequest.Options
binding now.
Version 2.0.0
- removes guava and jax-rs dependencies
- adds JAX-RS integration
Version 1.1.0
- adds Ribbon integration
- adds cli example
- exponential backoff customizable via Retryer.Default ctor
Version 1.0.0
- Initial open source release