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

JDK-8319413: Start of release updates for JDK 23 #16505

Closed
wants to merge 22 commits into from

Conversation

jddarcy
Copy link
Member

@jddarcy jddarcy commented Nov 3, 2023

Time to start making preparations for JDK 23.


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change requires CSR request JDK-8319428 to be approved
  • Change requires CSR request JDK-8319426 to be approved
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change requires CSR request JDK-8319427 to be approved

Issues

  • JDK-8319413: Start of release updates for JDK 23 (Bug - P4)
  • JDK-8319414: Add SourceVersion.RELEASE_23 (Sub-task - P4)
  • JDK-8319416: Add source 23 and target 23 to javac (Sub-task - P4)
  • JDK-8319428: Start of release updates for JDK 23 (CSR)
  • JDK-8319427: Add SourceVersion.RELEASE_23 (CSR)
  • JDK-8319426: Add source 23 and target 23 to javac (CSR)

Reviewers

Reviewing

Using git

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

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

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 16505

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

Using diff file

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

Webrev

Link to Webrev Comment

@jddarcy jddarcy marked this pull request as draft November 3, 2023 23:42
@jddarcy
Copy link
Member Author

jddarcy commented Nov 3, 2023

/issue add JDK-8319414

@jddarcy
Copy link
Member Author

jddarcy commented Nov 3, 2023

/issue add JDK-8319416

@bridgekeeper
Copy link

bridgekeeper bot commented Nov 3, 2023

👋 Welcome back darcy! 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 openjdk bot added the csr Pull request needs approved CSR before integration label Nov 3, 2023
@openjdk
Copy link

openjdk bot commented Nov 3, 2023

@jddarcy
Adding additional issue to issue list: 8319414: Add SourceVersion.RELEASE_23.

@openjdk
Copy link

openjdk bot commented Nov 3, 2023

@jddarcy
Adding additional issue to issue list: 8319416: Add source 23 and target 23 to javac.

@openjdk
Copy link

openjdk bot commented Nov 3, 2023

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

  • build
  • compiler
  • 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.

@openjdk openjdk bot added hotspot-runtime hotspot-runtime-dev@openjdk.org build build-dev@openjdk.org core-libs core-libs-dev@openjdk.org compiler compiler-dev@openjdk.org labels Nov 3, 2023
@openjdk openjdk bot removed the csr Pull request needs approved CSR before integration label Nov 8, 2023
@jddarcy jddarcy marked this pull request as ready for review November 27, 2023 18:40
@openjdk openjdk bot added the rfr Pull request is ready for review label Nov 27, 2023
@jddarcy
Copy link
Member Author

jddarcy commented Nov 27, 2023

Nothing exception in this batch of start-of-release updates. Clean local testing results on tier 1.

The symbol files correspond to JDK 22 build 25 and will be updated with subsequent builds as usual.

@mlbridge
Copy link

mlbridge bot commented Nov 27, 2023

Webrevs

@openjdk
Copy link

openjdk bot commented Nov 27, 2023

@jddarcy 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:

8319413: Start of release updates for JDK 23
8319414: Add SourceVersion.RELEASE_23
8319416: Add source 23 and target 23 to javac

Reviewed-by: iris, erikj, alanb, vromero

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 no new commits pushed to the master branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential 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 added the ready Pull request is ready to be integrated label Nov 27, 2023
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.

Hotspot change is trivially fine, but too insignificant to hit the Approve button.

Thanks

Copy link
Member

@erikj79 erikj79 left a comment

Choose a reason for hiding this comment

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

Build changes look good.

@jddarcy
Copy link
Member Author

jddarcy commented Dec 2, 2023

Looks good. I assume you'll bump the copyright header on the files that need it before integration, e.g. JavacTestingAbstractProcessor.

Right; I run a script to update the years of modified files.

@@ -93,6 +94,7 @@ static enum SourceTarget {
TWENTY(false, "64.0", "20"),
TWENTY_ONE(false,"65.0", "21"),
TWENTY_TWO(false,"66.0", "22"),
TWENTY_THREE(false,"67.0", "23"),
Copy link
Member

Choose a reason for hiding this comment

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

As alignment is broken anyway, let's add space

Suggested change
TWENTY_THREE(false,"67.0", "23"),
TWENTY_THREE(false, "67.0", "23"),

Copy link
Member

Choose a reason for hiding this comment

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

If you're going to add the space, I'd consider establishing new alignment at TWENTY to accommodate the eventual space needed for "THREE", "SEVEN", and "EIGHT". You wouldn't need to reset alignment for quite some time after that.

@@ -93,6 +94,7 @@ static enum SourceTarget {
TWENTY(false, "64.0", "20"),
TWENTY_ONE(false,"65.0", "21"),
TWENTY_TWO(false,"66.0", "22"),
TWENTY_THREE(false,"67.0", "23"),
Copy link
Member

Choose a reason for hiding this comment

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

If you're going to add the space, I'd consider establishing new alignment at TWENTY to accommodate the eventual space needed for "THREE", "SEVEN", and "EIGHT". You wouldn't need to reset alignment for quite some time after that.

@jddarcy
Copy link
Member Author

jddarcy commented Dec 7, 2023

/integrate delegate

@openjdk openjdk bot added the delegated label Dec 7, 2023
@openjdk
Copy link

openjdk bot commented Dec 7, 2023

@jddarcy Integration of this pull request has been delegated and may be completed by any project committer using the /integrate pull request command.

@JesperIRL
Copy link
Member

/integrate

@openjdk
Copy link

openjdk bot commented Dec 7, 2023

Going to push as commit 519ecd3.
Since your change was applied there have been 17 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 Dec 7, 2023
@openjdk openjdk bot closed this Dec 7, 2023
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review delegated labels Dec 7, 2023
@openjdk
Copy link

openjdk bot commented Dec 7, 2023

@JesperIRL Pushed as commit 519ecd3.

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

@jddarcy jddarcy deleted the JDK-8319413 branch October 27, 2024 18:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build build-dev@openjdk.org compiler compiler-dev@openjdk.org core-libs core-libs-dev@openjdk.org hotspot-runtime hotspot-runtime-dev@openjdk.org integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

9 participants