Skip to content

Commit

Permalink
Merge pull request #59 from cloudevents/develop
Browse files Browse the repository at this point in the history
Release 0.3.1 - CVE issues
  • Loading branch information
fabiojose authored Sep 30, 2019
2 parents 3c600a3 + bf72800 commit b0a6101
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 20 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

TODO
TODO

## [0.3.1]

### Fixed

- Vulnerable dependency `com.fasterxml.jackson.core:jackson-databind`

## [0.3.0]

Expand Down Expand Up @@ -50,5 +56,6 @@ abstract envelope signature
- interface: `io.cloudevents.Extension` in favor of
`io.cloudevents.extensions.ExtensionFormat`

[Unreleased]: https://github.com/cloudevents/sdk-java/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/cloudevents/sdk-java/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/cloudevents/sdk-java/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/cloudevents/sdk-java/compare/v0.2.1...v0.3.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ __Checkout the [changelog](./CHANGELOG.md)__

## Motivation

The [CloudEvents specification](https://github.com/cloudevents/spec) is a vendor-neutral specification for defining the format of event data that is being exchanged between different cloud systems. The specification basically defines an abstract envelope for any event data payload, without knowing specific implementation details of the actual underlying event. The current version of the spec is at `0.2` and it describes a simple event format, which was demonstrated at [KubeCon 2018](https://youtu.be/TZPPjAv12KU) using different _Serverless platforms_, such as [Apache Openwhisk](https://github.com/apache/incubator-openwhisk).
The [CloudEvents specification](https://github.com/cloudevents/spec) is a vendor-neutral specification for defining the format of event data that is being exchanged between different cloud systems. The specification basically defines an abstract envelope for any event data payload, without knowing specific implementation details of the actual underlying event. The current version of the spec is at `0.3` and it describes a simple event format, which was demonstrated at [KubeCon 2018](https://youtu.be/TZPPjAv12KU) using different _Serverless platforms_, such as [Apache Openwhisk](https://github.com/apache/incubator-openwhisk).

## Java API

Expand All @@ -21,7 +21,7 @@ For Maven based projects, use the following to configure the CloudEvents Java SD
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-api</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down
16 changes: 10 additions & 6 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,21 @@
<parent>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</parent>

<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-api</artifactId>
<name>CloudEvents - API</name>
<version>0.3.0</version>
<version>0.3.1</version>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -42,13 +47,13 @@
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>

<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
Expand All @@ -72,10 +77,9 @@
</dependencies>

<properties>
<jackson.version>2.9.6</jackson.version>
<jackson.version>2.10.0.pr3</jackson.version>
<hibernate-validator.version>6.0.17.Final</hibernate-validator.version>
<javax.el.version>3.0.1-b11</javax.el.version>
</properties>

</project>

2 changes: 1 addition & 1 deletion cdi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For Maven based projects, use the following to configure the CloudEvents CDI lib
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cdi</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion http/vertx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For Maven based projects, use the following to configure the CloudEvents Vertx H
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>http-vertx</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down
4 changes: 1 addition & 3 deletions http/vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<relativePath>../..</relativePath>
</parent>

Expand Down Expand Up @@ -111,11 +111,9 @@

<properties>
<vertx.version>3.6.0</vertx.version>
<jackson.version>2.9.6</jackson.version>
<maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
<assertj-core.version>3.11.0</assertj-core.version>
<junit-jupiter.version>5.3.2</junit-jupiter.version>
</properties>

</project>

2 changes: 1 addition & 1 deletion kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the dependency in your project:
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-kafka</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions kafka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<parent>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</parent>

<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-kafka</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<packaging>jar</packaging>

<name>CloudEvents - Kafka Transport Binding</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<name>CloudEvents</name>
<version>0.3.0</version>
<version>0.3.1</version>
<packaging>pom</packaging>

<scm>
Expand Down

0 comments on commit b0a6101

Please sign in to comment.