Skip to content

Commit 6732215

Browse files
Merge pull request #337 from regulaforensics/develop
Develop -> Stable
2 parents fb2c998 + 0faa245 commit 6732215

8 files changed

Lines changed: 113 additions & 62 deletions

.github/workflows/back-merge-handler.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: github.ref_name == 'master'
1313
steps:
14-
- uses: actions/checkout@v4
14+
- name: Checkout
15+
uses: actions/checkout@v6
1516
with:
1617
fetch-depth: 0
1718

@@ -41,15 +42,20 @@ jobs:
4142
4243
- name: Create Pull Request
4344
if: env.SKIP != 'true'
44-
run: gh pr create -B stable -H master --title '[GitHub Actions] Merge master -> stable' --label back-merge --body 'Autogenerated Pull Request for `back-merge` triggered by Github Actions'
45+
run: |
46+
gh pr create -B stable -H master \
47+
--title '[GitHub Actions] Merge master -> stable' \
48+
--label back-merge \
49+
--body 'Autogenerated Pull Request for `back-merge` triggered by Github Actions'
4550
env:
4651
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4752

4853
pr_stable_to_develop:
4954
runs-on: ubuntu-latest
5055
if: github.ref_name == 'stable'
5156
steps:
52-
- uses: actions/checkout@v4
57+
- name: Checkout
58+
uses: actions/checkout@v6
5359
with:
5460
fetch-depth: 0
5561

@@ -79,6 +85,10 @@ jobs:
7985
8086
- name: Create Pull Request
8187
if: env.SKIP != 'true'
82-
run: gh pr create -B develop -H stable --title '[GitHub Actions] Merge stable -> develop' --label back-merge --body 'Autogenerated Pull Request for `back-merge` triggered by Github Actions'
88+
run: |
89+
gh pr create -B develop -H stable \
90+
--title '[GitHub Actions] Merge stable -> develop' \
91+
--label back-merge \
92+
--body 'Autogenerated Pull Request for `back-merge` triggered by Github Actions'
8393
env:
8494
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/make-prs-for-client-repos.yml

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,38 +27,68 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Create PR for Python WebClient Repo
30-
run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-python-client
30+
run: |
31+
gh pr create --base ${{ inputs.target_branch }} \
32+
--head ${{ inputs.source_branch }} \
33+
--title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' \
34+
--label OpenAPI \
35+
--body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' \
36+
--repo regulaforensics/DocumentReader-web-python-client
3137
env:
3238
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
3339

3440
java-webclient-pr:
3541
runs-on: ubuntu-latest
3642
steps:
3743
- name: Create PR for Java WebClient Repo
38-
run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-java-client
44+
run: |
45+
gh pr create --base ${{ inputs.target_branch }} \
46+
--head ${{ inputs.source_branch }} \
47+
--title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' \
48+
--label OpenAPI \
49+
--body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' \
50+
--repo regulaforensics/DocumentReader-web-java-client
3951
env:
4052
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
4153

4254
js-webclient-pr:
4355
runs-on: ubuntu-latest
4456
steps:
4557
- name: Create PR for JS WebClient Repo
46-
run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-js-client
58+
run: |
59+
gh pr create --base ${{ inputs.target_branch }} \
60+
--head ${{ inputs.source_branch }} \
61+
--title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' \
62+
--label OpenAPI \
63+
--body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' \
64+
--repo regulaforensics/DocumentReader-web-js-client
4765
env:
4866
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
4967

5068
csharp-webclient-pr:
5169
runs-on: ubuntu-latest
5270
steps:
5371
- name: Create PR for CSharp WebClient Repo
54-
run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-csharp-client
72+
run: |
73+
gh pr create --base ${{ inputs.target_branch }} \
74+
--head ${{ inputs.source_branch }} \
75+
--title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' \
76+
--label OpenAPI \
77+
--body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' \
78+
--repo regulaforensics/DocumentReader-web-csharp-client
5579
env:
5680
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
5781

