Skip to content

Update: registry cache and update to Ghost version 5.112.0#596

Closed
pascalandy wants to merge 5 commits intomasterfrom
edge_049
Closed

Update: registry cache and update to Ghost version 5.112.0#596
pascalandy wants to merge 5 commits intomasterfrom
edge_049

Conversation

@pascalandy
Copy link

@pascalandy pascalandy commented Jun 9, 2025

Update the Ghost v5 workflow to use a registry-based build cache instead of GHA cache. This improves cache reliability and performance for Docker builds.

Summary by CodeRabbit

  • Chores
    • Improved Docker image build performance by updating the caching mechanism used in the build and deployment process.
    • Updated the application version to 5.113.0 for improved stability and features.

Update the Ghost v5 workflow to use a registry-based build cache instead of GHA cache. This improves cache reliability and performance for Docker builds.
@coderabbitai
Copy link

coderabbitai bot commented Jun 9, 2025

Walkthrough

The GitHub Actions workflow for Docker image building was updated to replace the Docker build cache from GitHub Actions cache to a registry-based cache. Both the edge and stable build jobs now use a Docker registry cache image with adjusted cache-from and cache-to settings to maximize cache reuse. Additionally, the Ghost version was bumped from 5.112.0 to 5.113.0 in both the .env file and the v5/Dockerfile.

Changes

File(s) Change Summary
.github/workflows/ghostv5.yml Updated Docker build cache from GitHub Actions cache (type=gha) to registry cache (type=registry) in build_edge and build_stable jobs; modified cache-from and cache-to options; added comments on cache sharing and tag order importance.
.env, v5/Dockerfile Bumped Ghost version from 5.112.0 to 5.113.0 in environment configuration and Dockerfile ARG.

Sequence Diagram(s)

sequenceDiagram
    participant GitHubActions
    participant DockerRegistry

    GitHubActions->>DockerRegistry: Pull build cache image (cache-from: type=registry)
    GitHubActions->>DockerRegistry: Build and push Docker image
    GitHubActions->>DockerRegistry: Push updated build cache image (cache-to: type=registry, mode=max)
Loading

Possibly related PRs


📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1b909dd and ba4da7d.

📒 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 (2)
.env (1)

6-6: Confirm version consistency across environments.

The bump to 5.113.0 aligns with the Ghost version in your Docker build and other configs. No further edits needed here.

🧰 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

v5/Dockerfile (1)

7-7: Verify default build version argument update.

The ARG VERSION has been updated to 5.113.0, matching the .env setting and the intended Ghost release. Looks good.

✨ Finishing Touches
  • 📝 Generate Docstrings

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.
    • Explain this complex logic.
    • 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. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • 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 src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need 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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai 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.

Documentation and Community

  • 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.

@pascalandy pascalandy changed the title Fix: Use registry cache for Ghost v5 workflow Update the Ghost v5 workflow to use a registry-based build cache instead of GHA cache. This improves cache reliability and performance for Docker builds. Update: registry cache and update to Ghost version 5.112.0 Jun 9, 2025
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.yaml
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 930d717 and ad02a4b.

📒 Files selected for processing (1)
  • .github/workflows/ghostv5.yml (2 hunks)
🔇 Additional comments (1)
.github/workflows/ghostv5.yml (1)

291-292: Validate registry cache operations
Moving to a registry-based cache depends on successful GHCR authentication and network reliability. Verify the docker/login-action step passes and run a dry-run to confirm cache pull/push flows under both normal and failure conditions.

@github-actions
Copy link

github-actions bot commented Jun 9, 2025

Overview

Image reference devmtl/ghostfire:edge node:20.19.2-alpine3.22
- digest 05f34cbfe103 dd75a9e8995e
- tag edge 20.19.2-alpine3.22
- provenance https://github.com/nodejs/docker-node.git/commit/b1e2c97844d5647bcfaf6d6c7862dd39fbc2ca51
- vulnerabilities critical: 6 high: 68 medium: 42 low: 9 critical: 0 high: 1 medium: 0 low: 0
- platform linux/amd64 linux/amd64
- size 158 MB 48 MB (-110 MB)
- packages 1646 217 (-1429)
Base Image node:20-alpine
also known as:
20-alpine3.22
20.19-alpine
20.19-alpine3.22
20.19.2-alpine
20.19.2-alpine3.22
iron-alpine
iron-alpine3.22
alpine:2eef38776c954010f1bedcfd7cfff0ff7f5a43e1177046753fdb63d33bfc6a51
also known as:
3
3.22
3.22.0
latest
- vulnerabilities critical: 0 high: 1 medium: 0 low: 0 critical: 0 high: 0 medium: 0 low: 0
Environment Variables (8 changes)
  • - 7 removed
  • ± 1 changed
  • 2 unchanged
-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.112.0
 YARN_VERSION=1.22.22
Labels (15 changes)
  • - 15 removed
-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.112.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 (1204 package changes and 124 vulnerability changes)
  • ➕ 1 packages added
  • ➖ 1192 packages removed
  • ♾️ 11 packages changed
  • 191 packages unchanged
  • ✔️ 124 vulnerabilities removed
Changes for packages of type apk (17 changes)
Package Version
devmtl/ghostfire:edge
Version
node: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 Version
devmtl/ghostfire:edge
Version
node:20.19.2-alpine3.22
node 20.19.2
Changes for packages of type github (1 changes)
Package Version
devmtl/ghostfire:edge
Version
node:20.19.2-alpine3.22
node 20.19.2-alpine3.22
Changes for packages of type golang (4 changes)
Package Version
devmtl/ghostfire:edge
Version
node:20.19.2-alpine3.22
github.com/moby/sys/user 0.1.0
github.com/tianon/gosu UNKNOWN
golang.org/x/sys 0.13.0
stdlib 1.18.2
critical: 4 high: 35 medium: 20 low: 1
Removed vulnerabilities (60):
  • critical : CVE--2024--24790
  • critical : CVE--2023--24540
  • critical : CVE--2023--24538
  • critical : CVE--2025--22871
  • high : CVE--2023--29403
  • high : CVE--2022--30580
  • high : CVE--2024--34158
  • high : CVE--2024--34156
  • high : CVE--2024--24791
  • high : CVE--2024--24784
  • high : CVE--2023--45288
  • high : CVE--2023--45287
  • high : CVE--2023--45283
  • high : CVE--2023--44487
  • high : CVE--2023--39325
  • high : CVE--2023--24537
  • high : CVE--2023--24536
  • high : CVE--2023--24534
  • high : CVE--2022--41725
  • high : CVE--2022--41724
  • high : CVE--2022--41723
  • high : CVE--2022--41722
  • high : CVE--2022--41720
  • high : CVE--2022--41716
  • high : CVE--2022--41715
  • high : CVE--2022--32189
  • high : CVE--2022--30635
  • high : CVE--2022--30634
  • high : CVE--2022--30633
  • high : CVE--2022--30632
  • high : CVE--2022--30631
  • high : CVE--2022--30630
  • high : CVE--2022--29804
  • high : CVE--2022--2880
  • high : CVE--2022--2879
  • high : CVE--2022--28131
  • high : CVE--2022--27664
  • high : CVE--2023--29400
  • high : CVE--2023--24539
  • medium : CVE--2023--45290
  • medium : CVE--2023--29406
  • medium : CVE--2022--32148
  • medium : CVE--2022--1705
  • medium : CVE--2024--45341
  • medium : CVE--2024--45336
  • medium : CVE--2023--39319
  • medium : CVE--2023--39318
  • medium : CVE--2024--24783
  • medium : CVE--2024--24789
  • medium : CVE--2022--1962
  • medium : CVE--2024--24785
  • medium : CVE--2023--45284
  • medium : CVE--2023--39326
  • medium : CVE--2023--29409
  • medium : CVE--2023--24532
  • medium : CVE--2022--41717
  • medium : CVE--2024--34155
  • medium : CVE--2023--45289
  • medium : CVE--2025--22866
  • low : CVE--2022--30629
