Skip to content

Commit

Permalink
updates deps
Browse files Browse the repository at this point in the history
  • Loading branch information
reederc42 committed Oct 3, 2024
1 parent bed5697 commit 1dd3879
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion ci/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Context>,
Expand Down
2 changes: 1 addition & 1 deletion images/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions images/e2e.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
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=
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

Expand Down
6 changes: 3 additions & 3 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions wiki/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 1dd3879

Please sign in to comment.