@openclaw/amazon-bedrock-provider 2026.9.3 → 2026.9.4

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.
@@ -539,7 +539,7 @@ function buildSystemPrompt(systemPrompt, cacheRetention, cachePoint) {
539
539
  if (cacheRetention === "none") return [{ text: sanitizeSurrogates(stripSystemPromptCacheBoundary(systemPrompt)) }];
540
540
  const split = splitSystemPromptCacheBoundary(systemPrompt);
541
541
  const stablePrefix = split?.stablePrefix ?? systemPrompt;
542
- const blocks = stablePrefix ? [{ text: sanitizeSurrogates(stablePrefix) }] : [];
542
+ const blocks = stablePrefix ? [{ text: sanitizeSurrogates(stripSystemPromptCacheBoundary(stablePrefix)) }] : [];
543
543
  if (stablePrefix && cachePoint) blocks.push({ cachePoint });
544
544
  if (split?.dynamicSuffix) blocks.push({ text: sanitizeSurrogates(stripSystemPromptCacheBoundary(split.dynamicSuffix)) });
545
545
  return blocks.length > 0 ? blocks : void 0;
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "id": "amazon-bedrock",
3
+ "categories": ["models", "memory"],
3
4
  "name": "Amazon Bedrock",
4
5
  "description": "OpenClaw Amazon Bedrock provider plugin with model discovery, embeddings, and guardrail support.",
5
6
  "activation": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/amazon-bedrock-provider",
3
- "version": "2026.9.3",
3
+ "version": "2026.9.4",
4
4
  "description": "OpenClaw Amazon Bedrock provider plugin with model discovery, embeddings, and guardrail support.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,10 +25,10 @@
25
25
  "minHostVersion": ">=2026.5.12-beta.1"
26
26
  },
27
27
  "compat": {
28
- "pluginApi": ">=2026.9.3"
28
+ "pluginApi": ">=2026.9.4"
29
29
  },
30
30
  "build": {
31
- "openclawVersion": "2026.9.3",
31
+ "openclawVersion": "2026.9.4",
32
32
  "bundledDist": false
33
33
  },
34
34
  "release": {
@@ -45,7 +45,7 @@
45
45
  "README.md"
46
46
  ],
47
47
  "peerDependencies": {
48
- "openclaw": ">=2026.9.3"
48
+ "openclaw": ">=2026.9.4"
49
49
  },
50
50
  "peerDependenciesMeta": {
51
51
  "openclaw": {