Conversation
WalkthroughThe version string for the application was updated from 5.121.0 to 5.123.0 in both the environment configuration file and the Dockerfile. No other logic, structure, or exported entities were changed. Changes
Possibly related PRs
✨ Finishing Touches
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
📒 Files selected for processing (2)
.env(1 hunks)v5/Dockerfile(1 hunks)
🧰 Additional context used
🪛 dotenv-linter (3.3.0)
.env
[warning] 6-6: [QuoteCharacter] The value has quote characters (', ")
[warning] 6-6: [UnorderedKey] The APP_VERSION key should go before the GITHUB_USER key
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: build_edge
🔇 Additional comments (1)
v5/Dockerfile (1)
7-7: Version bump approved.The
ARG VERSIONupdate to5.123.0aligns with the intended release. Please verify that no lingering references to the old version remain.Run:
#!/bin/bash # Verify no hardcoded occurrences of the previous version rg "5\\.121\\.0"
| APP_NAME="ghostfire" | ||
| GITHUB_USER="firepress-org" | ||
| APP_VERSION="5.121.0" | ||
| APP_VERSION="5.123.0" |
There was a problem hiding this comment.
🧹 Nitpick (assertive)
Consider removing unnecessary quotes and ordering the key.
The dotenv-linter flags the quotes in APP_VERSION="5.123.0" as unnecessary; you can simplify to:
APP_VERSION=5.123.0Additionally, if you’re aiming for alphabetical key order in the file, you could place APP_VERSION immediately after APP_NAME.
🧰 Tools
🪛 dotenv-linter (3.3.0)
[warning] 6-6: [QuoteCharacter] The value has quote characters (', ")
[warning] 6-6: [UnorderedKey] The APP_VERSION key should go before the GITHUB_USER key
🤖 Prompt for AI Agents
In the .env file at line 6, remove the unnecessary quotes around the APP_VERSION
value by changing APP_VERSION="5.123.0" to APP_VERSION=5.123.0. Also, reorder
the keys to place APP_VERSION immediately after APP_NAME to maintain
alphabetical order.
Overview
Environment Variables (8 changes)
-GHOST_CLI_VERSION=1.27.0
-GHOST_CONTENT=/var/lib/ghost/content
-GHOST_INSTALL=/var/lib/ghost
-GOSU_VERSION=1.17
-NODE_ENV=production
-NODE_VERSION=20.19.2-alpine3.22
+NODE_VERSION=20.19.2
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-USER=node
-VERSION=5.123.0
YARN_VERSION=1.22.22Labels (15 changes)
-com.firepress.image.base_os=
-com.firepress.image.ghost_cli_version=1.27.0
-com.firepress.image.node_env=production
-com.firepress.image.node_version=20.19.2-alpine3.22
-com.firepress.image.schema_version=1.0
-com.firepress.image.user=node
-org.opencontainers.image.authors=Pascal Andy https://firepress.org/en/contact/
-org.opencontainers.image.created=
-org.opencontainers.image.description=Docker image for Ghost 5.123.0
-org.opencontainers.image.licenses=GNUv3 https://github.com/pascalandy/GNU-GENERAL-PUBLIC-LICENSE/blob/master/LICENSE.md
-org.opencontainers.image.revision=
-org.opencontainers.image.source=https://github.com/firepress-org/ghostfire
-org.opencontainers.image.title=Ghost
-org.opencontainers.image.url=https://hub.docker.com/r/devmtl/ghostfire/tags/
-org.opencontainers.image.vendor=https://firepress.org/Packages and Vulnerabilities (1189 package changes and 110 vulnerability changes)
Changes for packages of type
|
| Package | Versiondevmtl/ghostfire:edge |
Versionnode:20.19.2-alpine3.22 |
|
|---|---|---|---|
| ➖ | bash | 5.2.37-r0 |
|
| ➖ | brotli | 1.1.0-r2 |
|
| ➖ | brotli-libs | 1.1.0-r2 |
|
| ➖ | c-ares | 1.34.5-r0 |
|
| ➖ | curl | 8.14.1-r0 |
|
| ➖ | libcurl | 8.14.1-r0 |
|
| ➖ | libidn2 | 2.3.7-r0 |
|
| ➖ | libncursesw | 6.5_p20250503-r0 |
|
| ➖ | libpsl | 0.21.5-r3 |
|
| ➖ | libunistring | 1.3-r0 |
|
| ➖ | ncurses | 6.5_p20250503-r0 |
|
| ➖ | ncurses-terminfo-base | 6.5_p20250503-r0 |
|
| ➖ | nghttp2 | 1.65.0-r0 |
|
| ➖ | nghttp2-libs | 1.65.0-r0 |
|
| ➖ | readline | 8.2.13-r1 |
|
| ➖ | zstd | 1.5.7-r0 |
|
| ➖ | zstd-libs | 1.5.7-r0 |
Changes for packages of type generic (1 changes)
| Package | Versiondevmtl/ghostfire:edge |
Versionnode:20.19.2-alpine3.22 |
|
|---|---|---|---|
| ➕ | node | 20.19.2 |
Changes for packages of type github (1 changes)
| Package | Versiondevmtl/ghostfire:edge |
Versionnode:20.19.2-alpine3.22 |
|
|---|---|---|---|
| ➖ | node | 20.19.2-alpine3.22 |
Summary by CodeRabbit