aboutsummaryrefslogtreecommitdiffstats
path: root/go.sum
AgeCommit message (Collapse)AuthorFilesLines
2022-05-30test: Fix test dependancyNathan Skrzypczak1-5/+100
This patch updates the go.mod with missing dependancies for running `make test` It also addresses an issue in `proxy/server.go` where make test would complain of the double newline at the end of the message. Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com> Change-Id: Ia2b00ffa9ecc398ee0ff6af165141f04b0025d61
2022-05-16go.mod: Update for go1.18 & bump to go 1.13Nathan Skrzypczak1-16/+2
This patch updates the go.mod & go.sum as the build was breaking with go1.18. It also bumps the required go version to 1.13 as -trimpath was introduced in 1.13 only. Tested `make build` with : - go 1.13 - go 1.17.10 - go 1.18.1 Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com> Change-Id: I8790e9b46757cb740c69042f6b72419e960f5d9a
2020-10-02Check retval value and convert to error in generated RPC client codeOndrej Fabry1-4/+5
Change-Id: I816b4802cb5fc46239f6db0480fa4cf3645fe2f0 Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
2020-06-16Optimize socketclient adapter and add various code improvementsOndrej Fabry1-6/+13
This commit includes: Features - optimized [socketclient](adapter/socketclient) adapter and add method to set client name - added list of compatible messages to `CompatibilityError` Fixes - `MsgCodec` will recover panic occurring during a message decoding - calling `Unsubscibe` will close the notification channel Other - improved log messages to provide more relevant info Examples - added more code samples of working with unions in [union example](examples/union-example) - added profiling mode to [perf bench](examples/perf-bench) example - improved [simple client](examples/simple-client) example to work properly even with multiple runs Dependencies - updated `github.com/sirupsen/logrus` dep to `v1.6.0` - updated `github.com/lunixbochs/struc` dep to `v0.0.0-20200521075829-a4cb8d33dbbe` Change-Id: I136a3968ccf9e93760d7ee2b9902fc7e6390a09d Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
2020-01-27Update jsongo depOndrej Fabry1-2/+2
Change-Id: I10dfbaa38de67835a84f5112d6b16bbe466c3bfe Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
2019-11-05Begin development of next release 0.3.0Ondrej Fabry1-2/+0
- update info in package ./version - update to Go 1.13 - regenerate ./examples/binapi for latest VPP: 19.08.1-release - clean code in proxy - refactor Makefile Change-Id: Ibf5c2682c2f4b3cbbea4aa1e35d3f02175d40a9b Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
2019-10-30fix data races in proxy serverMatus Mrekaj1-0/+2
Signed-off-by: Matus Mrekaj <matus.mrekaj@pantheon.tech> Change-Id: I932d560548ee816e28683243a7318a2a7fbbb24a
2019-08-02Migrate to modules, refactor Makefile and use Travis for CIOndrej Fabry1-0/+42
- migrate to Go modules and remove vendor - refactor Makefile - add version package and store version - split extras from the rest - use travis for CI Change-Id: I81b35220653b0f7c9a0fcdd4c527d691ec1e96c1 Signed-off-by: Ondrej Fabry <ofabry@cisco.com>