Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: brave/constellation-processors
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 607587b560c2cca7357e3c4a6b3833f1190a86d5
Choose a base ref
..
head repository: brave/constellation-processors
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d7f01f32d69672455d77b4e83ae48a55587daf99
Choose a head ref
Showing with 49 additions and 44 deletions.
  1. +6 −0 .github/workflows/audit.yml
  2. +3 −4 .github/workflows/checks.yml
  3. +26 −26 Cargo.lock
  4. +1 −1 Cargo.toml
  5. +3 −3 docker-compose.yml
  6. +10 −10 misc/test-client/Cargo.lock
6 changes: 6 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -19,6 +19,12 @@ jobs:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Install cargo audit
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: install
args: --force cargo-audit

- name: Audit server
run: cargo audit --deny warnings --ignore RUSTSEC-2022-0071 # includes exception for unmaintained rusoto crate, should be resolved by #134

7 changes: 3 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
on:
push:
pull_request:

name: Checks
@@ -13,7 +12,7 @@ jobs:

services:
postgres:
image: postgres@sha256:4ec37d2a07a0067f176fdcc9d4bb633a5724d2cc4f892c7a2046d054bb6939e5
image: postgres@sha256:87ec5e0a167dc7d4831729f9e1d2ee7b8597dcc49ccd9e43cc5f89e808d2adae
env:
POSTGRES_USER: star
POSTGRES_PASSWORD: password
@@ -37,7 +36,7 @@ jobs:
override: true

- name: Cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
~/.cargo/bin/
@@ -57,7 +56,7 @@ jobs:
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: install
args: --force diesel_cli
args: --force diesel_cli --no-default-features --features "postgres"

- name: Run db migration
run: diesel migration run
52 changes: 26 additions & 26 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
@@ -35,7 +35,7 @@ rusoto_s3 = "0.48"
rusoto_credential = "0.48"
rusoto_sts = "0.48"
prometheus-client = "0.22"
sentry = "0.34"
sentry = "0.36"
jemallocator = "0.5"

[profile.dev]
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ networks:

services:
localstack:
image: localstack/localstack@sha256:bf99def60610c5ab25579066ade818dfb2362749c6ab970123d9cf5eb29d7f5c
image: localstack/localstack@sha256:3004769cb016d379faf3807673599779d58dda5fb8c0c73978006bf7b646ab67
ports:
- 4510-4559:4510-4559
- 4566:4566
@@ -20,7 +20,7 @@ services:
networks:
- star-agg
db:
image: postgres@sha256:4ec37d2a07a0067f176fdcc9d4bb633a5724d2cc4f892c7a2046d054bb6939e5
image: postgres@sha256:87ec5e0a167dc7d4831729f9e1d2ee7b8597dcc49ccd9e43cc5f89e808d2adae
command: postgres -c 'max_connections=300'
ports:
- 5642:5432
@@ -33,7 +33,7 @@ services:
- "./misc/create_additional_dbs.sql:/docker-entrypoint-initdb.d/create_additional_dbs.sql"

zookeeper:
image: bitnami/zookeeper@sha256:6f2bdff0e22c3b156f40fac40bc163b97254b699b1c224cb491df6d51dc023a1
image: bitnami/zookeeper@sha256:515f24c26a16c7daf443b3802f8119510f2d4d0a20b0aadfc89ca3e57d07e96d
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
20 changes: 10 additions & 10 deletions misc/test-client/Cargo.lock

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