--- configuration/parser.go 2023-10-02 13:09:30.000000000 -0400 +++ configuration/parser.go 2025-02-04 15:23:06.588689000 -0500 @@ -10,5 +10,5 @@ "github.com/sirupsen/logrus" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" ) --- configuration/configuration_test.go 2023-10-02 13:09:30.000000000 -0400 +++ configuration/configuration_test.go 2025-02-04 15:23:55.324424000 -0500 @@ -11,5 +11,5 @@ . "gopkg.in/check.v1" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" ) --- vendor/github.com/yvasiyarov/gorelic/agent.go 2014-12-12 02:35:37.000000000 -0500 +++ vendor/github.com/yvasiyarov/gorelic/agent.go 2025-02-04 18:23:32.348173000 -0500 @@ -96,5 +96,5 @@ agent.plugin = newrelic_platform_go.NewNewrelicPlugin(agent.AgentVersion, agent.NewrelicLicense, agent.NewrelicPollInterval) - component := newrelic_platform_go.NewPluginComponent(agent.NewrelicName, agent.AgentGUID) + component := newrelic_platform_go.NewPluginComponent(agent.NewrelicName, agent.AgentGUID, true) agent.plugin.AddComponent(component)