Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
09c3b59
Bump rust from 1.84-bookworm to 1.85-bookworm in /docker/backend
dependabot[bot] Mar 22, 2025
1bc859c
Bump @types/node from 18.15.11 to 18.19.81 in /backend
dependabot[bot] Mar 22, 2025
6bba426
Bump @fortawesome/angular-fontawesome from 0.14.1 to 0.15.0 in /frontend
dependabot[bot] Mar 22, 2025
e73d724
Bump zone.js from 0.14.4 to 0.15.0 in /frontend
dependabot[bot] Mar 22, 2025
940a89a
Bump zone.js from 0.14.4 to 0.15.0 /frontend (#6)
Jokacar10 Mar 22, 2025
0458cce
Bump rust from 1.84-bookworm to 1.85-bookworm /docker/backend (#1)
Jokacar10 Mar 22, 2025
3059ee8
from 0.14.1 to 0.15.0 /frontend (#5)
Jokacar10 Mar 22, 2025
db17496
Bump @types/node from 18.15.11 to 18.19.81 /backend (#2)
Jokacar10 Mar 22, 2025
37972ad
Merge branch 'mempool:master' into master
Jokacar10 Apr 20, 2025
0a37c90
Merge branch 'mempool:master' into master
Jokacar10 Apr 30, 2025
ee312cc
fix: upgrade bitcoinjs-lib from 6.1.3 to 6.1.7
snyk-bot May 22, 2025
3f61dca
Merge pull request #5 from Jokacar10/snyk-upgrade-314545e6d9ec35c0c7f…
Jokacar10 May 22, 2025
7c32fba
fix: backend/package.json & backend/package-lock.json to reduce vulne…
snyk-bot May 29, 2025
2acf893
Merge pull request #8 from Jokacar10/snyk-fix-71e2ce59b4bd7677bfc8c77…
Jokacar10 May 29, 2025
f624484
Qwe (#21)
Jokacar10 Jun 3, 2025
adde089
fix: upgrade mysql2 from 3.13.0 to 3.14.1
snyk-bot May 22, 2025
589c7f3
Revert "fix: upgrade mysql2 from 3.13.0 to 3.14.1"
Jokacar10 Jun 4, 2025
02124f9
Revert "Revert "fix: upgrade mysql2 from 3.13.0 to 3.14.1""
Jokacar10 Jun 4, 2025
33cb02d
Merge branch 'mempool:master' into master
Jokacar10 Jun 4, 2025
077e296
Revert "add contributor agreement"
Jokacar10 Jun 7, 2025
606f309
fix: frontend/package.json & frontend/package-lock.json to reduce vul…
snyk-bot May 29, 2025
8a3944a
fix: unfurler/package.json & unfurler/package-lock.json to reduce vul…
snyk-bot Jun 14, 2025
cbbc86c
Bump nginx from 1.27.0-alpine to 1.29.0-alpine in /docker/frontend
dependabot[bot] Jun 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
252 changes: 156 additions & 96 deletions backend/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@
},
"dependencies": {
"@mempool/electrum-client": "1.1.9",
"@types/node": "^18.15.3",
"axios": "1.8.1",
"bitcoinjs-lib": "~6.1.3",
"@types/node": "^18.19.81",
"axios": "1.8.3",
"bitcoinjs-lib": "~6.1.7",
"crypto-js": "~4.2.0",
"express": "~4.21.1",
"express": "~4.21.2",
"maxmind": "~4.3.11",
"mysql2": "~3.13.0",
"mysql2": "~3.14.1",
"rust-gbt": "file:./rust-gbt",
"redis": "^4.7.0",
"socks-proxy-agent": "~7.0.0",
"socks-proxy-agent": "~8.0.4",
"typescript": "~4.9.3",
"ws": "~8.18.0"
},
Expand Down
3 changes: 0 additions & 3 deletions contributors/jlopp.txt

This file was deleted.

4 changes: 2 additions & 2 deletions docker/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.84-bookworm AS builder
FROM rust:1.85-bookworm AS builder

ARG commitHash
ENV MEMPOOL_COMMIT_HASH=${commitHash}
Expand All @@ -24,7 +24,7 @@ RUN npm install --omit=dev --omit=optional
WORKDIR /build
RUN npm run package

FROM rust:1.84-bookworm AS runtime
FROM rust:1.85-bookworm AS runtime

RUN apt-get update && \
apt-get install -y curl ca-certificates && \
Expand Down
2 changes: 1 addition & 1 deletion docker/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN npm install --omit=dev --omit=optional

RUN npm run build

FROM nginx:1.27.0-alpine
FROM nginx:1.29.0-alpine

WORKDIR /patch

Expand Down
Loading
Loading