Skip to content

Commit

Permalink
hotfix nrwriter packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
iamemilio committed Sep 16, 2022
1 parent 5a8fcd0 commit 6c351a0
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -105,7 +105,7 @@ jobs:
dirs: v3/integrations/logcontext-v2/nrzerolog
extratesting: go get -u github.com/rs/zerolog@master
- go-version: 1.17.x
dirs: v3/internal/logcontext/nrWriter
dirs: v3/integrations/logcontext-v2/nrwriter
- go-version: 1.17.x
dirs: v3/integrations/logcontext-v2/zerologWriter
extratesting: go get -u github.com/rs/zerolog@master
Expand Down
5 changes: 4 additions & 1 deletion v3/integrations/logcontext-v2/logWriter/go.mod
Expand Up @@ -2,4 +2,7 @@ module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter

go 1.17

require github.com/newrelic/go-agent/v3 v3.19.0
require (
github.com/newrelic/go-agent/v3 v3.19.0
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0
)
3 changes: 2 additions & 1 deletion v3/integrations/logcontext-v2/logWriter/log-writer.go
Expand Up @@ -4,7 +4,8 @@ import (
"context"
"io"

"github.com/newrelic/go-agent/v3/internal/logcontext/nrwriter"
"github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter"
"github.com/newrelic/go-agent/v3/internal"
"github.com/newrelic/go-agent/v3/newrelic"
)

Expand Down
10 changes: 10 additions & 0 deletions v3/integrations/logcontext-v2/nrlogrus/go.mod
Expand Up @@ -6,3 +6,13 @@ require (
github.com/newrelic/go-agent/v3 v3.18.0
github.com/sirupsen/logrus v1.8.1
)

require (
github.com/golang/protobuf v1.4.3 // indirect
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
golang.org/x/text v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/grpc v1.39.0 // indirect
google.golang.org/protobuf v1.25.0 // indirect
)
5 changes: 5 additions & 0 deletions v3/integrations/logcontext-v2/nrwriter/go.mod
@@ -0,0 +1,5 @@
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter

go 1.17

require github.com/newrelic/go-agent/v3 v3.19.0
File renamed without changes.
1 change: 1 addition & 0 deletions v3/integrations/logcontext-v2/zerologWriter/go.mod
Expand Up @@ -4,5 +4,6 @@ go 1.17

require (
github.com/newrelic/go-agent/v3 v3.19.0
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0
github.com/rs/zerolog v1.27.0
)
Expand Up @@ -5,7 +5,8 @@ import (
"io"
"strings"

"github.com/newrelic/go-agent/v3/internal/logcontext/nrwriter"
"github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter"
"github.com/newrelic/go-agent/v3/internal"
"github.com/newrelic/go-agent/v3/newrelic"
"github.com/rs/zerolog"
)
Expand Down

0 comments on commit 6c351a0

Please sign in to comment.