chore: bump 2026.1.16 for beta

This commit is contained in:
Peter Steinberger
2026-01-17 10:49:49 +00:00
parent 6b784a9771
commit c874fa9712
14 changed files with 54 additions and 18 deletions

View File

@@ -2,7 +2,7 @@
Docs: https://docs.clawd.bot Docs: https://docs.clawd.bot
## 2026.1.16 (unreleased) ## 2026.1.16
### Highlights ### Highlights
- Hooks: add hooks system with bundled hooks, CLI tooling, and docs. (#1028) — thanks @ThomsenDrake. https://docs.clawd.bot/hooks - Hooks: add hooks system with bundled hooks, CLI tooling, and docs. (#1028) — thanks @ThomsenDrake. https://docs.clawd.bot/hooks

View File

@@ -1,9 +1,11 @@
{ {
"name": "@clawdbot/copilot-proxy", "name": "@clawdbot/copilot-proxy",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Copilot Proxy provider plugin", "description": "Clawdbot Copilot Proxy provider plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -1,9 +1,11 @@
{ {
"name": "@clawdbot/google-antigravity-auth", "name": "@clawdbot/google-antigravity-auth",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Google Antigravity OAuth provider plugin", "description": "Clawdbot Google Antigravity OAuth provider plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -1,9 +1,11 @@
{ {
"name": "@clawdbot/google-gemini-cli-auth", "name": "@clawdbot/google-gemini-cli-auth",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Gemini CLI OAuth provider plugin", "description": "Clawdbot Gemini CLI OAuth provider plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026.1.16
### Changes
- Version alignment with core Clawdbot release numbers.
## 2026.1.15 ## 2026.1.15
### Changes ### Changes

View File

@@ -1,10 +1,12 @@
{ {
"name": "@clawdbot/matrix", "name": "@clawdbot/matrix",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Matrix channel plugin", "description": "Clawdbot Matrix channel plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
}, },
"dependencies": { "dependencies": {
"markdown-it": "14.1.0", "markdown-it": "14.1.0",

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026.1.16
### Changes
- Version alignment with core Clawdbot release numbers.
## 2026.1.15 ## 2026.1.15
### Features ### Features

View File

@@ -1,10 +1,12 @@
{ {
"name": "@clawdbot/msteams", "name": "@clawdbot/msteams",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Microsoft Teams channel plugin", "description": "Clawdbot Microsoft Teams channel plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
}, },
"dependencies": { "dependencies": {
"@microsoft/agents-hosting": "^1.1.1", "@microsoft/agents-hosting": "^1.1.1",

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026.1.16
### Changes
- Version alignment with core Clawdbot release numbers.
## 2026.1.15 ## 2026.1.15
### Changes ### Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/voice-call", "name": "@clawdbot/voice-call",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot voice-call plugin", "description": "Clawdbot voice-call plugin",
"dependencies": { "dependencies": {
@@ -9,6 +9,8 @@
"zod": "^4.3.5" "zod": "^4.3.5"
}, },
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026.1.16
### Changes
- Version alignment with core Clawdbot release numbers.
## 2026.1.15 ## 2026.1.15
### Changes ### Changes

View File

@@ -1,10 +1,12 @@
{ {
"name": "@clawdbot/zalo", "name": "@clawdbot/zalo",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Zalo channel plugin", "description": "Clawdbot Zalo channel plugin",
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
}, },
"dependencies": { "dependencies": {
"undici": "7.18.2" "undici": "7.18.2"

View File

@@ -1,12 +1,14 @@
{ {
"name": "@clawdbot/zalouser", "name": "@clawdbot/zalouser",
"version": "2026.1.15", "version": "2026.1.16",
"type": "module", "type": "module",
"description": "Clawdbot Zalo Personal Account plugin via zca-cli", "description": "Clawdbot Zalo Personal Account plugin via zca-cli",
"dependencies": { "dependencies": {
"@sinclair/typebox": "0.34.47" "@sinclair/typebox": "0.34.47"
}, },
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "clawdbot", "name": "clawdbot",
"version": "2026.1.15", "version": "2026.1.16",
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent", "description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",