Skip to content

Commit 55beead

Browse files
committed
Release trusted ClawPack package 0.1.10
1 parent f25b5c8 commit 55beead

11 files changed

Lines changed: 13 additions & 11 deletions

.github/workflows/clawhub-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
id-token: write
4242
uses: openclaw/clawhub/.github/workflows/package-publish.yml@v0.18.0
4343
with:
44-
source: ./clawpack/completetech-openclaw-mautic-plugin-0.1.9.tgz
44+
source: ./clawpack/completetech-openclaw-mautic-plugin-0.1.10.tgz
4545
dry_run: false
4646
source_repo: CompleteTech-LLC-AI-Research/openclaw-mautic-plugin
4747
source_commit: ${{ github.sha }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.10 - 2026-05-26
4+
5+
- Removed the legacy `MAUTIC_CONSOLE_COMMAND_POLICY` environment fallback; console policy should come from plugin config or the explicit capability toggles.
6+
37
## 0.1.9 - 2026-05-26
48

59
- Excluded local release helper scripts from the published ClawPack artifact to reduce ClawHub static-scan noise.
270 KB
Binary file not shown.
-270 KB
Binary file not shown.

docs/CLAWHUB_READINESS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Result:
4848
"name": "@completetech/openclaw-mautic-plugin",
4949
"displayName": "Mautic Control",
5050
"family": "bundle-plugin",
51-
"version": "0.1.9"
51+
"version": "0.1.10"
5252
}
5353
```
5454

@@ -67,7 +67,7 @@ Result: passed. ClawHub detected:
6767
"name": "@completetech/openclaw-mautic-plugin",
6868
"displayName": "Mautic Control",
6969
"family": "bundle-plugin",
70-
"version": "0.1.9"
70+
"version": "0.1.10"
7171
}
7272
```
7373

docs/PRIVATE_SOURCE_REVIEW_REQUEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Historical/alternate handoff only. The repository is currently public, so this p
66

77
- Package name: `@completetech/openclaw-mautic-plugin`
88
- Plugin id: `mautic-control`
9-
- Version: `0.1.9`
9+
- Version: `0.1.10`
1010
- Source repository: `CompleteTech-LLC-AI-Research/openclaw-mautic-plugin`
1111
- Current source visibility: public
1212
- Branch: `main`

docs/TRUSTED_PUBLISHING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This package is configured for GitHub Actions OIDC trusted publishing.
88
- Repository: `CompleteTech-LLC-AI-Research/openclaw-mautic-plugin`
99
- Workflow file: `clawhub-publish.yml`
1010
- Artifact format: ClawPack `npm-pack` `.tgz`
11-
- Workflow artifact: `./clawpack/completetech-openclaw-mautic-plugin-0.1.9.tgz`
11+
- Workflow artifact: `./clawpack/completetech-openclaw-mautic-plugin-0.1.10.tgz`
1212

1313
## Workflow
1414

lib/runtime.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export function commandsFromGroups(groups) {
123123

124124
export function resolveLegacyConsolePolicy(pluginConfig) {
125125
const policy = pickEnum(
126-
pluginConfig.consoleCommandPolicy || process.env.MAUTIC_CONSOLE_COMMAND_POLICY,
126+
pluginConfig.consoleCommandPolicy,
127127
CONSOLE_COMMAND_POLICIES,
128128
"maintenance",
129129
);
@@ -139,8 +139,7 @@ export function resolveConsoleCommands(pluginConfig) {
139139
|| process.env.MAUTIC_ALLOW_MAINTENANCE_COMMANDS !== undefined
140140
|| process.env.MAUTIC_ALLOW_AUTOMATION_JOB_COMMANDS !== undefined;
141141
const hasLegacyConfig = Object.prototype.hasOwnProperty.call(pluginConfig, "consoleCommandPolicy")
142-
|| Object.prototype.hasOwnProperty.call(pluginConfig, "consoleCommandGroups")
143-
|| process.env.MAUTIC_CONSOLE_COMMAND_POLICY !== undefined;
142+
|| Object.prototype.hasOwnProperty.call(pluginConfig, "consoleCommandGroups");
144143
if (!hasToggleConfig && hasLegacyConfig) {
145144
return resolveLegacyConsolePolicy(pluginConfig);
146145
}

openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "mautic-control",
33
"name": "Mautic Control",
44
"description": "Typed tools for controlled Mautic REST API access, webhook inspection, optional console maintenance, and optional workspace file staging.",
5-
"version": "0.1.9",
5+
"version": "0.1.10",
66
"contracts": {
77
"tools": [
88
"mautic_status",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@completetech/openclaw-mautic-plugin",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"description": "OpenClaw plugin for controlled Mautic API, webhook, console bridge, and workspace operations.",
55
"type": "module",
66
"private": false,

0 commit comments

Comments
 (0)