Changes for packages of type npm (1181 changes)
Package Version
devmtl/ghostfire:edge
Version
node:20.19.2-alpine3.22
1to2 1.0.0
@aws-crypto/ie11-detection 2.0.2
@aws-crypto/sha256-browser 2.0.0
@aws-crypto/sha256-js 2.0.2
@aws-crypto/supports-web-crypto 2.0.2
@aws-crypto/util 2.0.2
@aws-sdk/abort-controller 3.193.0
@aws-sdk/client-ses 3.194.0
@aws-sdk/client-sso 3.193.0
@aws-sdk/client-sts 3.194.0
@aws-sdk/config-resolver 3.193.0
@aws-sdk/credential-provider-env 3.193.0
@aws-sdk/credential-provider-imds 3.193.0
@aws-sdk/credential-provider-ini 3.193.0
@aws-sdk/credential-provider-node 3.193.0
@aws-sdk/credential-provider-process 3.193.0
@aws-sdk/credential-provider-sso 3.193.0
@aws-sdk/credential-provider-web-identity 3.193.0
@aws-sdk/fetch-http-handler 3.193.0
@aws-sdk/hash-node 3.193.0
@aws-sdk/invalid-dependency 3.193.0
@aws-sdk/is-array-buffer 3.188.0
@aws-sdk/middleware-content-length 3.193.0
@aws-sdk/middleware-endpoint 3.193.0
@aws-sdk/middleware-host-header 3.193.0
@aws-sdk/middleware-logger 3.193.0
@aws-sdk/middleware-recursion-detection 3.193.0
@aws-sdk/middleware-retry 3.193.0
@aws-sdk/middleware-sdk-sts 3.193.0
@aws-sdk/middleware-serde 3.193.0
@aws-sdk/middleware-signing 3.193.0
@aws-sdk/middleware-stack 3.193.0
@aws-sdk/middleware-user-agent 3.193.0
@aws-sdk/node-config-provider 3.193.0
@aws-sdk/node-http-handler 3.193.0
@aws-sdk/property-provider 3.193.0
@aws-sdk/protocol-http 3.193.0
@aws-sdk/querystring-builder 3.193.0
@aws-sdk/querystring-parser 3.193.0
@aws-sdk/service-error-classification 3.193.0
@aws-sdk/shared-ini-file-loader 3.193.0
@aws-sdk/signature-v4 3.193.0
@aws-sdk/smithy-client 3.193.0
@aws-sdk/types 3.460.0
@aws-sdk/url-parser 3.193.0
@aws-sdk/util-base64-browser 3.188.0
@aws-sdk/util-base64-node 3.188.0
@aws-sdk/util-body-length-browser 3.188.0
@aws-sdk/util-body-length-node 3.188.0
@aws-sdk/util-buffer-from 3.188.0
@aws-sdk/util-config-provider 3.188.0
@aws-sdk/util-defaults-mode-browser 3.193.0
@aws-sdk/util-defaults-mode-node 3.193.0
@aws-sdk/util-endpoints 3.194.0
@aws-sdk/util-hex-encoding 3.188.0
@aws-sdk/util-locate-window 3.188.0
@aws-sdk/util-middleware 3.193.0
@aws-sdk/util-uri-escape 3.188.0
@aws-sdk/util-user-agent-browser 3.193.0
@aws-sdk/util-user-agent-node 3.193.0
@aws-sdk/util-utf8-browser 3.188.0
@aws-sdk/util-utf8-node 3.188.0
@aws-sdk/util-waiter 3.193.0
@babel/runtime 7.26.0
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2025--27789
@breejs/later 4.2.0
@distributed-systems/callsite 1.1.1
@elastic/elasticsearch 8.13.1
@elastic/transport 8.4.1
@extractus/oembed-extractor 3.2.1
@faker-js/faker 7.6.0
@gar/promisify 1.1.3
@jridgewell/gen-mapping 0.3.5
@jridgewell/resolve-uri 3.1.1
@jridgewell/set-array 1.2.1
@jridgewell/source-map 0.3.5
@jridgewell/sourcemap-codec 1.4.15
@jridgewell/trace-mapping 0.3.25
@keyvhq/core 2.1.1
@keyvhq/memoize 2.0.3
@lexical/clipboard 0.13.1
@lexical/code 0.13.1
@lexical/headless 0.13.1
@lexical/html 0.13.1
@lexical/link 0.13.1
@lexical/list 0.13.1
@lexical/rich-text 0.13.1
@lexical/selection 0.13.1
@lexical/table 0.13.1
@lexical/utils 0.13.1
@lukeed/csprng 1.1.0
@metascraper/helpers 5.45.10
@my-scope/package-a 0.0.0
@my-scope/package-b 0.0.0
@nestjs/common 10.4.4
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2024--29409
@nestjs/core 10.4.4
@nestjs/platform-express 10.4.4
@npmcli/move-file 1.1.2
@nuxtjs/opencollective 0.3.2
@opentelemetry/api 1.9.0
@otplib/core 12.0.1
@otplib/plugin-crypto 12.0.1
@otplib/plugin-thirty-two 12.0.1
@otplib/preset-default 12.0.1
@otplib/preset-v11 12.0.1
@selderee/plugin-htmlparser2 0.6.0
@sentry-internal/tracing 7.119.2
@sentry/core 7.119.2
@sentry/integrations 7.119.2
@sentry/node 7.119.2
@sentry/types 7.119.2
@sentry/utils 7.119.2
@simple-dom/document 1.4.0
@simple-dom/interface 1.4.0
@simple-dom/parser 1.4.0
@simple-dom/serializer 1.4.0
@simple-dom/void-map 1.4.0
@sindresorhus/is 5.6.0
@slack/types 2.14.0
@slack/webhook 7.0.4
@smithy/types 2.6.0
@stdlib/array-float32 0.2.2
@stdlib/array-float64 0.2.2
@stdlib/array-int16 0.2.2
@stdlib/array-int32 0.2.2
@stdlib/array-int8 0.2.2
@stdlib/array-uint16 0.2.2
@stdlib/array-uint32 0.2.2
@stdlib/array-uint8 0.2.2
@stdlib/array-uint8c 0.2.2
@stdlib/assert-has-float32array-support 0.2.2
@stdlib/assert-has-float64array-support 0.2.2
@stdlib/assert-has-int16array-support 0.2.2
@stdlib/assert-has-int32array-support 0.2.2
@stdlib/assert-has-int8array-support 0.2.2
@stdlib/assert-has-node-buffer-support 0.2.2
@stdlib/assert-has-own-property 0.2.2
@stdlib/assert-has-symbol-support 0.2.2
@stdlib/assert-has-tostringtag-support 0.2.2
@stdlib/assert-has-uint16array-support 0.2.2
@stdlib/assert-has-uint32array-support 0.2.2
@stdlib/assert-has-uint8array-support 0.2.2
@stdlib/assert-has-uint8clampedarray-support 0.2.2
@stdlib/assert-is-arguments 0.2.2
@stdlib/assert-is-array 0.2.2
@stdlib/assert-is-boolean 0.2.2
@stdlib/assert-is-buffer 0.2.2
@stdlib/assert-is-collection 0.2.2
@stdlib/assert-is-enumerable-property 0.2.2
@stdlib/assert-is-error 0.2.2
@stdlib/assert-is-float32array 0.2.2
@stdlib/assert-is-float64array 0.2.2
@stdlib/assert-is-function 0.2.2
@stdlib/assert-is-int16array 0.2.2
@stdlib/assert-is-int32array 0.2.2
@stdlib/assert-is-int8array 0.2.2
@stdlib/assert-is-integer 0.2.2
@stdlib/assert-is-nan 0.2.2
@stdlib/assert-is-nonnegative-integer 0.2.2
@stdlib/assert-is-number 0.2.2
@stdlib/assert-is-object 0.2.2
@stdlib/assert-is-object-like 0.2.2
@stdlib/assert-is-plain-object 0.2.2
@stdlib/assert-is-regexp 0.2.2
@stdlib/assert-is-string 0.2.2
@stdlib/assert-is-uint16array 0.2.2
@stdlib/assert-is-uint32array 0.2.2
@stdlib/assert-is-uint8array 0.2.2
@stdlib/assert-is-uint8clampedarray 0.2.2
@stdlib/assert-tools-array-function 0.2.2
@stdlib/boolean-ctor 0.2.2
@stdlib/buffer-ctor 0.2.2
@stdlib/buffer-from-buffer 0.2.2
@stdlib/complex-float32-ctor 0.0.2
@stdlib/complex-float32-reim 0.1.2
@stdlib/complex-float64-ctor 0.0.3
@stdlib/complex-float64-reim 0.1.2
@stdlib/constants-array-max-typed-array-length 0.2.2
@stdlib/constants-float64-ninf 0.2.2
@stdlib/constants-float64-pinf 0.2.2
@stdlib/constants-int16-max 0.2.2
@stdlib/constants-int16-min 0.2.2
@stdlib/constants-int32-max 0.3.0
@stdlib/constants-int32-min 0.2.2
@stdlib/constants-int8-max 0.2.2
@stdlib/constants-int8-min 0.2.2
@stdlib/constants-uint16-max 0.2.2
@stdlib/constants-uint32-max 0.2.2
@stdlib/constants-uint8-max 0.2.2
@stdlib/error-tools-fmtprodmsg 0.2.2
@stdlib/fs-exists 0.2.2
@stdlib/fs-resolve-parent-path 0.2.2
@stdlib/math-base-assert-is-integer 0.2.5
@stdlib/math-base-assert-is-nan 0.2.2
@stdlib/math-base-napi-unary 0.2.3
@stdlib/math-base-special-floor 0.2.3
@stdlib/number-ctor 0.2.2
@stdlib/number-float64-base-to-float32 0.2.2
@stdlib/object-ctor 0.2.1
@stdlib/process-cwd 0.2.2
@stdlib/regexp-extended-length-path 0.2.2
@stdlib/regexp-function-name 0.2.2
@stdlib/regexp-regexp 0.2.2
@stdlib/string-base-format-interpolate 0.2.2
@stdlib/string-base-format-tokenize 0.2.2
@stdlib/string-base-lowercase 0.4.0
@stdlib/string-base-replace 0.2.2
@stdlib/string-format 0.2.2
@stdlib/string-replace 0.2.2
@stdlib/symbol-ctor 0.2.2
@stdlib/utils-constructor-name 0.2.2
@stdlib/utils-convert-path 0.2.2
@stdlib/utils-copy 0.2.2
@stdlib/utils-define-nonenumerable-read-only-property 0.2.2
@stdlib/utils-define-property 0.2.4
@stdlib/utils-escape-regexp-string 0.2.2
@stdlib/utils-get-prototype-of 0.2.2
@stdlib/utils-global 0.2.2
@stdlib/utils-index-of 0.2.2
@stdlib/utils-keys 0.2.2
@stdlib/utils-library-manifest 0.2.2
@stdlib/utils-native-class 0.2.2
@stdlib/utils-noop 0.2.2
@stdlib/utils-property-descriptor 0.2.2
@stdlib/utils-property-names 0.2.2
@stdlib/utils-regexp-from-string 0.2.2
@stdlib/utils-type-of 0.2.2
@szmarczak/http-timer 5.0.1
@tokenizer/token 0.3.0
@tootallnate/once 1.1.2
@tryghost/adapter-base-cache 0.1.12
@tryghost/adapter-cache-redis 5.112.0
@tryghost/adapter-manager 5.112.0
@tryghost/admin-api-schema 4.5.5
@tryghost/announcement-bar-settings 5.112.0
@tryghost/api-framework 5.112.0
@tryghost/api-version-compatibility-service 5.112.0
@tryghost/audience-feedback 5.112.0
@tryghost/bookshelf-collision 0.1.46
@tryghost/bookshelf-custom-query 0.1.28
@tryghost/bookshelf-eager-load 0.1.32
@tryghost/bookshelf-filter 0.5.21
@tryghost/bookshelf-has-posts 0.1.33
@tryghost/bookshelf-include-count 0.3.16
@tryghost/bookshelf-order 0.1.28
@tryghost/bookshelf-pagination 0.1.49
@tryghost/bookshelf-plugins 0.6.25
@tryghost/bookshelf-repository 5.112.0
@tryghost/bookshelf-search 0.1.28
@tryghost/bookshelf-transaction-events 0.2.17
@tryghost/bootstrap-socket 5.112.0
@tryghost/bunyan-rotating-filestream 0.0.7
@tryghost/captcha-service 5.112.0
@tryghost/color-utils 0.2.2
@tryghost/config 0.2.18
@tryghost/config-url-helpers 1.0.12
@tryghost/constants 5.112.0
@tryghost/custom-fonts 5.112.0
@tryghost/custom-theme-settings-service 5.112.0
@tryghost/data-generator 5.112.0
@tryghost/database-info 0.3.27
@tryghost/debug 0.1.34
@tryghost/domain-events 5.112.0
@tryghost/donations 5.112.0
@tryghost/elasticsearch 3.0.23
@tryghost/email-addresses 5.112.0
@tryghost/email-analytics-provider-mailgun 5.112.0
@tryghost/email-analytics-service 5.112.0
@tryghost/email-content-generator 5.112.0
@tryghost/email-events 5.112.0
@tryghost/email-mock-receiver 0.3.8
@tryghost/email-service 5.112.0
@tryghost/email-suppression-list 5.112.0
@tryghost/errors 1.3.5
@tryghost/express-dynamic-redirects 5.112.0
@tryghost/external-media-inliner 5.112.0
@tryghost/extract-api-key 5.112.0
@tryghost/ghost 5.112.0
@tryghost/helpers 1.1.90
@tryghost/html-to-mobiledoc 3.1.2
@tryghost/html-to-plaintext 5.112.0
@tryghost/http-cache-utils 0.1.17
@tryghost/http-stream 0.1.35
@tryghost/i18n 5.112.0
@tryghost/identity-token-service 5.112.0
@tryghost/image-transform 1.3.0
@tryghost/importer-handler-content-files 5.112.0
@tryghost/importer-revue 5.112.0
@tryghost/in-memory-repository 5.112.0
@tryghost/job-manager 5.112.0
@tryghost/kg-card-factory 5.1.0
@tryghost/kg-clean-basic-html 4.2.0
@tryghost/kg-converters 1.1.0
@tryghost/kg-default-atoms 5.1.0
@tryghost/kg-default-cards 10.1.1
@tryghost/kg-default-nodes 1.4.3
@tryghost/kg-default-transforms 1.2.3
@tryghost/kg-html-to-lexical 1.2.3
@tryghost/kg-lexical-html-renderer 1.3.3
@tryghost/kg-markdown-html-renderer 7.1.1
@tryghost/kg-mobiledoc-html-renderer 7.1.1
@tryghost/kg-parser-plugins 4.1.1
@tryghost/kg-utils 1.0.30
@tryghost/limit-service 1.2.14
@tryghost/link-redirects 5.112.0
@tryghost/link-replacer 5.112.0
@tryghost/logging 2.4.21
@tryghost/magic-link 5.112.0
@tryghost/mail-events 5.112.0
@tryghost/mailgun-client 5.112.0
@tryghost/member-attribution 5.112.0
@tryghost/member-events 5.112.0
@tryghost/members-api 5.112.0
@tryghost/members-csv 5.112.0
@tryghost/members-importer 5.112.0
@tryghost/members-offers 5.112.0
@tryghost/members-payments 5.112.0
@tryghost/members-ssr 5.112.0
@tryghost/members-stripe-service 5.112.0
@tryghost/metrics 1.0.37
@tryghost/milestones 5.112.0
@tryghost/minifier 5.112.0
@tryghost/mobiledoc-kit 0.12.4-ghost.1
@tryghost/mongo-knex 0.9.1
@tryghost/mongo-utils 0.6.2
@tryghost/mw-api-version-mismatch 5.112.0
@tryghost/mw-cache-control 5.112.0
@tryghost/mw-error-handler 5.112.0
@tryghost/mw-session-from-token 5.112.0
@tryghost/mw-version-match 5.112.0
@tryghost/mw-vhost 5.112.0
@tryghost/nodemailer 0.3.45
@tryghost/nql 0.12.7
@tryghost/nql-lang 0.6.3
@tryghost/package-json 5.112.0
@tryghost/post-events 5.112.0
@tryghost/post-revisions 5.112.0
@tryghost/posts-service 5.112.0
@tryghost/pretty-cli 1.2.44
@tryghost/pretty-stream 0.1.29
@tryghost/prometheus-metrics 5.112.0
@tryghost/promise 0.3.8
@tryghost/recommendations 5.112.0
@tryghost/referrers 5.112.0
@tryghost/request 1.0.8
@tryghost/root-utils 0.3.32
@tryghost/security 5.112.0
@tryghost/server 0.1.37
@tryghost/session-service 5.112.0
@tryghost/settings-path-manager 5.112.0
@tryghost/slack-notifications 5.112.0
@tryghost/social-urls 0.1.43
@tryghost/string 0.2.12
@tryghost/tiers 5.112.0
@tryghost/tpl 0.1.34
@tryghost/url-utils 4.4.8
@tryghost/validator 0.2.16
@tryghost/version 0.1.32
@tryghost/version-notifications-data-service 5.112.0
@tryghost/webmentions 5.112.0
@tryghost/zip 1.1.46
@types/cacheable-request 6.0.2
@types/color 3.0.6
@types/color-convert 2.0.2
@types/color-name 1.1.2
@types/http-cache-semantics 4.0.2
@types/jsonwebtoken 9.0.6
@types/keyv 4.2.0
@types/lodash 4.17.7
@types/node 22.13.5
@types/responselike 1.0.0
@types/trusted-types 2.0.7
@types/unist 2.0.6
@types/yauzl 2.10.0
accepts 1.3.8
acorn 8.14.0
agentkeepalive 4.2.1
ajv 6.12.6
amperize 0.6.1
ansi-colors 4.1.3
app-root-path 2.2.1
append-field 1.0.0
archiver 5.3.1
archiver-utils 2.1.0
are-we-there-yet 3.0.1
argparse 2.0.1
arr-diff 4.0.0
arr-flatten 1.1.0
arr-union 3.1.0
array-each 1.0.1
array-flatten 1.1.1
array-slice 1.1.0
array-unique 0.3.2
asn1 0.2.6
assert-plus 1.0.0
assign-symbols 1.0.0
async 3.2.4
asynckit 0.4.0
atob 2.1.2
audio-extensions 0.0.0
aws-sign2 0.7.0
aws-ssl-profiles 1.1.1
aws4 1.11.0
axios 1.7.9
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2025--27152
b4a 1.6.4
bail 1.0.5
bare-events 2.2.2
base 0.11.2
base-64 1.0.0
base64-js 1.5.1
base64url 3.0.1
baz UNKNOWN
bcrypt-pbkdf 1.0.2
bcryptjs 2.4.3
beep-boop 1.2.3
benchmarks 1.0.0
bin 1.0.0
bindings 1.5.0
bintrees 1.0.2
bl 4.1.0
bluebird 3.7.2
body-parser 1.20.3
bookshelf 1.2.0
bookshelf-relations 2.8.0
boolbase 1.0.0
boolean 3.2.0
bowser 2.11.0
braces 2.3.2
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2024--4068
bree 6.5.0
browser_field UNKNOWN
brute-knex 4.0.1
bson-objectid 2.0.4
bthreads 0.5.1
buffer 6.0.3
buffer-crc32 0.2.13
buffer-equal-constant-time 1.0.1
buffer-from 1.1.2
bufio 1.0.7
bunyan 1.8.15
bunyan-loggly 1.4.2
busboy 1.6.0
bytes 3.1.2
cache-base 1.0.1
cache-manager 4.1.0
cache-manager-ioredis 2.1.0
cacheable-lookup 7.0.0
cacheable-request 7.0.2
call-bind 1.0.8
call-bind-apply-helpers 1.0.1
call-bound 1.0.3
caller 1.1.0
camel-case 3.0.0
caseless 0.12.0
casper 5.8.1
ccount 1.1.0
character-entities 1.2.4
character-entities-html4 1.1.4
character-entities-legacy 1.1.4
character-reference-invalid 1.1.4
charset 1.0.1
cheerio 1.0.0-rc.12
cheerio-select 2.1.0
chrono-node 2.7.6
class-utils 0.3.6
clean-css 4.2.4
♾️ clean-stack 3.0.1 2.2.0
cliui 8.0.1
clone-response 1.0.3
cluster-key-slot 1.1.2
collapse-white-space 1.0.6
collection-visit 1.0.0
color 4.2.3
color-string 1.9.1
color-support 1.1.3
colorette 2.0.19
colors 1.4.0
combine-errors 3.0.3
combined-stream 1.0.8
commander 9.5.0
common-tags 1.8.2
compare-ver 2.0.2
component-emitter 1.3.0
compress-commons 4.1.1
compressible 2.0.18
compression 1.8.0
concat-map 0.0.1
concat-stream 1.6.2
condense-whitespace 2.0.0
config-chain 1.1.13
connect-slashes 1.4.0
consola 2.15.3
console-control-strings 1.1.0
consolidate 0.15.1
content-disposition 0.5.4
content-type 1.0.5
cookie 0.7.2
cookie-session 2.1.0
cookie-signature 1.0.7
cookiejar 2.1.4
cookies 0.9.1
copy-descriptor 0.1.1
core-util-is 1.0.3
cors 2.8.5
crc-32 1.2.2
crc32-stream 4.0.2
create-error 0.3.1
cron-validate 1.4.5
cross-fetch 4.1.0
cross-fetch-polyfill 0.0.0
crypto 0.0.3
css-select 5.1.0
css-tree 2.2.1
css-what 6.1.0
csso 5.0.5
cssstyle 4.0.1
csv-writer 1.6.0
custom-error-instance 2.1.1
dashdash 1.14.1
data-uri-to-buffer 5.0.1
data-uri-utils 1.0.8
data-urls 5.0.0
date-fns 2.30.0
date-format 4.0.14
dayjs 1.11.6
♾️ debug 4.3.7 4.3.5
decimal.js 10.4.3
decode-uri-component 0.2.0
critical: 0 high: 1 medium: 1 low: 0
Removed vulnerabilities (2):
  • high : CVE--2022--38900
  • medium : CVE--2022--38778
