-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PD-1607 / 25.04 / Pd 1607 25 04 beta 1 release notes (#3499)
* Update SCALEReleaseNotes.md * Update UseScaleShell.md * Update SCALEReleaseNotes.md * Component versions redesign (#3494) * Update SCALEReleaseNotes.md * Create component_versions.yaml * Create component-versions.html * Update custom.css * Update SCALEReleaseNotes.md * Update SCALEReleaseNotes.md * Update SCALEReleaseNotes.md * Update scale-releases.yaml * Create UpgradeNotesBoilerplate.md * Update SCALEReleaseNotes.md * Update AddingNFSShares.md * Update 25.04FeatureList.md * Feature Flags Table improvements * Update scale-releases.yaml * Apply review suggestions * typo fix * Update words-to-ignore.txt * Update custom.css * Update SCALEReleaseNotes.md * Update words-to-ignore.txt * Add config restrictions * Update SCALEReleaseNotes.md * Update words-to-ignore.txt * Update SCALEReleaseNotes.md * Update SCALEReleaseNotes.md * Update UIConfigurationSCALE.md * Update SCALEReleaseNotes.md --------- Co-authored-by: Tim Moore <[email protected]>
- Loading branch information
Showing
16 changed files
with
248 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Works in conjunction with shortcodes/component-versions.html | ||
# The shortcode generates a table containing ordered component versions for each minor version release. | ||
|
||
# Add in component version information for each minor version release of a major version. | ||
# A major version can be individually called in release notes with {{< component-versions "##.##" >}} | ||
|
||
# Each list section (major_version, release_order, and release) should start with the latest and move toward older releases. | ||
# Insert new major or minor version release data above existing entries. | ||
|
||
major_version: | ||
"25.04": | ||
release_order: # list minor version releases in order, starting with the latest | ||
- "25.04-BETA.1" | ||
component_order: # list components in the order they should appear in the left column | ||
- "linux_kernel" | ||
- "openzfs" | ||
- "docker_engine" | ||
- "nvidia_driver" | ||
release: # include each release with component versions and links | ||
"25.04-BETA.1": | ||
components: | ||
linux_kernel: | ||
version: "6.12.9" | ||
link: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tag/?h=v6.12.9" | ||
openzfs: | ||
version: "2.3.0-1" | ||
link: "https://github.com/openzfs/zfs/releases/tag/zfs-2.3.0" | ||
docker_engine: | ||
version: "27.5.0" | ||
link: "https://docs.docker.com/engine/release-notes/27/#2750" | ||
nvidia_driver: | ||
version: "550.142" | ||
link: "https://www.nvidia.com/en-us/drivers/details/237853/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{{- $componentNames := dict "linux_kernel" "Linux Kernel" "openzfs" "OpenZFS" "docker_engine" "Docker Engine" "nvidia_driver" "NVIDIA Driver" -}} | ||
|
||
{{- $version := .Get 0 -}} | ||
{{- with .Site.Data.properties.component_versions.major_version -}} | ||
{{- $versionData := index . $version -}} | ||
|
||
<table class="component-versions-table"> | ||
<thead> | ||
<tr> | ||
<th></th> | ||
{{- range $releaseVersion := $versionData.release_order }} | ||
<th>{{ $releaseVersion }}</th> | ||
{{- end }} | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{{- range $componentName := $versionData.component_order }} | ||
<tr> | ||
<td>{{ index $componentNames $componentName }}</td> <!-- Human-readable name --> | ||
{{- range $releaseVersion := $versionData.release_order }} | ||
<td> | ||
<a href="{{ index (index $versionData.release $releaseVersion) "components" $componentName "link" }}"> | ||
{{ index (index $versionData.release $releaseVersion) "components" $componentName "version" }} | ||
</a> | ||
</td> | ||
{{- end }} | ||
</tr> | ||
{{- end }} | ||
</tbody> | ||
</table> | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div class="truetable"> | ||
<div class="truetable {{ .Get "class" }}"> | ||
{{ print .Inner | markdownify }} | ||
</div> | ||
</div> |
Oops, something went wrong.