Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7017cd0
Update version.txt
mitchell-as Nov 19, 2025
c15fb2b
Replace mholt/archiver with mholt/archives.
mitchell-as Nov 20, 2025
6cd746c
Pass blob readers to unarchivers rather than having a dedicated blob …
mitchell-as Nov 20, 2025
a45a00f
Fixed unarchiving of links.
mitchell-as Nov 20, 2025
b1597d5
Try to fix hardlink failures.
mitchell-as Nov 20, 2025
c5ae974
Use correct []byte reader interface.
mitchell-as Nov 20, 2025
4c6c55c
ProxyReader needs to implement io.Seeker for unpacking zip archives.
mitchell-as Nov 20, 2025
e46897b
Merge pull request #3760 from ActiveState/mitchell/cp-1080
mitchell-as Nov 24, 2025
e23a2c2
Address CVEs.
mitchell-as Nov 24, 2025
d62a88f
Merge pull request #3759 from ActiveState/mitchell/cp-1251
mitchell-as Nov 24, 2025
c28680c
Placate check-format
mitchell-as Nov 24, 2025
d117943
Merge pull request #3762 from ActiveState/mitchell/placate-check-format
mitchell-as Nov 24, 2025
f909b96
Update macOS runner.
mitchell-as Nov 24, 2025
343ef66
Merge pull request #3764 from ActiveState/mitchell/cp-1253
mitchell-as Nov 24, 2025
bc9d936
Updated golangci-lint dev dependency and migrated config.
mitchell-as Nov 25, 2025
72a5057
Allow performance tests to run for up to a minute.
mitchell-as Nov 25, 2025
12e2f60
Merge pull request #3767 from ActiveState/mitchell/cp-1130
mitchell-as Nov 26, 2025
d9b27fd
Merge pull request #3766 from ActiveState/mitchell/cp-1171
mitchell-as Dec 1, 2025
66ba1bf
Updated changelog for 0.48.1.
mitchell-as Dec 3, 2025
5f3918d
Merge pull request #3770 from ActiveState/mitchell/0-48-1-changelog
mitchell-as Dec 3, 2025
560d8fb
Updated GitHub Actions to Go 1.24.
mitchell-as Dec 3, 2025
565fe45
Merge pull request #3773 from ActiveState/mitchell/github-actions-go-…
mitchell-as Dec 3, 2025
4f1a2c1
Updated Go to 1.24.11 to remediate CVEs.
mitchell-as Dec 4, 2025
9c6c310
Merge pull request #3776 from ActiveState/mitchell/cp-1261
mitchell-as Dec 4, 2025
b8cf48e
Merge branch 'beta' into version/0-48-1-RC1
mitchell-as Dec 4, 2025
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 .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.24.6
- 1.24.11
sys:
- { os: ubuntu-latest }
- { os: macos-15-intel, shell: zsh }
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ActiveState/cli

go 1.24.9
go 1.24.11

require (
github.com/99designs/gqlgen v0.17.54
Expand Down
Loading