Compare commits

...
7 Commits
13 changed files with 415 additions and 406 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
if [[ "${GITHUB_REF_NAME}" == *"-"* ]]; then
DIST_TAG=rc
fi
pnpm publish --filter cryptgeon --tag "${DIST_TAG}"
pnpm publish --filter cryptgeon --tag "${DIST_TAG}" --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+1 -1
View File
@@ -115,7 +115,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
environment:
+1 -1
View File
@@ -103,7 +103,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
environment:
+2 -2
View File
@@ -91,7 +91,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
environment:
@@ -131,7 +131,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
restart: unless-stopped
depends_on:
- cache
+1 -1
View File
@@ -11,7 +11,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
environment:
-2
View File
@@ -2,11 +2,9 @@
## Todo
- Localize i18n readmes: `README_ES.md`, `README_zh-CN.md` still reference `REDIS` / `/api/v1`-era endpoint names — align to `CACHE` / `/healthz` (also sweep `CONTRIBUTING.md`, `examples/*`, postman collection).
- Add remaining shared tooling to the pnpm catalog (`vite`, `tsdown`).
- Move formatting, linting and type-checking + git hooks onto `vite-plus` (oxlint, oxfmt, vitest).
- Re-add CSP (`Content-Security-Policy`) wired into the axum router (was in `csp.rs`, removed as unused).
- Move all CLI deps to `devDependencies` — they bundle into the single output file anyway.
## Unified payload (drop the text/file union)
+1 -1
View File
@@ -12,7 +12,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
+1 -1
View File
@@ -116,7 +116,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
restart: unless-stopped
depends_on:
- cache
+2 -2
View File
@@ -26,7 +26,7 @@ services:
- /data
app:
image: cupcakearmy/cryptgeon:latest
image: cupcakearmy/cryptgeon:v3
restart: unless-stopped
depends_on:
- cache
@@ -70,7 +70,7 @@ services:
- /data
cryptgeon:
image: cupcakearmy/cryptgeon
image: cupcakearmy/cryptgeon:v3
depends_on:
- cache
labels:
+1 -1
View File
@@ -252,7 +252,7 @@ dependencies = [
[[package]]
name = "cryptgeon"
version = "3.0.0-rc.0"
version = "3.0.0-rc.3"
dependencies = [
"axum",
"bs62",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "cryptgeon"
version = "3.0.0-rc.0"
version = "3.0.0-rc.3"
authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2024"
rust-version = "1.95"
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "cryptgeon",
"version": "3.0.0-rc.0",
"version": "3.0.0-rc.3",
"homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": {
"type": "git",
@@ -21,19 +21,19 @@
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"prepublishOnly": "run-s build"
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@commander-js/extra-typings": "^15.0.0",
"@cryptgeon/shared": "workspace:*",
"@msgpack/msgpack": "^3.1.3",
"@commander-js/extra-typings": "^12.1.0",
"@tsconfig/strictest": "catalog:",
"@types/inquirer": "^9.0.9",
"@types/node": "^22.15.3",
"commander": "^12.1.0",
"inquirer": "^9.3.8",
"@types/inquirer": "^9.0.10",
"@types/node": "^22.20.1",
"commander": "^15.0.0",
"inquirer": "^14.2.1",
"mime": "^4.1.0",
"pretty-bytes": "^6.1.1",
"pretty-bytes": "^7.1.3",
"typescript": "catalog:",
"vite-plus": "catalog:"
},
+394 -383
View File
File diff suppressed because it is too large Load Diff