newrelic 7.0.0 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/NEWS.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 7.0.1 (2020-11-07):
2
+
3
+ * Fixed a bug where spans queued up during backpressure situations would be improperly formatted and ultimately dropped when sent to an Infinite Tracing trace observer.
4
+ * Updated @grpc/grpc-js to version v1.2.0.
5
+ * Updated tap to clear up npm audit issues around lodash sub-dependency.
6
+
1
7
  ### 7.0.0 (2020-11-09):
2
8
 
3
9
  * Added official parity support for Node 14
@@ -68,15 +68,12 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
68
68
  * [through](#through)
69
69
  * [when](#when)
70
70
 
71
- **[additional-licenses](#additional-licenses)**
72
-
73
- * [symantec](#symantec)
74
71
 
75
72
  ## dependencies
76
73
 
77
74
  ### @grpc/grpc-js
78
75
 
79
- This product includes source derived from [@grpc/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) ([v1.1.7](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/tree/v1.1.7)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/blob/v1.1.7/LICENSE):
76
+ This product includes source derived from [@grpc/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) ([v1.2.0](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/tree/v1.2.0)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/blob/v1.2.0/LICENSE):
80
77
 
81
78
  ```
82
79
  Apache License
@@ -2888,7 +2885,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2888
2885
 
2889
2886
  ### tap
2890
2887
 
2891
- This product includes source derived from [tap](https://github.com/tapjs/node-tap) ([v14.10.7](https://github.com/tapjs/node-tap/tree/v14.10.7)), distributed under the [ISC License](https://github.com/tapjs/node-tap/blob/v14.10.7/LICENSE):
2888
+ This product includes source derived from [tap](https://github.com/tapjs/node-tap) ([v14.10.8](https://github.com/tapjs/node-tap/tree/v14.10.8)), distributed under the [ISC License](https://github.com/tapjs/node-tap/blob/v14.10.8/LICENSE):
2892
2889
 
2893
2890
  ```
2894
2891
  The ISC License
@@ -3000,6 +2997,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3000
2997
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3001
2998
  ```
3002
2999
 
3000
+
3003
3001
  ## additional-licenses
3004
3002
 
3005
3003
  ### symantec
@@ -128,7 +128,7 @@ class SpanStreamer {
128
128
  // to clear the queue
129
129
  while (this.spans.length > 0 && this._writable) {
130
130
  const nextObject = this.spans.shift()
131
- this.send(nextObject)
131
+ this.send(nextObject.toStreamingFormat())
132
132
  }
133
133
 
134
134
  logger.trace(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newrelic",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "author": "New Relic Node.js agent team <nodejs@newrelic.com>",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [
@@ -142,7 +142,7 @@
142
142
  "newrelic-naming-rules": "./bin/test-naming-rules.js"
143
143
  },
144
144
  "dependencies": {
145
- "@grpc/grpc-js": "1.1.7",
145
+ "@grpc/grpc-js": "1.2.0",
146
146
  "@grpc/proto-loader": "^0.5.5",
147
147
  "@newrelic/aws-sdk": "^3.0.0",
148
148
  "@newrelic/koa": "^5.0.0",
@@ -161,7 +161,6 @@
161
161
  "devDependencies": {
162
162
  "@newrelic/proxy": "^2.0.0",
163
163
  "@newrelic/test-utilities": "^5.0.0",
164
- "JSV": "~4.0.2",
165
164
  "architect": "*",
166
165
  "benchmark": "^2.1.4",
167
166
  "bluebird": "^3.4.7",
@@ -174,6 +173,7 @@
174
173
  "got": "^8.0.1",
175
174
  "http-errors": "^1.7.3",
176
175
  "jsdoc": "^3.6.3",
176
+ "JSV": "~4.0.2",
177
177
  "memcached": ">=0.2.8",
178
178
  "minami": "^1.1.1",
179
179
  "mongodb": "^3.3.3",
@@ -187,7 +187,7 @@
187
187
  "rimraf": "^2.6.3",
188
188
  "should": "*",
189
189
  "sinon": "^4.5.0",
190
- "tap": "^14.10.7",
190
+ "tap": "^14.10.8",
191
191
  "temp": "^0.8.1",
192
192
  "through": "^2.3.6",
193
193
  "when": "*"
@@ -1,18 +1,18 @@
1
1
  {
2
- "lastUpdated": "Mon Nov 09 2020 13:48:47 GMT-0800 (Pacific Standard Time)",
2
+ "lastUpdated": "Tue Nov 17 2020 14:58:13 GMT-0800 (Pacific Standard Time)",
3
3
  "projectName": "New Relic Node Agent",
4
4
  "projectUrl": "https://github.com/newrelic/node-newrelic",
5
5
  "includeDev": true,
6
6
  "dependencies": {
7
- "@grpc/grpc-js@1.1.7": {
7
+ "@grpc/grpc-js@1.2.0": {
8
8
  "name": "@grpc/grpc-js",
9
- "version": "1.1.7",
10
- "range": "1.1.7",
9
+ "version": "1.2.0",
10
+ "range": "1.2.0",
11
11
  "licenses": "Apache-2.0",
12
12
  "repoUrl": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
13
- "versionedRepoUrl": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/tree/v1.1.7",
13
+ "versionedRepoUrl": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/tree/v1.2.0",
14
14
  "licenseFile": "node_modules/@grpc/grpc-js/LICENSE",
15
- "licenseUrl": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/blob/v1.1.7/LICENSE",
15
+ "licenseUrl": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/blob/v1.2.0/LICENSE",
16
16
  "licenseTextSource": "file",
17
17
  "publisher": "Google Inc."
18
18
  },
@@ -552,15 +552,15 @@
552
552
  "licenseTextSource": "file",
553
553
  "publisher": "Christian Johansen"
554
554
  },
555
- "tap@14.10.7": {
555
+ "tap@14.10.8": {
556
556
  "name": "tap",
557
- "version": "14.10.7",
558
- "range": "^14.10.7",
557
+ "version": "14.10.8",
558
+ "range": "^14.10.8",
559
559
  "licenses": "ISC",
560
560
  "repoUrl": "https://github.com/tapjs/node-tap",
561
- "versionedRepoUrl": "https://github.com/tapjs/node-tap/tree/v14.10.7",
561
+ "versionedRepoUrl": "https://github.com/tapjs/node-tap/tree/v14.10.8",
562
562
  "licenseFile": "node_modules/tap/LICENSE",
563
- "licenseUrl": "https://github.com/tapjs/node-tap/blob/v14.10.7/LICENSE",
563
+ "licenseUrl": "https://github.com/tapjs/node-tap/blob/v14.10.8/LICENSE",
564
564
  "licenseTextSource": "file",
565
565
  "publisher": "Isaac Z. Schlueter",
566
566
  "email": "i@izs.me",