Add rose-pine/rose-pine-bloom#51616
Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 53 minutes and 15 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThree YAML configuration files are added to register the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested labels
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@pkgs/rose-pine/rose-pine-bloom/pkg.yaml`:
- Around line 1-2: Add a second package entry for the older release to exercise
the no_asset override: alongside the existing short-form entry with name
"rose-pine/rose-pine-bloom@v3.0.1", add a long-form package entry for v3.0.0
that separates the package name and version (e.g. an object with keys like name:
"rose-pine/rose-pine-bloom" and version: "v3.0.0") so the registry uses the
no_asset path and the version is pinned (prevents automatic updates).
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: f6ec1cff-c6c6-4650-a5d3-c31300f8ef6d
📒 Files selected for processing (3)
pkgs/rose-pine/rose-pine-bloom/pkg.yamlpkgs/rose-pine/rose-pine-bloom/registry.yamlregistry.yaml
| packages: | ||
| - name: rose-pine/rose-pine-bloom@v3.0.1 |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check GitHub releases for rose-pine/rose-pine-bloom to verify asset availability
echo "=== Checking v3.0.0 assets ==="
gh api repos/rose-pine/rose-pine-bloom/releases/tags/v3.0.0 --jq '.assets[] | .name' || echo "No assets or release not found"
echo ""
echo "=== Checking v3.0.1 assets ==="
gh api repos/rose-pine/rose-pine-bloom/releases/tags/v3.0.1 --jq '.assets[] | .name' || echo "No assets or release not found"
echo ""
echo "=== Latest releases ==="
gh api repos/rose-pine/rose-pine-bloom/releases --jq '.[:3] | .[] | {tag: .tag_name, asset_count: (.assets | length), assets: [.assets[].name]}'Repository: aquaproj/aqua-registry
Length of output: 662
🏁 Script executed:
# First, find and examine the registry.yaml entries for rose-pine/rose-pine-bloom
rg -A 30 "rose-pine/rose-pine-bloom" registry.yamlRepository: aquaproj/aqua-registry
Length of output: 48
🏁 Script executed:
# Try broader search for rose-pine-bloom
rg "rose-pine-bloom" registry.yaml
# Also check the directory to understand structure
ls -la pkgs/rose-pine/rose-pine-bloom/
# Check if registry.yaml file exists and has content
wc -l registry.yamlRepository: aquaproj/aqua-registry
Length of output: 393
🏁 Script executed:
# Read the local registry.yaml and pkg.yaml for rose-pine-bloom
echo "=== pkg.yaml ==="
cat -n pkgs/rose-pine/rose-pine-bloom/pkg.yaml
echo ""
echo "=== registry.yaml ==="
cat -n pkgs/rose-pine/rose-pine-bloom/registry.yamlRepository: aquaproj/aqua-registry
Length of output: 739
🌐 Web query:
rose-pine/rose-pine-bloom v3.0.0 GitHub release assets
💡 Result:
GitHub release rose-pine/rose-pine-bloom v3.0.0 has 2 release assets (the default GitHub-generated source archives): (github.com)
- Source code (zip):
https://github.com/rose-pine/rose-pine-bloom/archive/refs/tags/v3.0.0.zip - Source code (tar.gz):
https://github.com/rose-pine/rose-pine-bloom/archive/refs/tags/v3.0.0.tar.gz
Citations:
🌐 Web query:
rose-pine/rose-pine-bloom v3.0.1 GitHub release binary assets
💡 Result:
The GitHub release rose-pine/rose-pine-bloom v3.0.1 (dated 2025-11-17) shows “Assets 8” on the release page, but GitHub renders the asset filenames client-side and they aren’t available in the HTML snapshot I can fetch here (it only shows “Assets 8” + “Loading”). [1]
To list the exact binary asset names/URLs, use one of these:
-
GitHub CLI
gh release view v3.0.1 -R rose-pine/rose-pine-bloom --json assets \ -q '.assets[] | [.name, .size, .browser_download_url] | `@tsv`' -
GitHub API (curl + jq)
curl -sL https://api.github.com/repos/rose-pine/rose-pine-bloom/releases/tags/v3.0.1 \ | jq -r '.assets[] | [.name, .size, .browser_download_url] | `@tsv`'
Source:
[1] Release page showing v3.0.1 and “Assets 8” — https://github.com/rose-pine/rose-pine-bloom/releases/tag/v3.0.1
Add v3.0.0 to test the no_asset override path.
The registry.yaml defines two distinct version_overrides:
v3.0.0:no_asset: true(no custom binary assets available)- Other versions: asset template with
format: raw(custom binaries available)
These different configurations exercise different code paths. Currently, only v3.0.1 is tested (the asset path), but v3.0.0 (the no_asset path) should also be tested. Use long syntax for older versions to prevent automatic updates.
Suggested addition
packages:
+ - name: rose-pine/rose-pine-bloom
+ version: v3.0.0
- name: rose-pine/rose-pine-bloom@v3.0.1📝 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.
| packages: | |
| - name: rose-pine/rose-pine-bloom@v3.0.1 | |
| packages: | |
| - name: rose-pine/rose-pine-bloom | |
| version: v3.0.0 | |
| - name: rose-pine/rose-pine-bloom@v3.0.1 |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@pkgs/rose-pine/rose-pine-bloom/pkg.yaml` around lines 1 - 2, Add a second
package entry for the older release to exercise the no_asset override: alongside
the existing short-form entry with name "rose-pine/rose-pine-bloom@v3.0.1", add
a long-form package entry for v3.0.0 that separates the package name and version
(e.g. an object with keys like name: "rose-pine/rose-pine-bloom" and version:
"v3.0.0") so the registry uses the no_asset path and the version is pinned
(prevents automatic updates).
|
Thank you! |
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.493.0` → `v4.494.1` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary> ### [`v4.494.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.494.1) [Compare Source](aquaproj/aqua-registry@v4.494.0...v4.494.1) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.494.1) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.494.1) | <aquaproj/aqua-registry@v4.494.0...v4.494.1> #### Fixes [#​51713](aquaproj/aqua-registry#51713) [#​51207](aquaproj/aqua-registry#51207) Fix fwdcloudsec/granted [@​garysassano](https://github.com/garysassano) [@​tmeijn](https://github.com/tmeijn) [#​51661](aquaproj/aqua-registry#51661) Rescaffold watchexec/watchexec [@​sanemat](https://github.com/sanemat) ### [`v4.494.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.494.0) [Compare Source](aquaproj/aqua-registry@v4.493.0...v4.494.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.494.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.494.0) | <aquaproj/aqua-registry@v4.493.0...v4.494.0> #### 🎉 New Packages [#​52040](aquaproj/aqua-registry#52040) [max-sixty/worktrunk](https://github.com/max-sixty/worktrunk) - Worktrunk is a CLI for Git worktree management, designed for parallel AI agent workflows [@​edouardr](https://github.com/edouardr) [#​52035](aquaproj/aqua-registry#52035) [santosr2/TerraTidy](https://github.com/santosr2/TerraTidy): A comprehensive quality platform for Terraform and Terragrunt [#​51616](aquaproj/aqua-registry#51616) [rose-pine/rose-pine-bloom](https://github.com/rose-pine/rose-pine-bloom) - Generate Rosé Pine themes [@​yudai-nkt](https://github.com/yudai-nkt) #### Security [#​52022](aquaproj/aqua-registry#52022) rvben/rumdl: GitHub artifact attestations config [@​scop](https://github.com/scop) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiLCJhdXRvbWF0aW9uOmJvdC1hdXRob3JlZCIsImRlcGVuZGVuY3ktdHlwZTo6bWlub3IiXX0=-->
Check List
argd scommand when adding new packagesI added a package
rose-pine/rose-pine-bloom, a CLI for templating Rosé Pine palette theme for various applications.Summary by CodeRabbit