Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(v1.1.0): bump version for release v1.1.0 #52

Merged
merged 1 commit into from
Jul 4, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/chart-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ on:
upgrade_from:
description: 'dim chart version to upgrade from'
# tbd
default: '1.0.0'
default: '1.1.0'
required: false
type: string

Expand Down
4 changes: 2 additions & 2 deletions charts/dim/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
name: dim
type: application
version: 1.0.0
appVersion: 1.0.0
version: 1.1.0
appVersion: 1.1.0
description: Helm chart for DIM Middle Layer
home: https://github.com/catenax-ng/dim-repo
dependencies:
Expand Down
7 changes: 6 additions & 1 deletion charts/dim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To use the helm chart as a dependency:
dependencies:
- name: dim
repository: https://sap.github.io/ssi-dim-middle-layer
version: 1.0.0
version: 1.1.0
```

## Requirements
Expand Down Expand Up @@ -82,6 +82,11 @@ dependencies:
| processesworker.callback.clientSecret | string | `""` | Client-secret for callback client-id. Secret-key 'callback-client-secret'. |
| processesworker.callback.tokenAddress | string | `""` | |
| processesworker.callback.baseAddress | string | `""` | Url to the cf service api |
| processesworker.technicalUserCreation.encryptionConfigIndex | int | `0` | |
| processesworker.technicalUserCreation.encryptionConfigs.index0.index | int | `0` | |
| processesworker.technicalUserCreation.encryptionConfigs.index0.cipherMode | string | `"CBC"` | |
| processesworker.technicalUserCreation.encryptionConfigs.index0.paddingMode | string | `"PKCS7"` | |
| processesworker.technicalUserCreation.encryptionConfigs.index0.encryptionKey | string | `""` | EncryptionKey to encrypt the technical user client-secret. Secret-key 'technicalusercreation-encryption-key0'. Expected format is 256 bit (64 digits) hex. |
| existingSecret | string | `""` | Secret containing "client-secret-cis-central", "client-secret-cf" and "client-secret-callback" |
| dotnetEnvironment | string | `"Production"` | |
| dbConnection.schema | string | `"dim"` | |
Expand Down
2 changes: 1 addition & 1 deletion consortia/argocd-app-templates/appsetup-int.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
source:
path: charts/dim
repoURL: 'https://github.com/sap/dim-client.git'
targetRevision: dim-1.0.0
targetRevision: dim-1.1.0
plugin:
env:
- name: AVP_SECRET
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
</Project>
Loading