Skip to content

Commit

Permalink
bump JRestless version to 0.6.0 and update README/CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
bbilger committed Nov 17, 2017
1 parent 197b7b1 commit a1e452d
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# 0.6.0 (2017-11-17)

## New Features

- Jersey version 2.26 is used now: https://github.com/bbilger/jrestless/issues/41
- (initial) support for Fn Project has been added; thanks to this PR: https://github.com/bbilger/jrestless/pull/43

## Breaking Changes / Migration

There are a few breaking changes (https://jersey.github.io/documentation/latest/user-guide.html#mig-2.26) in Jersey 2.26 but most of these changes affect JRestless' internals, only.

You are, however, required to add an additional dependency:

```
# Gradle
compile group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.26'
# Maven
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>2.26</version>
</dependency>
```

## Known Issues

Aside from the HK2 injection manager (jersey-hk2) mentioned above, Jersey offers an alternative CDI 2 SE injection manager (jersey-cdi2-se).
The CDI 2 SE injection manager (jersey-cdi2-se) is, however, not yet supported by JRestless because of a bug which by the way affects all containers: https://github.com/jersey/jersey/issues/3621


# 0.5.1 (2017-04-22)

## New Features
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ repositories {
}
dependencies {
compile(
'com.jrestless.aws:jrestless-aws-gateway-handler:0.5.0',
'org.glassfish.jersey.media:jersey-media-json-jackson:2.23'
'com.jrestless.aws:jrestless-aws-gateway-handler:0.6.0',
'org.glassfish.jersey.inject:jersey-hk2:2.26',
'org.glassfish.jersey.media:jersey-media-json-jackson:2.26'
)
}
task buildZip(type: Zip) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
globaleModuleVersion=0.5.2-SNAPSHOT
globaleModuleVersion=0.6.0
jerseyVersion=2.26

0 comments on commit a1e452d

Please sign in to comment.