Skip to content

Commit

Permalink
build: update dependency file
Browse files Browse the repository at this point in the history
Refs: #64
  • Loading branch information
Phil91 committed Sep 30, 2024
1 parent 1d35150 commit e0e0a72
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
8 changes: 4 additions & 4 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ nuget/nuget/-/Serilog.Sinks.File/5.0.0, Apache-2.0, approved, #11116
nuget/nuget/-/Serilog/3.1.1, Apache-2.0, approved, #13978
nuget/nuget/-/SharpZipLib/1.4.2, MIT AND GFDL-1.3-or-later AND (Apache-2.0 AND MIT) AND WTFPL AND bzip2-1.0.6 AND LicenseRef-Permissive-license-with-conditions AND LicenseRef-Permission-Notice, approved, #10058
nuget/nuget/-/SshNet.Security.Cryptography/1.3.0, MIT, approved, clearlydefined
nuget/nuget/-/Swashbuckle.AspNetCore.Swagger/6.5.0, MIT AND Apache-2.0, approved, #7160
nuget/nuget/-/Swashbuckle.AspNetCore.SwaggerGen/6.5.0, MIT AND Apache-2.0, approved, #7156
nuget/nuget/-/Swashbuckle.AspNetCore.SwaggerUI/6.5.0, MIT AND Apache-2.0, approved, #7158
nuget/nuget/-/Swashbuckle.AspNetCore/6.5.0, MIT AND Apache-2.0, approved, #7159
nuget/nuget/-/Swashbuckle.AspNetCore.Swagger/6.8.0, MIT AND Apache-2.0, approved, #16262
nuget/nuget/-/Swashbuckle.AspNetCore.SwaggerGen/6.8.0, MIT AND Apache-2.0, approved, #16259
nuget/nuget/-/Swashbuckle.AspNetCore.SwaggerUI/6.8.0, MIT AND Apache-2.0, approved, #16261
nuget/nuget/-/Swashbuckle.AspNetCore/6.8.0, MIT AND Apache-2.0, approved, #16260
nuget/nuget/-/Testcontainers.PostgreSql/3.8.0, MIT, approved, #15169
nuget/nuget/-/Testcontainers/3.8.0, MIT, approved, #15178
nuget/nuget/-/xunit.abstractions/2.0.3, Apache-2.0, approved, clearlydefined
Expand Down
17 changes: 17 additions & 0 deletions docs/technical-documentation/release-process/Release Process.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The release process for a new version can roughly be divided into the following
- [1. Aggregate migrations](#1-aggregate-migrations)
- [2. Version bump](#2-version-bump)
- [3. Update README (on chart level)](#3-update-readme-on-chart-level)
- [4. Update .tractusx](#4-update-tractusx)
- [Update CHANGELOG.md](#update-changelogmd)
- [Merge release branch](#merge-release-branch)
- [RC: provide successive rc branch and change base of open PRs](#rc-provide-successive-rc-branch-and-change-base-of-open-prs)
Expand Down Expand Up @@ -52,6 +53,22 @@ Example for commit message:

_build: update readme for vx.x.x_

### 4. Update .tractusx

Adjust links of the open api specifications in the .tractusx file.

All stable releases should be listed. In case of a pre-release version (rc, alpha, etc.), only the latest one should be listed.

```md
openApiSpecs:
- "https://raw.githubusercontent.com/eclipse-tractusx/ssi-authority-schema-registry/blob/v1.0.0/docs/api/asr-service.yaml"
- "https://raw.githubusercontent.com/eclipse-tractusx/ssi-authority-schema-registry/blob/v1.1.0/docs/api/asr-service.yaml"
```

Example for commit message:

_build: update open api spec for vx.x.x_

## Update CHANGELOG.md

The changelog file tracks all notable changes since the last released version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,4 @@ public async Task GetCredentials_WithCredentialTypeFilters_ReturnsExpected()
}

#endregion

#region Swagger

[Fact]
public async Task CheckSwagger_ReturnsExpected()
{
// Act
var response = await _client.GetAsync($"{BaseUrl}/swagger");

// Assert
response.Should().NotBeNull();
response.StatusCode.Should().Be(HttpStatusCode.OK);
}

#endregion
}

0 comments on commit e0e0a72

Please sign in to comment.