Skip to content

Commit 811d958

Browse files
authored
Prepares 3.3.0 release (#406)
1 parent a99ebfa commit 811d958

File tree

12 files changed

+45
-20
lines changed

12 files changed

+45
-20
lines changed

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
# Changelog for AWS X-Ray SDK for JavaScript
2-
<!--LATEST=3.2.0-->
2+
<!--LATEST=3.3.0-->
33
<!--ENTRYINSERT-->
4+
## 3.3.0
5+
* change: Updated aws-xray-sdk-core to 3.3.0.
6+
* improvement: add IGNORE_ERROR context missing strategy [PR #345](https://github.com/aws/aws-xray-sdk-node/pull/345)
7+
* improvement: also instrument Promise.catch in promise patcher [PR #367](https://github.com/aws/aws-xray-sdk-node/pull/367)
8+
* improvement: adds AWS SDK V3 instrumentation [PR #386](https://github.com/aws/aws-xray-sdk-node/pull/386)
9+
* fix: add end_time to segment type def [PR #350](https://github.com/aws/aws-xray-sdk-node/pull/350)
10+
* fix: fix validation issues in service connector [PR #339](https://github.com/aws/aws-xray-sdk-node/pull/339)
11+
* fix: add downstreamXRayEnabled to type defs [PR #357](https://github.com/aws/aws-xray-sdk-node/pull/357)
12+
* fix: ensure trace IDs are never `null` in Lambda [PR #361](https://github.com/aws/aws-xray-sdk-node/pull/361)
13+
* fix: make setting context modes idempotent [PR #371](https://github.com/aws/aws-xray-sdk-node/pull/371)
14+
* fix: replace deprecated `url.parse` with WHATWG URLs [PR #373](https://github.com/aws/aws-xray-sdk-node/pull/373)
15+
* fix: make capture promise idempotent [PR #400](https://github.com/aws/aws-xray-sdk-node/pull/400)
16+
* change: Updated aws-xray-sdk-express to 3.3.0.
17+
* fix: fixed a bug causing segments to be closed twice in Express [PR #362](https://github.com/aws/aws-xray-sdk-node/pull/362)
18+
* change: Updated aws-xray-sdk-mysql to 3.3.0.
19+
* fix: fixes mysql query config object being changed by instrumentation [PR #340](https://github.com/aws/aws-xray-sdk-node/pull/340)
20+
* fix: fixes argument parsing to be compatible with mysql2 [PR #381](https://github.com/aws/aws-xray-sdk-node/pull/381)
21+
* change: Updated aws-xray-sdk-postgres to 3.3.0.
22+
* improvement: add opt-in ability to capture SQL query [PR #390](https://github.com/aws/aws-xray-sdk-node/pull/390)
23+
* fix: support queryConfig object in postgres patcher [PR #337](https://github.com/aws/aws-xray-sdk-node/pull/337)
24+
* fix: prevent instrumentation from stripping config attributes [PR #363](https://github.com/aws/aws-xray-sdk-node/pull/363)
25+
* change: Updated aws-xray-sdk-restify to 3.3.0. No further changes.
26+
* change: Updated aws-xray-sdk-koa2 to 3.3.0. No further changes.
27+
* change: Updated aws-xray-sdk-hapi to 3.3.0. No further changes.
28+
429
## 3.2.0
530
* change: Updated aws-xray-sdk-core to 3.2.0. See aws-xray-sdk-core's CHANGELOG.md for package changes.
631
* change: Updated aws-xray-sdk-express to 3.2.0. No further changes.

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.2.0",
3+
"version": "3.3.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"devDependencies": {
@@ -17,8 +17,8 @@
1717
"@types/sinon": "^9.0.4",
1818
"@types/sinon-chai": "^3.2.4",
1919
"aws-sdk": "^2.304.0",
20-
"aws-xray-sdk-core": "3.2.0",
21-
"aws-xray-sdk-express": "3.2.0",
20+
"aws-xray-sdk-core": "3.3.0",
21+
"aws-xray-sdk-express": "3.3.0",
2222
"chai": "^4.2.0",
2323
"cls-hooked": "^4.2.2",
2424
"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.2.0",
3+
"version": "3.3.0",
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.2.0",
3+
"version": "3.3.0",
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.2.0"
21+
"aws-xray-sdk-core": "^3.3.0"
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.2.0",
3+
"version": "3.3.0",
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.2.0",
3+
"version": "3.3.0",
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.2.0"
21+
"aws-xray-sdk-core": "^3.3.0"
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.2.0",
3+
"version": "3.3.0",
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.2.0"
21+
"aws-xray-sdk-core": "^3.3.0"
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.2.0",
3+
"version": "3.3.0",
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.2.0"
21+
"aws-xray-sdk-core": "^3.3.0"
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.2.0",
4+
"version": "3.3.0",
55
"description": "AWS X-Ray Middleware for Express (Javascript)",
66
"author": "Amazon Web Services",
77
"contributors": [

0 commit comments

Comments
 (0)