Skip to content

Upgrade parent to v26.1#999

Merged
antoinebhs merged 2 commits into
mainfrom
upgrade-parent-v26.1
May 28, 2026
Merged

Upgrade parent to v26.1#999
antoinebhs merged 2 commits into
mainfrom
upgrade-parent-v26.1

Conversation

@antoinebhs
Copy link
Copy Markdown
Contributor

Upgrade parent to v26.1

Signed-off-by: BOUHOURS Antoine <antoine.bouhours@rte-france.com>
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 27, 2026

Review Change Stack

📝 Walkthrough

Walkthrough

The Maven parent version in pom.xml is updated from 26 to 26.1, which updates the inherited build configuration, dependency management, and plugin management from the parent POM.

Changes

Parent POM Configuration

Layer / File(s) Summary
Parent version bump
pom.xml
Maven parent version is updated from 26 to 26.1 to inherit the new parent build configuration and dependency/plugin management.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: upgrading the parent POM version from 26 to 26.1, which matches the changeset exactly.
Description check ✅ Passed The description directly describes the changeset by stating the parent version upgrade, matching the single modification in pom.xml.
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.

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


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.

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 `@pom.xml`:
- Line 16: Update and validate the parent POM change to
com.powsybl:powsybl-parent-ws:26.1 by confirming the artifact is resolvable in
your build environment, then assess impact of the bumped properties
maven.spring-boot.version (3.4.9→3.5.11) and liquibase.version (4.29.2→4.31.1)
by reviewing the parent POM for breaking changes and property overrides, running
the full test suite (unit, integration, and DB migration tests) and any
Liquibase changelog validations, and addressing incompatibilities (Spring Boot
or Liquibase API changes, dependency version conflicts, or migration behavior)
in the code or dependency management (e.g., overriding properties or updating
modules) until tests pass.
🪄 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: CHILL

Plan: Pro

Run ID: 8abdbd5e-2cbb-489a-b59c-ef39ae1f39d8

📥 Commits

Reviewing files that changed from the base of the PR and between 3f00799 and b98f070.

📒 Files selected for processing (1)
  • pom.xml

Comment thread pom.xml
<groupId>com.powsybl</groupId>
<artifactId>powsybl-parent-ws</artifactId>
<version>26</version>
<version>26.1</version>
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 | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🌐 Web query:

powsybl-parent-ws version 26.1 Maven release notes

💡 Result:

I couldn’t find any “powsybl-parent-ws 26.1” Maven release notes. What I found instead: 1) Maven Central / Sonatype shows powsybl-parent-ws versions only up to 22 (and older); there is no 26.1 version listed for the powsybl-parent-ws artifact. [1] 2) The powsybl GitHub repository’s “powsybl-parent-ws” is described as a web-services parent pom (via Spring + Jib), but release-notes content for a 26.1 tag/version isn’t present in the sources I located. [2] If you meant a different artifact (for example a different “parent” or a module under powsybl-ws-*), tell me the exact Maven coordinates (groupId/artifactId/version) and I can re-run the search for the correct 26.1 release notes.

Citations:


🏁 Script executed:

#!/bin/bash
# Description: Verify that the parent POM version exists and can be resolved

# Attempt to download the parent POM to verify it exists
curl -s -f -I "https://repo1.maven.org/maven2/com/powsybl/powsybl-parent-ws/26.1/powsybl-parent-ws-26.1.pom" > /dev/null 2>&1

if [ $? -eq 0 ]; then
  echo "✓ Parent POM version 26.1 exists in Maven Central"
  
  # Fetch and display basic info about the POM
  curl -s "https://repo1.maven.org/maven2/com/powsybl/powsybl-parent-ws/26.1/powsybl-parent-ws-26.1.pom" | head -n 30
else
  echo "✗ Parent POM version 26.1 not found in Maven Central"
  echo "Checking available versions..."
  curl -s "https://repo1.maven.org/maven2/com/powsybl/powsybl-parent-ws/maven-metadata.xml" | grep -A 100 "<versions>"
fi

Repository: gridsuite/study-server

Length of output: 1239


🏁 Script executed:

#!/bin/bash
set -euo pipefail

BASE="https://repo1.maven.org/maven2/com/powsybl/powsybl-parent-ws"
echo "== Maven metadata =="
curl -s "$BASE/maven-metadata.xml" | sed -n '1,160p'

