Skip to content

Release 7.0.0#1728

Merged
horgh merged 3 commits into
mainfrom
greg/stf-855
Jun 30, 2026
Merged

Release 7.0.0#1728
horgh merged 3 commits into
mainfrom
greg/stf-855

Conversation

@oschwald

@oschwald oschwald commented Jun 29, 2026

Copy link
Copy Markdown
Member

Summary by CodeRabbit

  • Documentation
    • Updated the release log to mark version 7.0.0 as released on 2026-06-29 instead of unreleased.
    • Updated the README copyright year from 2025 to 2026.

@coderabbitai

coderabbitai Bot commented Jun 29, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 36041c3a-0436-4968-a900-cc06b1c0e23b

📥 Commits

Reviewing files that changed from the base of the PR and between b016a48 and 82493c4.

📒 Files selected for processing (2)
  • README.md
  • dev-bin/release.sh

📝 Walkthrough

Walkthrough

The release metadata is updated in CHANGELOG.md and README.md, and dev-bin/release.sh now verifies the bumped package version before conditionally creating the release commit.

Changes

Release Housekeeping

Layer / File(s) Summary
Release metadata updates
CHANGELOG.md, README.md
The 7.0.0 changelog entry is dated 2026-06-29, and the README copyright year range becomes 2018-2026.
Release script validation
dev-bin/release.sh
The release script checks package.json after npm version and only commits when the working tree has changes.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

A bunny thumps: the release is near,
Dates and years are crisp and clear.
If the version hops astray,
The script will catch it right away. 🐇

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: releasing version 7.0.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.
✨ 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 greg/stf-855

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.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Code Review

This pull request updates the CHANGELOG.md to set the release date for version 7.0.0. I have no feedback to provide.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

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 `@CHANGELOG.md`:
- Line 4: The CHANGELOG is missing a placeholder for upcoming changes, so add a
new unreleased section directly below the existing 7.0.0 entry. Update
CHANGELOG.md to include an “X.Y.Z (unreleased)” heading in the same format as
the current versioned sections so future entries have a place to be recorded.
🪄 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: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: e383234e-87ce-42e4-a94e-c480d75d968a

📥 Commits

Reviewing files that changed from the base of the PR and between 187d401 and b016a48.

📒 Files selected for processing (1)
  • CHANGELOG.md

Comment thread CHANGELOG.md
=========

7.0.0 (unreleased)
7.0.0 (2026-06-29)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check CHANGELOG.md structure for unreleased section
cat -n CHANGELOG.md | head -20

Repository: maxmind/GeoIP2-node

Length of output: 1340


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== unreleased entries =="
rg -n "unreleased" CHANGELOG.md || true

echo
echo "== full changelog structure (first 80 lines) =="
cat -n CHANGELOG.md | sed -n '1,80p'

Repository: maxmind/GeoIP2-node

Length of output: 4492


Add the next unreleased changelog entry. CHANGELOG.md should include a new X.Y.Z (unreleased) section below 7.0.0 (2026-06-29) so future changes have a place to land.

🤖 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 `@CHANGELOG.md` at line 4, The CHANGELOG is missing a placeholder for upcoming
changes, so add a new unreleased section directly below the existing 7.0.0
entry. Update CHANGELOG.md to include an “X.Y.Z (unreleased)” heading in the
same format as the current versioned sections so future entries have a place to
be recorded.

Source: Coding guidelines

oschwald and others added 2 commits June 29, 2026 12:14
If the version bump was already committed on the release branch, the
working tree is clean, npm version is skipped, and the unconditional
git commit died with "nothing to commit" under set -e.

Verify package.json is at the target version after the update block
(catching a genuinely failed replacement), then only commit when there
are changes to commit.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@horgh horgh merged commit 65f24d5 into main Jun 30, 2026
12 checks passed
@horgh horgh deleted the greg/stf-855 branch June 30, 2026 02:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants