Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8340387: Update OS detection code to recognize Windows Server 2025 #21082

Closed
wants to merge 1 commit into from

Conversation

MBaesken
Copy link
Member

@MBaesken MBaesken commented Sep 19, 2024

Windows Server 2025 will be releases in a few months.
The OS detection code of the JVM/JDK should recognize the new Windows server 2025 version.
(currently Windows server 2022 is printed , that is wrong)

The build numbers of some recent previews documented here
https://learn.microsoft.com/en-us/windows-server/get-started/whats-new-windows-server-2025
are 26080 and 26085 (final release version will most likely be a bit higher).


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8340387: Update OS detection code to recognize Windows Server 2025 (Bug - P3)

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/21082/head:pull/21082
$ git checkout pull/21082

Update a local copy of the PR:
$ git checkout pull/21082
$ git pull https://git.openjdk.org/jdk.git pull/21082/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 21082

View PR using the GUI difftool:
$ git pr show -t 21082

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/21082.diff

Webrev

Link to Webrev Comment

@bridgekeeper
Copy link

bridgekeeper bot commented Sep 19, 2024

👋 Welcome back mbaesken! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Sep 19, 2024

@MBaesken This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

8340387: Update OS detection code to recognize Windows Server 2025

Reviewed-by: mdoerr, jwaters, dholmes

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been 42 new commits pushed to the master branch:

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot changed the title JDK-8340387: Update OS detection code to recognize Windows Server 2025 8340387: Update OS detection code to recognize Windows Server 2025 Sep 19, 2024
@openjdk openjdk bot added the rfr Pull request is ready for review label Sep 19, 2024
@openjdk
Copy link

openjdk bot commented Sep 19, 2024

@MBaesken The following labels will be automatically applied to this pull request:

  • core-libs
  • hotspot-runtime

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@mlbridge
Copy link

mlbridge bot commented Sep 19, 2024

Webrevs

Copy link
Contributor

@TheRealMDoerr TheRealMDoerr left a comment

Choose a reason for hiding this comment

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

LGTM.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Sep 20, 2024
Copy link
Contributor

@TheShermanTanker TheShermanTanker left a comment

Choose a reason for hiding this comment

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

Windows changes look good to me (No idea why I specify Windows changes when all the code in this PR are Windows changes)

@jaikiran
Copy link
Member

jaikiran commented Sep 22, 2024

Hello Matthias, please give me a day or two to run this against our internal CI to make sure there are no unexpected issues.

Copy link
Member

@dholmes-ora dholmes-ora left a comment

Choose a reason for hiding this comment

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

Looks fine. Thanks

@jaikiran
Copy link
Member

Hello Matthias, please give me a day or two to run this against our internal CI to make sure there are no unexpected issues.

tier1, tier2, tier3 testing in our CI has completed successfully, so this looks OK.

@MBaesken
Copy link
Member Author

Thanks for the reviews !

/integrate

@openjdk
Copy link

openjdk bot commented Sep 23, 2024

Going to push as commit 34cddfb.
Since your change was applied there have been 43 commits pushed to the master branch:

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Sep 23, 2024
@openjdk openjdk bot closed this Sep 23, 2024
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Sep 23, 2024
@openjdk
Copy link

openjdk bot commented Sep 23, 2024

@MBaesken Pushed as commit 34cddfb.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@mjschwaiger
Copy link

@MBaesken Is this issue going to be backported to jdk17 (and jdk8) as well?

@MBaesken
Copy link
Member Author

MBaesken commented Nov 6, 2024

@MBaesken Is this issue going to be backported to jdk17 (and jdk8) as well?

Thanks for the reminder, I just started a backport to jdk17u-dev. Regarding jdk8 I don't know, no backport from me but maybe some jdk8 maintainers will do it.

@@ -1947,7 +1947,10 @@ void os::win32::print_windows_version(outputStream* st) {
// - 2016 GA 10/2016 build: 14393
// - 2019 GA 11/2018 build: 17763
// - 2022 GA 08/2021 build: 20348
if (build_number > 20347) {
// - 2025 Preview build : 26040
Copy link

@mjschwaiger mjschwaiger Nov 6, 2024

Choose a reason for hiding this comment

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

Just for the record, Microsoft released Windows Server 2025 on Nov 1st, 2025 and the official build number is 26100.

// - 2025 GA 11/2024 build: 26100
if (build_number > 26099) {
  st->print("Server 2025");

Reference: https://learn.microsoft.com/en-us/windows-server/get-started/windows-server-release-info

Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks this is what I got this week too from our Microsoft experts.
I added the info to this JBS bug 8340387.
With the the check present, we detect also some previews which is not bad imho.

@mjschwaiger
Copy link

@MBaesken Is this issue going to be backported to jdk17 (and jdk8) as well?

Thanks for the reminder, I just started a backport to jdk17u-dev. Regarding jdk8 I don't know, no backport from me but maybe some jdk8 maintainers will do it.

Thank you for responding and resolving this quickly.

And as noted above, Windows Server 2025 (build 26100) was released last week.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

6 participants