5882
openapi-pr:
5983
runs-on: ubuntu-latest
6084
steps:
6185
- name: Create PR for OpenAPI Repo
62-
run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-openapi
86+
run: |
87+
gh pr create --base ${{ inputs.target_branch }} \
88+
--head ${{ inputs.source_branch }} \
89+
--title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' \
90+
--label OpenAPI \
91+
--body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' \
92+
--repo regulaforensics/DocumentReader-web-openapi
6393
env:
6494
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}

.github/workflows/update-clients.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout Specification Repo
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
with:
37-
path: "DocumentReader-web-openapi"
37+
path: 'DocumentReader-web-openapi'
3838
ref: ${{ github.event.inputs.branch }}
3939

4040
- name: Checkout JS Client Repo
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
with:
43-
repository: "regulaforensics/DocumentReader-web-js-client"
43+
repository: 'regulaforensics/DocumentReader-web-js-client'
4444
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
45-
path: "js-client"
46-
ref: "develop"
45+
path: 'js-client'
46+
ref: 'develop'
4747

4848
- name: Update Model According To Specification
4949
working-directory: js-client
@@ -64,7 +64,7 @@ jobs:
6464
fi
6565
6666
git add --all
67-
67+
6868
if ! git diff-index --quiet --cached HEAD; then
6969
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
7070
else
@@ -87,25 +87,25 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- name: Specify Java Version
90-
uses: actions/setup-java@v4
90+
uses: actions/setup-java@v5
9191
with:
92-
distribution: "zulu"
92+
distribution: 'zulu'
9393
java-version: 11
9494
java-package: jdk
9595

9696
- name: Checkout Specification Repo
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v6
9898
with:
99-
path: "DocumentReader-web-openapi"
99+
path: 'DocumentReader-web-openapi'
100100
ref: ${{ github.event.inputs.branch }}
101101

102102
- name: Checkout Java Client Repo
103-
uses: actions/checkout@v4
103+
uses: actions/checkout@v6
104104
with:
105-
repository: "regulaforensics/DocumentReader-web-java-client"
105+
repository: 'regulaforensics/DocumentReader-web-java-client'
106106
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
107-
path: "java-client"
108-
ref: "develop"
107+
path: 'java-client'
108+
ref: 'develop'
109109

110110
- name: Update Model According To Specification
111111
working-directory: java-client
@@ -125,7 +125,7 @@ jobs:
125125
fi
126126
127127
git add --all
128-
128+
129129
if ! git diff-index --quiet --cached HEAD; then
130130
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
131131
else
@@ -148,18 +148,18 @@ jobs:
148148
runs-on: ubuntu-latest
149149
steps:
150150
- name: Checkout Specification Repo
151-
uses: actions/checkout@v4
151+
uses: actions/checkout@v6
152152
with:
153153
path: "DocumentReader-web-openapi"
154154
ref: ${{ github.event.inputs.branch }}
155155

156156
- name: Checkout Python Client Repo
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v6
158158
with:
159-
repository: "regulaforensics/DocumentReader-web-python-client"
159+
repository: 'regulaforensics/DocumentReader-web-python-client'
160160
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
161-
path: "python-client"
162-
ref: "develop"
161+
path: 'python-client'
162+
ref: 'develop'
163163

164164
- name: Update Model According To Specification
165165
working-directory: python-client
@@ -179,7 +179,7 @@ jobs:
179179
fi
180180
181181
git add --all
182-
182+
183183
if ! git diff-index --quiet --cached HEAD; then
184184
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
185185
else
@@ -202,18 +202,18 @@ jobs:
202202
runs-on: ubuntu-latest
203203
steps:
204204
- name: Checkout Specification Repo
205-
uses: actions/checkout@v4
205+
uses: actions/checkout@v6
206206
with:
207-
path: "DocumentReader-web-openapi"
207+
path: 'DocumentReader-web-openapi'
208208
ref: ${{ github.event.inputs.branch }}
209209

210210
- name: Checkout C# Client Repo
211-
uses: actions/checkout@v4
211+
uses: actions/checkout@v6
212212
with:
213-
repository: "regulaforensics/DocumentReader-web-csharp-client"
213+
repository: 'regulaforensics/DocumentReader-web-csharp-client'
214214
token: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
215-
path: "csharp-client"
216-
ref: "develop"
215+
path: 'csharp-client'
216+
ref: 'develop'
217217

