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/shiny-signs-tickle.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:

cat -n .changeset/shiny-signs-tickle.md

Repository: clerk/javascript

Length of output: 81


🏁 Script executed:

# Check if there's any Changesets configuration to understand validation requirements
fd -t f "^(changeset|changelog)" --glob ".changeset*" . | head -20

Repository: clerk/javascript

Length of output: 117


🏁 Script executed:

# Look for any Changesets documentation or config files
find . -name ".changesetrc*" -o -name "changeset.config.*" -o -name ".changelogrc*" 2>/dev/null | head -10

Repository: clerk/javascript

Length of output: 42


🏁 Script executed:

# Find changeset config or package.json to understand the Changesets setup
fd -t f "package.json" . | head -5 | xargs grep -l "changesets" 2>/dev/null

Repository: clerk/javascript

Length of output: 44


🏁 Script executed:

# Look for changeset config files with broader search
find . -maxdepth 2 -type f \( -name ".changesetrc*" -o -name ".changeset" \)

Repository: clerk/javascript

Length of output: 42


🏁 Script executed:

# Check for any example changesets or documentation in .changeset directory
ls -la .changeset/ 2>/dev/null | head -20

Repository: clerk/javascript

Length of output: 1372


🏁 Script executed:

cat -n .changeset/README.md

Repository: clerk/javascript

Length of output: 625


🏁 Script executed:

# Look at a valid changeset example
cat -n .changeset/afraid-apes-cough.md

Repository: clerk/javascript

Length of output: 240


🏁 Script executed:

# Check another example to confirm the pattern
cat -n .changeset/bright-zebras-arrive.md

Repository: clerk/javascript

Length of output: 382


Populate the changeset front matter (empty changeset will fail Changesets validation).

A changeset must declare at least one affected package and bump type; an empty front matter is invalid and breaks Changesets tooling. Please fill it in or remove the file if a changeset isn't required.

✅ Example fix
 ---
+'@clerk/localizations': patch
 ---
+Fix es-ES formatting.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
---
---
'@clerk/localizations': patch
---
Fix es-ES formatting.
🤖 Prompt for AI Agents
In @.changeset/shiny-signs-tickle.md around lines 1 - 2, The changeset file has
empty front matter which fails validation; open the .changeset markdown and add
valid YAML front matter that lists at least one affected package and a bump type
(major/minor/patch), e.g. provide a packages array with the package name(s) and
a type field; alternatively delete the changeset file if no release is required.
Make sure the front matter is valid YAML (--- delimited) and includes the
package identifier(s) and bump type so Changesets tooling can validate it.

6 changes: 3 additions & 3 deletions packages/localizations/src/es-ES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ export const esES: LocalizationResource = {
cancelSubscriptionTitle: '¿Cancelar la suscripción {{plan}}?',
cannotSubscribeMonthly:
'No puedes suscribirte a este plan con pago mensual. Para suscribirte, debes elegir el pago anual.',
cannotSubscribeUnrecoverable:
'No puedes suscribirte a este plan. Tu suscripción actual es más cara que este plan.',
cannotSubscribeUnrecoverable: 'No puedes suscribirte a este plan. Tu suscripción actual es más cara que este plan.',
checkout: {
description__paymentSuccessful: 'Tu pago se ha realizado correctamente.',
description__subscriptionSuccessful: 'Tu nueva suscripción está lista.',
downgradeNotice:
'Mantendrás tu suscripción actual y sus funciones hasta el final del ciclo de facturación; después se te cambiará a esta suscripción.',
emailForm: {
subtitle: 'Antes de completar la compra, debes añadir una dirección de correo electrónico donde se enviarán los recibos.',
subtitle:
'Antes de completar la compra, debes añadir una dirección de correo electrónico donde se enviarán los recibos.',
title: 'Añadir dirección de correo electrónico',
},
lineItems: {
Expand Down