Skip to content

Commit 9a91e86

Browse files
authored
Merge pull request #1 from APNF/releases/1.5.1
1.5.1 Release
2 parents 46b858b + 79169d2 commit 9a91e86

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.5.1 - 2023/10/05
4+
5+
- (BPCO) (GET /ca) Update `version` format from integer to float
6+
- (BPCO) (GET /ca/certs) Update `version` format from integer to float
7+
38
## 1.5.0 - 2023/09/27
49

510
- (AUTH) Clarify access token lifetime

apnf-man-platform-openapi-auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: APNF MAN Platform - API Authentication Reference
4-
version: 1.5.0
4+
version: 1.5.1
55
license:
66
name: CC-BY-SA-4.0
77
url: https://creativecommons.org/licenses/by-sa/4.0/legalcode

apnf-man-platform-openapi-bpco.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: APNF MAN Platform - BPCO API Reference
4-
version: 1.5.0
4+
version: 1.5.1
55
license:
66
name: CC-BY-SA-4.0
77
url: https://creativecommons.org/licenses/by-sa/4.0/legalcode
@@ -70,6 +70,10 @@ info:
7070
7171
# History
7272
73+
**1.5.0** - 2023/10/05
74+
- (GET /ca) Update `version` format from integer to float
75+
- (GET /ca/certs) Update `version` format from integer to float
76+
7377
**1.5.0** - 2023/09/27
7478
- Include in `Description` section rate limiting logic
7579
- Add CC-BY-SA-4.0 license
@@ -299,7 +303,7 @@ paths:
299303
* `payload` property contains the JWS payload encoded as Base64:
300304
```
301305
base64UrlEncode({
302-
"version": 1,
306+
"version": 1.0,
303307
"sequence": 1,
304308
"exp": 1300819380,
305309
"trustList": [
@@ -308,7 +312,7 @@ paths:
308312
})
309313
```
310314
In this payload:
311-
* `version` is an integer starting with `1` and incremented when the payload format is updated,
315+
* `version` is a float starting with `1.0` and incremented by 1 each time the payload format is updated,
312316
* `sequence` is an integer incremented each time the certificate list is updated,
313317
* `exp` contains the timestamp corresponding to the token expiration date. Expiration for this token is set to one week.
314318
* `trustList` contains the list of the CA root certificates in PEM format.
@@ -414,7 +418,7 @@ paths:
414418
* `payload` property contains the JWS payload encoded as Base64:
415419
```
416420
base64UrlEncode({
417-
"version": 1,
421+
"version": 1.0,
418422
"sequence": 1,
419423
"exp": 1300819380,
420424
"certList": [
@@ -424,7 +428,7 @@ paths:
424428
})
425429
```
426430
In this payload:
427-
* `version` is an integer starting with `1` and incremented when the payload format is updated,
431+
* `version` is a float starting with `1.0` and incremented by 1 each time the payload format is updated,
428432
* `sequence` is an integer incremented each time the certificate list is updated,
429433
* `exp` contains the timestamp corresponding to the token expiration date. Expiration for this token is set to one week.
430434
* `certList` contains the list of the CA intermediates certificates in PEM format.

apnf-man-platform-openapi-gco.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: APNF MAN Platform - GCO API Reference
4-
version: 1.5.0
4+
version: 1.5.1
55
license:
66
name: CC-BY-SA-4.0
77
url: https://creativecommons.org/licenses/by-sa/4.0/legalcode

0 commit comments

Comments
 (0)