Compare commits

..

1 Commits

Author SHA1 Message Date
235840e525 Update dependency @types/react to ^19.2.6
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2025-11-22 00:15:37 +00:00
6 changed files with 1157 additions and 1620 deletions

View File

@@ -5,7 +5,7 @@ name: default
steps:
- name: frontend_build
image: node:25
image: node:24
volumes:
- name: frontend_app
path: /tmp/frontend_build

File diff suppressed because it is too large Load Diff

View File

@@ -6,23 +6,23 @@ edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.29"
log = "0.4.28"
env_logger = "0.11.8"
clap = { version = "4.5.54", features = ["derive", "env"] }
clap = { version = "4.5.51", features = ["derive", "env"] }
serde = { version = "1.0.228", features = ["derive"] }
light-openid = { version = "1.1.0", features = ["crypto-wrapper"] }
basic-jwt = "0.4.0"
actix-web = "4.12.1"
light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
basic-jwt = "0.3.0"
actix-web = "4.12.0"
actix-remote-ip = "0.1.0"
actix-session = { version = "0.11.0", features = ["cookie-session"] }
actix-identity = "0.9.0"
actix-cors = "0.7.1"
lazy_static = "1.5.0"
anyhow = "1.0.100"
reqwest = { version = "0.13.1", features = ["json"] }
thiserror = "2.0.18"
uuid = { version = "1.19.0", features = ["v4", "serde"] }
reqwest = { version = "0.12.24", features = ["json"] }
thiserror = "2.0.17"
uuid = { version = "1.18.1", features = ["v4", "serde"] }
futures-util = "0.3.31"
lazy-regex = "3.5.1"
lazy-regex = "3.4.2"
mime_guess = "2.0.5"
rust-embed = { version = "8.11.0" }
rust-embed = { version = "8.7.2" }

View File

@@ -55,12 +55,6 @@ impl From<Box<dyn Error>> for HttpErr {
}
}
impl From<light_openid::errors::OpenIdError> for HttpErr {
fn from(value: light_openid::errors::OpenIdError) -> Self {
HttpErr::Err(std::io::Error::other(value.to_string()).into())
}
}
impl From<std::io::Error> for HttpErr {
fn from(value: std::io::Error) -> Self {
HttpErr::Err(value.into())

File diff suppressed because it is too large Load Diff

View File

@@ -10,25 +10,25 @@
"preview": "vite preview"
},
"dependencies": {
"@fluentui/react-components": "^9.72.9",
"@fluentui/react-icons": "^2.0.316",
"@fluentui/react-components": "^9.72.7",
"@fluentui/react-icons": "^2.0.315",
"filesize": "^11.0.13",
"react": "^19.2.3",
"react-dom": "^19.2.3"
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.8",
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1"
"typescript-eslint": "^8.47.0",
"vite": "^7.2.2"
}
}