Skip to content

Commit fbf9f5b

Browse files
chore(release): update monorepo packages versions (#88)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c70b4ce commit fbf9f5b

File tree

6 files changed

+34
-32
lines changed

6 files changed

+34
-32
lines changed

.changeset/changeset.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/perfect-seahorses-live.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/plugins/dart/flutter-freezed/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @graphql-codegen/flutter-freezed
22

3+
## 3.0.2
4+
5+
### Patch Changes
6+
7+
- [#72](https://github.com/dotansimha/graphql-code-generator-community/pull/72) [`c70b4ce49`](https://github.com/dotansimha/graphql-code-generator-community/commit/c70b4ce4967db700266a64d514b8c787e7c0cf9a) Thanks [@MitkoTschimev](https://github.com/MitkoTschimev)! - missing trailing comma in enums
8+
Before
9+
```dart
10+
enum AssetOrder {
11+
@JsonKey(name: 'contentType_ASC')
12+
contentTypeAsc
13+
@JsonKey(name: 'contentType_DESC')
14+
contentTypeDesc
15+
}
16+
```
17+
Now
18+
```dart
19+
enum AssetOrder {
20+
@JsonKey(name: 'contentType_ASC')
21+
contentTypeAsc,
22+
@JsonKey(name: 'contentType_DESC')
23+
contentTypeDesc,
24+
}
25+
```
26+
327
## 3.0.1
428

529
### Patch Changes

packages/plugins/dart/flutter-freezed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/flutter-freezed",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "GraphQL Code Generator plugin to generate Freezed models from your GraphQL schema",
55
"repository": {
66
"type": "git",

packages/plugins/typescript/rtk-query/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-codegen/typescript-rtk-query
22

3+
## 2.4.0
4+
5+
### Minor Changes
6+
7+
- [#75](https://github.com/dotansimha/graphql-code-generator-community/pull/75) [`7e80265e9`](https://github.com/dotansimha/graphql-code-generator-community/commit/7e80265e96ba8f8d984ef5399204b4632ab53c86) Thanks [@DominicGBauer](https://github.com/DominicGBauer)! - [typescript-rtk-query] feat: add importAlternateApiName to conifg options
8+
9+
Add functionality to allow users to use the optional config variable importAlternateApiName to change the api name of the import used by baseApi. It will default to 'api'.
10+
311
## 2.3.7
412

513
### Patch Changes

packages/plugins/typescript/rtk-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-codegen/typescript-rtk-query",
3-
"version": "2.3.7",
3+
"version": "2.4.0",
44
"description": "GraphQL Code Generator plugin for injecting graphql endpoints into a preconfigured RTK Query api",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)