218218
- name: Update Model According To Specification
219219
working-directory: csharp-client
@@ -233,7 +233,7 @@ jobs:
233233
fi
234234
235235
git add --all
236-
236+
237237
if ! git diff-index --quiet --cached HEAD; then
238238
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
239239
else

.github/workflows/validate-spec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Node
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
2020
node-version: 20
2121
registry-url: https://registry.npmjs.org/

.github/workflows/verify-clients.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Specification Repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
with:
17-
path: "DocumentReader-web-openapi"
17+
path: 'DocumentReader-web-openapi'
1818

1919
- name: Checkout Python Client Repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
22-
repository: "regulaforensics/DocumentReader-web-python-client"
23-
path: "python-client"
22+
repository: 'regulaforensics/DocumentReader-web-python-client'
23+
path: 'python-client'
2424

2525
- name: Verify update Python client
2626
working-directory: python-client
@@ -34,15 +34,15 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout Specification Repo
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
39-
path: "DocumentReader-web-openapi"
39+
path: 'DocumentReader-web-openapi'
4040

4141
- name: Checkout CSharp Client Repo
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
44-
repository: "regulaforensics/DocumentReader-web-csharp-client"
45-
path: "csharp-client"
44+
repository: 'regulaforensics/DocumentReader-web-csharp-client'
45+
path: 'csharp-client'
4646

4747
- name: Verify update CSharp client
4848
working-directory: csharp-client
@@ -56,15 +56,15 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- name: Checkout Specification Repo
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v6
6060
with:
61-
path: "DocumentReader-web-openapi"
61+
path: 'DocumentReader-web-openapi'
6262

6363
- name: Checkout JS Client Repo
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565
with:
66-
repository: "regulaforensics/DocumentReader-web-js-client"
67-
path: "js-client"
66+
repository: 'regulaforensics/DocumentReader-web-js-client'
67+
path: 'js-client'
6868

6969
- name: Verify update JS client
7070
working-directory: js-client
@@ -76,22 +76,22 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Specify Java Version
79-
uses: actions/setup-java@v4
79+
uses: actions/setup-java@v5
8080
with:
81-
distribution: "zulu"
81+
distribution: 'zulu'
8282
java-version: 11
8383
java-package: jdk
8484

8585
- name: Checkout Specification Repo
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v6
8787
with:
88-
path: "DocumentReader-web-openapi"
88+
path: 'DocumentReader-web-openapi'
8989

9090
- name: Checkout Java Client Repo
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v6
9292
with:
93-
repository: "regulaforensics/DocumentReader-web-java-client"
94-
path: "java-client"
93+
repository: 'regulaforensics/DocumentReader-web-java-client'
94+
path: 'java-client'
9595

9696
- name: Verify update Java client
9797
working-directory: java-client

e-parsing-notification-codes.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ components:
190190
- 2417491968
191191
- 2417557504
192192
- 2417623040
193+
- 2432696593
194+
- 2432696594
193195
- 2449539072
194196
- 2449604608
195197
- 2449670144
@@ -514,6 +516,8 @@ components:
514516
- "Biometrics: BDB data pose angle U roll"
515517
- "Biometrics: BDB data face image type"
516518
- "Biometrics: BDB data image data type"
519+
- "Notification - SI: Storage CS Non Consistant"
520+
- "Notification - SI: Storage CS PACE CAM key missing"
517521
- "Biometrics: RB data incorrect"
518522
- "Biometrics: RB item incorrect"
519523
- "Biometrics: RB item missing"
@@ -838,6 +842,8 @@ components:
838842
- "ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll"
839843
- "ntfLDS_Biometrics_BDB_Data_FaceImageType"
840844
- "ntfLDS_Biometrics_BDB_Data_ImageDataType"
845+
- "ntfLDS_SI_Storage_CS_NonConsistant"
846+
- "ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing"
841847
- "ntfLDS_Biometrics_RB_Data_Incorrect"
842848
- "ntfLDS_Biometrics_RB_Item_Incorrect"
843849
- "ntfLDS_Biometrics_RB_Item_Missing"

0 commit comments

Comments
 (0)