Skip to content

Commit

Permalink
Banner to mention JDK21 delay (#2253)
Browse files Browse the repository at this point in the history
* Banner to mention JDK21 delay

Signed-off-by: Stewart X Addison <[email protected]>

* Update src/components/Banner/index.tsx

I added that in to try and make the formatting look better as it didn't look like there was a clear space before the hyperlink but sine it didn't seem to make a difference I'll take this change ;-)

Co-authored-by: Shelley Lambert <[email protected]>

---------

Signed-off-by: Stewart X Addison <[email protected]>
Co-authored-by: Shelley Lambert <[email protected]>
  • Loading branch information
sxa and smlambert authored Sep 25, 2023
1 parent f2554a4 commit 2d25086
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions src/components/Banner/index.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
import React from 'react';

const Banner = () => {
return null;
// return null;

// The following is an example that can be used for future code freezes
// Comment Out The Above Line ( return null ; ) and uncomment the below

// return (
// <div className="alert text-white alert-dismissible fade show mb-0 text-center" style={{ backgroundColor: '#ff1464' }} role="alert">
// <strong className='p-1'>18th of July 2023:</strong>
// We are creating the July 2023 PSU binaries for Eclipse Temurin 8u382, 11.0.20, 17.0.8 and 20.0.2
// You can track progress
// <a
// href="https://github.com/adoptium/adoptium/issues/239"
// target='_blank'
// rel='noopener noreferrer'
// className="alert-link p-1 text-white"
// >by platforms</a>.
// <button type="button" className="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
// </div>
// );
return (
<div className="alert text-white alert-dismissible fade show mb-0 text-center" style={{ backgroundColor: '#ff1464' }} role="alert">
<strong className='p-1'>25th of September 2023:</strong>
We are awaiting access to the new Java 21's specification tests
before formally releasing Temurin 21. In the meantime
<a href="https://adoptium.net/blog/2023/08/early-access-builds/"> early
access builds</a> (untested and not for production use) can be downloaded
from <a href="https://adoptium.net/temurin/nightly/?version=21">here</a> or
from <a href="http://api.adoptium.net/">our API</a>.
<button type="button" className="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
);
};

export default Banner;

0 comments on commit 2d25086

Please sign in to comment.