@meridiona/meridian-darwin-arm64 1.52.3 → 1.52.5
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/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/scripts/install-openobserve-daemon.sh +2 -2
- package/scripts/meridian-cli.sh +1 -0
- package/scripts/uninstall-daemon.sh +17 -0
- package/services/pyproject.toml +1 -1
- package/services/uv.lock +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.52.
|
|
1
|
+
1.52.5
|
package/bin/meridian
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.52.
|
|
3
|
+
"version": "1.52.5",
|
|
4
4
|
"description": "Prebuilt Meridian app for macOS arm64 (daemon binary + dashboard + Python services). Installed via @meridiona/meridian.",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
|
@@ -154,8 +154,8 @@ else
|
|
|
154
154
|
fi
|
|
155
155
|
export RUST_LOG
|
|
156
156
|
|
|
157
|
-
export ZO_MEMORY_CACHE_MAX_SIZE=
|
|
158
|
-
export ZO_DATAFUSION_POOL_SIZE=
|
|
157
|
+
export ZO_MEMORY_CACHE_MAX_SIZE=512 # 512 MB (unit is MB in v0.15+; bytes caused panic)
|
|
158
|
+
export ZO_DATAFUSION_POOL_SIZE=4096 # 4 GB (unit is MB in v0.15+)
|
|
159
159
|
|
|
160
160
|
exec "${HOME}/.openobserve/openobserve"
|
|
161
161
|
RUNEOF
|
package/scripts/meridian-cli.sh
CHANGED
|
@@ -499,6 +499,7 @@ cmd_uninstall() {
|
|
|
499
499
|
bash "${REPO_ROOT}/scripts/uninstall-daemon.sh" 2>/dev/null
|
|
500
500
|
bash "${REPO_ROOT}/scripts/uninstall-screenpipe-daemon.sh" 2>/dev/null
|
|
501
501
|
bash "${REPO_ROOT}/scripts/uninstall-tray-daemon.sh" 2>/dev/null
|
|
502
|
+
bash "${REPO_ROOT}/scripts/uninstall-openobserve-daemon.sh" 2>/dev/null
|
|
502
503
|
# a11y-helper plist
|
|
503
504
|
launchctl bootout "${GUI_TARGET}/com.meridiona.a11y-helper" 2>/dev/null || true
|
|
504
505
|
rm -f "${HOME}/Library/LaunchAgents/com.meridiona.a11y-helper.plist"
|
|
@@ -17,3 +17,20 @@ if [[ -f "${PLIST}" ]]; then
|
|
|
17
17
|
else
|
|
18
18
|
echo "(not installed) ${PLIST}"
|
|
19
19
|
fi
|
|
20
|
+
|
|
21
|
+
# Legacy agents: the Jira updater and coding-agent indexer used to run as their
|
|
22
|
+
# own standalone Python launchd daemons. They were ported into this Rust daemon
|
|
23
|
+
# (the Python modules were deleted), but a pre-port install leaves the old
|
|
24
|
+
# KeepAlive agents behind — they then crash-loop every ~10s against the missing
|
|
25
|
+
# modules and spam ~MB/min into their logs. Boot out + disable + remove them so
|
|
26
|
+
# an upgrade-then-uninstall leaves nothing orphaned. Idempotent: no-ops when the
|
|
27
|
+
# agents aren't present.
|
|
28
|
+
for legacy in com.meridiona.jira-updater com.meridiona.coding-agent-indexer; do
|
|
29
|
+
legacy_plist="${HOME}/Library/LaunchAgents/${legacy}.plist"
|
|
30
|
+
if launchctl print "${GUI_TARGET}/${legacy}" >/dev/null 2>&1; then
|
|
31
|
+
launchctl disable "${GUI_TARGET}/${legacy}" 2>/dev/null || true
|
|
32
|
+
launchctl bootout "${GUI_TARGET}/${legacy}" 2>/dev/null || true
|
|
33
|
+
echo "✓ removed legacy agent ${legacy}"
|
|
34
|
+
fi
|
|
35
|
+
rm -f "${legacy_plist}"
|
|
36
|
+
done
|
package/services/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "meridian-agents"
|
|
7
|
-
version = "1.52.
|
|
7
|
+
version = "1.52.5"
|
|
8
8
|
description = "Meridian agents — MLX classifier server and Jira worklog synthesis for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/services/uv.lock
CHANGED
package/ui.tar.gz
CHANGED
|
Binary file
|