From d305ea4c278bade25f6a1f387dce8a50e7c8e9d3 Mon Sep 17 00:00:00 2001 From: Kartavya Shukla Date: Tue, 20 Jan 2026 14:37:54 +0530 Subject: [PATCH 1/4] Feature releasenotetest (#54) * Fix formatting issues in README.md Fix formatting issues in README.md * Add ApiVersion attribute to ShellDescriptorController --- apiCollection/README.md | 3 ++- .../Api/AasRegistry/ShellDescriptorController.cs | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apiCollection/README.md b/apiCollection/README.md index 15d4f1a5..a85faf0c 100644 --- a/apiCollection/README.md +++ b/apiCollection/README.md @@ -66,6 +66,7 @@ By default the API listens at `https://localhost:5059` unless overridden by envi 3. From the top-right environment dropdown select an environment: `local` or `dev` (use `local` for local testing) 4. Expand folders to find requests, select a request and click **Send** 5. Inspect the request/response in the right panel +6. Inspect the request/response in the right panel --- @@ -154,6 +155,6 @@ By default, DataEngine requests the dev Template Repository, Submodel Registry, - Run `dotnet dev-certs https --trust` - Ensure plugin and API endpoints match port and schema (`https://`) - +- Ensure plugin and API endpoints match port and schema (`https://`) --- diff --git a/source/AAS.TwinEngine.DataEngine/Api/AasRegistry/ShellDescriptorController.cs b/source/AAS.TwinEngine.DataEngine/Api/AasRegistry/ShellDescriptorController.cs index b677eef7..f222294f 100644 --- a/source/AAS.TwinEngine.DataEngine/Api/AasRegistry/ShellDescriptorController.cs +++ b/source/AAS.TwinEngine.DataEngine/Api/AasRegistry/ShellDescriptorController.cs @@ -5,12 +5,14 @@ using AAS.TwinEngine.DataEngine.Api.AasRegistry.Responses; using AAS.TwinEngine.DataEngine.ApplicationLogic.Exceptions.Responses; + using Asp.Versioning; using Microsoft.AspNetCore.Mvc; namespace AAS.TwinEngine.DataEngine.Api.AasRegistry; + [ApiController] [Route("shell-descriptors")] [ApiVersion(1)] From 3fe5c398de42eba2cb78d27e7c66bef9b5a45e1f Mon Sep 17 00:00:00 2001 From: Kartavya Shukla Date: Tue, 20 Jan 2026 14:49:25 +0530 Subject: [PATCH 2/4] Create release.yml for changelog management (#55) Add release configuration with changelog categories and exclusions. feat: added appointment calendar UI fix: corrected null pointer error in DataFilterService docs: updated API schema for prescription handling refactor: optimized patient search query chore: bumped dependency versions --- .github/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..d55cf453 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,21 @@ +changelog: + categories: + - title: "๐Ÿš€ Features" + labels: + - "feature" + - "feat" + - title: "๐Ÿž Bug Fixes" + labels: + - "bug" + - "fix" + - title: "๐Ÿงน Maintenance" + labels: + - "chore" + - "refactor" + - "docs" + + exclude: + labels: + - "no-release" + authors: + - "dependabot" From 5b1c45e4156595e36405f40ad0d23b70598f55fa Mon Sep 17 00:00:00 2001 From: Kartavya Shukla Date: Wed, 21 Jan 2026 00:27:13 +0530 Subject: [PATCH 3/4] Update release.yml (#57) feature #57 - made changes in release note template --- .github/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index d55cf453..ac8f074c 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -1,14 +1,14 @@ changelog: categories: - - title: "๐Ÿš€ Features" + - title: "Features" labels: - "feature" - "feat" - - title: "๐Ÿž Bug Fixes" + - title: "Bug Fixes" labels: - "bug" - "fix" - - title: "๐Ÿงน Maintenance" + - title: "Maintenance" labels: - "chore" - "refactor" From c4ef529e315968d207d2798f599f211a6919b8ac Mon Sep 17 00:00:00 2001 From: Kartavya Shukla Date: Wed, 21 Jan 2026 00:37:49 +0530 Subject: [PATCH 4/4] Feature fileschangesfor releasenote (#59) * Update mock-submodel-data.json feature * Update mock-submodel-data.json feature * Update HttpClientFactory .cs Documentation * Updated documentation for contributors --- example/plugin1/mock-submodel-data.json | 2 +- .../Infrastructure/Http/Clients/HttpClientFactory .cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/example/plugin1/mock-submodel-data.json b/example/plugin1/mock-submodel-data.json index b73f73aa..8f13ab00 100644 --- a/example/plugin1/mock-submodel-data.json +++ b/example/plugin1/mock-submodel-data.json @@ -3,7 +3,7 @@ "https://admin-shell.io/idta/nameplate/3/0/Nameplate": { "0112/2///61987#ABN590#002": "https://mm-software.com/Model-000/Serial-Nr-001", "0112/2///61987#ABA565#009": { - "0112/2///61987#ABA565#009_de": "M&M" + "0112/2///61987#ABA565#009_de": "M&M" }, "0112/2///61987#ABP464#002": { "0112/2///61987#ABP464#002_en": "M&MType ABC" diff --git a/source/AAS.TwinEngine.DataEngine/Infrastructure/Http/Clients/HttpClientFactory .cs b/source/AAS.TwinEngine.DataEngine/Infrastructure/Http/Clients/HttpClientFactory .cs index 6f125ce2..a4473201 100644 --- a/source/AAS.TwinEngine.DataEngine/Infrastructure/Http/Clients/HttpClientFactory .cs +++ b/source/AAS.TwinEngine.DataEngine/Infrastructure/Http/Clients/HttpClientFactory .cs @@ -4,3 +4,4 @@ public class HttpClientFactory(IHttpClientFactory httpClientFactory) : ICreateCl { public HttpClient CreateClient(string clientName) => httpClientFactory.CreateClient(clientName); } +