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.28",
"version": "0.0.29",
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 | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check for changeset files in the .changeset directory

# List all changeset files (excluding README)
fd -e md . .changeset --exclude README.md --exec echo "Found changeset: {}"

# If no changesets found, this might be intentional for a manual release
if [ -z "$(fd -e md . .changeset --exclude README.md)" ]; then
  echo "No changeset files found in .changeset directory"
  echo "Checking if .changeset directory exists..."
  if [ -d ".changeset" ]; then
    echo ".changeset directory exists"
    ls -la .changeset/
  else
    echo "No .changeset directory found - project may not use changesets"
  fi
fi

Repository: TanStack/intent

Length of output: 350


🏁 Script executed:

# Check for release/contribution guidelines
fd -i 'contributing\|changelog\|release' --type f --max-results 20

Repository: TanStack/intent

Length of output: 41


🏁 Script executed:

# Check .changeset/config.json to see if changesets are required
cat .changeset/config.json

Repository: TanStack/intent

Length of output: 506


🏁 Script executed:

# Look at recent git history for other version bumps and changesets
git log --oneline -20 -- packages/intent/package.json

Repository: TanStack/intent

Length of output: 80


🏁 Script executed:

# Check if there are any CI workflows that validate changesets
fd 'workflow\|\.yml\|\.yaml' . .github --type f | head -20

Repository: TanStack/intent

Length of output: 41


Add a changeset file for this version bump.

This project uses changesets for release management (see .changeset/config.json), but no changeset file is included in this PR. The changelog is automatically generated from changesets using the GitHub Compact formatter. Without a changeset, the release notes and changelog will be incomplete.

Add a changeset file describing this patch release to .changeset/ before merging.

πŸ€– 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 repo is missing a changeset for
the version bump of package "intent" to 0.0.29; create a new changeset file that
lists the package "intent" with a "patch" release in the changeset frontmatter
and a one- or two-line description of the change (e.g., "Patch release for
bugfixes/updates"), so the changelog can be generated; ensure the file uses the
standard changeset YAML/frontmatter format and includes "intent": patch and
mentions version 0.0.29 in the description.

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