chore: update to v0.2.6

This commit is contained in:
cătălin 2025-02-13 10:23:18 +01:00
commit 378f314559
No known key found for this signature in database
3 changed files with 61 additions and 3 deletions

View file

@ -2,6 +2,64 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.2.6] - 2025-02-13
### 🚀 Features
- Revamp authentication -- remove twitch's tokens from our own wrapper token
- Add GetRandomQuoteAction
- Change QuoteStorerSvc to use the new quote repo instead of the legacy db object
## [0.2.5] - 2024-12-19
### 🐛 Bug Fixes
- Fix logout flow which wasn't being triggered, remove useless html code
## [0.2.4] - 2024-12-19
### 🚀 Features
- Add backoff service and some message reactions
### ⚙️ Miscellaneous Tasks
- Update to v0.2.4 and remove useless code
## [0.2.3] - 2024-12-18
### 🧪 Testing
- Add base tests
### ⚙️ Miscellaneous Tasks
- Update to v0.2.3
## [0.2.2] - 2024-12-17
### 🚀 Features
- Add migrations, api bot endpoints and revamp the whole twitch backend by making use of twitchio
## [0.2.1] - 2024-12-12
### 🚀 Features
- Add GET /tts/permalink
- Add channel name input validation
- Reduce execution queue length to 5 from 25
## [0.2.0] - 2024-12-12
### 🚀 Features
- Remove kivy frontend, add litestar
### ⚙️ Miscellaneous Tasks
- Update CHANGELOG
## [0.1.2] - 2024-11-05 ## [0.1.2] - 2024-11-05
### 🚀 Features ### 🚀 Features

View file

@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.4 version: 0.2.6
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "0.2.5" appVersion: "0.2.6"

View file

@ -11,7 +11,7 @@ image:
# This sets the pull policy for images. # This sets the pull policy for images.
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "0.2.5" tag: "0.2.6"
# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ # This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: [] imagePullSecrets: []