Skip to content

Commit fd91a51

Browse files
authored
Prepares 3.3.2 release (#425)
1 parent 11d1960 commit fd91a51

File tree

12 files changed

+32
-20
lines changed

12 files changed

+32
-20
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog for AWS X-Ray SDK for JavaScript
2-
<!--LATEST=3.3.1-->
2+
<!--LATEST=3.3.2-->
33
<!--ENTRYINSERT-->
4+
## 3.3.2
5+
* change: Updated aws-xray-sdk-core to 3.3.2.
6+
* bugfix: coerce content_length and status to ints [PR #402](https://github.com/aws/aws-xray-sdk-node/pull/402)
7+
* bugfix: re-implement AWS SDK V3 instrumentation with middleware [PR #416](https://github.com/aws/aws-xray-sdk-node/pull/416)
8+
* bugfix: fix TypeScript publishing mechanism [PR #417](https://github.com/aws/aws-xray-sdk-node/pull/417)
9+
* change: Updated aws-xray-sdk-express to 3.3.2. No further changes.
10+
* change: Updated aws-xray-sdk-mysql to 3.3.2. No further changes.
11+
* change: Updated aws-xray-sdk-postgres to 3.3.2. No further changes.
12+
* change: Updated aws-xray-sdk-restify to 3.3.2. No further changes.
13+
* change: Updated aws-xray-sdk-koa2 to 3.3.2. No further changes.
14+
* change: Updated aws-xray-sdk-hapi to 3.3.2. No further changes.
15+
416
## 3.3.1
517
* change: Updated aws-xray-sdk-core to 3.3.1.
618
* rollback: reverted instrumentation for AWS SDK V3 clients [PR #412](https://github.com/aws/aws-xray-sdk-node/pull/412)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-node",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"license": "Apache-2.0",
66
"devDependencies": {
@@ -16,8 +16,8 @@
1616
"@types/sinon": "^9.0.4",
1717
"@types/sinon-chai": "^3.2.4",
1818
"aws-sdk": "^2.304.0",
19-
"aws-xray-sdk-core": "3.3.1",
20-
"aws-xray-sdk-express": "3.3.1",
19+
"aws-xray-sdk-core": "3.3.2",
20+
"aws-xray-sdk-express": "3.3.2",
2121
"chai": "^4.2.0",
2222
"cls-hooked": "^4.2.2",
2323
"codecov": "^3.8.1",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-core",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "AWS X-Ray SDK for Javascript",
55
"author": "Amazon Web Services",
66
"contributors": [

packages/express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-express",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "AWS X-Ray Middleware for Express (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"@types/express": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.3.1"
21+
"aws-xray-sdk-core": "^3.3.2"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/full_sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "AWS X-Ray SDK for Javascript",
55
"author": "Amazon Web Services",
66
"contributors": [

packages/mysql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-mysql",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "AWS X-Ray Patcher for MySQL (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"@types/mysql": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.3.1"
21+
"aws-xray-sdk-core": "^3.3.2"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/postgres/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-postgres",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "AWS X-Ray Patcher for Postgres (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"@types/pg": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.3.1"
21+
"aws-xray-sdk-core": "^3.3.2"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/restify/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-restify",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "Enables AWS X-Ray for Restify (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"@types/restify": "*"
1919
},
2020
"peerDependencies": {
21-
"aws-xray-sdk-core": "^3.3.1"
21+
"aws-xray-sdk-core": "^3.3.2"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/test_express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "test-aws-xray-sdk-express",
33
"private": true,
4-
"version": "3.3.1",
4+
"version": "3.3.2",
55
"description": "AWS X-Ray Middleware for Express (Javascript)",
66
"author": "Amazon Web Services",
77
"contributors": [

0 commit comments

Comments
 (0)