Skip to content

Commit f68902e

Browse files
committed
updated
1 parent 5861d83 commit f68902e

7 files changed

Lines changed: 50 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.42] - 2024-08-21
9+
### Helm changes
10+
- Applications versions:
11+
- server - 5.77.2
12+
- frontend - 5.77.0
13+
- realtime - 3.0.8
14+
- control-tasks - 2.36.0
15+
- widget - v1.40.0
16+
17+
### Improvements / New Features
18+
19+
#### 1. Updated the "Attachments" section for actors. Now, files are categorized into those directly attached to the actor and those added through the actor's reactions.
20+
#### 2. Created an API for generating zip archives from files in the Simulator.
21+
#### 3. Now, when a client follows a direct link to a script, the registration/authentication page will display the script's title and logo, making it clearer to the client where they are authenticating.
22+
#### 4. Made the public API method `realtime/interface` available for managing event focus.
23+
#### 5. Actors Bag: Added "Show more/Show less" in custom columns for displaying a large number of nested actors.
24+
#### 6. Added the ability to download all files in one archive in the actor's "Attachments" section.
25+
#### 7. For `sim.simulator.company`, emails about new events and reactions will now be sent even if the user’s event access is granted through a group.
26+
#### 8. Created an API for filtering actors based on the user with whom the actor is shared.
27+
28+
### Scripts
29+
30+
#### 1. Added the `extra.mirrored` parameter to the `upload webcam` component (`https://doc.simulator.company/cdu#tag/upload`). Default is `false`.
31+
#### 2. Now, when using the button with `action: logout`, error notifications about the user not being authenticated will no longer be shown.
32+
#### 3. Fixed the functionality of the Twilio widget.
33+
#### 4. Implemented custom bars functionality, allowing users to add selected scripts to the comment input panel for quick launching as widgets.
34+
35+
### Widget
36+
37+
#### 1. Added the ability to manage the sending of the "joined conversation" reaction to the client widget. This is configurable in the actor widget.
38+
#### 2. Added the ability to style reactions sent from an API key in the widget.
39+
#### 3. (See: `https://doc.simulator.company/#operation/createReaction`)
40+
#### 4. Added the `extra.commentStyleType = primary | secondary | text` field.
41+
#### 5. The reaction will be styled only in the widget. Inside the Simulator, it will remain a standard reaction.
42+
43+
844
## [0.3.41] - 2024-07-31
945
### Helm changes
1046
- Applications versions:

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: control
33
description: A Helm chart for Control
44
icon: https://sim.simulator.company/static/logo.svg
55
type: application
6-
version: 0.3.41
7-
appVersion: 5.74.0
6+
version: 0.3.42
7+
appVersion: 5.77.0

charts/control-tasks/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: control-tasks
33
description: A Helm chart for Control Tasks
44
type: application
5-
version: 0.1.12
6-
appVersion: 2.33.1
5+
version: 0.1.13
6+
appVersion: 2.36.0

charts/frontend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: frontend
33
description: A Helm chart for Control Frontend
44
type: application
5-
version: 0.3.41
6-
appVersion: 5.74.0
5+
version: 0.3.42
6+
appVersion: 5.77.0

charts/pgbouncer-control/templates/pgbouncer.yaml

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -143,34 +143,6 @@ spec:
143143
successThreshold: 1
144144
failureThreshold: 3
145145

146-
- name: pgbouncer-exporter
147-
image: docker-hub.middleware.biz/public/prometheus-pgbouncer-exporter:2.1.1-python3.7.17-alpine3.18
148-
env:
149-
- name: PGBOUNCER_EXPORTER_HOST
150-
value: 0.0.0.0
151-
- name: PGBOUNCER_EXPORTER_PORT
152-
value: "9127"
153-
- name: PGBOUNCER_HOST
154-
value: localhost
155-
- name: PGBOUNCER_PORT
156-
value: "5432"
157-
- name: PGBOUNCER_USER
158-
valueFrom:
159-
secretKeyRef:
160-
name: {{ include "control.postgresSecretName" . }}
161-
key: dbuser
162-
- name: PGBOUNCER_PASS
163-
valueFrom:
164-
secretKeyRef:
165-
name: {{ include "control.postgresSecretName" . }}
166-
key: dbpwd
167-
resources:
168-
limits:
169-
cpu: "50m"
170-
memory: "50Mi"
171-
requests:
172-
cpu: "50m"
173-
memory: "50Mi"
174146
{{- if .Values.global.imagePullSecrets }}
175147
imagePullSecrets:
176148
{{- range $pullSecret := .Values.global.imagePullSecrets }}
@@ -181,4 +153,8 @@ spec:
181153
affinity:
182154
{{- toYaml . | nindent 8 }}
183155
{{- end }}
156+
{{- with .Values.global.control.tolerations }}
157+
tolerations:
158+
{{- toYaml . | nindent 8 }}
159+
{{- end }}
184160
{{- end }}

charts/server/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: server
33
description: A Helm chart for Control Server
44
type: application
5-
version: 0.3.41
6-
appVersion: 5.74.0
5+
version: 0.3.42
6+
appVersion: 5.77.2

charts/widget/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: widget
33
description: A Helm chart for Control Server
44
type: application
5-
version: 0.3.33
6-
appVersion: "v1.37.0"
5+
version: 0.3.34
6+
appVersion: "v1.40.0"

0 commit comments

Comments
 (0)