@oss-autopilot/core 1.12.0 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -137,7 +137,7 @@ function readBody(req, maxBytes = MAX_BODY_BYTES) {
137
137
  function setSecurityHeaders(res) {
138
138
  res.setHeader('X-Content-Type-Options', 'nosniff');
139
139
  res.setHeader('X-Frame-Options', 'DENY');
140
- res.setHeader('Content-Security-Policy', "default-src 'self'; script-src 'self' https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'");
140
+ res.setHeader('Content-Security-Policy', "default-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data:; connect-src 'self'");
141
141
  res.setHeader('Referrer-Policy', 'strict-origin-when-cross-origin');
142
142
  }
143
143
  /**
@@ -21,12 +21,14 @@ export function buildScoutState() {
21
21
  excludeRepos: config.excludeRepos,
22
22
  excludeOrgs: config.excludeOrgs ?? [],
23
23
  aiPolicyBlocklist: config.aiPolicyBlocklist,
24
- preferredOrgs: config.preferredOrgs ?? [],
25
24
  projectCategories: config.projectCategories ?? [],
26
25
  minStars: config.minStars,
27
26
  maxIssueAgeDays: config.maxIssueAgeDays,
28
27
  includeDocIssues: config.includeDocIssues,
29
28
  minRepoScoreThreshold: config.minRepoScoreThreshold,
29
+ interPhaseDelayMs: 30000,
30
+ broadPhaseDelayMs: 90000,
31
+ skipBroadWhenSufficientResults: 15,
30
32
  persistence: config.persistence,
31
33
  },
32
34
  repoScores: state.repoScores,
@@ -43,6 +45,7 @@ export function buildScoutState() {
43
45
  closedAt: pr.closedAt,
44
46
  })),
45
47
  savedResults: [],
48
+ skippedIssues: [],
46
49
  lastRunAt: state.lastRunAt,
47
50
  };
48
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oss-autopilot/core",
3
- "version": "1.12.0",
3
+ "version": "1.12.2",
4
4
  "description": "CLI and core library for managing open source contributions",
5
5
  "type": "module",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "dependencies": {
51
51
  "@octokit/plugin-throttling": "^11.0.3",
52
52
  "@octokit/rest": "^22.0.1",
53
- "@oss-scout/core": "^0.2.0",
53
+ "@oss-scout/core": "^0.4.0",
54
54
  "commander": "^14.0.3",
55
55
  "zod": "^4.3.6"
56
56
  },