Skip to content

Commit bd052bd

Browse files
Merge pull request #304 from nr-swilloughby/release_notes
updated version.go and release notes for 3.12.0
2 parents 39b6854 + 6b931d2 commit bd052bd

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## Unreleased
44

5+
## 3.12.0
6+
7+
### Changes
8+
* Updated `CHANGELOG.md` release notes language, to correct typographical errors and
9+
clean up grammar. [#289](https://github.com/newrelic/go-agent/issues/289)
10+
11+
### Fixed
12+
* When using DAX to query a dynamodb table, the New Relic instrumentation
13+
panics with a `nil dereference` error. This was due to the way that the
14+
request is made internally such that there is no `HTTPRequest.Header`
15+
defined, but one was expected. This correction checks for the existence
16+
of that header and takes an appropriate course of action if one is not
17+
found. [#287](https://github.com/newrelic/go-agent/issues/287) Thanks to
18+
@odannyc for reporting the issue and providing a pull request with a suggested
19+
fix.
20+
21+
### Support Statement
22+
* New Relic recommends that you upgrade the agent regularly to ensure that you're getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach [end-of-life](https://docs.newrelic.com/docs/using-new-relic/cross-product-functions/install-configure/notification-changes-new-relic-saas-features-distributed-software).
23+
524
## 3.11.0
625

726
### New Features

v3/newrelic/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
const (
1313
// Version is the full string version of this Go Agent.
14-
Version = "3.11.0"
14+
Version = "3.12.0"
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)