Skip to content

Commit 133b232

Browse files
committed
released 3.3.0
1 parent b49374e commit 133b232

File tree

8 files changed

+66
-27
lines changed

8 files changed

+66
-27
lines changed

openapi-generator-annotations/CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
1+
## 3.3.0
2+
3+
- Bumped dart-ogurets (_dioAlt_) generator to 5.11
4+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
5+
- Bumped official openapi generator to 5.3.0.
6+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.3.0)
7+
18
## 3.2.1
2-
- Bumped dart-ogurets (_dioAlt_) generator to 5.9 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
3-
- Bumped official openapi generator to 5.2.1. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
9+
10+
- Bumped dart-ogurets (_dioAlt_) generator to 5.9
11+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
12+
- Bumped official openapi generator to 5.2.1.
13+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
414

515
## 3.2.0
6-
- Bumped dart-ogurets (_dioAlt_) generator to 5.8 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
7-
- Bumped official openapi generator to 5.2.0. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.0)
16+
17+
- Bumped dart-ogurets (_dioAlt_) generator to 5.8
18+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
19+
- Bumped official openapi generator to 5.2.0.
20+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.0)
821
- Added support for nullSafe for _dioAlt_ generator
922
- Added support for import mappings
1023

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: openapi_generator_annotations
22
description: Annotation package for openapi_generator https://pub.dev/packages/openapi_generator.
3-
version: 3.2.1
3+
version: 3.3.0
44
homepage: https://github.com/gibahjoe/openapi-generator-dart
55

66

77
environment:
88
sdk: '>=2.12.0 <3.0.0'
99

1010
dev_dependencies:
11-
pedantic: ^1.11.1
12-
test: ^1.16.8
11+
pedantic:
12+
test:

openapi-generator-cli/CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
1+
## 3.3.0
2+
3+
- Bumped dart-ogurets (_dioAlt_) generator to 5.11
4+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
5+
- Bumped official openapi generator to 5.3/0.
6+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.3.0)
7+
18
## 3.2.1
2-
- Bumped dart-ogurets (_dioAlt_) generator to 5.9 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
3-
- Bumped official openapi generator to 5.2.1. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
9+
10+
- Bumped dart-ogurets (_dioAlt_) generator to 5.9
11+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
12+
- Bumped official openapi generator to 5.2.1.
13+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
414

515
## 3.2.0
6-
- Bumped dart-ogurets (_dioAlt_) generator to 5.8 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
7-
- Bumped official openapi generator to 5.2.0. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.0)
16+
17+
- Bumped dart-ogurets (_dioAlt_) generator to 5.8
18+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
19+
- Bumped official openapi generator to 5.2.0.
20+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.0)
821

922
## 3.1.3
1023
- Bumped dart-ogurets (_dioAlt_) generator to 5.3 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
553 KB
Binary file not shown.

openapi-generator-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
<dependency>
4848
<groupId>org.openapitools</groupId>
4949
<artifactId>openapi-generator-cli</artifactId>
50-
<version>5.2.1</version>
50+
<version>5.3.0</version>
5151
</dependency>
5252

5353
<dependency>
5454
<groupId>com.bluetrainsoftware.maven</groupId>
5555
<artifactId>openapi-dart-generator</artifactId>
56-
<version>5.9</version>
56+
<version>5.11</version>
5757
</dependency>
5858
</dependencies>
5959
</project>

openapi-generator-cli/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: openapi_generator_cli
22
description: A dart wrapper around openapi-generator inspired by the node implementation.
3-
version: 3.2.1
3+
version: 3.3.0
44
homepage: https://github.com/gibahjoe/openapi-generator-dart
55

66
environment:
77
sdk: '>=2.12.0 <3.0.0'
88

99
dev_dependencies:
10-
pedantic: ^1.11.1
11-
test: ^1.16.8
10+
pedantic:
11+
test:
1212

1313
executables:
1414
openapi-generator: main

openapi-generator/CHANGELOG.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
1+
## 3.3.0+1
2+
3+
- Bumped dart-ogurets (_dioAlt_) generator to 5.11
4+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
5+
- Bumped official openapi generator to 5.3/0.
6+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.3.0)
7+
18
## 3.2.1
2-
- Bumped dart-ogurets (_dioAlt_) generator to 5.9 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
3-
- Bumped official openapi generator to 5.2.1. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
9+
10+
- Bumped dart-ogurets (_dioAlt_) generator to 5.9
11+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
12+
- Bumped official openapi generator to 5.2.1.
13+
See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.1)
414

515
## 3.2.0+2
16+
617
- fixed boolean additional properties returning null
718

819
## 3.2.0
9-
- Bumped dart-ogurets (_dioAlt_) generator to 5.8 with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
20+
21+
- Bumped dart-ogurets (_dioAlt_) generator to 5.8
22+
with [changes](https://github.com/dart-ogurets/dart-openapi-maven#changelog)
1023
- Bumped official openapi generator to 5.2.0. See [change log](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.2.0)
1124
- Added support for nullSafe for _dioAlt_ generator
1225
- Added support for import mappings

openapi-generator/pubspec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: openapi_generator
22
description: Generator for openapi client sdk inspired by the npm implementation of openapi-generator-cli.
3-
version: 3.2.1
3+
version: 3.3.0+1
44
homepage: https://github.com/gibahjoe/openapi-generator-dart
55

66
environment:
77
sdk: '>=2.12.0 <3.0.0'
88

99
dependencies:
10-
build: ^2.1.0
11-
source_gen: ^1.1.0
12-
path: ^1.8.0
13-
openapi_generator_annotations: ^3.2.1
14-
analyzer: ^2.2.0
15-
openapi_generator_cli: ^3.2.1
10+
build: '>=0.12.6 <=3.0.0'
11+
source_gen: '>=1.0.0 <=2.0.0'
12+
path: '>=1.0.0 <=2.0.0'
13+
openapi_generator_annotations: ^3.3.0
14+
analyzer: '>=1.4.0 <=3.0.0'
15+
openapi_generator_cli: ^3.3.0
1616

1717
dev_dependencies:
18-
pedantic: ^1.11.1
18+
pedantic:
1919

0 commit comments

Comments
 (0)