feat(typography): support Inter font on v25.5.0 - #4753
Conversation
* feat: support inter font * refactor: update variables * refactor: remove redundant mixins * revert: format * fix: unit test * fix: rules * fix: content picker * fix: content uploader * fix: apply styles to body --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
* feat(fonts): update font assets version Co-authored-by: Cursor <cursoragent@cursor.com> * feat(fonts): update css for inter font * feat(fonts): update font family in typography --------- Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
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 |
|
@coderabbitai tell me the breaking changes between 23.1.0-beta.5 and 25.5.0 |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
repo="box/box-ui-elements"
echo "== Requested release metadata =="
for tag in "v23.1.0-beta.5" "23.1.0-beta.5" "v25.5.0" "25.5.0"; do
echo "-- ${tag}"
gh api "repos/${repo}/releases/tags/${tag}" \
--jq '{tag_name, name, published_at, body}' 2>/dev/null || true
done
echo "== Matching releases =="
gh api --paginate "repos/${repo}/releases?per_page=100" \
--jq '.[] | select(.tag_name | test("^(v)?(23\\.1\\.0-beta\\.5|2[45]\\.)")) | {tag_name, name, published_at, body}' \
2>/dev/null || true
echo "== Matching tags =="
gh api --paginate "repos/${repo}/tags?per_page=100" \
--jq '.[] | select(.name | test("^(v)?(23\\.1\\.0-beta\\.5|25\\.5\\.0)$")) | {name, commit: .commit.sha}' \
2>/dev/null || true
echo "== Release-documentation files =="
fd -HI -t f '^(CHANGELOG|MIGRAT|UPGRAD|README|package)\.' . \
-E node_modules -E dist -E build | sortLength of output: 79480 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
repo="box/box-ui-elements"
base="v23.1.0-beta.5"
head="v25.5.0"
echo "== All release notes in range that declare breaking changes =="
gh api --paginate "repos/${repo}/releases?per_page=100" \
--jq '
.[]
| select(.tag_name | test("^v(23|24|25)\\."))
| select(.body | test("BREAKING CHANGES|BREAKING CHANGE"; "i"))
| {tag_name, published_at, body}
'
echo "== Pull requests associated with explicit breaking changes =="
for pr in 4233 4276; do
gh api "repos/${repo}/pulls/${pr}" \
--jq '{number, title, merged_at, body, html_url}'
done
echo "== package.json dependency and peerDependency changes =="
gh api "repos/${repo}/compare/${base}...${head}" \
--jq '.files[] | select(.filename == "package.json") | .patch' \
2>/dev/null || true
echo "== Source changes for makeDroppable and isResetChatEnabled =="
gh api "repos/${repo}/compare/${base}...${head}" \
--jq '
.files[]
| select(.filename | test("make-droppable|makeDroppable|box-ai"; "i"))
| {filename, status, patch}
' \
2>/dev/null || trueLength of output: 38615
You are interacting with an AI system. |
No description provided.