Skip to content

Commit

Permalink
chore: Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Jan 14, 2025
1 parent a68c000 commit b96b041
Show file tree
Hide file tree
Showing 9 changed files with 3,713 additions and 3,043 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_main.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

env:
NODE_VERSION: '20'
NODE_VERSION: "22"
KUZZLE_PAAS_REGISTRY: harbor.paas.kuzzle.io
KUZZLE_PAAS_PROJECT: projectId

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/development.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request: # All pull requests

env:
NODE_VERSION: "20"
NODE_VERSION: "22"

jobs:
lint:
Expand Down
4 changes: 2 additions & 2 deletions apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kuzzleio/kuzzle-runner:20 AS builder
FROM kuzzleio/kuzzle-runner:22 AS builder

WORKDIR /var/app

Expand All @@ -11,7 +11,7 @@ COPY . .
RUN npm run build \
&& npm prune --omit=dev

FROM node:20-bookworm-slim
FROM node:22-bookworm-slim

WORKDIR /var/app

Expand Down
18 changes: 9 additions & 9 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@
"main": "app.ts",
"license": "Apache-2.0",
"dependencies": {
"@kuzzleio/iot-platform-backend": "3.3.2",
"@kuzzleio/iot-platform-backend": "3.3.6",
"kuzzle": "^2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@kuzzleio/plugin-multi-tenancy": "*",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.18.13",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.6",
"ergol": "^1.0.2",
"eslint-plugin-kuzzle": "^0.0.12",
"jest": "^29.4.3",
"kuzzle-sdk": "^7.11.*",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"eslint-plugin-kuzzle": "^0.0.13",
"jest": "^29.7.0",
"kuzzle-sdk": "^7.14.*",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.4.*"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build step
FROM kuzzleio/kuzzle-runner:20 AS builder
FROM kuzzleio/kuzzle-runner:22 AS builder

ARG VUE_APP_BACKEND
ENV VUE_APP_BACKEND=$VUE_APP_BACKEND
Expand Down
24 changes: 12 additions & 12 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
"ci:types": "vue-tsc --version && npm run test:types"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.2.*",
"@kuzzleio/iot-platform-frontend": "3.3.2",
"@fortawesome/fontawesome-free": "6.7.*",
"@kuzzleio/iot-platform-frontend": "3.3.6",
"@vuelidate/core": "2.0.*",
"kuzzle-device-manager-types": "2.4.0-beta.16",
"kuzzle-device-manager-types": "2.5.1",
"lodash": "^4.17.21",
"vue-plugin-kuzzle": "^4.5.0"
"vue-plugin-kuzzle": "^4.6.0"
},
"devDependencies": {
"@types/lodash": "4.17",
"@vitejs/plugin-vue2": "^2.2.0",
"autoprefixer": "^10.4.15",
"eslint-plugin-tailwindcss": "^3.14.3",
"eslint-plugin-vue-kuzzle": "^0.0.12",
"sass": "1.63.*",
"tailwindcss": "^3.4.1",
"@vitejs/plugin-vue2": "^2.3.3",
"autoprefixer": "^10.4.20",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue-kuzzle": "^0.0.13",
"sass": "1.83.*",
"tailwindcss": "^3.4.17",
"typescript": "5.4.*",
"vite": "^4.4.6",
"vue-tsc": "^1.8.10"
"vite": "^6.0.7",
"vue-tsc": "^2.2.0"
}
}
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "template-iot"

services:
api:
image: kuzzleio/kuzzle-runner:20
image: kuzzleio/kuzzle-runner:22
command: sh /var/app/start.sh api
volumes:
- .:/var/app
Expand Down Expand Up @@ -33,7 +33,7 @@ services:
start_period: 1m

web:
image: kuzzleio/kuzzle-runner:20
image: kuzzleio/kuzzle-runner:22
command: sh /var/app/start.sh web
volumes:
- .:/var/app
Expand Down
Loading

0 comments on commit b96b041

Please sign in to comment.