bluera-knowledge 0.11.0 → 0.11.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.
package/.github/workflows/ci.yml
CHANGED
|
@@ -61,10 +61,23 @@ jobs:
|
|
|
61
61
|
restore-keys: |
|
|
62
62
|
pip-${{ runner.os }}-
|
|
63
63
|
|
|
64
|
+
- name: Cache Playwright browsers
|
|
65
|
+
uses: actions/cache@v4
|
|
66
|
+
with:
|
|
67
|
+
path: ~/.cache/ms-playwright
|
|
68
|
+
key: playwright-${{ runner.os }}-chromium
|
|
69
|
+
restore-keys: |
|
|
70
|
+
playwright-${{ runner.os }}-
|
|
71
|
+
|
|
64
72
|
- name: Install crawl4ai
|
|
65
73
|
run: |
|
|
66
74
|
pip install crawl4ai
|
|
67
|
-
|
|
75
|
+
# Only run setup if Playwright not cached (checks for chromium)
|
|
76
|
+
if [ ! -d ~/.cache/ms-playwright/chromium-* ]; then
|
|
77
|
+
crawl4ai-setup
|
|
78
|
+
else
|
|
79
|
+
echo "Playwright browsers already cached, skipping setup"
|
|
80
|
+
fi
|
|
68
81
|
|
|
69
82
|
- name: Setup Bun
|
|
70
83
|
uses: oven-sh/setup-bun@v2
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.11.2](https://github.com/blueraai/bluera-knowledge/compare/v0.10.0...v0.11.2) (2026-01-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **analysis:** add custom language extensibility framework with ZIL adapter ([c4dc526](https://github.com/blueraai/bluera-knowledge/commit/c4dc526467c70dbc3fb28e7e5d7620a90cc3bf95))
|
|
11
|
+
* **sync:** add git-committable store definitions with sync command ([5cfa925](https://github.com/blueraai/bluera-knowledge/commit/5cfa92580397f193fda75ea61197fb4c9d9d4b0a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **crawl:** handle Claude CLI structured_output wrapper in intelligent crawl ([54ea74b](https://github.com/blueraai/bluera-knowledge/commit/54ea74bca6d4b7263ef11a8290416e0d66b8d37f))
|
|
17
|
+
* **test:** add timeout to flaky search test ([5848b76](https://github.com/blueraai/bluera-knowledge/commit/5848b7648a547510fc2333f283ae835a6ca9efef))
|
|
18
|
+
|
|
19
|
+
## [0.11.1](https://github.com/blueraai/bluera-knowledge/compare/v0.10.0...v0.11.1) (2026-01-09)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **analysis:** add custom language extensibility framework with ZIL adapter ([c4dc526](https://github.com/blueraai/bluera-knowledge/commit/c4dc526467c70dbc3fb28e7e5d7620a90cc3bf95))
|
|
25
|
+
* **sync:** add git-committable store definitions with sync command ([5cfa925](https://github.com/blueraai/bluera-knowledge/commit/5cfa92580397f193fda75ea61197fb4c9d9d4b0a))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **crawl:** handle Claude CLI structured_output wrapper in intelligent crawl ([54ea74b](https://github.com/blueraai/bluera-knowledge/commit/54ea74bca6d4b7263ef11a8290416e0d66b8d37f))
|
|
31
|
+
|
|
5
32
|
## [0.11.0](https://github.com/blueraai/bluera-knowledge/compare/v0.10.0...v0.11.0) (2026-01-09)
|
|
6
33
|
|
|
7
34
|
|
package/package.json
CHANGED
|
@@ -168,7 +168,7 @@ describe('CLI Consistency', () => {
|
|
|
168
168
|
expect(result.exitCode).toBe(0);
|
|
169
169
|
const parsed = JSON.parse(result.stdout);
|
|
170
170
|
expect(parsed).toHaveProperty('results');
|
|
171
|
-
});
|
|
171
|
+
}, 15000);
|
|
172
172
|
|
|
173
173
|
it('index supports --format json', () => {
|
|
174
174
|
const result = runCli('index json-test-store --format json');
|