@arbidocs/cli 0.3.33 → 0.3.34
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/CHANGELOG.md +38 -0
- package/dist/index.js +408 -130
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/scripts/bench-upload.mjs +275 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.34
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.33...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Make frontend installable as a PWA ([#581](https://github.com/arbicity/ARBI-frontend/pull/581))
|
|
10
|
+
- **cli:** Add --s3 direct-to-MinIO upload flow ([#580](https://github.com/arbicity/ARBI-frontend/pull/580))
|
|
11
|
+
|
|
12
|
+
### 🔥 Performance
|
|
13
|
+
|
|
14
|
+
- Replace full document list refetches with incremental cache updates ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
|
|
15
|
+
- Replace full document list refetches with incremental cache updates " ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
|
|
16
|
+
|
|
17
|
+
### 🩹 Fixes
|
|
18
|
+
|
|
19
|
+
- **cli:** Update reprocess test to match new status line format ([#582](https://github.com/arbicity/ARBI-frontend/pull/582))
|
|
20
|
+
- Folder column truncation, tooltip, and related docs cache ([#590](https://github.com/arbicity/ARBI-frontend/pull/590))
|
|
21
|
+
- **cli:** Derive integration test SERVER_URL from DEPLOYMENT_DOMAIN ([#589](https://github.com/arbicity/ARBI-frontend/pull/589))
|
|
22
|
+
- **ci:** Probe API through nginx on the deployment domain ([e173b25a](https://github.com/arbicity/ARBI-frontend/commit/e173b25a))
|
|
23
|
+
- **ci:** Probe API through nginx in docker-deploy and e2e-tests ([#591](https://github.com/arbicity/ARBI-frontend/pull/591))
|
|
24
|
+
|
|
25
|
+
### 💅 Refactors
|
|
26
|
+
|
|
27
|
+
- **cli:** Reprocess status line — add timestamp, drop ETA ([#579](https://github.com/arbicity/ARBI-frontend/pull/579))
|
|
28
|
+
|
|
29
|
+
### ✅ Tests
|
|
30
|
+
|
|
31
|
+
- **cli:** Drop intermittent 'reprocess --status failed empty match' test ([#593](https://github.com/arbicity/ARBI-frontend/pull/593))
|
|
32
|
+
- **cli:** MakeUniquePdf returns a parser-valid PDF with unique bytes ([#594](https://github.com/arbicity/ARBI-frontend/pull/594))
|
|
33
|
+
|
|
34
|
+
### 🤖 CI
|
|
35
|
+
|
|
36
|
+
- Robust Docker cleanup before e2e test environment startup ([2384d0d9](https://github.com/arbicity/ARBI-frontend/commit/2384d0d9))
|
|
37
|
+
- Dual-push arbi-frontend to Docker Hub and local registry ([#585](https://github.com/arbicity/ARBI-frontend/pull/585))
|
|
38
|
+
- Temporarily disable CLI integration tests on the CI stack ([#595](https://github.com/arbicity/ARBI-frontend/pull/595))
|
|
39
|
+
- Temporarily disable SDK integration tests on the CI stack ([b639e734](https://github.com/arbicity/ARBI-frontend/commit/b639e734))
|
|
40
|
+
|
|
3
41
|
## v0.3.33
|
|
4
42
|
|
|
5
43
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.32...HEAD)
|