@knapsack/adapter-core 4.89.8--canary.7206.d4f2401.0 → 4.89.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +5 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,22 @@
1
+ # v0.1.1 (Fri Feb 20 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Merged latest in ([@EmmanuelVelez](https://github.com/EmmanuelVelez))
6
+ - fix: align eslint version in adapter packages with syncpack policy ([@sxalexander](https://github.com/sxalexander))
7
+ - refactor(adapter-core): move outputPath from config to RuntimeDeps ([@sxalexander](https://github.com/sxalexander))
8
+ - feat(adapter-core): two-phase validation split (validateConfig + validateFull) ([@sxalexander](https://github.com/sxalexander))
9
+ - refactor(adapter-core): drop PipelineStats, move all counts into StageInfo ([@sxalexander](https://github.com/sxalexander))
10
+ - refactor(adapter-core): rename KS_SITE to KNAPSACK ([@sxalexander](https://github.com/sxalexander))
11
+ - refactor(adapter-core): rename phase→stage, EntityType→EntityKind, add per-stage timing ([@sxalexander](https://github.com/sxalexander))
12
+ - feat(adapter-core): allow async parse/transform for browser-based adapters ([@sxalexander](https://github.com/sxalexander))
13
+ - feat(ingest-pipeline): adapter-core types, MDX adapter, and PCIF-aligned output ([@sxalexander](https://github.com/sxalexander))
14
+
15
+ #### 🏠 Internal
16
+
17
+ - feat(adapter-core): add adapters interface and shared types [#7136](https://github.com/knapsack-labs/app-monorepo/pull/7136) ([@sxalexander](https://github.com/sxalexander))
18
+
19
+ #### Authors: 2
20
+
21
+ - [@EmmanuelVelez](https://github.com/EmmanuelVelez)
22
+ - Sam Alexander ([@sxalexander](https://github.com/sxalexander))
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/adapter-core",
3
3
  "description": "Core types, interfaces, and logging for ContextSrcAdapters",
4
- "version": "4.89.8--canary.7206.d4f2401.0",
4
+ "version": "4.89.8",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "author": "Knapsack (https://www.knapsack.cloud)",
24
24
  "dependencies": {
25
- "@knapsack/logger": "4.89.8--canary.7206.d4f2401.0"
25
+ "@knapsack/logger": "4.89.8"
26
26
  },
27
27
  "devDependencies": {
28
- "@knapsack/eslint-config-starter": "4.89.8--canary.7206.d4f2401.0",
29
- "@knapsack/typescript-config-starter": "4.89.8--canary.7206.d4f2401.0",
28
+ "@knapsack/eslint-config-starter": "4.89.8",
29
+ "@knapsack/typescript-config-starter": "4.89.8",
30
30
  "@types/node": "^20.19.25",
31
31
  "eslint": "^9.20.0",
32
32
  "typescript": "^5.9.3"
@@ -40,5 +40,5 @@
40
40
  "directory": "libs/ingest-pipeline/adapters/core",
41
41
  "type": "git"
42
42
  },
43
- "gitHead": "d4f24014f44dda1b5075db59af0d1318d3711137"
43
+ "gitHead": "80e2a807755693f242df19fe6cf408bb96adfffd"
44
44
  }