decompress-response 6.0.0
deep-extend 0.6.0
deep-is 0.1.4
deepmerge 4.3.1
defer-to-connect 2.0.1
define-data-property 1.1.4
define-property 2.0.2
delayed-stream 1.0.0
delegates 1.0.0
denque 2.1.0
depd 2.0.0
destroy 1.2.0
detect-file 1.0.0
detect-libc 2.0.2
dicer 0.2.5
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2022--24434
discontinuous-range 1.0.0
dist 1.0.0
dom-serializer 2.0.0
domelementtype 2.3.0
domhandler 5.0.3
dompurify 3.2.3
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2025--26791
domutils 3.0.1
downsize 0.0.8
dtrace-provider 0.8.8
dunder-proto 1.0.1
duplexer3 0.1.5
ecc-jsbn 0.1.2
ecdsa-sig-formatter 1.0.11
editorconfig 0.15.3
ee-argv 0.1.4
ee-class 1.4.0
ee-first 1.1.1
ee-log 3.0.9
ee-types 2.2.1
emits 3.0.0
encodeurl 2.0.0
end-of-stream 1.4.4
entities 4.5.0
es-define-property 1.0.1
es-errors 1.3.0
es-object-atoms 1.0.0
es6-promise 4.2.8
escalade 3.2.0
escape-goat 3.0.0
escape-html 1.0.3
escape-string-regexp 4.0.0
escodegen 1.14.3
esm 3.2.25
esprima 4.0.1
estraverse 4.3.0
esutils 2.0.3
etag 1.8.1
expand-brackets 2.1.4
expand-template 2.0.3
expand-tilde 2.0.2
express 4.21.2
express-brute 1.0.1
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : GHSA--984p--xq9m--4rjw
express-end 0.0.8
express-hbs 2.5.0
critical: 0 high: 1 medium: 1 low: 0
Removed vulnerabilities (2):
  • high : CVE--2021--32820
  • medium : CVE--2021--32817
express-jwt 8.5.1
express-lazy-router 1.0.6
express-query-boolean 2.0.0
express-queue 0.0.13
express-session 1.18.1
express-unless 2.1.3
extend 3.0.2
extend-shallow 3.0.2
extglob 2.0.4
extract-zip 2.0.1
extsprintf 1.4.1
false_main UNKNOWN
fast-deep-equal 3.1.3
fast-fifo 1.3.2
fast-json-stable-stringify 2.1.0
fast-levenshtein 2.0.6
fast-safe-stringify 2.1.1
fast-xml-parser 4.0.11
critical: 0 high: 1 medium: 1 low: 0
Removed vulnerabilities (2):
  • high : CVE--2023--34104
  • medium : CVE--2023--26920
fastq 1.19.1
fd-slicer 1.1.0
file-extension 4.0.5
file-type 16.5.4
file-uri-to-path 1.0.0
fill-range 4.0.0
finalhandler 1.3.1
find-root 1.1.0
findup-sync 3.0.0
fined 1.2.0
flagged-respawn 1.0.1
follow-redirects 1.15.6
for-in 1.0.2
for-own 1.0.0
♾️ foreground-child 3.3.0 3.2.1
forever-agent 0.6.1
form-data 4.0.0
form-data-encoder 2.1.4
formidable 1.2.6
forwarded 0.2.0
fragment-cache 0.2.1
fresh 0.5.2
fs-constants 1.0.0
fs-extra 11.3.0
fs.realpath 1.0.0
function-bind 1.1.2
gauge 4.0.4
gelf-stream 1.1.1
gelfling 0.3.1
generate-function 2.3.1
get-caller-file 2.0.5
get-intrinsic 1.2.6
get-package-type 0.1.0
get-stream 6.0.1
get-value 2.0.6
getopts 2.3.0
getpass 0.1.7
ghost 5.112.0
ghost-storage-base 1.0.0
github-from-package 0.0.0
♾️ glob 8.1.0 10.4.2
global-modules 1.0.0
global-prefix 1.0.2
globalyzer 0.1.0
globrex 0.1.2
gopd 1.2.0
got 9.6.0
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2022--33987
gscan 4.47.0
handlebars 4.7.8
har-schema 2.0.0
har-validator 5.1.5
has-ansi 2.0.0
has-flag 4.0.0
has-property-descriptors 1.0.2
has-symbols 1.1.0
has-unicode 2.0.1
has-value 1.0.0
has-values 2.0.1
hasown 2.0.2
hcaptcha 0.2.0
he 1.2.0
homedir-polyfill 1.0.3
hpagent 1.1.0
html-encoding-sniffer 4.0.0
html-minifier 4.0.0
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2022--37620
html-to-text 8.2.1
html5parser 2.0.2
htmlparser2 8.0.2
http-errors 2.0.0
http-signature 1.2.0
http2-wrapper 2.2.0
httpntlm 1.6.1
httpreq 0.5.2
human-interval 2.0.1
human-number 2.0.4
humanize-ms 1.2.1
i18next 23.16.2
ieee754 1.2.1
image-extensions 1.1.0
image-size 1.2.0
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : GHSA--m5qc--5hw7--8vg7
immediate 3.0.6
infer-owner 1.0.4
inflection 1.13.4
inflight 1.0.6
inherits 2.0.4
install-artifact-from-github 1.3.5
interpret 2.2.0
intl 1.2.5
intl-format-cache 4.3.1
intl-messageformat 5.4.3
intl-messageformat-parser 2.1.3
invalid_main UNKNOWN
ioredis 4.28.5
ip 2.0.1
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2024--29415
ipaddr.js 1.9.1
is-absolute 1.0.0
is-absolute-url 3.0.3
is-accessor-descriptor 1.0.0
is-alphabetical 1.0.4
is-alphanumeric 1.0.0
is-alphanumerical 1.0.4
is-arrayish 0.3.2
is-buffer 2.0.5
is-core-module 2.13.1
is-data-descriptor 1.0.0
is-decimal 1.0.4
is-descriptor 1.0.2
is-extendable 1.0.1
is-extglob 2.1.1
is-glob 4.0.3
is-hexadecimal 1.0.4
is-invalid-path 0.1.0
is-number 3.0.0
is-plain-obj 2.1.0
is-plain-object 5.0.0
is-potential-custom-element-name 1.0.1
is-property 1.0.2
is-relative 1.0.0
is-relative-url 3.0.0
is-string-and-not-blank 0.0.2
is-string-blank 1.0.1
is-typedarray 1.0.0
is-unc-path 1.0.0
is-uri 1.2.6
is-valid-path 0.1.1
is-whitespace-character 1.0.4
is-windows 1.0.2
is-word-character 1.0.4
isarray 2.0.5
iso-639-3 2.2.0
isobject 3.0.1
isostring 0.0.1
isstream 0.1.2
iterare 1.2.1
js-beautify 1.14.7
js-yaml 4.1.0
jsdom 24.1.3
json-buffer 3.0.1
json-schema 0.4.0
json-schema-traverse 0.4.1
json-stable-stringify 1.2.0
json-stringify-safe 5.0.1
jsonfile 6.1.0
jsonify 0.0.1
jsonpath 1.1.1
jsonwebtoken 9.0.0
jsprim 1.4.2
juice 9.1.0
jwa 1.4.1
jws 3.2.2
keygrip 1.1.0
keypair 1.0.4
keyv 4.5.3
kind-of 6.0.3
knex 2.4.2
knex-migrator 5.3.0
lazystream 1.0.1
leaky-bucket 2.2.0
levn 0.3.0
lexical 0.13.1
lie 3.1.1
liftoff 3.1.0
linkify-it 5.0.0
ljharb-monorepo-symlink-test 0.0.0
localforage 1.10.0
lodash 4.17.21
lodash-es 4.17.21
lodash._baseiteratee 4.7.0
lodash._basetostring 4.12.0
lodash._baseuniq 4.6.0
lodash._createset 4.0.3
lodash._reinterpolate 3.0.0
lodash._root 3.0.1
lodash._stringtopath 4.8.0
lodash.assignin 4.2.0
lodash.bind 4.2.1
lodash.clonedeep 4.5.0
lodash.defaults 4.2.0
lodash.difference 4.5.0
lodash.filter 4.6.0
lodash.flatten 4.4.0
lodash.foreach 4.5.0
lodash.includes 4.3.0
lodash.isarguments 3.1.0
lodash.isboolean 3.0.3
lodash.isinteger 4.0.4
lodash.isnumber 3.0.3
lodash.isplainobject 4.0.6
lodash.isstring 4.0.1
lodash.map 4.6.0
lodash.merge 4.6.2
lodash.once 4.1.1
lodash.pick 4.4.0
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2020--8203
lodash.reduce 4.6.0
lodash.reject 4.6.0
lodash.some 4.6.0
lodash.template 4.5.0
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2021--23337
lodash.templatesettings 4.2.0
lodash.union 4.6.0
lodash.uniqby 4.5.0
logd-console-output 1.3.0
long 5.2.3
long-timeout 0.1.1
longest-streak 2.0.4
lower-case 1.1.4
lowercase-keys 3.0.0
♾️ lru-cache 7.18.3 10.2.2
lru.min 1.1.1
luxon 3.5.0
mailgun.js 8.2.2
♾️ make-fetch-happen 9.1.0 13.0.1
make-iterator 1.0.1
map-cache 0.2.2
map-visit 1.0.0
markdown-escapes 1.0.4
markdown-it 14.1.0
markdown-it-footnote 4.0.0
markdown-it-image-lazy-loading 2.0.1
markdown-it-lazy-headers 0.1.3
markdown-it-mark 4.0.0
markdown-it-sub 2.0.0
markdown-it-sup 2.0.0
markdown-table 1.1.3
math-intrinsics 1.0.0
mdast-util-compact 1.0.4
mdn-data 2.0.28
mdurl 2.0.0
media-typer 0.3.0
memoize-one 6.0.0
mensch 0.3.4
merge-descriptors 1.0.3
metascraper 5.45.15
metascraper-author 5.45.10
metascraper-description 5.45.10
metascraper-image 5.45.10
metascraper-logo 5.45.10
metascraper-logo-favicon 5.42.0
metascraper-publisher 5.45.10
metascraper-title 5.45.10
metascraper-url 5.45.10
methods 1.1.2
micromatch 3.1.10
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2024--4067
microsoft-capitalize 1.0.5
mime 3.0.0
mime-db 1.52.0
mime-types 2.1.35
mimic-fn 3.1.0
mimic-response 4.0.0
mingo 2.5.3
mini-queue 0.0.14
minimist 1.2.8
mixin-deep 1.3.2
mkdirp-classic 0.5.3
mobiledoc-dom-renderer 0.7.2
mobiledoc-text-renderer 0.4.0
moment 2.24.0
critical: 0 high: 2 medium: 0 low: 0
Removed vulnerabilities (2):
  • high : CVE--2022--31129
  • high : CVE--2022--24785
