Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore: cherry picks for release 2.21 #17206

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

Merged
merged 19 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ecd44f3
chore: bump vite from 5.4.14 to 5.4.15 in /site (#17101)
dependabot[bot] Mar 26, 2025
a63f5cc
chore: bump github.com/charmbracelet/glamour from 0.8.0 to 0.9.1 (#17…
dependabot[bot] Mar 26, 2025
68cf5d4
chore: bump github.com/spf13/afero from 1.12.0 to 1.14.0 (#16961)
dependabot[bot] Mar 26, 2025
d9e78b0
chore: bump github.com/coreos/go-oidc/v3 from 3.12.0 to 3.13.0 (#16964)
dependabot[bot] Mar 26, 2025
80fae1d
chore: bump github.com/chromedp/chromedp from 0.11.0 to 0.13.3 (#17072)
dependabot[bot] Mar 26, 2025
3dc3cf6
chore: bump google.golang.org/api from 0.221.0 to 0.227.0 (#17073)
dependabot[bot] Mar 26, 2025
90a7a2e
chore: bump the x group across 1 directory with 2 updates (#17103)
dependabot[bot] Mar 26, 2025
9d442f5
chore: migrate to github.com/coder/clistat (#17107)
DanielleMaywood Mar 26, 2025
cc32eea
feat(coderd): add webpush package (#17091)
johnstcn Mar 27, 2025
2704ad5
feat(site): add webpush notification serviceworker (#17123)
johnstcn Mar 27, 2025
b57d4b3
feat: add app status tracking to the backend (#17163)
kylecarbs Mar 31, 2025
f19e65c
feat(cli): add `coder exp mcp` command (#17066)
johnstcn Mar 31, 2025
4087d49
chore(mcp): fix test flakes (#17183)
johnstcn Apr 1, 2025
0d09f50
fix(mcp): report task status correctly (#17187)
johnstcn Apr 1, 2025
89571f5
fix(cli): exp mcp: remove unnecessary cli flag (#17190)
johnstcn Apr 1, 2025
ac3fe3f
feat: add frontend for app statuses (#17178)
kylecarbs Apr 1, 2025
918722c
fix: convert workspace id in db2sdk.WorkspaceAppStatus (#17201)
kylecarbs Apr 1, 2025
27926c4
feat(cli): implement exp mcp configure claude-code command (#17195)
johnstcn Apr 1, 2025
a254eb9
feat: set icons for each type of notification (#17115)
BrunoQuaresma Mar 31, 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 agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import (
"tailscale.com/util/clientmetric"

"cdr.dev/slog"
"github.com/coder/clistat"
"github.com/coder/coder/v2/agent/agentcontainers"
"github.com/coder/coder/v2/agent/agentexec"
"github.com/coder/coder/v2/agent/agentscripts"
Expand All @@ -44,7 +45,6 @@ import (
"github.com/coder/coder/v2/agent/proto/resourcesmonitor"
"github.com/coder/coder/v2/agent/reconnectingpty"
"github.com/coder/coder/v2/buildinfo"
"github.com/coder/coder/v2/cli/clistat"
"github.com/coder/coder/v2/cli/gitauth"
"github.com/coder/coder/v2/coderd/database/dbtime"
"github.com/coder/coder/v2/codersdk"
Expand Down
2 changes: 1 addition & 1 deletion agent/proto/resourcesmonitor/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package resourcesmonitor
import (
"golang.org/x/xerrors"

"github.com/coder/coder/v2/cli/clistat"
"github.com/coder/clistat"
)

type Statter interface {
Expand Down
2 changes: 1 addition & 1 deletion agent/proto/resourcesmonitor/fetcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"

"github.com/coder/clistat"
"github.com/coder/coder/v2/agent/proto/resourcesmonitor"
"github.com/coder/coder/v2/cli/clistat"
"github.com/coder/coder/v2/coderd/util/ptr"
)

Expand Down
Loading
Loading