Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2 scripts/releaser/v1/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func updateCalendar(
for i, r := range rows {
if r.Major == newVer.Major && r.Minor == newVer.Minor {
rows[i].LatestRelease = fmt.Sprintf(
"[v%s](%s)",
"[%s](%s)",
newVer.String(),
fmt.Sprintf(releaseTagURLFmt, newVer.String()),
)
Expand Down
85 changes: 85 additions & 0 deletions 85 scripts/releaser/v1/docs_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
package v1 //nolint:testpackage // Tests unexported release helpers.

import "testing"

// TestUpdateCalendarLatestReleaseVersionPrefix checks the formatting of the
// "Latest Release" cell produced by updateCalendar. version.String() already
// includes a leading "v", so the link label must not add a second one, while
// the release tag URL keeps the "v" because tags are prefixed with it.
func TestUpdateCalendarLatestReleaseVersionPrefix(t *testing.T) {
t.Parallel()

tests := []struct {
name string
newVer version
channel string
want string
}{
{
name: "patch release",
newVer: version{Major: 2, Minor: 35, Patch: 1},
channel: "mainline",
want: "[v2.35.1](https://github.com/coder/coder/releases/tag/v2.35.1)",
},
{
name: "minor release",
newVer: version{Major: 2, Minor: 35, Patch: 0},
channel: "mainline",
want: "[v2.35.0](https://github.com/coder/coder/releases/tag/v2.35.0)",
},
}

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()

rows := []calendarRow{{
ReleaseName: "2.35",
Major: 2,
Minor: 35,
ReleaseDate: "February 03, 2026",
Status: "Mainline",
LatestRelease: "N/A",
}}

got := updateCalendar(rows, tt.newVer, tt.channel)

var cell string
for _, r := range got {
if r.Major == tt.newVer.Major && r.Minor == tt.newVer.Minor {
cell = r.LatestRelease
break
}
}

if cell != tt.want {
t.Fatalf("LatestRelease = %q, want %q", cell, tt.want)
}
})
}
}

// TestUpdateCalendarNotReleasedRowName checks that a "Not Released" row is
// promoted to "Mainline" with a major.minor "Release name" link (patch
// omitted) once its minor version is released.
func TestUpdateCalendarNotReleasedRowName(t *testing.T) {
t.Parallel()

rows := []calendarRow{{
ReleaseName: "2.36",
Major: 2,
Minor: 36,
Status: "Not Released",
LatestRelease: "N/A",
}}

got := updateCalendar(rows, version{Major: 2, Minor: 36, Patch: 0}, "mainline")

if got[0].Status != "Mainline" {
t.Errorf("Status = %q, want %q", got[0].Status, "Mainline")
}
const want = "[2.36](https://coder.com/changelog/coder-2-36)"
if got[0].ReleaseName != want {
t.Fatalf("ReleaseName = %q, want %q", got[0].ReleaseName, want)
}
}
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.