Skip to content

Commit 728fefa

Browse files
committed
Updated dependencies, created new release
1 parent aa59c50 commit 728fefa

12 files changed

+2514
-3296
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.25.0] - 2023-07-05
5+
### Fixed
6+
- Upgraded dependencies
7+
### Added
8+
- Allow usage of a custom axios instance
9+
- Added message in generated files
10+
411
## [0.24.0] - 2023-04-10
512
### Fixed
613
- Upgraded dependencies

Diff for: docs/angular-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ If you want to generate the Angular based client then you can specify `--client
99
The Angular client has been tested with the following versions:
1010

1111
```
12-
"@angular/common": "15.0.x",
13-
"@angular/core": "15.0.x",
12+
"@angular/common": "16.0.x",
13+
"@angular/core": "16.0.x",
1414
"rxjs": "7.5.x",
1515
```
1616

Diff for: package-lock.json

+1,904-2,979
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openapi-typescript-codegen",
3-
"version": "0.24.0",
3+
"version": "0.25.0",
44
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
55
"author": "Ferdi Koomen",
66
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
@@ -61,40 +61,40 @@
6161
},
6262
"dependencies": {
6363
"camelcase": "^6.3.0",
64-
"commander": "^10.0.0",
64+
"commander": "^11.0.0",
6565
"fs-extra": "^11.1.1",
6666
"handlebars": "^4.7.7",
6767
"json-schema-ref-parser": "^9.0.9"
6868
},
6969
"devDependencies": {
70-
"@angular-devkit/build-angular": "15.2.5",
71-
"@angular/animations": "15.2.6",
72-
"@angular/cli": "15.2.5",
73-
"@angular/common": "15.2.6",
74-
"@angular/compiler": "15.2.6",
75-
"@angular/compiler-cli": "15.2.6",
76-
"@angular/core": "15.2.6",
77-
"@angular/forms": "15.2.6",
78-
"@angular/platform-browser": "15.2.6",
79-
"@angular/platform-browser-dynamic": "15.2.6",
80-
"@angular/router": "15.2.6",
70+
"@angular-devkit/build-angular": "16.1.3",
71+
"@angular/animations": "16.1.3",
72+
"@angular/cli": "16.1.3",
73+
"@angular/common": "16.1.3",
74+
"@angular/compiler": "16.1.3",
75+
"@angular/compiler-cli": "16.1.3",
76+
"@angular/core": "16.1.3",
77+
"@angular/forms": "16.1.3",
78+
"@angular/platform-browser": "16.1.3",
79+
"@angular/platform-browser-dynamic": "16.1.3",
80+
"@angular/router": "16.1.3",
8181
"@babel/cli": "7.22.6",
82-
"@babel/core": "7.22.5",
82+
"@babel/core": "7.22.6",
8383
"@babel/preset-env": "7.22.6",
8484
"@babel/preset-typescript": "7.22.5",
85-
"@rollup/plugin-commonjs": "24.1.0",
85+
"@rollup/plugin-commonjs": "25.0.2",
8686
"@rollup/plugin-node-resolve": "15.1.0",
8787
"@rollup/plugin-typescript": "11.1.2",
8888
"@types/cross-spawn": "6.0.2",
8989
"@types/express": "4.17.17",
9090
"@types/fs-extra": "^11.0.1",
9191
"@types/glob": "8.1.0",
9292
"@types/jest": "29.5.2",
93-
"@types/node": "18.16.3",
94-
"@types/node-fetch": "2.6.3",
93+
"@types/node": "20.3.3",
94+
"@types/node-fetch": "2.6.4",
9595
"@types/qs": "6.9.7",
9696
"@typescript-eslint/eslint-plugin": "5.61.0",
97-
"@typescript-eslint/parser": "5.60.1",
97+
"@typescript-eslint/parser": "5.61.0",
9898
"abort-controller": "3.0.0",
9999
"axios": "1.4.0",
100100
"codecov": "3.8.3",
@@ -106,24 +106,24 @@
106106
"express": "4.18.2",
107107
"form-data": "4.0.0",
108108
"glob": "10.3.1",
109-
"jest": "29.5.0",
109+
"jest": "29.6.0",
110110
"jest-cli": "29.6.0",
111111
"node-fetch": "2.6.9",
112112
"prettier": "2.8.8",
113-
"puppeteer": "19.11.1",
113+
"puppeteer": "20.7.4",
114114
"qs": "6.11.2",
115115
"rimraf": "5.0.1",
116-
"rollup": "3.20.2",
116+
"rollup": "3.26.1",
117117
"rollup-plugin-terser": "7.0.2",
118118
"rxjs": "7.8.1",
119119
"ts-node": "10.9.1",
120120
"tslib": "2.6.0",
121-
"typescript": "4.9.5",
121+
"typescript": "5.1.6",
122122
"zone.js": "0.13.1"
123123
},
124124
"overrides" : {
125125
"node-fetch": "2.6.9",
126-
"rollup": "3.20.2",
127-
"typescript": "4.9.5"
126+
"rollup": "3.26.1",
127+
"typescript": "5.1.6"
128128
}
129129
}

0 commit comments

Comments
 (0)