Skip to content

Commit 70e93f8

Browse files
authored
Merge branch 'master' into bump-go-immutable-radix
2 parents b3a7256 + 0ec7440 commit 70e93f8

29 files changed

+146
-23
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MIT
3+
14
version: 2.1
25

36
orbs:

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MIT
3+
14
language: go
25

36
go:

circonus/circonus.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
// Circonus Metrics Sink
25

36
package circonus

circonus/circonus_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
package circonus
25

36
import (

const_js.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
package metrics
25

36
const (

const_unix.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
//go:build !windows && !js
25
// +build !windows,!js
36

const_windows.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
// +build windows
25

36
package metrics

datadog/dogstatsd.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
package datadog
25

36
import (

datadog/dogstatsd_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MIT
3+
14
package datadog
25

36
import (

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ require (
66
github.com/DataDog/datadog-go v3.2.0+incompatible
77
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible
88
github.com/circonus-labs/circonusllhist v0.1.3 // indirect
9-
github.com/golang/protobuf v1.3.2
9+
github.com/golang/protobuf v1.4.3
1010
github.com/hashicorp/go-immutable-radix v1.3.1
1111
github.com/hashicorp/go-retryablehttp v0.5.3 // indirect
1212
github.com/pascaldekloe/goe v0.1.0
13-
github.com/prometheus/client_golang v1.4.0
13+
github.com/prometheus/client_golang v1.11.1
1414
github.com/prometheus/client_model v0.2.0
15-
github.com/prometheus/common v0.9.1
15+
github.com/prometheus/common v0.26.0
1616
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect
1717
)
1818

0 commit comments

Comments
 (0)