Skip to content

Commit

Permalink
chore: Bump backend to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Oct 25, 2023
1 parent 6f0f12b commit 628b564
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

12 changes: 10 additions & 2 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reacher_backend"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
license = "AGPL-3.0"
publish = false
Expand All @@ -16,7 +16,15 @@ openssl = { version = "0.10.57", features = ["vendored"] }
sentry = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls", "postgres", "uuid", "chrono", "json", "offline", "migrate" ] }
sqlx = { version = "0.6", features = [
"runtime-tokio-native-tls",
"postgres",
"uuid",
"chrono",
"json",
"offline",
"migrate",
] }
sqlxmq = "0.4"
tokio = { version = "1.28", features = ["macros"] }
uuid = "1.5"
Expand Down
10 changes: 7 additions & 3 deletions backend/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.0",
"info": {
"title": "Reacher",
"version": "0.4.*",
"version": "0.5.0",
"description": "### What is Reacher?\n\nReacher is a powerful, free and open-source email verification API service. It is provided both as a SaaS and as a self-host solution.",
"license": {
"name": "AGPL-3.0 OR Commercial",
Expand Down Expand Up @@ -334,6 +334,10 @@
"type": "boolean",
"description": "For Yahoo email addresses, use Yahoo's API instead of connecting directly to their SMTP servers."
},
"yahoo_use_headless": {
"type": "boolean",
"description": "For Yahoo email addresses, use Yahoo's account recovery page instead of connecting directly to their SMTP servers."
},
"gmail_use_api": {
"type": "boolean",
"description": "For Gmail email addresses, use Gmail's API instead of connecting directly to their SMTP servers."
Expand All @@ -347,8 +351,8 @@
"description": "Whether to check if a gravatar image is existing for the given email."
},
"hotmail_use_headless": {
"type": "string",
"description": "For Hotmail/Outlook email addresses, use a headless navigator connecting to the password recovery page instead of the SMTP server. This assumes you have a WebDriver compatible process running, then pass its endpoint, usually http://localhost:4444. We recommend running chromedriver (and not geckodriver) as it allows parallel requests."
"type": "boolean",
"description": "For Hotmail/Outlook email addresses, use a headless navigator connecting to the password recovery page instead of the SMTP server. This assumes you have a WebDriver compatible process running at the address provided by the environment variable `RCH_WEBDRIVER_ADDR`, usually http://localhost:9515. We recommend running chromedriver (and not geckodriver) as it allows parallel requests."
},
"retries": {
"type": "number",
Expand Down

0 comments on commit 628b564

Please sign in to comment.