Skip to content

Conversation

themacexpert
Copy link
Contributor

Description

This pull request updates documentation and code snippets to use the latest Moonbeam and Moonbeam tracing Docker images, moving from version v0.47.1 to v0.47.2. It ensures all example commands, output logs, and references are consistent with the new release, improving clarity and reducing confusion for developers following the guides.

Moonbeam Docker image updates:

Moonbeam tracing image and logs:

  • Updates all references to the tracing image from moonbeamfoundation/moonbeam-tracing:v0.47.1-3900-b897 to moonbeamfoundation/moonbeam-tracing:v0.47.2-3900-b897 and corrects output logs to match the new version and node name spelling. [1] [2] [3] [4]

Consistency and typo fixes:

  • Ensures node names are spelled correctly in logs (e.g., "Moonbean-Tracing-Tutorial" corrected to "Moonbeam-Tracing-Tutorial"). [1] [2]

These updates keep the documentation aligned with the latest Moonbeam releases and provide accurate, up-to-date instructions for users.

Checklist

  • Added a label 🏷️ to this PR
  • Ran my changes through Grammarly
  • Added a disclaimer if required
  • If pages were moved, opened a corresponding PR in moonbeam-mkdocs to update redirects

Translations

Does this PR update a page that also exists on the Chinese docs site? See mapping to confirm.

  • Yes
  • No

If Yes, complete the following:

  • Opened a PR on the Chinese docs repo for the corresponding page
  • Updated images, snippets, or variables if they were moved, renamed, or deleted

Link to the corresponding CN docs PR: <INSERT_LINK>

@themacexpert themacexpert requested a review from a team as a code owner October 10, 2025 15:07
@Copilot Copilot AI review requested due to automatic review settings October 10, 2025 15:07
@themacexpert themacexpert added A3 - Quick Fixes Pull request contains small fixes (i.e., fixing a typo, removing old images, etc.) B0 - Needs Review Pull request is ready for review labels Oct 10, 2025
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

Updates documentation and code snippets to use Moonbeam Docker image version v0.47.2, replacing v0.47.1 references throughout the codebase. This ensures all examples, Docker commands, and expected output logs are consistent with the latest Moonbeam release.

  • Updates all Docker image references from v0.47.1 to v0.47.2
  • Updates SHA256 checksums for the new release
  • Corrects spelling of node names in log outputs (fixes "Moonbean" to "Moonbeam")

Reviewed Changes

Copilot reviewed 27 out of 27 changed files in this pull request and generated no comments.

File Description
variables.yml Updates parachain release tags and checksums for all networks
llms-full.txt Updates Docker image references and version strings in logs
llms-files/*.txt Updates Docker image versions and log outputs across multiple documentation files
.snippets/code/**/*.md Updates Docker commands and version strings in code snippets
Comments suppressed due to low confidence (3)

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@themacexpert themacexpert mentioned this pull request Oct 10, 2025
8 tasks
@themacexpert themacexpert requested a review from eshaben October 10, 2025 15:10
Copy link

Style Guide Violations Summary

.snippets/code/builders/ethereum/json-rpc/debug-trace/terminal/start-up-logs.md (Line 5)

  • Issue:
    Unnecessary capitalization in container name - naming conventions require lowercase for all directory/file/container names

  • Correction:

<br>--name="moonbeam-tracing-tutorial" \

.snippets/code/builders/ethereum/json-rpc/debug-trace/terminal/start-up-logs.md (Line 17)

  • Issue:
    Unnecessary capitalization in node name - naming conventions require lowercase for all directory/file/container names

  • Correction:

<br> 2025-07-10 09:04:26 🏷  Node name: moonbeam-tracing-tutorial

.snippets/code/builders/get-started/networks/moonbeam-dev/terminal/docker-pull.md (Line 2)

  • Issue:
    Product name 'docker' should be capitalized as 'Docker' per capitalization guidelines

  • Correction:

<span data-ty="input"><span class="file-path"></span>Docker pull moonbeamfoundation/moonbeam:v0.47.2</span>

.snippets/code/builders/get-started/networks/moonbeam-dev/terminal/docker-pull.md (Line 14)

  • Issue:
    Product name 'docker.io' should be capitalized as 'Docker.io' per capitalization guidelines

  • Correction:

<br> Docker.io/moonbeamfoundation/moonbeam:v0.47.2

.snippets/code/builders/get-started/networks/moonbeam-dev/terminal/docker-run.md (Line 9)

  • Issue:
    Emoji usage violates style guide (Symbols section states 'Do not use emojis')

  • Correction:

<br> 2025-07-10 09:04:26 version 0.47.2-d7df89e7161

.snippets/code/builders/get-started/networks/moonbeam-dev/terminal/run-binary.md (Line 5)

  • Issue:
    Emoji usage violates 'Do not use emojis' rule in Symbols section

  • Correction:

<br> 2025-07-10 09:04:26 version 0.47.2-d7df89e7161

.snippets/code/node-operators/networks/run-a-node/docker/terminal/start.md (Line 2)

  • Issue:
    Contains syntax errors: path typo (/d ata), missing space in $(id -u), incorrect variable syntax (#{USER}), and extra dashes in ----name

  • Correction:

<span data-ty="input"><span class="file-path"></span>docker run --network="host" -v "/var/lib/alphanet-data:/data" -u $(id -u ${USER}):$(id -g ${USER}) moonbeam-foundation/moonbeam:v0.47.2 --base-path=/data --chain alphanet --name="TestNode" --state-pruning archive --trie-cache-size 1073741824 --db-cache 8000 --name="TestNode (Embedded Relay)"</span>

.snippets/code/tutorials/integrations/local-subsquid/terminal/start-node.md (Line 3)

  • Issue:
    Command continuation line should use data-ty="input" instead of data-ty

  • Correction:

<span data-ty="input"><span class="file-path"></span>moonbeamfoundation/moonbeam:v0.47.2 \</span>

variables.yml (Line 19)

  • Issue:
    Comment uses absolute language 'must' without sufficient context for why the exact format is required

  • Correction:

parachain_release_tag: v0.47.2 # must follow this exact format (vMAJOR.MINOR.PATCH) for automated link generation to work correctly

variables.yml (Line 20)

  • Issue:
    SHA-256 sum value exceeds recommended 80-character line length limit

  • Correction:

parachain_sha256sum: >
  4201728da5d694ed43976ca60285b9081836a8d82bc1f8f730785d4d2e5c9ba5

Copy link
Contributor

@eshaben eshaben left a comment

Choose a reason for hiding this comment

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

LGTM!

@eshaben eshaben merged commit 2be9fcb into master Oct 10, 2025
3 checks passed
@eshaben eshaben deleted the themacexpert/new472 branch October 10, 2025 17:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A3 - Quick Fixes Pull request contains small fixes (i.e., fixing a typo, removing old images, etc.) B0 - Needs Review Pull request is ready for review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants