Skip to content

Commit 0ef1a55

Browse files
authored
Prepares Release 3.2.0 (#332)
* updated changelogs for 3.2.0 * bumped all version numbers * updated contributors
1 parent 7d6a0ef commit 0ef1a55

File tree

15 files changed

+291
-271
lines changed

15 files changed

+291
-271
lines changed

CHANGELOG.md

Lines changed: 250 additions & 0 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "aws-xray-sdk-node",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"devDependencies": {
7-
"aws-xray-sdk-core": "3.1.0",
7+
"aws-xray-sdk-core": "3.2.0",
88
"chai": "^3.5.0",
99
"eslint": "^4.19.1",
1010
"grunt": "^1.0.4",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog for AWS X-Ray Core SDK for JavaScript
2-
<!--LATEST=3.1.0-->
2+
<!--LATEST=3.2.0-->
33
<!--ENTRYINSERT-->
4+
## 3.2.0
5+
* bugfix: Guard against undefined req.agent in HTTP patcher [PR #313](https://github.com/aws/aws-xray-sdk-node/pull/313)
6+
* bugfix: Imrpoved error and end event listening logic [PR #321](https://github.com/aws/aws-xray-sdk-node/pull/321)
7+
* improvement: Refactored common middleware utility code into core package [PR #306](https://github.com/aws/aws-xray-sdk-node/pull/306)
8+
49
## 3.1.0
510
* bugfix: Fix trace header behavior [#PR 284](https://github.com/aws/aws-xray-sdk-node/pull/284)
611
* bugfix: Improved service connector error handling [#ISSUE 285](https://github.com/aws/aws-xray-sdk-node/issues/285)

packages/core/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "aws-xray-sdk-core",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AWS X-Ray SDK for Javascript",
55
"author": "Amazon Web Services",
66
"contributors": [
7-
"Sandra McMullen <[email protected]>"
7+
"Sandra McMullen <[email protected]>",
8+
"William Armiros <[email protected]>"
89
],
910
"main": "lib/index.js",
1011
"types": "lib/index.d.ts",

packages/express/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog for AWS X-Ray SDK Express for JavaScript
2-
<!--LATEST=3.1.0-->
2+
<!--LATEST=3.2.0-->
33
<!--ENTRYINSERT-->
44
## 2.5.0
55
* improvement: Added TypeScript definitions [PR #207](https://github.com/aws/aws-xray-sdk-node/pull/207)

packages/express/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-express",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AWS X-Ray Middleware for Express (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,10 +18,10 @@
1818
"@types/express": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.1.0"
21+
"aws-xray-sdk-core": "^3.2.0"
2222
},
2323
"devDependencies": {
24-
"aws-xray-sdk-core": "3.1.0",
24+
"aws-xray-sdk-core": "3.2.0",
2525
"chai": "^3.5.0",
2626
"eslint": "^4.19.1",
2727
"grunt": "^1.0.4",

packages/full_sdk/CHANGELOG.md

Lines changed: 1 addition & 238 deletions
Large diffs are not rendered by default.

packages/full_sdk/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"name": "aws-xray-sdk",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AWS X-Ray SDK for Javascript",
55
"author": "Amazon Web Services",
66
"contributors": [
7-
"Sandra McMullen <[email protected]>"
7+
"Sandra McMullen <[email protected]>",
8+
"William Armiros <[email protected]>"
89
],
910
"main": "lib/index.js",
1011
"types": "lib/index.d.ts",
1112
"engines": {
1213
"node": ">= 10.x"
1314
},
1415
"dependencies": {
15-
"aws-xray-sdk-core": "3.1.0",
16-
"aws-xray-sdk-express": "3.1.0",
17-
"aws-xray-sdk-mysql": "3.1.0",
18-
"aws-xray-sdk-postgres": "3.1.0",
16+
"aws-xray-sdk-core": "3.2.0",
17+
"aws-xray-sdk-express": "3.2.0",
18+
"aws-xray-sdk-mysql": "3.2.0",
19+
"aws-xray-sdk-postgres": "3.2.0",
1920
"pkginfo": "^0.4.0"
2021
},
2122
"devDependencies": {

packages/mysql/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-mysql",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AWS X-Ray Patcher for MySQL (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,10 +18,10 @@
1818
"@types/mysql": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.1.0"
21+
"aws-xray-sdk-core": "^3.2.0"
2222
},
2323
"devDependencies": {
24-
"aws-xray-sdk-core": "3.1.0",
24+
"aws-xray-sdk-core": "3.2.0",
2525
"chai": "^3.5.0",
2626
"eslint": "^4.19.1",
2727
"grunt": "^1.0.4",

packages/postgres/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-postgres",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AWS X-Ray Patcher for Postgres (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,10 +18,10 @@
1818
"@types/pg": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.1.0"
21+
"aws-xray-sdk-core": "^3.2.0"
2222
},
2323
"devDependencies": {
24-
"aws-xray-sdk-core": "3.1.0",
24+
"aws-xray-sdk-core": "3.2.0",
2525
"chai": "^3.5.0",
2626
"eslint": "^4.19.1",
2727
"grunt": "^1.0.4",

0 commit comments

Comments
 (0)