Skip to content

Commit c74bc4a

Browse files
authored
Prepares 3.3.4 release (#474)
1 parent c0de709 commit c74bc4a

File tree

12 files changed

+33
-20
lines changed

12 files changed

+33
-20
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Changelog for AWS X-Ray SDK for JavaScript
2-
<!--LATEST=3.3.3-->
2+
<!--LATEST=3.3.4-->
33
<!--ENTRYINSERT-->
4+
## 3.3.4
5+
* change: Updated aws-xray-sdk-core to 3.3.4.
6+
* bugfix: Parse hostname from options instead of headers [PR #430](https://github.com/aws/aws-xray-sdk-node/pull/430)
7+
* bugfix: Fix crash when http/https libraries use getters [PR #434](https://github.com/aws/aws-xray-sdk-node/pull/434)
8+
* bugfix: Lowercase AWS SDK v3 service names [PR #444](https://github.com/aws/aws-xray-sdk-node/pull/444)
9+
* bugfix: Add namespace to subsegment type [PR #470](https://github.com/aws/aws-xray-sdk-node/pull/470)
10+
* change: Updated aws-xray-sdk-express to 3.3.4. No further changes.
11+
* change: Updated aws-xray-sdk-mysql to 3.3.4. No further changes.
12+
* change: Updated aws-xray-sdk-postgres to 3.3.4. No further changes.
13+
* change: Updated aws-xray-sdk-restify to 3.3.4. No further changes.
14+
* change: Updated aws-xray-sdk-koa2 to 3.3.4. No further changes.
15+
* change: Updated aws-xray-sdk-hapi to 3.3.4. No further changes.
16+
417
## 3.3.3
518
* change: Updated aws-xray-sdk-core to 3.3.3.
619
* bugfix: corrected require paths that did not reference dist [PR #428](https://github.com/aws/aws-xray-sdk-node/pull/428)

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-node",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"private": true,
55
"license": "Apache-2.0",
66
"devDependencies": {
@@ -18,8 +18,8 @@
1818
"@typescript-eslint/eslint-plugin": "^4.25.0",
1919
"@typescript-eslint/parser": "^4.25.0",
2020
"aws-sdk": "^2.304.0",
21-
"aws-xray-sdk-core": "3.3.3",
22-
"aws-xray-sdk-express": "3.3.3",
21+
"aws-xray-sdk-core": "3.3.4",
22+
"aws-xray-sdk-express": "3.3.4",
2323
"chai": "^4.2.0",
2424
"cls-hooked": "^4.2.2",
2525
"codecov": "^3.8.1",

packages/core/package.json

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

packages/express/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-express",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
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.3"
21+
"aws-xray-sdk-core": "^3.3.4"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/full_sdk/package.json

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

packages/mysql/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-mysql",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
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.3"
21+
"aws-xray-sdk-core": "^3.3.4"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/postgres/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-postgres",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
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.3"
21+
"aws-xray-sdk-core": "^3.3.4"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/restify/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-restify",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
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.3"
21+
"aws-xray-sdk-core": "^3.3.4"
2222
},
2323
"scripts": {
2424
"test": "mocha --recursive ./test/ -R spec && tsd",

packages/test_express/package.json

+1-1
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.3",
4+
"version": "3.3.4",
55
"description": "AWS X-Ray Middleware for Express (Javascript)",
66
"author": "Amazon Web Services",
77
"contributors": [

sdk_contrib/hapi/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-hapi",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "AWS X-Ray plugin for Hapi.JS",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -24,7 +24,7 @@
2424
},
2525
"peerDependencies": {
2626
"@hapi/hapi": ">=18.x",
27-
"aws-xray-sdk-core": "^3.3.3"
27+
"aws-xray-sdk-core": "^3.3.4"
2828
},
2929
"keywords": [
3030
"amazon",

sdk_contrib/koa/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-xray-sdk-koa2",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "AWS X-Ray Middleware for koa (Javascript)",
55
"author": "Amazon Web Services",
66
"contributors": [
@@ -22,7 +22,7 @@
2222
"node": ">= 10.x"
2323
},
2424
"peerDependencies": {
25-
"aws-xray-sdk-core": "^3.3.3",
25+
"aws-xray-sdk-core": "^3.3.4",
2626
"koa": "^2.0.0"
2727
},
2828
"keywords": [

0 commit comments

Comments
 (0)