Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/intent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/intent",
"version": "0.0.26",
"version": "0.0.27",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟑 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check if changeset files exist for this release

# Check for changeset files in the .changeset directory
echo "Checking for changeset files..."
fd -t f . .changeset -x echo "Found: {}"

# Also check if CHANGELOG.md has been updated
echo -e "\nChecking for changelog updates..."
if [ -f "packages/intent/CHANGELOG.md" ]; then
  echo "CHANGELOG.md exists"
  rg -n "0\.0\.27" packages/intent/CHANGELOG.md || echo "Version 0.0.27 not found in CHANGELOG"
else
  echo "No CHANGELOG.md found"
fi

Repository: TanStack/intent

Length of output: 213


🏁 Script executed:

# List all files in .changeset directory to see if there are any changeset entries
echo "=== Files in .changeset directory ==="
find .changeset -type f | sort

# Check the last few entries in CHANGELOG.md
echo -e "\n=== Last 30 lines of packages/intent/CHANGELOG.md ==="
tail -30 packages/intent/CHANGELOG.md

# Check if package.json in root mentions changesets
echo -e "\n=== Checking root package.json for changeset configuration ==="
rg -A 5 -B 5 'changeset' package.json || echo "No 'changeset' found in root package.json"

Repository: TanStack/intent

Length of output: 3569


Add a changeset entry for this patch release.

The project uses the @changesets/cli tool for version management, but no changeset entry file exists in the .changeset directory for version 0.0.27. The version was bumped directly in package.json instead of following the changesets workflow. Create a changeset entry using changeset command (or manually create a file in .changeset/ directory), then run changeset version to regenerate package.json and update CHANGELOG.md properly.

Additionally, the empty PR description should be filled with information about what changes are included in this patch release.

πŸ€– Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@packages/intent/package.json` at line 3, The package.json version was bumped
directly to "0.0.27" without a corresponding changeset; create a new changeset
file in the .changeset directory (or run the changeset CLI) that declares a
patch release for the intent package and includes a short summary of the
changes, then run changeset version to regenerate package.json and update
CHANGELOG.md so the version and changelog are consistent with the changeset;
finally, update the PR description to summarize what this patch (0.0.27)
contains.

"description": "Ship compositional knowledge for AI coding agents alongside your npm packages",
"license": "MIT",
"type": "module",
Expand Down
Loading