Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
karlvr committed Sep 15, 2024
1 parent 601553e commit 63ce3a4
Show file tree
Hide file tree
Showing 36 changed files with 279 additions and 56 deletions.
18 changes: 0 additions & 18 deletions .changeset/popular-sheep-rhyme.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/wild-brooms-act.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/generator-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @openapi-generator-plus/generator-common

## 1.7.1

### Patch Changes

- 601553e: Update core

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/generator-common",
"version": "1.7.0",
"version": "1.7.1",
"description": "Common utilities for openapi-generator-plus generators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/handlebars-templates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @openapi-generator-plus/handlebars-templates

## 1.11.1

### Patch Changes

- 601553e: Update core
- Updated dependencies [601553e]
- @openapi-generator-plus/generator-common@1.7.1

## 1.11.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/handlebars-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/handlebars-templates",
"version": "1.11.0",
"version": "1.11.1",
"description": "Utility for openapi-generator-plus generators to use with Handlebars templates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions packages/java-cxf-cdi-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @openapi-generator-plus/java-cxf-cdi-server-generator

## 3.1.4

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-generator-common@3.5.0
- @openapi-generator-plus/java-jaxrs-server-generator@3.5.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-cxf-cdi-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-cxf-cdi-server-generator",
"version": "3.1.3",
"version": "3.1.4",
"description": "An OpenAPI Generator Plus template for a Java API server using CXF and CDI",
"keywords": [
"openapi-generator-plus",
Expand Down
12 changes: 12 additions & 0 deletions packages/java-cxf-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @openapi-generator-plus/java-cxf-client-generator

## 3.1.3

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-client-generator@3.2.0
- @openapi-generator-plus/java-jaxrs-generator-common@3.5.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-cxf-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-cxf-client-generator",
"version": "3.1.2",
"version": "3.1.3",
"description": "An OpenAPI Generator Plus template for a Java API client using CXF",
"keywords": [
"openapi-generator-plus",
Expand Down
12 changes: 12 additions & 0 deletions packages/java-cxf-spring-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @openapi-generator-plus/java-cxf-spring-server-generator

## 3.1.4

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-generator-common@3.5.0
- @openapi-generator-plus/java-jaxrs-server-generator@3.5.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-cxf-spring-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-cxf-spring-server-generator",
"version": "3.1.3",
"version": "3.1.4",
"description": "An OpenAPI Generator Plus template for a Java API server using CXF and Spring annotations",
"keywords": [
"openapi-generator-plus",
Expand Down
21 changes: 21 additions & 0 deletions packages/java-jaxrs-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @openapi-generator-plus/java-jaxrs-client-generator

## 3.2.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-generator-common@3.5.0
- @openapi-generator-plus/java-like-generator-helper@2.6.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-jaxrs-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-jaxrs-client-generator",
"version": "3.1.2",
"version": "3.2.0",
"description": "An OpenAPI Generator Plus template for a Java API client using JAX-RS",
"keywords": [
"openapi-generator-plus",
Expand Down
20 changes: 20 additions & 0 deletions packages/java-jaxrs-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @openapi-generator-plus/java-jaxrs-generator-common

## 3.5.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-like-generator-helper@2.6.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-jaxrs-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-jaxrs-generator-common",
"version": "3.4.0",
"version": "3.5.0",
"description": "An OpenAPI Generator Plus template for a Java API using JAX-RS",
"keywords": [
"openapi-generator-plus",
Expand Down
21 changes: 21 additions & 0 deletions packages/java-jaxrs-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @openapi-generator-plus/java-jaxrs-server-generator

## 3.5.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-generator-common@3.5.0
- @openapi-generator-plus/java-like-generator-helper@2.6.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 3.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-jaxrs-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-jaxrs-server-generator",
"version": "3.4.1",
"version": "3.5.0",
"description": "An OpenAPI Generator Plus template for a Java API server using JAX-RS",
"keywords": [
"openapi-generator-plus",
Expand Down
17 changes: 17 additions & 0 deletions packages/java-like/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @openapi-generator-plus/java-like-generator-helper

## 2.6.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [601553e]
- @openapi-generator-plus/generator-common@1.7.1

## 2.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-like/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-like-generator-helper",
"version": "2.5.0",
"version": "2.6.0",
"description": "Helpers for Java-like language generators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
10 changes: 10 additions & 0 deletions packages/java-retrofit-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @openapi-generator-plus/java-retrofit-client-generator

## 2.6.3

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-jaxrs-client-generator@3.2.0
- @openapi-generator-plus/handlebars-templates@1.11.1

## 2.6.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/java-retrofit-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/java-retrofit-client-generator",
"version": "2.6.2",
"version": "2.6.3",
"description": "An OpenAPI Generator Plus template for a Java API client using Retrofit",
"keywords": [
"openapi-generator-plus",
Expand Down
20 changes: 20 additions & 0 deletions packages/plain-documentation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @openapi-generator-plus/plain-documentation-generator

## 1.10.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-like-generator-helper@2.6.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 1.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plain-documentation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/plain-documentation-generator",
"version": "1.9.2",
"version": "1.10.0",
"description": "An OpenAPI Generator Plus template for generating plain documentation",
"keywords": [
"openapi-generator-plus",
Expand Down
20 changes: 20 additions & 0 deletions packages/typescript-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @openapi-generator-plus/typescript-generator-common

## 1.12.0

### Minor Changes

- 366ada5: Add `enumMemberStyle` option with new `preserve` option

The actual naming of the enum members can be really important. We default to the old behaviour, which is to name the enum members according
to the preferred constant style of the language being generated, but we now add an option to try to preserve the enum member names from the
API spec. Preserving is important if you use the enum member names in code such as by serializing them or matching them by their string names,
e.g. Java's `EnumType.valueOf(String)`.

### Patch Changes

- 601553e: Update core
- Updated dependencies [366ada5]
- Updated dependencies [601553e]
- @openapi-generator-plus/java-like-generator-helper@2.6.0
- @openapi-generator-plus/handlebars-templates@1.11.1
- @openapi-generator-plus/generator-common@1.7.1

## 1.11.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openapi-generator-plus/typescript-generator-common",
"version": "1.11.2",
"version": "1.12.0",
"description": "A common OpenAPI Generator Plus module for TypeScript generators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading

0 comments on commit 63ce3a4

Please sign in to comment.