From 1dd387924bb4e5a9cf4dc74280d2a03a5699e504 Mon Sep 17 00:00:00 2001 From: Chris Reeder Date: Thu, 3 Oct 2024 15:28:01 -0700 Subject: [PATCH] updates deps --- Cargo.lock | 24 ++++++++++++------------ ci/Cargo.toml | 2 +- ci/src/docker.rs | 2 +- images/build.Dockerfile | 2 +- images/e2e.Dockerfile | 8 ++++---- tools/Cargo.toml | 6 +++--- ui/package.json | 2 +- wiki/Cargo.toml | 4 ++-- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71a82e2..67f356a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,9 +200,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615" dependencies = [ "clap_builder", "clap_derive", @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b" dependencies = [ "anstream", "anstyle", @@ -1317,9 +1317,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.6" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", @@ -1329,9 +1329,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", @@ -1340,15 +1340,15 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.7" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" +checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" dependencies = [ "base64 0.22.1", "bytes", diff --git a/ci/Cargo.toml b/ci/Cargo.toml index a8ff98d..88c975b 100644 --- a/ci/Cargo.toml +++ b/ci/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = "4.5.18" +clap = "4.5.19" serde_json = "1.0.128" sha2 = "0.10.8" diff --git a/ci/src/docker.rs b/ci/src/docker.rs index d3876d5..af1fc7d 100644 --- a/ci/src/docker.rs +++ b/ci/src/docker.rs @@ -3,7 +3,7 @@ use std::process::Command; use crate::*; // Latest postgres version: https://hub.docker.com/_/postgres -const POSTGRES_IMAGE: &str = "postgres:16-alpine"; +const POSTGRES_IMAGE: &str = "postgres:17-alpine"; pub struct Docker { pub context: Rc, diff --git a/images/build.Dockerfile b/images/build.Dockerfile index 733d0ec..cf8bd71 100644 --- a/images/build.Dockerfile +++ b/images/build.Dockerfile @@ -4,7 +4,7 @@ ARG NODE_VERSION="22.9.0" FROM node:${NODE_VERSION}-alpine # Latest NPM version: https://www.npmjs.com/package/npm -ARG NPM_VERSION="10.8.3" +ARG NPM_VERSION="10.9.0" # Latest Rust version: https://www.rust-lang.org/ ARG RUST_VERSION="1.81.0" diff --git a/images/e2e.Dockerfile b/images/e2e.Dockerfile index a77c178..fbb9d55 100644 --- a/images/e2e.Dockerfile +++ b/images/e2e.Dockerfile @@ -2,10 +2,10 @@ ARG NODE_VERSION="22.9.0" # Latest Chrome version: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable -ARG CHROME_VERSION="129.0.6668.70-1" +ARG CHROME_VERSION="129.0.6668.89-1" # Latest Firefox version: https://www.mozilla.org/en-US/firefox/releases/ -ARG FIREFOX_VERSION="130.0.1" +ARG FIREFOX_VERSION="131.0" # Disable other browsers ARG EDGE_VERSION= @@ -13,10 +13,10 @@ ARG YARN_VERSION= ARG CYPRESS_VERSION= # Latest cypress factory version: https://hub.docker.com/r/cypress/factory/tags -FROM cypress/factory:4.2.0 +FROM cypress/factory:4.2.1 # Latest NPM version: https://www.npmjs.com/package/npm -ARG NPM_VERSION="10.8.3" +ARG NPM_VERSION="10.9.0" USER root diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 075d0ef..732934b 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "4.5.18", features = ["derive"] } -regex = "1.10.6" -reqwest = "0.12.7" +clap = { version = "4.5.19", features = ["derive"] } +regex = "1.11.0" +reqwest = "0.12.8" serde_yaml = "0.9.34" tokio = { version = "1.40.0", features = ["full"] } diff --git a/ui/package.json b/ui/package.json index 0b30f96..e54fa56 100644 --- a/ui/package.json +++ b/ui/package.json @@ -28,7 +28,7 @@ "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "express": "^4.21.0", - "globals": "^15.9.0", + "globals": "^15.10.0", "jsdom": "^25.0.1", "lorem-ipsum": "^2.0.8", "marked": "^14.1.2", diff --git a/wiki/Cargo.toml b/wiki/Cargo.toml index 726789b..611c39c 100644 --- a/wiki/Cargo.toml +++ b/wiki/Cargo.toml @@ -6,13 +6,13 @@ edition = "2021" [dependencies] base64 = "0.22.1" bytes = "1.7.2" -clap = "4.5.18" +clap = "4.5.19" log = "0.4.22" phf = "0.11.2" pretty_env_logger = "0.5.0" rand = "0.8.5" refinery = { version = "0.8.14", features = ["tokio-postgres"] } -regex = "1.10.6" +regex = "1.11.0" serde_json = "1.0.128" serde_yaml = "0.9.34" tokio = { version = "1.40.0", features = ["full"] }