Skip to content

Commit 8f8eccc

Browse files
authored
Merge branch 'main' into feature/adoptEndpoint
2 parents 49135a5 + 61903cc commit 8f8eccc

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

charts/traction/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: traction
33
description: The Traction service allows organizations to verify, hold, and issue verifiable credentials. The Traction Tenant UI allows tenants to manage their agent.
44
type: application
5-
version: 0.6.3
6-
appVersion: 1.4.1
5+
version: 0.6.4
6+
appVersion: 1.4.2
77
home: "https://github.com/bcgov/traction"
88
sources: ["https://github.com/bcgov/traction"]
99
icon: "https://github.com/bcgov/traction/raw/main/docs/assets/readme-logo.png"

charts/traction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traction
22

3-
![Version: 0.6.3](https://img.shields.io/badge/Version-0.6.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.1](https://img.shields.io/badge/AppVersion-1.4.1-informational?style=flat-square)
3+
![Version: 0.6.4](https://img.shields.io/badge/Version-0.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.2](https://img.shields.io/badge/AppVersion-1.4.2-informational?style=flat-square)
44

55
The Traction service allows organizations to verify, hold, and issue verifiable credentials. The Traction Tenant UI allows tenants to manage their agent.
66

@@ -147,7 +147,7 @@ kubectl delete secret,pvc --selector "app.kubernetes.io/instance"=my-release
147147
| acapy.image.pullSecrets | list | `[]` | |
148148
| acapy.image.registry | string | `"ghcr.io"` | |
149149
| acapy.image.repository | string | `"bcgov/traction-plugins-acapy"` | |
150-
| acapy.image.tag | string | `"1.4.1"` | Overrides the image tag which defaults to the chart appVersion. |
150+
| acapy.image.tag | string | `"1.4.2"` | Overrides the image tag which defaults to the chart appVersion. |
151151
| acapy.ingress.admin.enabled | bool | `false` | Enable ingress for the admin endpoint |
152152
| acapy.ingress.admin.hostname | string | `""` | Hostname to expose the admin endpoint |
153153
| acapy.ingress.agent.enabled | bool | `false` | Enable ingress for the agent endpoint |

charts/traction/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ acapy:
3939
pullPolicy: IfNotPresent
4040
pullSecrets: []
4141
# acapy.image.tag -- Overrides the image tag which defaults to the chart appVersion.
42-
tag: "1.4.1"
42+
tag: "1.4.2"
4343
# acapy.image.digest -- Overrides the image digest which is used instead of the tag.
4444
digest: ""
4545

plugins/traction_innkeeper/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "traction-innkeeper"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
description = "The Innkeeper plugin for Traction, providing core tenant management capabilities."
55
authors = [
66
"Lucas O'Neil <lucasoneil@gmail.com>",

services/tenant-ui/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tenant-ui-frontend",
33
"private": true,
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

services/tenant-ui/frontend/src/components/about/Traction.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<div class="col-12 md:col-6">
44
<strong>{{ $t('about.traction.info') }}</strong>
55
<p class="my-0">
6-
{{ $t('about.traction.tractionVersion', { version: '1.4.1' }) }}
6+
{{ $t('about.traction.tractionVersion', { version: '1.4.2' }) }}
77
</p>
88
<p class="mt-0">
9-
{{ $t('about.traction.uiVersion', { version: '1.4.1' }) }}
9+
{{ $t('about.traction.uiVersion', { version: '1.4.2' }) }}
1010
</p>
1111
</div>
1212

services/tenant-ui/frontend/test/__mocks__/store/innkeeper/tenants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const store: { [key: string]: any } = {
2323
serverConfig: {
2424
value: {
2525
config: {
26-
version: '1.4.1',
26+
version: '1.4.2',
2727
},
2828
},
2929
},

services/tenant-ui/frontend/test/__mocks__/store/tenant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const store: { [key: string]: any } = {
1313
serverConfig: {
1414
value: {
1515
config: {
16-
version: '1.4.1',
16+
version: '1.4.2',
1717
},
1818
},
1919
},

services/tenant-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tenant-ui",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"type": "module",
55
"description": "The backend for the Tenant UI service, providing API endpoints and serving the static Vue frontend.",
66
"main": "index.ts",

0 commit comments

Comments
 (0)