moment-timezone 0.5.45
moo 0.5.2
multer 1.4.4-lts.1
critical: 0 high: 3 medium: 0 low: 0
Removed vulnerabilities (3):
  • high : CVE--2025--48997
  • high : CVE--2025--47944
  • high : CVE--2025--47935
mv 2.1.1
mylib 0.0.0
mysql2 3.12.0
named-placeholders 1.1.3
nan 2.20.0
nanoclone 0.2.1
nanoid 3.3.7
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2024--55565
nanomatch 1.2.13
napi-build-utils 1.0.2
nconf 0.12.1
ncp 2.0.0
nearley 2.20.1
needle 2.9.1
♾️ negotiator 0.6.4 0.6.3
neo-async 2.6.2
next-tick 1.1.0
no-case 2.3.2
node-abi 3.62.0
node-addon-api 7.0.0
node-fetch 2.7.0
node-forge 1.3.1
node-forge-flash 0.0.0
♾️ node-gyp 8.4.1 10.1.0
node-jose 2.2.0
node-loggly-bulk 2.2.5
nodemailer 6.9.16
nodemailer-direct-transport 3.3.2
nodemailer-fetch 1.6.0
nodemailer-mailgun-transport 2.1.5
nodemailer-shared 1.1.0
nodemailer-stub-transport 1.1.0
normalize-path 3.0.0
normalize-url 8.0.0
npmlog 6.0.2
nth-check 2.1.1
numbered 1.1.0
nwsapi 2.2.12
oauth-sign 0.9.0
object-assign 4.1.1
object-copy 0.1.0
object-inspect 1.13.2
object-keys 1.1.1
object-visit 1.0.1
object.defaults 1.1.0
object.map 1.0.1
object.pick 1.3.0
on-finished 2.4.1
on-headers 1.0.2
once 1.4.0
optionator 0.8.3
otplib 12.0.1
p-cancelable 3.0.0
p-finally 1.0.0
p-reflect 2.1.0
p-timeout 3.2.0
p-wait-for 3.2.0
♾️ package-json-from-dist 1.0.1 1.0.0
pako 2.0.4
papaparse 5.3.2
param-case 2.1.1
parse-entities 1.2.2
parse-filepath 1.0.2
parse-passwd 1.0.0
parse-srcset 1.0.2
parse-uri 1.0.7
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2024--36751
parse5 7.1.2
parse5-htmlparser2-tree-adapter 7.0.0
parseley 0.7.0
parseurl 1.3.3
pascalcase 0.1.1
path-is-absolute 1.0.1
path-match 1.2.4
path-parse 1.0.7
path-root 0.1.1
path-root-regex 0.1.2
path-to-regexp 3.3.0
peek-readable 4.1.0
pend 1.2.0
performance-now 2.1.0
pg-connection-string 2.5.0
picocolors 1.1.1
picomatch 2.3.1
pluralize 8.0.0
posix-character-classes 0.1.1
postcss 8.4.49
prebuild-install 7.1.1
prelude-ls 1.1.2
prepend-http 2.0.0
prettyjson 1.2.5
prismjs 1.29.0
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2024--53382
probability-distributions 0.9.1
probe-image-size 7.2.3
process 0.11.10
process-nextick-args 2.0.1
prom-client 15.1.3
property-expr 2.0.5
proto-list 1.2.4
proxy-addr 2.0.7
proxy-from-env 1.1.0
pseudomap 1.0.2
psl 1.9.0
pump 3.0.2
punycode 2.3.1
punycode.js 2.3.1
punycode2 1.0.1
qs 6.5.3
querystringify 2.2.0
queue 6.0.2
queue-tick 1.0.1
quick-lru 5.1.1
railroad-diagrams 1.0.0
randexp 0.4.6
random-bytes 1.0.0
range-parser 1.2.1
raw-body 2.5.2
rc 1.2.8
re2 1.21.3
reachable-url 1.7.2
readable-stream 3.6.2
readable-web-to-node-stream 3.0.2
readdir-glob 1.1.2
readdirp 3.6.0
rechoir 0.8.0
redis-commands 1.7.0
redis-errors 1.2.0
redis-parser 3.0.0
reflect-metadata 0.1.14
regenerator-runtime 0.14.0
regex-not 1.0.2
relateurl 0.2.7
remark 11.0.2
remark-footnotes 1.0.0
remark-parse 7.0.2
remark-stringify 7.0.4
repeat-element 1.1.4
repeat-string 1.6.1
request 2.88.2
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2023--28155
request-promise 4.2.6
request-promise-core 1.1.4
require-dir 1.2.0
require-directory 2.1.1
requires-port 1.0.0
resolve 1.22.8
resolve-alpn 1.2.1
resolve-dir 1.0.1
resolve-from 5.0.0
resolve-url 0.2.1
responselike 3.0.0
ret 0.1.15
reusify 1.0.4
rimraf 3.0.2
round-to 5.0.0
rrweb-cssom 0.7.1
rss 1.2.2
rxjs 7.8.2
rxjs/ajax UNKNOWN
rxjs/fetch UNKNOWN
rxjs/operators UNKNOWN
rxjs/testing UNKNOWN
rxjs/websocket UNKNOWN
safe-buffer 5.2.1
safe-json-stringify 1.2.0
safe-regex 1.1.0
safe-timers 1.1.0
sanitize-html 2.14.0
sax 1.2.4
saxes 6.0.0
section-tests 1.3.1
secure-json-parse 2.5.0
secure-keys 1.0.0
selderee 0.6.0
♾️ semver 7.7.1 7.6.2
send 0.19.0
seq-queue 0.0.5
serve-static 1.16.2
set-blocking 2.0.0
set-function-length 1.2.2
set-value 2.0.1
setprototypeof 1.2.0
sharp 0.32.6
side-channel 1.0.6
sigmund 1.0.1
simple-concat 1.0.1
simple-dom 1.4.0
simple-get 4.0.1
simple-swizzle 0.2.2
slick 1.12.2
smartquotes 2.3.2
smtp-connection 2.12.0
snapdragon 0.8.2
snapdragon-node 2.1.1
snapdragon-util 3.0.1
source 1.4.1
source-map 0.6.1
source-map-js 1.2.1
source-map-resolve 0.5.3
source-map-support 0.5.21
source-map-url 0.4.1
split-string 3.1.0
split2 4.2.0
sqlite3 5.1.7
sqlstring 2.3.3
sshpk 1.17.0
♾️ ssri 8.0.1 10.0.6
standard-as-callback 2.1.0
state-toggle 1.0.3
static-eval 2.0.2
static-extend 0.1.2
statuses 2.0.1
stealthy-require 1.1.1
stoppable 1.1.0
stream-parser 0.3.1
streamsearch 1.1.0
streamx 2.16.1
string_decoder 1.3.0
stringify-entities 2.0.0
strip-json-comments 2.0.1
stripe 8.222.0
strnum 1.0.5
strtok3 6.3.0
superagent 5.1.0
superagent-throttle 1.0.1
supports-preserve-symlinks-flag 1.0.0
symbol-tree 3.2.4
sywac 1.3.0
tar-fs 3.0.4
critical: 0 high: 2 medium: 0 low: 0
Removed vulnerabilities (2):
  • high : CVE--2025--48387
  • high : CVE--2024--12905
