Skip to content

Release version number update#1878

Merged
JoshuaSBrown merged 29 commits intostagingfrom
release-version-number-update
Feb 25, 2026
Merged

Release version number update#1878
JoshuaSBrown merged 29 commits intostagingfrom
release-version-number-update

Conversation

@JoshuaSBrown
Copy link
Collaborator

@JoshuaSBrown JoshuaSBrown commented Feb 25, 2026

Ticket

Description

How Has This Been Tested?

Artifacts (if appropriate):

Tasks

  • - A description of the PR has been provided, and a diagram included if it is a new feature.
  • - Formatter has been run
  • - CHANGELOG comment has been added
  • - Labels have been assigned to the pr
  • - A reviwer has been added
  • - A user has been assigned to work on the pr
  • - If new feature a unit test has been added

Summary by Sourcery

Update project version metadata for the latest release across core components and clients.

Enhancements:

  • Bump major versions for common library, protocol API, core, web, repository, authorization, and Python client to reflect the new release series.

Build:

  • Refresh CMake version configuration with the new release date and component version numbers.

…m:ORNL/DataFed into 1871-DAPS-bug-query-api-test-endless-loop
@sourcery-ai
Copy link
Contributor

sourcery-ai bot commented Feb 25, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates DataFed’s release metadata and component version numbers for a new 2026-02-24 release, including coordinated major/minor bumps across core services and the Python client.

Class diagram for updated DataFed component version metadata

classDiagram
    class ReleaseMetadata {
        +int DATAFED_RELEASE_YEAR = 2026
        +int DATAFED_RELEASE_MONTH = 2
        +int DATAFED_RELEASE_DAY = 24
        +int DATAFED_RELEASE_HOUR = 10
        +int DATAFED_RELEASE_MINUTE = 0
    }

    class DataFedCommonLibVersion {
        +int DATAFED_COMMON_LIB_MAJOR = 3
        +int DATAFED_COMMON_LIB_MINOR = 0
        +int DATAFED_COMMON_LIB_PATCH = 0
    }

    class DataFedCommonProtocolApiVersion {
        +int DATAFED_COMMON_PROTOCOL_API_MAJOR = 3
        +int DATAFED_COMMON_PROTOCOL_API_MINOR = 0
        +int DATAFED_COMMON_PROTOCOL_API_PATCH = 0
    }

    class DataFedCoreVersion {
        +int DATAFED_CORE_MAJOR = 3
        +int DATAFED_CORE_MINOR = 0
        +int DATAFED_CORE_PATCH = 0
    }

    class DataFedFoxxVersion {
        +int DATAFED_FOXX_MAJOR = 1
        +int DATAFED_FOXX_MINOR = 3
        +int DATAFED_FOXX_PATCH = 0
    }

    class DataFedFoxxApiVersion {
        +int DATAFED_FOXX_API_MAJOR = 1
        +int DATAFED_FOXX_API_MINOR = 3
        +int DATAFED_FOXX_API_PATCH = 0
    }

    class DataFedWebVersion {
        +int DATAFED_WEB_MAJOR = 3
        +int DATAFED_WEB_MINOR = 0
        +int DATAFED_WEB_PATCH = 0
    }

    class DataFedRepoVersion {
        +int DATAFED_REPO_MAJOR = 3
        +int DATAFED_REPO_MINOR = 0
        +int DATAFED_REPO_PATCH = 0
    }

    class DataFedAuthzVersion {
        +int DATAFED_AUTHZ_MAJOR = 3
        +int DATAFED_AUTHZ_MINOR = 0
        +int DATAFED_AUTHZ_PATCH = 0
    }

    class DataFedPythonClientVersion {
        +int DATAFED_PYTHON_CLIENT_MAJOR = 5
        +int DATAFED_PYTHON_CLIENT_MINOR = 0
        +int DATAFED_PYTHON_CLIENT_PATCH = 0
        +string DATAFED_PYTHON_CLIENT_RELEASE_TYPE = ""
    }

    ReleaseMetadata <.. DataFedCommonLibVersion
    ReleaseMetadata <.. DataFedCommonProtocolApiVersion
    ReleaseMetadata <.. DataFedCoreVersion
    ReleaseMetadata <.. DataFedFoxxVersion
    ReleaseMetadata <.. DataFedFoxxApiVersion
    ReleaseMetadata <.. DataFedWebVersion
    ReleaseMetadata <.. DataFedRepoVersion
    ReleaseMetadata <.. DataFedAuthzVersion
    ReleaseMetadata <.. DataFedPythonClientVersion
Loading

File-Level Changes

Change Details Files
Update global release timestamp for new release cut.
  • Change release year from 2025 to 2026.
  • Change release month and day from 12/9 to 2/24.
  • Keep release hour and minute unchanged at 10:00.
cmake/Version.cmake
Bump major versions for core components and APIs to the next major release.
  • Increment common library major version from 2 to 3.
  • Increment common protocol API major version from 2 to 3.
  • Increment core service major version from 2 to 3.
  • Increment web component major version from 2 to 3.
  • Increment repository service major version from 2 to 3.
  • Increment authorization service major version from 2 to 3.
cmake/Version.cmake
Increment minor versions for Foxx-related components and bump Python client major version.
  • Increment Foxx component minor version from 2 to 3.
  • Increment Foxx API minor version from 2 to 3.
  • Increment Python client major version from 4 to 5 while keeping minor/patch and release type unchanged.
cmake/Version.cmake

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@JoshuaSBrown JoshuaSBrown merged commit ffa8322 into staging Feb 25, 2026
13 of 14 checks passed
@JoshuaSBrown JoshuaSBrown self-assigned this Feb 25, 2026
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