Skip to content

Commit e20e13f

Browse files
authored
Merge pull request #2465 from swagger-api/prepare-2.0.0-rc2
prepare release candidate 2.0.0-rc2
2 parents 12828f2 + ab33116 commit e20e13f

File tree

7 files changed

+53
-16
lines changed

7 files changed

+53
-16
lines changed

README.md

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ The OpenAPI Specification has undergone several revisions since initial creation
2020

2121
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
2222
------------------------- | ------------ | -------------------------- | ----- | ----
23-
2.0.0-rc1 | 2017-08-17 | 3.0 | [tag v2.0.0-rc1](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc1) | Under Development
23+
2.0.0-rc2 | 2017-09-29 | 3.0 | [tag v2.0.0-rc2](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc2) | Under Development
24+
2.0.0-rc1 | 2017-08-17 | 3.0 | [tag v2.0.0-rc1](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc1) | Under Development
2425
1.5.16 (**current stable**)| 2017-07-05 | 2.0 | [tag v1.5.16](https://github.com/swagger-api/swagger-core/tree/v1.5.16) | Supported
2526
1.3.12 | 2014-12-23 | 1.2 | [tag v1.3.12](https://github.com/swagger-api/swagger-core/tree/v1.3.12) | Deprecated
2627
1.2.4 | 2013-06-19 | 1.1 | [tag swagger-project_2.10.0-1.2.4](https://github.com/swagger-api/swagger-core/tree/swagger-project_2.10.0-1.2.4) | Deprecated
@@ -78,15 +79,51 @@ See the License for the specific language governing permissions and
7879
limitations under the License.
7980
```
8081

81-
## v2.0.0-rc1 Notable Features:
82+
## v2.0.0-rc2
83+
84+
### Notable Features:
85+
86+
- See also [rc1 release notes](https://github.com/swagger-api/swagger-core/releases/tag/v2.0.0-rc1)
87+
- Second official release candidate of OpenAPI 3.0 support. swagger-core now produces OpenAPI 3.0 specs only. swagger-core 2.0 version is not backward compatible with previous 1.x versions.
88+
- Available on Maven central, and the sources are in the 2.0 branch. PRs should be submitted against the 2.0 branch.
89+
- `Example/Examples` support (#2416)
90+
- New [2.0 Wiki](https://github.com/swagger-api/swagger-core/wiki)
91+
- Enhanced security support (#2450)
92+
- Enhanced request body support (#2401)
93+
- Response header support (#2427)
94+
- Enhanced support for Parameter, Schema and Content (#2404)
95+
- Specification Filter (#2452)
96+
- Reader listener support (#2464)
97+
- Encoding support (#2463)
98+
- Consumes/Produces full support(#2404)
99+
- Annotation javadocs (#2394)
100+
- Full sample code for [jersey2](https://github.com/swagger-api/swagger-samples/tree/2.0/java/java-jersey2) and [dropwizard](https://github.com/swagger-api/swagger-samples/tree/2.0/java/java-dropwizard)
101+
- Updated dependencies
102+
- Various bug fixes
103+
104+
### Limitations
105+
106+
- Resolve resource operations also when not annotated with `@Operation` _(swagger-jaxrs2)_
107+
- Implement `subtypes` field in `Schema` annotation, with related resolver processing _(swagger-annotations / core)_
108+
- Overriding full support _(swagger-core)_
109+
* Schema annotation `type` + `format` full support _(swagger-core)_
110+
- Reader sub-resources support _(swagger-jaxrs2)_
111+
- Reader extensions full support _(swagger-jaxrs2)_
112+
- Integration layer enhancements:config file location enhanced loading, additional loaders, etc. _(swagger-integration, swagger-jaxrs)_
113+
- JsonIdentity support _(swagger-core)_
114+
- `MatrixParam` annotation support
115+
116+
## v2.0.0-rc1
117+
118+
### Notable Features:
82119

83120
- First official release candidate of OpenApi 3.0 support. swagger-core now produces OpenAPI 3.0 specs only. swagger-core 2.0 version is not backward compatible with previous 1.x versions.
84121
- Available on Maven central, and the sources are in the 2.0 branch. PRs should be submitted against the 2.0 branch.
85122
- Swagger JAX-RS 2 support
86123
- Java 8
87124
- Consistent integration mechanism
88125

89-
## v2.0.0-rc1 Limitations
126+
### Limitations
90127

91128
- Resolve resource operations also when not annotated with `@Operation` _(swagger-jaxrs2)_
92129
- Implement `subtypes` field in `Schema` annotation, with related resolver processing _(swagger-annotations / core)_

modules/swagger-annotations/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<parent>
44
<groupId>io.swagger</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0-rc2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>io.swagger</groupId>
1111
<artifactId>swagger-annotations</artifactId>
12-
<version>2.0.0-SNAPSHOT</version>
12+
<version>2.0.0-rc2</version>
1313
<packaging>bundle</packaging>
1414
<name>swagger-annotations</name>
1515
<build>

modules/swagger-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.swagger</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0-rc2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-integration/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.swagger</groupId>
88
<artifactId>swagger-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0-rc2</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212
<groupId>io.swagger</groupId>
1313
<artifactId>swagger-integration</artifactId>
14-
<version>2.0.0-SNAPSHOT</version>
14+
<version>2.0.0-rc2</version>
1515
<packaging>bundle</packaging>
1616
<name>swagger-integration</name>
1717
<dependencies>
@@ -53,6 +53,6 @@
5353
</plugins>
5454
</build>
5555
<properties>
56-
<swagger.version>2.0.0-SNAPSHOT</swagger.version>
56+
<swagger.version>2.0.0-rc2</swagger.version>
5757
</properties>
5858
</project>

modules/swagger-jaxrs2/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>swagger-project</artifactId>
77
<groupId>io.swagger</groupId>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0-rc2</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -164,9 +164,9 @@
164164
</dependency>
165165
</dependencies>
166166
<properties>
167-
<models.version>2.0.0-SNAPSHOT</models.version>
168-
<annotations.version>2.0.0-SNAPSHOT</annotations.version>
169-
<core.version>2.0.0-SNAPSHOT</core.version>
170-
<integration.version>2.0.0-SNAPSHOT</integration.version>
167+
<models.version>2.0.0-rc2</models.version>
168+
<annotations.version>2.0.0-rc2</annotations.version>
169+
<core.version>2.0.0-rc2</core.version>
170+
<integration.version>2.0.0-rc2</integration.version>
171171
</properties>
172172
</project>

modules/swagger-models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0-rc2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifactId>swagger-project</artifactId>
1111
<packaging>pom</packaging>
1212
<name>swagger-project</name>
13-
<version>2.0.0-SNAPSHOT</version>
13+
<version>2.0.0-rc2</version>
1414
<url>https://github.com/swagger-api/swagger-core</url>
1515
<scm>
1616
<connection>scm:git:git@github.com:swagger-api/swagger-core.git</connection>

0 commit comments

Comments
 (0)