Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/workflow-continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
workflow_dispatch:

env:
NODE_VERSION: 24.13.1
NODE_VERSION: 26.7.0
REGISTRY: ghcr.io
NAMESPACE: "${{ github.repository }}"
BUILD_AMD64: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-create-or-update-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
BUILD_AMD64: true
BUILD_ARM64: true
USE_QEMU: false
NODE_VERSION: 24.13.1
NODE_VERSION: 26.7.0

jobs:
expose-vars:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
types: [checks_requested]

env:
NODE_VERSION: 24.13.1
NODE_VERSION: 26.7.0
REGISTRY: ghcr.io
NAMESPACE: "${{ github.repository }}"
BUILD_AMD64: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

env:
NODE_VERSION: 24.13.1
NODE_VERSION: 26.7.0

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Console Cloud Pi Native

pnpm monorepo. Node >= 24, pnpm v11.8
pnpm monorepo. Node >= 26, pnpm v11.8

## Structure

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cd console
- [Docker >= v27](https://docs.docker.com/get-docker/) Orchestrateur de conteneurs
- [Plugin compose >= v2.35](https://github.com/docker/compose) (attention à ne pas avoir une vieille version qui traînerait dans `~/.docker/cli-plugins/` !). Permet de composer plusieurs conteneurs Docker
- [Plugin buildx](https://github.com/docker/buildx) Permet d'étendre les capacités de Docker à l'aide de BuildKit
- [Node.js >= v24](https://nodejs.org/en/download/) Environnement d'exécution JavaScript
- [Node.js >= v26](https://nodejs.org/en/download/) Environnement d'exécution JavaScript
- [PnPM >= v10](https://pnpm.io/installation) Gestionnaire de paquets pour JavaScript

#### Prérequis de configuration du projet
Expand Down
2 changes: 1 addition & 1 deletion apps/client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dev stage ------------------------------------------------------------------------
FROM docker.io/node:24.13.1-bullseye-slim AS dev
FROM docker.io/node:26.7.0-bullseye-slim AS dev

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions apps/server-nestjs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base / dev stage ----------------------------------------------------------------
FROM docker.io/node:24.13.1-bullseye-slim AS dev
FROM docker.io/node:26.7.0-bullseye-slim AS dev

WORKDIR /app

Expand Down Expand Up @@ -77,7 +77,7 @@ RUN pnpm --filter @cpn-console/server-nestjs run build
RUN pnpm --filter @cpn-console/server-nestjs --prod deploy build

# Prod stage -----------------------------------------------------------------------
FROM docker.io/node:24.13.1-bullseye-slim AS prod
FROM docker.io/node:26.7.0-bullseye-slim AS prod

ARG APP_VERSION
ENV APP_VERSION=$APP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/server/.env-example
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ OPENCDS_API_TOKEN=token
OPENCDS_API_TLS_REJECT_UNAUTHORIZED=true

# Dossier de stockage des plugins externes
EXTERNAL_PLUGINS_DIR_HOST_PATH=/home/stephane/projets/clients/cloud-pi/plugins
EXTERNAL_PLUGINS_DIR_HOST_PATH=/local/path/for/plugins
# URL du dashboard d'observabilité (géré par Grafana)
GRAFANA_URL=
# Version du chart "observability" à déployer pour les projets
Expand Down
4 changes: 2 additions & 2 deletions apps/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage -----------------------------------------------------------------------
FROM docker.io/node:24.13.1-bullseye-slim AS dev
FROM docker.io/node:26.7.0-bullseye-slim AS dev

WORKDIR /app

Expand Down Expand Up @@ -49,7 +49,7 @@ RUN pnpm --filter @cpn-console/server --prod deploy build


# Prod stage -----------------------------------------------------------------------
FROM docker.io/node:24.13.1-bullseye-slim AS prod
FROM docker.io/node:26.7.0-bullseye-slim AS prod

ARG APP_VERSION
ENV APP_VERSION=$APP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/cloud-pi-native/console"
},
"engines": {
"node": ">=24.0.0 <25.0.0",
"node": ">=26.0.0 <27.0.0",
"npm": ">=11.0.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/opencds/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-alpine AS prod
FROM node:26-alpine AS prod

RUN npm install -g @mockoon/cli@9.3.0

Expand Down
720 changes: 402 additions & 318 deletions pnpm-lock.yaml
Comment thread
StephaneTrebel marked this conversation as resolved.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ catalogs:
types:
"@types/jsdom": ^21.1.7
"@types/json-schema": ^7.0.15
"@types/node": ^24.12.0
"@types/node": ^26.1.2
Comment thread
StephaneTrebel marked this conversation as resolved.
undici-types: ^7.16.0
otel:
"@opentelemetry/api": ^1.9.0
Expand Down