Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 2 additions & 1 deletion apiCollection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

---

Expand Down Expand Up @@ -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://`)

---
2 changes: 1 addition & 1 deletion example/plugin1/mock-submodel-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ public class HttpClientFactory(IHttpClientFactory httpClientFactory) : ICreateCl
{
public HttpClient CreateClient(string clientName) => httpClientFactory.CreateClient(clientName);
}

Loading