maintenance

This commit is contained in:
2026-05-31 22:24:20 +02:00
parent f6bf8c656c
commit 0a56c4c572
10 changed files with 2104 additions and 1564 deletions
+1 -1
View File
@@ -1 +1 @@
v22.14.0 v24
+2 -2
View File
@@ -1,5 +1,5 @@
# FRONTEND # FRONTEND
FROM node:22-alpine as client FROM node:24-alpine AS client
ENV PNPM_HOME="/pnpm" ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH" ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable RUN corepack enable
@@ -11,7 +11,7 @@ RUN pnpm run build
# BACKEND # BACKEND
FROM rust:1.85-alpine as backend FROM rust:1.95-alpine AS backend
WORKDIR /tmp WORKDIR /tmp
RUN apk add --no-cache libc-dev openssl-dev alpine-sdk RUN apk add --no-cache libc-dev openssl-dev alpine-sdk
COPY ./packages/backend ./ COPY ./packages/backend ./
+3 -3
View File
@@ -166,9 +166,9 @@ There is a [guide](https://mariushosting.com/how-to-install-cryptgeon-on-your-sy
**Requirements** **Requirements**
- `pnpm`: `>=9` - `pnpm`: `>=11`
- `node`: `>=22` - `node`: `>=24`
- `rust`: edition `2021` - `rust`: edition `2024`
**Install** **Install**
+5 -4
View File
@@ -8,14 +8,15 @@
"test": "playwright test --project=chrome --project=firefox --project=safari", "test": "playwright test --project=chrome --project=firefox --project=safari",
"test:local": "playwright test --project=chrome", "test:local": "playwright test --project=chrome",
"test:server": "run-s docker:up", "test:server": "run-s docker:up",
"test:prepare": "run-p build docker:build", "test:dl-browsers": "playwright install",
"test:prepare": "run-p test:dl-browsers build docker:build",
"build": "pnpm run --recursive --filter=!@cryptgeon/backend build" "build": "pnpm run --recursive --filter=!@cryptgeon/backend build"
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.46.1", "@playwright/test": "^1.60.0",
"@types/node": "^22.5.0", "@types/node": "^24.12.4",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"shelljs": "^0.8.5" "shelljs": "^0.8.5"
}, },
"packageManager": "pnpm@10.3.0" "packageManager": "pnpm@11.5.0"
} }
+649 -422
View File
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -2,8 +2,8 @@
name = "cryptgeon" name = "cryptgeon"
version = "2.9.1" version = "2.9.1"
authors = ["cupcakearmy <hi@nicco.io>"] authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2021" edition = "2024"
rust-version = "1.85" rust-version = "1.95"
[[bin]] [[bin]]
name = "cryptgeon" name = "cryptgeon"
@@ -11,12 +11,12 @@ path = "src/main.rs"
[dependencies] [dependencies]
# Core # Core
axum = "0.7.5" axum = "0.8"
serde = { version = "1.0.208", features = ["derive"] } serde = { version = "1", features = ["derive"] }
tokio = { version = "1.39.3", features = ["full"] } tokio = { version = "1", features = ["full"] }
tower = "0.5.0" tower = "0.5"
tower-http = { version = "0.5.2", features = ["full"] } tower-http = { version = "0.6", features = ["full"] }
redis = { version = "0.25.2", features = ["tls-native-tls"] } redis = { version = "1", features = ["tls-native-tls"] }
# Utility # Utility
serde_json = "1" serde_json = "1"
+6 -6
View File
@@ -30,16 +30,16 @@
}, },
"devDependencies": { "devDependencies": {
"@commander-js/extra-typings": "^12.1.0", "@commander-js/extra-typings": "^12.1.0",
"@types/inquirer": "^9.0.7", "@types/inquirer": "^9.0.9",
"@types/mime": "^4.0.0", "@types/mime": "^4.0.0",
"@types/node": "^20.11.24", "@types/node": "^20.19.41",
"commander": "^12.1.0", "commander": "^12.1.0",
"inquirer": "^9.2.15", "inquirer": "^9.3.8",
"mime": "^4.0.1", "mime": "^4.1.0",
"occulto": "^2.0.6", "occulto": "^2.0.6",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
"tsup": "^8.2.4", "tsup": "^8.5.1",
"typescript": "^5.3.3" "typescript": "^5.9.3"
}, },
"engines": { "engines": {
"node": ">=18" "node": ">=18"
+10 -10
View File
@@ -14,21 +14,21 @@
"type": "module", "type": "module",
"devDependencies": { "devDependencies": {
"@lokalise/node-api": "^13.2.1", "@lokalise/node-api": "^13.2.1",
"@sveltejs/adapter-static": "^3.0.8", "@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.17.3", "@sveltejs/kit": "^2.61.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3", "@sveltejs/vite-plugin-svelte": "^5.1.1",
"@zerodevx/svelte-toast": "^0.9.6", "@zerodevx/svelte-toast": "^0.9.6",
"adm-zip": "^0.5.16", "adm-zip": "^0.5.17",
"dotenv": "^16.4.7", "dotenv": "^16.6.1",
"svelte": "^5.20.5", "svelte": "^5.55.9",
"svelte-check": "^4.1.4", "svelte-check": "^4.4.8",
"svelte-intl-precompile": "^0.12.3", "svelte-intl-precompile": "^0.12.3",
"tslib": "^2.8.1", "tslib": "^2.8.1",
"typescript": "^5.7.3", "typescript": "^5.9.3",
"vite": "^6.2.0" "vite": "^6.4.2"
}, },
"dependencies": { "dependencies": {
"@fontsource/fira-mono": "^5.1.1", "@fontsource/fira-mono": "^5.2.7",
"cryptgeon": "workspace:*", "cryptgeon": "workspace:*",
"occulto": "^2.0.6", "occulto": "^2.0.6",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
+1415 -1108
View File
File diff suppressed because it is too large Load Diff
+5
View File
@@ -1,2 +1,7 @@
packages: packages:
- "packages/**" - "packages/**"
allowBuilds:
esbuild: true
minimumReleaseAge: 10080 # One week