-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adds code comments for functions, types, and properties fix: only send Digest challenge when realm is known feat: adds apf package feat: adds proxy support to client BREAKING CHANGE: rename module to github.com/open-amt-cloud-toolkit/go-wsman-messages/v2 BREAKING CHANGE: returns structured parsed responses from amt BREAKING CHANGE: moves amt, cim, ips into their own packages under wsman BREAKING CHANGE: refactors parameters for wsman.NewMessages into struct called client.Parameters BREAKING CHANGE: most types have been refactored to represent handle requests and responses with amt. refer to https://pkg.go.dev/github.com/open-amt-cloud-toolkit/go-wsman-messages/v2 for a complete list of updated types BREAKING CHANGE: adds option to enable logging of wsman messages Co-authored-by: zaidusmani26 <[email protected]> Co-authored-by: Mike <[email protected]> Co-authored-by: joko-sastriawan <[email protected]>
- Loading branch information
1 parent
8c7829f
commit 579cec5
Showing
614 changed files
with
38,982 additions
and
9,344 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*.exe | ||
**/*.xml | ||
coverage | ||
|
||
!**/wsmantesting/responses/**/*.xml |
Empty file.
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,14 +1,19 @@ | ||
module github.com/open-amt-cloud-toolkit/go-wsman-messages | ||
module github.com/open-amt-cloud-toolkit/go-wsman-messages/v2 | ||
|
||
go 1.20 | ||
|
||
require github.com/stretchr/testify v1.8.4 | ||
require ( | ||
github.com/google/uuid v1.4.0 | ||
github.com/stretchr/testify v1.8.4 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
require golang.org/x/sys v0.13.0 // indirect | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gorilla/websocket v1.5.1 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
) |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.