Compare commits
2 Commits
chore/impr
...
feat/impro
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4107f83324 | ||
|
|
184bb5e68e |
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"mode": "exit",
|
|
||||||
"tag": "rc",
|
|
||||||
"initialVersions": {
|
|
||||||
"task-master-ai": "0.23.0",
|
|
||||||
"extension": "0.23.0"
|
|
||||||
},
|
|
||||||
"changesets": [
|
|
||||||
"fuzzy-words-count",
|
|
||||||
"tender-trams-refuse",
|
|
||||||
"vast-sites-leave"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
5
.github/workflows/pre-release.yml
vendored
5
.github/workflows/pre-release.yml
vendored
@@ -3,12 +3,11 @@ name: Pre-Release (RC)
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch: # Allows manual triggering from GitHub UI/API
|
workflow_dispatch: # Allows manual triggering from GitHub UI/API
|
||||||
|
|
||||||
concurrency: pre-release-${{ github.ref_name }}
|
concurrency: pre-release-${{ github.ref }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
rc:
|
rc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Only allow pre-releases on non-main branches
|
|
||||||
if: github.ref != 'refs/heads/main'
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
36
.github/workflows/release-check.yml
vendored
36
.github/workflows/release-check.yml
vendored
@@ -1,36 +0,0 @@
|
|||||||
name: Release Check
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check-release-mode:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Check release mode
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
echo "🔍 Checking if branch is in pre-release mode..."
|
|
||||||
|
|
||||||
if [[ -f .changeset/pre.json ]]; then
|
|
||||||
echo "❌ ERROR: This branch is in pre-release mode!"
|
|
||||||
echo ""
|
|
||||||
echo "Pre-release mode must be exited before merging to main."
|
|
||||||
echo ""
|
|
||||||
echo "To fix this, run the following commands in your branch:"
|
|
||||||
echo " npx changeset pre exit"
|
|
||||||
echo " git add -u"
|
|
||||||
echo " git commit -m 'chore: exit pre-release mode'"
|
|
||||||
echo " git push"
|
|
||||||
echo ""
|
|
||||||
echo "Then update this pull request."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "✅ Not in pre-release mode - PR can be merged"
|
|
||||||
34
.github/workflows/release.yml
vendored
34
.github/workflows/release.yml
vendored
@@ -38,27 +38,27 @@ jobs:
|
|||||||
run: npm ci
|
run: npm ci
|
||||||
timeout-minutes: 2
|
timeout-minutes: 2
|
||||||
|
|
||||||
- name: Check pre-release mode
|
- name: Exit pre-release mode and clean up
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
echo "🔄 Ensuring we're not in pre-release mode for main branch..."
|
||||||
echo "🔍 Checking pre-release mode status..."
|
|
||||||
if [[ -f .changeset/pre.json ]]; then
|
# Exit pre-release mode if we're in it
|
||||||
echo "❌ ERROR: Main branch is in pre-release mode!"
|
npx changeset pre exit || echo "Not in pre-release mode"
|
||||||
echo ""
|
|
||||||
echo "Pre-release mode should only be used on feature branches, not main."
|
# Remove pre.json file if it exists (belt and suspenders approach)
|
||||||
echo ""
|
if [ -f .changeset/pre.json ]; then
|
||||||
echo "To fix this, run the following commands locally:"
|
echo "🧹 Removing pre.json file..."
|
||||||
echo " npx changeset pre exit"
|
rm -f .changeset/pre.json
|
||||||
echo " git add -u"
|
fi
|
||||||
echo " git commit -m 'chore: exit pre-release mode'"
|
|
||||||
echo " git push origin main"
|
# Verify the file is gone
|
||||||
echo ""
|
if [ ! -f .changeset/pre.json ]; then
|
||||||
echo "Then re-run this workflow."
|
echo "✅ pre.json successfully removed"
|
||||||
|
else
|
||||||
|
echo "❌ Failed to remove pre.json"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "✅ Not in pre-release mode - proceeding with release"
|
|
||||||
|
|
||||||
- name: Create Release Pull Request or Publish to npm
|
- name: Create Release Pull Request or Publish to npm
|
||||||
uses: changesets/action@v1
|
uses: changesets/action@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
19
CHANGELOG.md
19
CHANGELOG.md
@@ -1,24 +1,5 @@
|
|||||||
# task-master-ai
|
# task-master-ai
|
||||||
|
|
||||||
## 0.23.1-rc.0
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix scope-up/down prompts to include all required fields for better AI model compatibility
|
|
||||||
- Added missing `priority` field to scope adjustment prompts to prevent validation errors with Claude-code and other models
|
|
||||||
- Ensures generated JSON includes all fields required by the schema
|
|
||||||
|
|
||||||
- [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP scope-up/down tools not finding tasks
|
|
||||||
- Fixed task ID parsing in MCP layer - now correctly converts string IDs to numbers
|
|
||||||
- scope_up_task and scope_down_task MCP tools now work properly
|
|
||||||
|
|
||||||
- [#1079](https://github.com/eyaltoledano/claude-task-master/pull/1079) [`e495b2b`](https://github.com/eyaltoledano/claude-task-master/commit/e495b2b55950ee54c7d0f1817d8530e28bd79c05) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve AI provider compatibility for JSON generation
|
|
||||||
- Fixed schema compatibility issues between Perplexity and OpenAI o3 models
|
|
||||||
- Removed nullable/default modifiers from Zod schemas for broader compatibility
|
|
||||||
- Added automatic JSON repair for malformed AI responses (handles cases like missing array values)
|
|
||||||
- Perplexity now uses JSON mode for more reliable structured output
|
|
||||||
- Post-processing handles default values separately from schema validation
|
|
||||||
|
|
||||||
## 0.23.0
|
## 0.23.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.23.1-rc.0",
|
"version": "0.23.0",
|
||||||
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
Reference in New Issue
Block a user