Skip to content

Conversation

@alhambrav
Copy link
Member

Ticket reference or full description of what's in the PR

Add release notes for 4.4.3

@coderabbitai
Copy link

coderabbitai bot commented Aug 6, 2025

Caution

Review failed

The pull request is closed.

Summary by CodeRabbit

  • Documentation
    • Added release notes for version 4.4.3 and included them in the release notes index.
    • Updated version metadata across docs (index, support, acknowledgements, breaking changes) to 4.4.3.
    • Refreshed latest release info in the support table.
    • Switched Javadoc links to HTTPS.
  • Chores
    • Updated the site configuration to reflect version 4.4.3.

Walkthrough

Docs and metadata updated for release 4.4.3: release version bumped, new release-notes file added, Javadoc links switched to HTTPS and consolidated to use release, and several docs' last-updated fields updated. No runtime code changes.

Changes

Cohort / File(s) Change Summary
Version & Javadoc config
source/conf.py
Bumped release 4.4.2 → 4.4.3; changed Javadoc base URL to HTTPS; removed javadoc_version and use release in extlinks.
Top-level docs metadata
source/index.rst, source/support.rst
Updated :last-updated: and visible version references from 4.4.2 → 4.4.3; support table shows 4.4.3 (TBD, 2025).
Release notes added
source/release-notes/4-4-3.rst
New release notes documenting disk monitoring (getDiskUsage API), Smart Git HTTPS support, GC config options, UI tweaks, and dependency updates.
Release notes index
source/release-notes/index.rst
Included 4-4-3.rst and updated release-notes metadata to 4.4.3.
Acknowledgements
source/contribute/acknowledgements.rst
Updated :last-updated: from 4.4.2 → 4.4.3; no other changes.
Breaking changes metadata
source/release-notes/4-x-breaking-changes.rst
Updated :last-updated: from 4.3.0 → 4.4.0; content unchanged.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  participant Studio as "Crafter Studio"
  participant Disk as "Data Directory"
  participant Notifier as "Notifier"
  participant API as "getDiskUsage API"

  Studio->>Disk: monitor data directory usage
  Disk-->>Studio: return usage metrics
  Studio->>Notifier: evaluate thresholds → send alerts if exceeded
  Studio->>API: serve getDiskUsage requests
  API-->>Studio: deliver current disk usage metrics
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Possibly related PRs


📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 656da60 and b5fa94d.

📒 Files selected for processing (1)
  • source/release-notes/4-4-3.rst (1 hunks)
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (4)
source/conf.py (2)

30-33: Unify version constants to avoid drift

release is now hard-coded to 4.4.3 while version remains "current".
If other files compute URLs or paths from different variables (e.g. extlinks uses version, Javadoc uses javadoc_version), the numbers can easily diverge in the next bump.

Consider defining a single latest_version = "4.4.3" constant and deriving release, javadoc_version, and any other helpers from it (or vice-versa). That removes the chance of missing one spot during the next upgrade.


299-303: Serve Javadoc over HTTPS

javadoc_base = 'http://javadoc.craftercms.org/' still uses http.
Because javadoc_version was bumped here, this is a good opportunity to switch the scheme to HTTPS to prevent mixed-content warnings in the rendered docs.

-javadoc_base = 'http://javadoc.craftercms.org/'
+javadoc_base = 'https://javadoc.craftercms.org/'
source/release-notes/4-4-3.rst (2)

25-26: Typo: “HTTPs” → “HTTPS”

Smart Git in Git HTTPs server is now supported

The conventional capitalization is HTTPS (all caps, no lowercase “s”).

-* `Smart Git in Git HTTPs server is now supported <https://github.com/craftercms/craftercms/issues/8268>`__ |br|
+* `Smart Git in Git HTTPS server is now supported <https://github.com/craftercms/craftercms/issues/8268>`__ |br|

16-18: Heading pluralisation

The section title “New Feature” introduces multiple bullets. Consider switching to “New Features” for grammatical agreement.

-^^^^^^^^^^^
-New Feature
-^^^^^^^^^^^
+^^^^^^^^^^^^
+New Features
+^^^^^^^^^^^^
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4f38fa3 and 7c28505.

📒 Files selected for processing (5)
  • source/conf.py (2 hunks)
  • source/index.rst (2 hunks)
  • source/release-notes/4-4-3.rst (1 hunks)
  • source/release-notes/index.rst (2 hunks)
  • source/support.rst (2 hunks)
🔇 Additional comments (4)
source/support.rst (1)

24-29: Replace “TBD” with the actual release date before shipping

The table shows 4.4.3 (TBD, 2025).
Leaving TBD in a published support matrix can confuse readers and automated parsers that rely on a concrete release date.

Please update the date (or add a precise ISO format) immediately before the public release cut.

source/release-notes/index.rst (1)

12-16: Release note include order looks good

The new .. include:: /release-notes/4-4-3.rst was added at the top, keeping the list in descending order. No further issues spotted.

source/index.rst (1)

70-75: Landing page version bump verified

The “Latest CrafterCMS Release” section correctly advertises 4.4.3 and stays consistent with source/conf.py.
No action needed.

source/release-notes/4-4-3.rst (1)

19-23: Anchor existence / path sanity check

The text references the anchor ``:ref:studio-disk-monitoring``` and an HTML file at ../_static/api/studio.html#tag/monitoring/operation/getDiskUsage`.

Please confirm that:

  1. studio-disk-monitoring is actually defined somewhere in the docs, otherwise Sphinx will emit a broken reference.
  2. The _static/api/studio.html file is present in the build or copied via remoteliteralinclude.

Broken links in release notes are highly visible – worth an extra build run before merge.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 374cfa3 and 46bf74f.

📒 Files selected for processing (1)
  • source/contribute/acknowledgements.rst (2 hunks)
🔇 Additional comments (1)
source/contribute/acknowledgements.rst (1)

2-2: LGTM: last-updated bumped to 4.4.3

Change aligns with the 4.4.3 release.

@sumerjabri sumerjabri marked this pull request as ready for review September 5, 2025 02:51
@sumerjabri sumerjabri merged commit 01fbc53 into craftercms:master Sep 5, 2025
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants