ebt-vue3 2.38.72 → 2.41.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,18 +2,17 @@ name: push-actions
2
2
  on: [push]
3
3
  jobs:
4
4
  build-job:
5
- runs-on: ubuntu-22.04
5
+ runs-on: ubuntu-24.04
6
6
  steps:
7
- - uses: actions/checkout@v4
8
- - uses: actions/setup-node@v4
7
+ - uses: actions/checkout@v6
8
+ - uses: actions/setup-node@v6
9
9
  with:
10
- node-version: '20.x'
11
- registry-url: 'https://registry.npmjs.org'
10
+ node-version: '24.x'
11
+ #registry-url: 'https://registry.npmjs.org'
12
12
  - run: scripts/install
13
13
  - run: git config --global user.name github-actions
14
14
  - run: git config --global user.email github-actions@github.com
15
15
  - run: npm run push-action
16
16
  env:
17
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
18
17
  DKR_USER: ${{ secrets.DKR_USER }}
19
18
  DKR_PWD: ${{ secrets.DKR_PWD }}
@@ -2,20 +2,24 @@ name: schedule-actions
2
2
  on:
3
3
  schedule:
4
4
  - cron: 0 3,11,19 * * *
5
+ workflow_dispatch: # Allows manual trigger from Github UI
5
6
  jobs:
6
7
  build-job:
7
- runs-on: ubuntu-22.04
8
+ timeout-minutes: 30
9
+ runs-on: ubuntu-24.04
10
+ permissions:
11
+ id-token: write # <- required for OIDC token
12
+ contents: write
8
13
  steps:
9
- - uses: actions/checkout@v4
10
- - uses: actions/setup-node@v4
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-node@v6
11
16
  with:
12
- node-version: '20.x'
13
- registry-url: 'https://registry.npmjs.org'
17
+ node-version: '24.x'
18
+ #registry-url: 'https://registry.npmjs.org'
14
19
  - run: scripts/install
15
20
  - run: git config --global user.name github-actions
16
21
  - run: git config --global user.email github-actions@github.com
17
22
  - run: npm run schedule-action
18
23
  env:
19
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
20
24
  DKR_USER: ${{ secrets.DKR_USER }}
21
25
  DKR_PWD: ${{ secrets.DKR_PWD }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ebt-vue3",
3
- "version": "2.38.72",
3
+ "version": "2.41.1",
4
4
  "description": "Vue3 Library for SuttaCentral Voice EBT-Sites",
5
5
  "author": "Karl Lew",
6
6
  "scripts": {
@@ -39,14 +39,14 @@
39
39
  "module": "index.mjs",
40
40
  "dependencies": {
41
41
  "@mdi/font": "7.0.96",
42
- "@sc-voice/ms-dpd": "^2.53.0",
42
+ "@sc-voice/ms-dpd": "^2.54.0",
43
43
  "compression": "^1.7.4",
44
44
  "idb-keyval": "^6.2.0",
45
- "log-instance": "^1.6.0",
46
- "merkle-json": "^2.10.0",
45
+ "log-instance": "^1.8.0",
46
+ "merkle-json": "^2.13.0",
47
47
  "pinia": "^2.0.16",
48
48
  "roboto-fontface": "*",
49
- "scv-esm": "^1.115.898",
49
+ "scv-esm": "^1.127.0",
50
50
  "serve-favicon": "^2.5.0",
51
51
  "uuid": "^9.0.0",
52
52
  "vite-plugin-vuetify": "^2.0.3",
@@ -64,14 +64,13 @@
64
64
  "ebt-deepl": "^1.58.0",
65
65
  "eslint": "^9.16.0",
66
66
  "eslint-plugin-vue": "^9.28.0",
67
- "esm": "^3.2.25",
68
67
  "execa": "^6.1.0",
69
68
  "fake-indexeddb": "^4.0.0",
70
69
  "globals": "^15.12.0",
71
70
  "json": "^11.0.0",
72
71
  "markdown-it": "^13.0.1",
73
72
  "markdown-it-footnote": "^3.0.3",
74
- "memo-again": "^0.10.0",
73
+ "memo-again": "^0.11.0",
75
74
  "mocha": "^10.0.0",
76
75
  "mock-local-storage": "^1.0.4",
77
76
  "node-fetch": "^3.2.10",
@@ -97,6 +96,7 @@
97
96
  ],
98
97
  "license": "MIT",
99
98
  "repository": {
100
- "tag": "git"
99
+ "type": "git",
100
+ "url": "https://github.com/sc-voice/ebt-vue3"
101
101
  }
102
102
  }
package/scripts/install CHANGED
@@ -11,8 +11,8 @@ sudo apt upgrade -y
11
11
 
12
12
  set -e
13
13
 
14
- ${DIR}/install-node 20 &&
15
- ${DIR}/update-npm 10 &&
14
+ ${DIR}/install-node 24 &&
15
+ ${DIR}/update-npm 11 &&
16
16
  npm install
17
17
 
18
18
  echo -e "${SCRIPT}: END `date` (OK)"
@@ -12,6 +12,7 @@ echo -e "${SCRIPT}: updating dependencies..."
12
12
  npm install --save \
13
13
  scv-esm@latest \
14
14
  log-instance@latest \
15
+ @sc-voice/ms-dpd@latest \
15
16
  merkle-json@latest
16
17
 
17
18
  npm install --save-dev \