Skip to content

Commit 49f1f05

Browse files
committed
fix build
1 parent 2d2d540 commit 49f1f05

File tree

5 files changed

+253
-7
lines changed

5 files changed

+253
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Added
1313
- Implement dynamic tab titles for files and folders in browse tab. [#560](https://github.com/sourcebot-dev/sourcebot/pull/560)
14+
- Added support for passing db connection url as seperate `DATABASE_HOST`, `DATABASE_USERNAME`, `DATABASE_PASSWORD`, `DATABASE_NAME`, and `DATABASE_ARGS` env vars. [#545](https://github.com/sourcebot-dev/sourcebot/pull/545)
15+
- Added support for GitHub Apps for service auth. [#570](https://github.com/sourcebot-dev/sourcebot/pull/570)
1416

1517
### Fixed
1618
- Fixed "dubious ownership" errors when cloning / fetching repos. [#553](https://github.com/sourcebot-dev/sourcebot/pull/553)
@@ -27,9 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2729
- Removed spam "login page loaded" log. [#552](https://github.com/sourcebot-dev/sourcebot/pull/552)
2830
- Removed connections management page. [#563](https://github.com/sourcebot-dev/sourcebot/pull/563)
2931

30-
### Added
31-
- Added support for passing db connection url as seperate `DATABASE_HOST`, `DATABASE_USERNAME`, `DATABASE_PASSWORD`, `DATABASE_NAME`, and `DATABASE_ARGS` env vars. [#545](https://github.com/sourcebot-dev/sourcebot/pull/545)
32-
3332
## [4.7.3] - 2025-09-29
3433

3534
### Fixed

packages/backend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"dependencies": {
2525
"@coderabbitai/bitbucket": "^1.1.3",
2626
"@gitbeaker/rest": "^40.5.1",
27+
"@octokit/app": "^16.1.1",
2728
"@octokit/rest": "^21.0.2",
2829
"@sentry/cli": "^2.42.2",
2930
"@sentry/node": "^9.3.0",

packages/shared/src/entitlements.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,16 @@ const entitlements = [
3939
"code-nav",
4040
"audit",
4141
"analytics",
42-
"permission-syncing"
42+
"permission-syncing",
43+
"github-app"
4344
] as const;
4445
export type Entitlement = (typeof entitlements)[number];
4546

4647
const entitlementsByPlan: Record<Plan, Entitlement[]> = {
4748
oss: ["anonymous-access"],
4849
"cloud:team": ["billing", "multi-tenancy", "sso", "code-nav"],
49-
"self-hosted:enterprise": ["search-contexts", "sso", "code-nav", "audit", "analytics", "permission-syncing"],
50-
"self-hosted:enterprise-unlimited": ["search-contexts", "anonymous-access", "sso", "code-nav", "audit", "analytics", "permission-syncing"],
50+
"self-hosted:enterprise": ["search-contexts", "sso", "code-nav", "audit", "analytics", "permission-syncing", "github-app"],
51+
"self-hosted:enterprise-unlimited": ["search-contexts", "anonymous-access", "sso", "code-nav", "audit", "analytics", "permission-syncing", "github-app"],
5152
// Special entitlement for https://demo.sourcebot.dev
5253
"cloud:demo": ["anonymous-access", "code-nav", "search-contexts"],
5354
} as const;

packages/web/src/features/search/searchApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use server';
22

3-
import { env } from "@/env.mjs";
43
import { invalidZoektResponse, ServiceError } from "../../lib/serviceError";
54
import { isServiceError } from "../../lib/utils";
65
import { zoektFetch } from "./zoektClient";

0 commit comments

Comments
 (0)