echo "== Try fetch 26 (parent version in project) =="
for v in 26 26.1; do
  url="$BASE/$v/powsybl-parent-ws-$v.pom"
  echo "--- HEAD $url"
  if curl -s -f -I "$url" >/dev/null; then
    echo "OK $v"
  else
    echo "MISSING $v"
  fi
done

echo "== Extract key version properties from 26 and 26.1 POMs =="
for v in 26 26.1; do
  url="$BASE/$v/powsybl-parent-ws-$v.pom"
  echo "## $v"
  curl -s "$url" | rg -n --no-heading -S \
    "(spring-boot\\.version|jib\\.version|maven\\.[a-zA-Z0-9_.-]*\\.version|pluginManagement|dependencyManagement|<properties>|<build>|<plugin>)" \
    | head -n 200
done

echo "== Compare: show differing lines (small excerpt) =="
# Use unified diff limited to first ~200 lines to avoid noise.
tmp26="/tmp/powsybl-parent-ws-26.pom"
tmp261="/tmp/powsybl-parent-ws-26.1.pom"
curl -s "$BASE/26/powsybl-parent-ws-26.pom" > "$tmp26" || true
curl -s "$BASE/26.1/powsybl-parent-ws-26.1.pom" > "$tmp261" || true
if [ -s "$tmp26" ] && [ -s "$tmp261" ]; then
  diff -u "$tmp26" "$tmp261" | head -n 220
else
  echo "Cannot diff: one of the POMs missing."
fi

Repository: gridsuite/study-server

Length of output: 5782


🌐 Web query:

powsybl-parent-ws 26.1 changelog

💡 Result:

As of May 28, 2026, there is no official release or changelog for a "powsybl-parent-ws 26.1" [1][2]. The PowSyBl project uses a release train system [2][3], and its versioning does not follow a "26.1" schema. For example, recent PowSyBl project releases have used formats like 2026.0.0 for dependencies [2] or specific version numbers for core components like 7.1.1 [4]. It is possible that "26.1" is being confused with other software releases from April/May 2026 that utilize that specific versioning, such as Webswing 26.1 [5] or Pip 26.1 [6]. If you are looking for configuration information for the powsybl-parent-ws Maven module, you can find the project repository on GitHub [1], where it serves as a parent POM providing Spring Boot and Jib integration for PowSyBl web service projects [1].

Citations:


🌐 Web query:

powsybl 26.1 release notes

💡 Result:

As of May 28, 2026, there is no "powsybl 26.1" release. The PowSyBl project operates on a release train schedule, and its current release is version 2026.0.0, which was released in April 2026 [1][2][3]. According to the official PowSyBl roadmap, the 2026.1 release train is planned for June 18, 2026 [1]. It is possible the query was confused with other software releases occurring in the same timeframe, such as Webswing 26.1 (released in April 2026) [4] or TURBOdesign Suite 2026.1 (released in May 2026) [5].

Citations:


Confirm Maven parent com.powsybl:powsybl-parent-ws:26.1 availability and assess impact (Spring Boot/Liquibase upgrades)

com.powsybl:powsybl-parent-ws:26.1 is published in Maven Central; however, the parent POM change is not trivial: it bumps maven.spring-boot.version from 3.4.9 → 3.5.11 and liquibase.version from 4.29.2 → 4.31.1. No specific 26.1 release notes/changelog were found, so validate compatibility by reviewing the parent POM impact and running the project’s test suite (including any DB/migration checks). (pom.xml, line 16)

🤖 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 `@pom.xml` at line 16, Update and validate the parent POM change to
com.powsybl:powsybl-parent-ws:26.1 by confirming the artifact is resolvable in
your build environment, then assess impact of the bumped properties
maven.spring-boot.version (3.4.9→3.5.11) and liquibase.version (4.29.2→4.31.1)
by reviewing the parent POM for breaking changes and property overrides, running
the full test suite (unit, integration, and DB migration tests) and any
Liquibase changelog validations, and addressing incompatibilities (Spring Boot
or Liquibase API changes, dependency version conflicts, or migration behavior)
in the code or dependency management (e.g., overriding properties or updating
modules) until tests pass.

@sonarqubecloud
Copy link
Copy Markdown

@antoinebhs antoinebhs merged commit 159ad86 into main May 28, 2026
4 of 8 checks passed
@antoinebhs antoinebhs deleted the upgrade-parent-v26.1 branch May 28, 2026 11:42
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.

2 participants