bluera-knowledge 0.11.0 → 0.11.1
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/.claude-plugin/plugin.json +1 -1
- package/.github/workflows/ci.yml +14 -1
- package/CHANGELOG.md +13 -0
- package/package.json +1 -1
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,19 @@
|
|
|
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.1](https://github.com/blueraai/bluera-knowledge/compare/v0.10.0...v0.11.1) (2026-01-09)
|
|
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
|
+
|
|
5
18
|
## [0.11.0](https://github.com/blueraai/bluera-knowledge/compare/v0.10.0...v0.11.0) (2026-01-09)
|
|
6
19
|
|
|
7
20
|
|