From 01e60073ea123379a7875c0c702662104e20d074 Mon Sep 17 00:00:00 2001 From: Ulrich Buchgraber Date: Thu, 7 Aug 2025 11:51:53 +0200 Subject: [PATCH 1/6] Fix typo --- docs/_data/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index 25c342a..5ba8a19 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -15,7 +15,7 @@ version: '3.2.0' improvements: - text: Improved the performance and logging. - issues: [SIGN-7681, SIGN-7735, SIGNm-7910] + issues: [SIGN-7681, SIGN-7735, SIGN-7910] azure_devops_connector: version: '0.4.0' bug_fixes: From 5d2a8c6944248f06dc628f7378293122d51ac643 Mon Sep 17 00:00:00 2001 From: Ulrich Buchgraber Date: Thu, 7 Aug 2025 11:55:31 +0200 Subject: [PATCH 2/6] Add change logs for 1.194 --- docs/_data/changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index 5ba8a19..0f24ecc 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -1,3 +1,11 @@ +- date: '2025-08-12' + updates: + application: + version: 1.194.0 + bug_fixes: + - text: |- + Fixed missing webhook call response body download for failed webhook calls on signing request details page. + issues: [SIGN-7749] - date: '2025-07-15' updates: application: From a3470266d44367b77d0578f7b8b78355df6f3225 Mon Sep 17 00:00:00 2001 From: Ulrich Buchgraber Date: Thu, 7 Aug 2025 11:59:11 +0200 Subject: [PATCH 3/6] Improve wording --- docs/_data/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index 0f24ecc..c8b12be 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -4,7 +4,7 @@ version: 1.194.0 bug_fixes: - text: |- - Fixed missing webhook call response body download for failed webhook calls on signing request details page. + Fixed webhook call response body download for failed webhook calls on signing request details page. issues: [SIGN-7749] - date: '2025-07-15' updates: From 3aa46c9867c5ac19359e27256cfacbfc99d4b202 Mon Sep 17 00:00:00 2001 From: Ulrich Buchgraber Date: Thu, 21 Aug 2025 10:47:39 +0200 Subject: [PATCH 4/6] Add 1.195 change logs --- docs/_data/changelog.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index c8b12be..589f717 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -1,3 +1,23 @@ +- date: '2025-08-26' + updates: + application: + version: 1.195.0 + improvements: + - text: |- + REST API: All status 4xx error response bodies conform to the [RFC9457](https://datatracker.ietf.org/doc/html/rfc9457) "Problem Details" JSON format: + * Previously only some 400 "bad request" error responses used RFC9457, others just contained a simple error plain text body. + * In case REST API clients process _error response bodies_ they may require adaptions. + issues: [SIGN-7868] + bug_fixes: + - text: |- + REST API: fix typo in `GET /v1/{organizationId}/Organization` route: renamed `maxNumberOfIndiviudualSignatures` property to `maxNumberOfIndividualSignatures`. + issues: [SIGN-7997] + self_hosted_installations: + version: 1.195.0 + improvements: + - text: |- + The extra delay for artifact deletions/archiving (after the the background job selected eligible signing requests) has been reduced from 24h to 1 hour. + issues: [SIGN-7988] - date: '2025-08-12' updates: application: From 9063d192447d93dcb12850873e1da4b8ac2a68f7 Mon Sep 17 00:00:00 2001 From: Ulrich Buchgraber Date: Thu, 21 Aug 2025 15:32:19 +0200 Subject: [PATCH 5/6] Improve wording --- docs/_data/changelog.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index 589f717..4b2cbbf 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -4,9 +4,9 @@ version: 1.195.0 improvements: - text: |- - REST API: All status 4xx error response bodies conform to the [RFC9457](https://datatracker.ietf.org/doc/html/rfc9457) "Problem Details" JSON format: - * Previously only some 400 "bad request" error responses used RFC9457, others just contained a simple error plain text body. - * In case REST API clients process _error response bodies_ they may require adaptions. + REST API: All status 4xx error response bodies conform to the [RFC9457](https://datatracker.ietf.org/doc/html/rfc9457) "problem details" JSON format: + * Previously, only some 400 "bad request" error responses used RFC9457, other 400 responses and also 401/403 just contained a simple plain text body with the error message. + * In case REST API clients process _error response bodies_, they may require adaptions. issues: [SIGN-7868] bug_fixes: - text: |- From 7f0731fde24948b9e65b8ea9a82499f5b0c892c0 Mon Sep 17 00:00:00 2001 From: Stefan Wenig Date: Thu, 21 Aug 2025 15:54:10 +0200 Subject: [PATCH 6/6] Update changelog.yml --- docs/_data/changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/_data/changelog.yml b/docs/_data/changelog.yml index 4b2cbbf..a3f96bf 100644 --- a/docs/_data/changelog.yml +++ b/docs/_data/changelog.yml @@ -4,19 +4,19 @@ version: 1.195.0 improvements: - text: |- - REST API: All status 4xx error response bodies conform to the [RFC9457](https://datatracker.ietf.org/doc/html/rfc9457) "problem details" JSON format: - * Previously, only some 400 "bad request" error responses used RFC9457, other 400 responses and also 401/403 just contained a simple plain text body with the error message. - * In case REST API clients process _error response bodies_, they may require adaptions. + REST API: All status 4xx error response bodies now conform to the [RFC9457](https://datatracker.ietf.org/doc/html/rfc9457) "problem details" JSON format. + * Previously, _some_ 400 "bad request" error responses used RFC9457. Other 400 responses and 401/403 responses just contained a simple plain text body with the error message. + * REST API clients that process _error response bodies_ may require adaptions. issues: [SIGN-7868] bug_fixes: - text: |- - REST API: fix typo in `GET /v1/{organizationId}/Organization` route: renamed `maxNumberOfIndiviudualSignatures` property to `maxNumberOfIndividualSignatures`. + REST API: fixed typo in `GET /v1/{organizationId}/Organization` route: renamed `maxNumberOfIndiviudualSignatures` property to `maxNumberOfIndividualSignatures`. issues: [SIGN-7997] self_hosted_installations: version: 1.195.0 improvements: - text: |- - The extra delay for artifact deletions/archiving (after the the background job selected eligible signing requests) has been reduced from 24h to 1 hour. + An internal delay for deleting/archiving artifacts has been reduced from 24 hours to 1 hour. issues: [SIGN-7988] - date: '2025-08-12' updates: @@ -24,7 +24,7 @@ version: 1.194.0 bug_fixes: - text: |- - Fixed webhook call response body download for failed webhook calls on signing request details page. + Fixed: response was not stored for webhook calls that returned an error, display link failed. issues: [SIGN-7749] - date: '2025-07-15' updates: