Skip to content

Commit d28fbe9

Browse files
authored
Merge pull request #3 from czoczo/develop
WebUI: Fixing bug with caching API requests
2 parents 4452870 + 4e5b896 commit d28fbe9

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[ Application Changelog ] | [ [Helm Chart Changelog](./deployment/helm/CHANGELOG.md) ]
44

5+
## 0.1.2
6+
- WebUI: Fixed dashboard items update - prevented caching of API endpoint by ServiceWorker.
7+
58
## 0.1.1
69
- App: added self skip on Kubernetes Ingress crawl.
710
- WebUI: added auto refresh after PWA update button click.

VERSION_APP.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.1.2

VERSION_CHART.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.3
1+
0.1.4

deployment/helm/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[ [Application Changelog](../../CHANGELOG.md) ] | [ Helm Chart Changelog ]
44

5+
## 0.1.4
6+
- App version bump to 0.1.2.
7+
58
## 0.1.3
69
- Fixed configuration volume mounts in deployment.
710
- Added tag overriding.

deployment/helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ type: application
55

66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
8-
version: 0.1.3
8+
version: 0.1.4
99

1010
# This is the version number of the application being deployed. This version number should be
1111
# incremented each time you make changes to the application.
12-
appVersion: 0.1.1
12+
appVersion: 0.1.2

frontend/vue.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ module.exports = defineConfig({
66
// : '/',
77
publicPath: './',
88
pwa: {
9-
//workboxOptions: {
9+
workboxOptions: {
10+
exclude: [/^api\/v1$/,]
1011
// skipWaiting: true
11-
//},
12+
},
1213
name: "CasaVue",
1314
themeColor: "#fe0102",
1415
msTileColor: "#fe0102",

0 commit comments

Comments
 (0)