-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db6c311
commit 2076a01
Showing
107 changed files
with
786 additions
and
1,117 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ workflows: | |
workflow: | ||
jobs: | ||
- go-test: | ||
name: Go 1.17 | ||
docker-image: cimg/go:1.17 | ||
name: Go 1.19 | ||
docker-image: cimg/go:1.19 | ||
run-lint: true | ||
with-coverage: true | ||
- go-test: | ||
name: Go 1.16 | ||
docker-image: cimg/go:1.16 | ||
name: Go 1.18 | ||
docker-image: cimg/go:1.18 | ||
- go-test-windows: | ||
name: Windows | ||
- benchmarks | ||
|
@@ -42,7 +42,7 @@ jobs: | |
|
||
- run: | ||
name: install go-junit-report | ||
command: go get -u github.com/jstemmer/go-junit-report | ||
command: go install github.com/jstemmer/go-junit-report/[email protected] | ||
|
||
- when: | ||
condition: <<parameters.run-lint>> | ||
|
@@ -100,14 +100,14 @@ jobs: | |
steps: | ||
- checkout | ||
- run: | ||
name: download Go 1.16.14 | ||
name: download Go 1.18.5 | ||
command: | | ||
$ErrorActionPreference = "Stop" | ||
$installerUrl = "https://go.dev/dl/go1.16.14.windows-amd64.msi" | ||
(New-Object System.Net.WebClient).DownloadFile($installerUrl, "go1.16.14.windows-amd64.msi") | ||
$installerUrl = "https://go.dev/dl/go1.18.5.windows-amd64.msi" | ||
(New-Object System.Net.WebClient).DownloadFile($installerUrl, "go1.18.5.windows-amd64.msi") | ||
- run: | ||
name: install Go 1.16.14 | ||
command: Start-Process msiexec.exe -Wait -ArgumentList "/I go1.16.14.windows-amd64.msi /quiet" | ||
name: install Go 1.18.5 | ||
command: Start-Process msiexec.exe -Wait -ArgumentList "/I go1.18.5.windows-amd64.msi /quiet" | ||
- run: go version | ||
- run: | ||
name: build and test | ||
|
@@ -117,7 +117,7 @@ jobs: | |
benchmarks: | ||
docker: | ||
- image: cimg/go:1.14 | ||
- image: cimg/go:1.19 | ||
environment: | ||
CIRCLE_ARTIFACTS: /tmp/circle-artifacts | ||
|
||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ branches: | |
|
||
jobs: | ||
- docker: | ||
image: golang:1.16-buster | ||
image: golang:1.18-buster | ||
template: | ||
name: go | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,37 @@ | ||
module github.com/launchdarkly/go-server-sdk/v6 | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/gregjones/httpcache v0.0.0-20171119193500-2bcd89a1743f | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/launchdarkly/ccache v1.1.0 | ||
github.com/launchdarkly/eventsource v1.6.2 | ||
github.com/launchdarkly/go-jsonstream/v2 v2.0.0 | ||
github.com/launchdarkly/go-jsonstream/v3 v3.0.0 | ||
github.com/launchdarkly/go-ntlm-proxy-auth v1.0.1 | ||
github.com/launchdarkly/go-sdk-common/v3 v3.0.0-alpha.pub.11 | ||
github.com/launchdarkly/go-sdk-events/v2 v2.0.0-alpha.pub.6 | ||
github.com/launchdarkly/go-server-sdk-evaluation/v2 v2.0.0-alpha.pub.6 | ||
github.com/launchdarkly/go-test-helpers/v2 v2.3.1 | ||
github.com/launchdarkly/go-sdk-common/v3 v3.0.0-alpha.pub.13 | ||
github.com/launchdarkly/go-sdk-events/v2 v2.0.0-alpha.pub.7 | ||
github.com/launchdarkly/go-server-sdk-evaluation/v2 v2.0.0-alpha.pub.7 | ||
github.com/launchdarkly/go-test-helpers/v3 v3.0.2 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/stretchr/testify v1.6.1 | ||
golang.org/x/exp v0.0.0-20220823124025-807a23277127 | ||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e | ||
golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/ghodss/yaml.v1 v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/uuid v1.1.1 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/launchdarkly/go-ntlmssp v1.0.1 // indirect | ||
github.com/launchdarkly/go-semver v1.0.2 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9 // indirect | ||
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // 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 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
Oops, something went wrong.