@team-supercharge/oasg 4.0.0 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitlab-ci.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  include:
2
2
  - project: team-supercharge/jarvis/jarvis
3
3
  file: jarvis.yml
4
- ref: v6.0.0
4
+ ref: v6.3.0
5
5
 
6
6
  stages:
7
7
  - lint
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.0.1](https://gitlab.com/team-supercharge/oasg/compare/v4.0.0...v4.0.1) (2022-03-18)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add missing default generatorId mapping for feign clients ([5a8f7bf](https://gitlab.com/team-supercharge/oasg/commit/5a8f7bf57f13b666ff6cbcb652634352a4d8b96f))
11
+
5
12
  ## [4.0.0](https://gitlab.com/team-supercharge/oasg/oasg/compare/v3.2.0...v4.0.0) (2021-08-30)
6
13
 
7
14
 
package/bin/oasg CHANGED
@@ -40,7 +40,8 @@ const DEFAULT_GENERATOR_ID_MAPPING = {
40
40
  "angular": 'typescript-angular',
41
41
  "spring": 'spring',
42
42
  "spring-kotlin": 'kotlin-spring',
43
- "stubby": 'stubby'
43
+ "stubby": 'stubby',
44
+ "feign": 'spring',
44
45
  }
45
46
 
46
47
  let config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-supercharge/oasg",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Node-based tool to lint OpenAPI documents and generate clients, servers and documentation from them",
5
5
  "author": "Supercharge",
6
6
  "license": "MIT",
@@ -6,7 +6,7 @@ rm -rf out/$targetId
6
6
  mkdir -p out/$targetId
7
7
 
8
8
  java -jar $binary generate \
9
- -g spring \
9
+ -g $generatorId \
10
10
  -i $openApiFile \
11
11
  -o out/$targetId \
12
12
  -c $(dirname "$0")/generator-config.json \