Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
dda211b
fix(ci): authenticate the local-prividium sync push with the app toke…
jodator Sep 3, 2026
850e4e7
feat(ci): add the Prividium Core subtree sync (#1814)
jodator Sep 3, 2026
388669c
fix(permissions-api): use a target-neutral audit action for api-key a…
jodator Sep 3, 2026
caab083
fix(deps): bump fast-uri overrides to 3.1.6 and 4.1.3 to clear high a…
mikhail-egorov Sep 4, 2026
64219cd
fix(user-panel): quote the max-amount fee as the connected wallet (#1…
bxpana Sep 4, 2026
ba548cc
feat(adminv2): add the policy governance UI behind a flag (#1770)
mtgnoah Sep 4, 2026
7c31994
docs(open): add legal and security files to the public repo (#1789)
jodator Sep 4, 2026
a299a74
feat: gate the chain boundary, and document the engine (#1771)
mtgnoah Sep 4, 2026
a78dfb0
feat: draft docs site (#1758)
sarahschwartz Sep 4, 2026
6a13d43
docs: ui updates (#1846)
sarahschwartz Sep 7, 2026
e4caad8
fix(docs): resolve the repository root only when a source file is rea…
jodator Sep 7, 2026
1f56de9
docs(open): add CLAs docs (#1863)
jodator Sep 7, 2026
8e818c9
refactor(open): move transaction status tracking to the enterprise ap…
jodator Sep 8, 2026
0f70cb1
fix: txt syntax highlighting (#1886)
sarahschwartz Sep 9, 2026
0ab934b
fix: bump js-yaml and nanoid overrides to clear high/critical advisor…
mikhail-egorov Sep 9, 2026
a340f9c
fix: report dependency audit counts per workspace (#1894)
mikhail-egorov Sep 9, 2026
c8ad1c8
docs: refresh the documentation site visual style (#1893)
andriibondards Sep 9, 2026
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
4 changes: 2 additions & 2 deletions dev/multi-org/seed-multi-org-demo.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Multi-org demo fixture: the single source of truth for the demo org's rows, applied only when
-- MULTI_ORG_ENABLED is on. Both seed paths run THIS file — native `pnpm dev` (the permissions-api
-- seed-runner) and the dockerized stack (dev/sso-setup/scripts/setup-multi-org-demo.ts) — each
-- MULTI_ORG_ENABLED is on. Both seed paths run THIS file — native `pnpm dev` (dev/seeds/seed-runner.ts)
-- and the dockerized stack (dev/sso-setup/scripts/setup-multi-org-demo.ts) — each
-- substituting `__KEYCLOAK_URL__` for the environment's Keycloak base (host port for native,
-- in-network for docker). Backs the `?org=acme` login flow: open http://localhost:3001/?org=acme and
-- sign in as admin@acme.local / password (the first login bootstraps the org admin).
Expand Down
2 changes: 1 addition & 1 deletion dev/sso-setup/scripts/setup-multi-org-demo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Seeds the multi-org demo organization by applying the shared fixture
* dev/multi-org/seed-multi-org-demo.sql — the single source of truth for the demo org's rows (the same
* file native `pnpm dev` seeds via the permissions-api seed-runner). The only environment-dependent value
* file native `pnpm dev` seeds via dev/seeds/seed-runner.ts). The only environment-dependent value
* is the Keycloak base the API fetches JWKS from, supplied here via the `__KEYCLOAK_URL__` placeholder
* (KEYCLOAK_URL, default the host port; the dockerized stack sets the in-network URL).
*
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ services:
start_period: 30s

keycloak:
image: quay.io/keycloak/keycloak:26.0
image: quay.io/keycloak/keycloak:26.7.2
ports:
- '5080:8080'
environment:
Expand Down Expand Up @@ -333,7 +333,7 @@ services:
condition: service_completed_successfully

bundler:
image: quay.io/matterlabs_enterprise/prividium-bundler:v1.282.2
image: quay.io/matterlabs_enterprise/prividium-bundler:v1.298.8
platform: linux/amd64
restart: unless-stopped
environment:
Expand Down
15 changes: 7 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include:

services:
admin-panel:
image: quay.io/matterlabs_enterprise/prividium-adminv2:v1.282.2
image: quay.io/matterlabs_enterprise/prividium-adminv2:v1.298.8
platform: linux/amd64
restart: unless-stopped
environment:
Expand All @@ -15,7 +15,6 @@ services:
- VITE_FAUCET_ENABLED=true
- VITE_WEBHOOKS_ENABLED=true
- VITE_TENANTS_ENABLED=false
- VITE_TRANSACTION_STATUS_API_ENABLED=true
- VITE_BRAND_NAME=Prividium™
- VITE_TOKEN_DEPLOYMENT_ENABLED=true
- PORT=3000
Expand All @@ -26,7 +25,7 @@ services:
- '3000:3000'

prividium-api:
image: quay.io/matterlabs_enterprise/prividium-permissions-api:v1.282.2
image: quay.io/matterlabs_enterprise/prividium-permissions-api:v1.298.8
platform: linux/amd64
restart: unless-stopped
depends_on:
Expand All @@ -48,8 +47,10 @@ services:
- PORT=8000
- METRICS_PORT=9091
- SEQUENCER_RPC_URL=http://zksyncos:3050
- TARGET_CHAIN_TYPE=zksync-os
- CORS_ORIGIN=http://localhost:3000,http://localhost:3001,http://localhost:3002,http://localhost:3006,http://localhost:3500
- DATABASE_URL=postgres://postgres:postgres@postgres:5432/prividium_api
- DB_POOL_CONNECTION_TIMEOUT_MS=5000
- AUTH_METHODS=oidc,crypto_native
- NODE_ENV=production
- SIWE_CHAIN_ID=6565
Expand Down Expand Up @@ -77,13 +78,11 @@ services:
- DISCLOSURE_METHODS_ENABLED=false
- BRAND_NAME=Prividium™
- MULTI_ORG_ENABLED=true
- INSECURE_MULTI_ORG_WITHOUT_POLICY_ENABLED=true
- ORG_ROUTING_BY_DOMAIN=false
- TRANSACTION_STATUS_API_ENABLED=true
- TRANSACTION_STATUS_RETENTION_SECONDS=1209600
- TRANSACTION_STATUS_SWEEP_INTERVAL_SECONDS=3600
- TRANSACTION_STATUS_MAX_ROWS=1000000
- MAX_ORGANIZATIONS=100
- MAX_WALLETS_PER_USER=100
- AUDIT_LOGS_PAGINATION_MAX_ITEMS=10000
- WEBAUTHN_RP_NAME=ZKsync Prividium
- WEBAUTHN_RP_ID=localhost
- WEBAUTHN_ORIGIN=http://localhost:3001,http://localhost:3000
Expand Down Expand Up @@ -219,7 +218,7 @@ services:
condition: service_started

user-panel:
image: quay.io/matterlabs_enterprise/prividium-user-panel:v1.282.2
image: quay.io/matterlabs_enterprise/prividium-user-panel:v1.298.8
platform: linux/amd64
restart: unless-stopped
environment:
Expand Down
Loading