Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 0 deletions .changeset/crisp-symbols-add.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Comment on lines +1 to +2
Copy link
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:

# First, check if the file exists and read its content
if [ -f ".changeset/crisp-symbols-add.md" ]; then
  echo "=== File Content ===" 
  cat -n ".changeset/crisp-symbols-add.md"
else
  echo "File not found"
fi

# Check for changeset configuration
echo -e "\n=== Changeset Config ===" 
if [ -f ".changeset/config.json" ]; then
  cat ".changeset/config.json"
else
  echo "No config.json found"
fi

# Look for other changeset files for reference
echo -e "\n=== Other Changeset Files ===" 
if [ -d ".changeset" ]; then
  ls -la ".changeset/" | grep -E "\.md$"
fi

Repository: clerk/javascript

Length of output: 6197


🏁 Script executed:

# Check a few other changeset files to see the expected format
echo "=== Example: afraid-apes-cough.md ===" 
cat ".changeset/afraid-apes-cough.md"

echo -e "\n=== Example: bright-zebras-arrive.md ===" 
cat ".changeset/bright-zebras-arrive.md"

echo -e "\n=== Example: blue-stars-tie.md ===" 
cat ".changeset/blue-stars-tie.md"

echo -e "\n=== Example: chilled-olives-cheer.md ===" 
cat ".changeset/chilled-olives-cheer.md"

# Check the README for changeset format guidelines
echo -e "\n=== .changeset/README.md ===" 
cat ".changeset/README.md"

Repository: clerk/javascript

Length of output: 1193


Empty changeset file requires completion.

The changeset file contains only YAML delimiters without package/version information or a description. Multiple other changesets in the repository have the same empty structure (e.g., blue-stars-tie.md, chilled-olives-cheer.md). Verify whether these empty changesets are intentional for your release automation or need to be completed with package names, version bump types (patch/minor/major), and change descriptions.

🤖 Prompt for AI Agents
In .changeset/crisp-symbols-add.md around lines 1 to 2, the changeset is empty
(only YAML delimiters) which breaks release metadata; populate this file (and
any other empty changesets like blue-stars-tie.md, chilled-olives-cheer.md) with
the required fields: list the affected package names, specify the version bump
type (patch/minor/major) for each package, and add a short description of the
change; if these files were intentionally left empty for automation, instead
remove them or document the intention in a comment file so release tooling does
not treat them as incomplete.

8 changes: 8 additions & 0 deletions packages/shared/src/types/clerk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1062,6 +1062,14 @@ type ClerkOptionsNavigation =
};

type ClerkUnsafeOptions = {
/**
* Disables the console warning that is logged when Clerk is initialized with development keys.
*
* [WARNING] The development mode warning is intended to ensure that you don't go to production with a non-production
* Clerk instance. If you're disabling it, please make sure you don't ship with a non-production Clerk instance!
*
* More information: https://clerk.com/docs/guides/development/deployment/production
*/
unsafe_disableDevelopmentModeConsoleWarning?: boolean;
};

Expand Down
Loading