Skip to content
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

fix: changelog #3507

Merged
merged 2 commits into from
Sep 12, 2024
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v1.29.0 version update log
### Newly added
# v1.29.0 Release Notes
### Features
- [Service Management] Added permission control for service creation, service editing, generated version, online version, etc.
- [Service Management] Configuration supports variable rendering
- [Service Management] Configuration supports importing from configuration templates
Expand Down
61 changes: 0 additions & 61 deletions bcs-services/bcs-bscp/pkg/components/bkcmdb/bkcmdb.go

This file was deleted.

10 changes: 4 additions & 6 deletions bcs-services/bcs-bscp/pkg/thirdparty/esb/client/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ import (

// esbAuthTransport esb auth transport
type esbAuthTransport struct {
Transport http.RoundTripper
commParams *types.CommParams
authValue string
Transport http.RoundTripper
authValue string
}

// newEsbAuthTransport .
Expand All @@ -35,9 +34,8 @@ func newEsbAuthTransport(cfg *cc.Esb, transport http.RoundTripper) (http.RoundTr
return nil, err
}
t := &esbAuthTransport{
commParams: params,
authValue: string(value),
Transport: transport,
authValue: string(value),
Transport: transport,
}
return t, nil
}
Expand Down
Loading