Skip to content

Commit

Permalink
feat!: Add /v1/{check_email,bulk} endpoints with throttle&concurren…
Browse files Browse the repository at this point in the history
…cy (#1537)

BREAKING CHANGE:

- In `/v0/check_email` endpoint, the `hotmail_verif_method` field has been replaced two fields: `hotmailb2b_verif_method` and `hotmailb2c_verif_method`
- All serializations of `"Smtp","Api","Headless"` have been converted to lowercase `"smtp","api","headless"`
  • Loading branch information
amaury1093 authored Nov 25, 2024
1 parent b97b9ff commit 08522e4
Show file tree
Hide file tree
Showing 70 changed files with 3,488 additions and 1,379 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: deploy_backend
on:
push:
tags:
- "backend/v*.*.*"
- "v*.*.*"

jobs:
docker-publish:
Expand All @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@master
- name: Set GITHUB_TAG arg
id: vars
run: echo ::set-output name=GITHUB_TAG::${GITHUB_REF:18} # Remove /refs/head/backend/
run: echo ::set-output name=GITHUB_TAG::${GITHUB_REF}
- name: Print version
run: echo "Publishing reacherhq/backend:${{ steps.vars.outputs.GITHUB_TAG }}"
- name: Publish to Registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: deploy_cli
on:
push:
tags:
- "cli/v*"
- "v*.*.*"

env:
# TODO: Rename to your binary
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ target
.DS_Store
private

# docker-compose
backend/postgres_data

# Output when debugging Hotmail password recovery using a headless browser.
hotmail.jpeg

Expand Down

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

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

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

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

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

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

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

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

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rust-analyzer.cargo.features": "all"
}
42 changes: 14 additions & 28 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[workspace]
members = ["backend", "cli", "core", "worker"]
members = ["backend", "cli", "core"]
Loading

0 comments on commit 08522e4

Please sign in to comment.