Skip to content

Commit 4dc29c9

Browse files
Merge branch 'main' into hotfix/attachment_type_inconsistency
2 parents 6695b4e + 0bb5970 commit 4dc29c9

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
username: ${{ secrets.DOCKER_USERNAME }}
3333
password: ${{ secrets.DOCKER_AUTH_TOKEN }}
3434

35+
- name: Install Docker Compose
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get install -y docker-compose
39+
3540
- name: Run Tests
3641
run: make test-docker
3742

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
[2024-10-17] Version 8.1.4
5+
--------------------------
6+
**Library - Chore**
7+
- [PR #1415](https://github.com/sendgrid/sendgrid-nodejs/pull/1415): fixed axios vulnerability by upgrading 1.6.8 to 1.7.4. Thanks to [@jl-yang](https://github.com/jl-yang)!
8+
- [PR #1418](https://github.com/sendgrid/sendgrid-nodejs/pull/1418): install docker-compose. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
9+
10+
411
[2024-04-02] Version 8.1.3
512
--------------------------
613
**Library - Fix**

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "8.1.3",
6+
"version": "8.1.4",
77
"tagVersionPrefix": "",
88
"lerna": "2.0.0"
99
}

packages/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sendgrid/client",
33
"description": "Twilio SendGrid NodeJS API client",
4-
"version": "8.1.3",
4+
"version": "8.1.4",
55
"author": "Twilio SendGrid <[email protected]> (sendgrid.com)",
66
"contributors": [
77
"Kyle Partridge <[email protected]>",
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@sendgrid/helpers": "^8.0.0",
31-
"axios": "^1.6.8"
31+
"axios": "^1.7.4"
3232
},
3333
"devDependencies": {
3434
"chai": "4.2.0",

packages/contact-importer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sendgrid/contact-importer",
33
"description": "Twilio SendGrid NodeJS contact importer",
4-
"version": "8.1.3",
4+
"version": "8.1.4",
55
"author": "Twilio SendGrid <[email protected]> (sendgrid.com)",
66
"contributors": [
77
"Kyle Partridge <[email protected]>",
@@ -26,7 +26,7 @@
2626
"access": "public"
2727
},
2828
"dependencies": {
29-
"@sendgrid/client": "^8.1.3",
29+
"@sendgrid/client": "^8.1.4",
3030
"async.ensureasync": "^0.5.2",
3131
"async.queue": "^0.5.2",
3232
"bottleneck": "^1.12.0",

packages/mail/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sendgrid/mail",
33
"description": "Twilio SendGrid NodeJS mail service",
4-
"version": "8.1.3",
4+
"version": "8.1.4",
55
"author": "Twilio SendGrid <[email protected]> (sendgrid.com)",
66
"contributors": [
77
"Kyle Partridge <[email protected]>",
@@ -27,7 +27,7 @@
2727
"access": "public"
2828
},
2929
"dependencies": {
30-
"@sendgrid/client": "^8.1.3",
30+
"@sendgrid/client": "^8.1.4",
3131
"@sendgrid/helpers": "^8.0.0"
3232
},
3333
"tags": [

0 commit comments

Comments
 (0)