Skip to content

bump: v1.14.0#406

Merged
luislhl merged 1 commit into
masterfrom
bump/v1.14.0
May 4, 2026
Merged

bump: v1.14.0#406
luislhl merged 1 commit into
masterfrom
bump/v1.14.0

Conversation

@luislhl
Copy link
Copy Markdown
Collaborator

@luislhl luislhl commented May 4, 2026

Motivation

Bump the root package.json version from 1.13.0 to 1.14.0 in preparation for release candidate v1.14.0-rc.1.

Includes the following features/fixes merged to master since v1.13.0:

Follows the wallet-service release guide.

Acceptance Criteria

  • Root package.json version is 1.14.0.
  • No other source changes included.

Checklist

  • If you are requesting a merge into master, confirm this code is production-ready and can be included in future releases as soon as it gets merged
  • Make sure either the unit tests and/or the QA tests are capable of testing the new features
  • Make sure you do not include new dependencies in the project unless strictly necessary and do not include dev-dependencies as production ones. More dependencies increase the possibility of one of them being hijacked and affecting us.

@luislhl luislhl self-assigned this May 4, 2026
Copilot AI review requested due to automatic review settings May 4, 2026 19:09
@luislhl luislhl moved this from Todo to In Progress (Done) in Hathor Network May 4, 2026
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 4, 2026

📝 Walkthrough

Walkthrough

The package version in package.json is bumped from 1.13.0 to 1.14.0, marking a minor version release. No dependencies, scripts, or other configuration values are altered.

Changes

Package Version Bump

Layer / File(s) Summary
Version Update
package.json
Version field incremented from 1.13.0 to 1.14.0.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Possibly related PRs

Suggested labels

enhancement

Suggested reviewers

  • pedroferreira1
  • raul-oliveira

Poem

🐰 A hop, a skip, one-four is here,
The version bumps with minor cheer,
No breaking changes in this round,
Just numerals turning, safe and sound! 🎉

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title 'bump: v1.14.0' directly matches the single change in the PR: updating the package version from 1.13.0 to 1.14.0, and aligns with the stated objective to bump to v1.14.0.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch bump/v1.14.0

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


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

Comment @coderabbitai help to get the list of available commands and usage tips.

@luislhl luislhl requested review from pedroferreira1 and removed request for Copilot May 4, 2026 19:09
Copy link
Copy Markdown

@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

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@package.json`:
- Line 3: The repository root has been bumped to version "1.14.0" in
package.json but lacks release documentation; add a new CHANGELOG.md at the repo
root that documents v1.14.0 including major features and changes, any breaking
changes, and dependency/compatibility notes, and reference the root package.json
"version" value and packages/common where relevant; ensure the changelog follows
conventional headings (e.g., "Added", "Changed", "Removed", "Breaking Changes")
and includes a short summary of the large commit (files/lines touched) and any
notes about workspace package versioning policy to make the release traceable.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 187700f0-c8cc-4771-9ab2-e9468aa62cd0

📥 Commits

Reviewing files that changed from the base of the PR and between cd92d0f and 49e8a22.

📒 Files selected for processing (1)
  • package.json

Comment thread package.json
{
"name": "hathor-wallet-service",
"version": "1.13.0",
"version": "1.14.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify changelog, git tags, and workspace package versions

echo "=== Checking for changelog/release notes ==="
fd -t f -i 'changelog|history|releases|news' -e md -e txt -e rst | head -20

echo -e "\n=== Checking for v1.14.0 references in changelog ==="
fd -t f -i 'changelog' -e md -e txt | xargs rg -i "1\.14\.0|v1\.14\.0" 2>/dev/null || echo "No 1.14.0 references found in changelog"

echo -e "\n=== Checking git tags for version conflicts ==="
git tag -l "v1.14.0" "1.14.0" || echo "No existing git tags for v1.14.0"

echo -e "\n=== Checking workspace package versions ==="
fd -t f "^package\.json$" packages/ --exec cat {} \; --exec echo "---" | rg -A1 '"version"'

echo -e "\n=== Recent git commits (to understand context) ==="
git log --oneline -10 --no-decorate

Repository: HathorNetwork/hathor-wallet-service

Length of output: 438


🏁 Script executed:

#!/bin/bash
# Comprehensive verification: workspace packages and changes in this version bump

echo "=== Finding ALL package.json files in repository ==="
find . -name "package.json" -type f | sort

echo -e "\n=== Content of ALL package.json files (versions only) ==="
find . -name "package.json" -type f | sort | while read file; do
  echo "File: $file"
  grep '"version"' "$file" | head -1
  echo "---"
done

echo -e "\n=== Repository structure overview ==="
ls -la packages/ 2>/dev/null || echo "No packages directory"

echo -e "\n=== Checking if CHANGELOG exists with different naming ==="
ls -la | grep -i 'change\|release\|history\|news' || echo "No changelog-like files in root"

echo -e "\n=== What changed in recent commit ==="
git show --stat HEAD 2>/dev/null || echo "Cannot show HEAD commit"

echo -e "\n=== Diff summary for version change ==="
git diff HEAD~1 HEAD -- package.json 2>/dev/null || echo "Cannot show diff"

Repository: HathorNetwork/hathor-wallet-service

Length of output: 21087


🏁 Script executed:

#!/bin/bash
# Verify workspace package configuration and git history

echo "=== Checking workspace package.json structure ==="
for pkg in packages/*/package.json; do
  echo "=== File: $pkg ==="
  head -15 "$pkg"
  echo "---"
done

echo -e "\n=== Git log to understand commit history ==="
git log --oneline -5

echo -e "\n=== Check if daemon/event-downloader/wallet-service should have versions ==="
grep -r "workspace" package.json 2>/dev/null || echo "No workspace field found"
grep -r '"name"' packages/*/package.json | head -10

Repository: HathorNetwork/hathor-wallet-service

Length of output: 2242


Add changelog documentation for this major release.

This commit introduces 78,177 lines of code across 316 files, but there is no changelog, release notes, or documentation of what's included in v1.14.0. For a release of this magnitude, include a CHANGELOG.md file at the repository root documenting:

  • Major features and changes in v1.14.0
  • Any breaking changes
  • Dependencies or compatibility notes

Note: Workspace package versioning (daemon, event-downloader, wallet-service) is intentionally omitted per your monorepo design — only the root version and packages/common version are maintained. This is not an issue.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` at line 3, The repository root has been bumped to version
"1.14.0" in package.json but lacks release documentation; add a new CHANGELOG.md
at the repo root that documents v1.14.0 including major features and changes,
any breaking changes, and dependency/compatibility notes, and reference the root
package.json "version" value and packages/common where relevant; ensure the
changelog follows conventional headings (e.g., "Added", "Changed", "Removed",
"Breaking Changes") and includes a short summary of the large commit
(files/lines touched) and any notes about workspace package versioning policy to
make the release traceable.

@luislhl luislhl moved this from In Progress (Done) to In Review (WIP) in Hathor Network May 4, 2026
@luislhl luislhl merged commit c0fe986 into master May 4, 2026
7 checks passed
@github-project-automation github-project-automation Bot moved this from In Review (WIP) to Waiting to be deployed in Hathor Network May 4, 2026
@luislhl luislhl moved this from Waiting to be deployed to Done in Hathor Network May 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

3 participants