tar-stream 3.1.6
tarn 3.0.2
tdigest 0.1.2
terser 5.36.0
thirty-two 1.0.2
tildify 2.0.0
tiny-glob 0.2.9
tlds 1.242.0
tldts 6.1.30
tldts-core 6.1.30
to-object-path 0.3.0
to-readable-stream 1.0.0
to-regex 3.0.2
to-regex-range 2.1.1
toidentifier 1.0.1
token-types 4.2.1
toposort 2.0.2
tough-cookie 4.1.4
tr46 5.0.0
trim 0.0.1
critical: 0 high: 1 medium: 0 low: 0
Removed vulnerabilities (1):
  • high : CVE--2020--7753
trim-trailing-lines 1.1.4
trough 1.0.5
tslib 2.7.0
tsscmp 1.0.6
tunnel-agent 0.6.0
tweetnacl 0.14.5
type-check 0.3.2
type-is 1.6.18
typedarray 0.0.6
ua-parser-js 1.0.40
uc.micro 2.1.0
uglify-js 3.19.0
uid 2.0.2
uid-safe 2.1.5
unc-path-regex 0.1.2
underscore 1.8.3
critical: 1 high: 0 medium: 0 low: 0
Removed vulnerabilities (1):
  • critical : CVE--2021--23358
undici 5.22.1
critical: 0 high: 0 medium: 1 low: 6
Removed vulnerabilities (7):
  • medium : CVE--2025--22150
  • low : CVE--2024--30260
  • low : CVE--2024--24758
  • low : CVE--2023--45143
  • low : CVE--2022--31151
  • low : CVE--2025--47279
  • low : CVE--2024--30261
undici-types 6.20.0
unherit 1.1.3
unidecode 0.1.8
unified 8.4.2
union-value 1.0.1
unist-util-is 4.1.0
unist-util-remove-position 1.1.4
unist-util-stringify-position 2.0.3
unist-util-visit 2.0.3
unist-util-visit-parents 3.1.1
universalify 2.0.0
unpipe 1.0.0
unset-value 1.0.0
upper-case 1.1.3
uri-js 4.4.1
urix 0.1.0
url-join 4.0.1
url-parse 1.5.10
url-parse-lax 3.0.0
url-regex-safe 4.0.0
use 3.1.1
utils-merge 1.0.1
uuid 9.0.1
v8flags 3.2.0
valid-data-url 3.0.1
validator 7.2.0
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2021--3765
vary 1.1.2
verror 1.10.0
vfile 4.2.1
vfile-location 2.0.6
vfile-message 2.0.4
video-extensions 1.2.0
w3c-xmlserializer 5.0.0
web-resource-inliner 6.0.1
webidl-conversions 7.0.0
whatwg-encoding 3.1.1
whatwg-mimetype 4.0.0
whatwg-url 5.0.0
whoops 4.1.7
wide-align 1.1.5
word-wrap 1.2.3
critical: 0 high: 0 medium: 1 low: 0
Removed vulnerabilities (1):
  • medium : CVE--2023--26115
wordwrap 1.0.0
workerpool 9.1.3
wrappy 1.0.2
ws 8.18.0
xml 1.0.1
xml-name-validator 5.0.0
xmlchars 2.2.0
xregexp 2.0.0
xtend 4.0.2
y18n 5.0.8
yargs 16.2.0
yargs-parser 20.2.9
yauzl 2.10.0
yup 0.32.9
zip-stream 4.1.0

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: 2

♻️ Duplicate comments (1)
.github/workflows/ghostv5.yml (1)

284-292: Duplicate: Refine comment formatting.

Same formatting nitpick in the stable job—replace <docker push -tag> with backticks or plain text for consistency.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ad02a4b and 748e94a.

📒 Files selected for processing (1)
  • .github/workflows/ghostv5.yml (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build_edge

Each workflow run now gets a unique cache identifier using ${{ github.run_id }}
This prevents concurrent builds from writing to the same cache location
Eliminates race conditions that could occur when multiple jobs try to write cache simultaneously
Maintains cache functionality while ensuring safe concurrent operations
@pascalandy pascalandy closed this Jun 12, 2025
@pascalandy pascalandy deleted the edge_049 branch June 12, 2025 13:34
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.

1 participant