Compare commits

..
5 Commits
12 changed files with 414 additions and 404 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
environment: environment:
+1 -1
View File
@@ -103,7 +103,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
environment: environment:
+2 -2
View File
@@ -91,7 +91,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
environment: environment:
@@ -131,7 +131,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- cache - cache
+1 -1
View File
@@ -11,7 +11,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
environment: environment:
-1
View File
@@ -2,7 +2,6 @@
## Todo ## 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`). - Add remaining shared tooling to the pnpm catalog (`vite`, `tsdown`).
- Move formatting, linting and type-checking + git hooks onto `vite-plus` (oxlint, oxfmt, vitest). - 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). - Re-add CSP (`Content-Security-Policy`) wired into the axum router (was in `csp.rs`, removed as unused).
+1 -1
View File
@@ -12,7 +12,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
+1 -1
View File
@@ -116,7 +116,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- cache - cache
+2 -2
View File
@@ -26,7 +26,7 @@ services:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:latest image: cupcakearmy/cryptgeon:v3
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- cache - cache
@@ -70,7 +70,7 @@ services:
- /data - /data
cryptgeon: cryptgeon:
image: cupcakearmy/cryptgeon image: cupcakearmy/cryptgeon:v3
depends_on: depends_on:
- cache - cache
labels: labels:
+1 -1
View File
@@ -252,7 +252,7 @@ dependencies = [
[[package]] [[package]]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.1" version = "3.0.0-rc.3"
dependencies = [ dependencies = [
"axum", "axum",
"bs62", "bs62",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.1" version = "3.0.0-rc.3"
authors = ["cupcakearmy <hi@nicco.io>"] authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2024" edition = "2024"
rust-version = "1.95" rust-version = "1.95"
+8 -8
View File
@@ -1,6 +1,6 @@
{ {
"name": "cryptgeon", "name": "cryptgeon",
"version": "3.0.0-rc.1", "version": "3.0.0-rc.3",
"homepage": "https://github.com/cupcakearmy/cryptgeon", "homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -21,19 +21,19 @@
"scripts": { "scripts": {
"build": "vp pack", "build": "vp pack",
"dev": "vp pack --watch", "dev": "vp pack --watch",
"prepublishOnly": "run-s build" "prepublishOnly": "pnpm run build"
}, },
"devDependencies": { "devDependencies": {
"@commander-js/extra-typings": "^15.0.0",
"@cryptgeon/shared": "workspace:*", "@cryptgeon/shared": "workspace:*",
"@msgpack/msgpack": "^3.1.3", "@msgpack/msgpack": "^3.1.3",
"@commander-js/extra-typings": "^12.1.0",
"@tsconfig/strictest": "catalog:", "@tsconfig/strictest": "catalog:",
"@types/inquirer": "^9.0.9", "@types/inquirer": "^9.0.10",
"@types/node": "^22.15.3", "@types/node": "^22.20.1",
"commander": "^12.1.0", "commander": "^15.0.0",
"inquirer": "^9.3.8", "inquirer": "^14.2.1",
"mime": "^4.1.0", "mime": "^4.1.0",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^7.1.3",
"typescript": "catalog:", "typescript": "catalog:",
"vite-plus": "catalog:" "vite-plus": "catalog:"
}, },
+394 -383
View File
File diff suppressed because it is too large Load Diff