Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- [EE] Verified signed online license assertions before granting paid feature entitlements. [#1442](https://github.com/sourcebot-dev/sourcebot/pull/1442)

## [5.1.0] - 2026-07-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"prom-client": "^15.1.3",
"redlock": "5.0.0-beta.2",
"simple-git": "^3.36.0",
"zod": "^3.25.74"
"zod": "^3.25.76"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "License" ADD COLUMN "licenseAssertion" TEXT;
4 changes: 4 additions & 0 deletions packages/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ model License {
yearlyBillableOverageSeats Int?
yearlyPeakSeats Int?

/// Compact, signed online-license assertion returned by Lighthouse.
/// Authorization must be derived from this assertion when it is present.
licenseAssertion String?

lastSyncAt DateTime?
lastSyncErrorCode String?
createdAt DateTime @default(now())
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"strip-json-comments": "^5.0.1",
"triple-beam": "^1.4.1",
"winston": "^3.15.0",
"zod": "^3.25.74"
"zod": "^3.25.76"
},
"devDependencies": {
"@types/micromatch": "^4.0.9",
Expand Down
Loading