Skip to content

Commit a85fa5b

Browse files
feat: add renovate & update deps (#46)
* chore(): add renovate * chore(): renovate * chore(deps): update dependency @types/jest to v29.2.4 * chore(deps): update dependency typescript to v4.9.4 * chore(): add renovate * chore(deps): update nest monorepo to v9.2.1 * chore(deps): update codecov/codecov-action action to v1.5.2 * chore(deps): update dependency prettier to v2.8.1 * chore(deps): update dependency rxjs to v7.8.0 * fix(deps): update dependency twilio to v3.84.0 * chore(deps): update actions/checkout action to v3 * chore(deps): update github/codeql-action action to v2 * chore(deps): update node.js to v18 * chore(deps): update codecov/codecov-action action to v3 * version update * chore(): update node to 18.x in build.yml Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4ce38ad commit a85fa5b

File tree

6 files changed

+65
-48
lines changed

6 files changed

+65
-48
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- name: Set up Node.js 16.x
14+
- name: Set up Node.js 18.x
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: '16.x'
17+
node-version: '18.x'
1818
- name: Get cached node modules
1919
id: yarn-cache-dir-path
2020
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -41,7 +41,7 @@ jobs:
4141
- name: Building dist
4242
run: yarn build:dist
4343
- name: Summing test coverage
44-
uses: codecov/codecov-action@v1.0.13
44+
uses: codecov/codecov-action@v3.1.1
4545
with:
4646
token: ${{ secrets.CODECOV_TOKEN }}
4747
fail_ci_if_error: true

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v1
44+
uses: github/codeql-action/init@v2
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -52,7 +52,7 @@ jobs:
5252
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5353
# If this step fails, then you should remove it and run the build manually (see below)
5454
- name: Autobuild
55-
uses: github/codeql-action/autobuild@v1
55+
uses: github/codeql-action/autobuild@v2
5656

5757
# ℹ️ Command-line programs to run using the OS shell.
5858
# 📚 https://git.io/JvXDl
@@ -66,4 +66,4 @@ jobs:
6666
# make release
6767

6868
- name: Perform CodeQL Analysis
69-
uses: github/codeql-action/analyze@v1
69+
uses: github/codeql-action/analyze@v2

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.16.0
1+
18.12.1

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-twilio",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Injectable Twilio client for Nestjs",
55
"license": "MIT",
66
"author": {
@@ -43,18 +43,18 @@
4343
"postpublish": "pinst --enable"
4444
},
4545
"dependencies": {
46-
"twilio": "3.83.3"
46+
"twilio": "3.84.0"
4747
},
4848
"peerDependencies": {
4949
"@nestjs/common": ">=9.0.0",
5050
"@nestjs/core": ">=9.0.0"
5151
},
5252
"devDependencies": {
53-
"@nestjs/common": "9.2.0",
54-
"@nestjs/core": "9.2.0",
55-
"@nestjs/testing": "9.2.0",
56-
"@types/jest": "29.2.3",
57-
"@types/node": "18.11.9",
53+
"@nestjs/common": "9.2.1",
54+
"@nestjs/core": "9.2.1",
55+
"@nestjs/testing": "9.2.1",
56+
"@types/jest": "29.2.4",
57+
"@types/node": "18.11.18",
5858
"@typescript-eslint/eslint-plugin": "^5.38.1",
5959
"@typescript-eslint/parser": "^5.38.1",
6060
"dotenv": "^16.0.3",
@@ -65,11 +65,11 @@
6565
"jest": "29.3.1",
6666
"lint-staged": "^13.0.3",
6767
"pinst": "^3.0.0",
68-
"prettier": "2.7.1",
68+
"prettier": "2.8.1",
6969
"reflect-metadata": "^0.1.13",
7070
"rimraf": "^3.0.2",
71-
"rxjs": "7.5.7",
71+
"rxjs": "7.8.0",
7272
"ts-jest": "29.0.3",
73-
"typescript": "4.9.3"
73+
"typescript": "4.9.4"
7474
}
7575
}

renovate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:base"],
4+
"includeForks": true
5+
}

yarn.lock

Lines changed: 42 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -579,19 +579,19 @@
579579
"@jridgewell/resolve-uri" "3.1.0"
580580
"@jridgewell/sourcemap-codec" "1.4.14"
581581

582-
"@nestjs/common@9.2.0":
583-
version "9.2.0"
584-
resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-9.2.0.tgz#fd4d9bab82ad2744fc37138993ac9336bfc78f50"
585-
integrity sha512-Ndcqak/ETYi+n1c5lFRPbxKLyUuM6DIOxcvfEFGfi0f6ad4dWDXRDx7z/n8V0l8+Y8djvvOHgf3t0e93w963Qg==
582+
"@nestjs/common@9.2.1":
583+
version "9.2.1"
584+
resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-9.2.1.tgz#24de19ee85a8f1747288980fe517b12753cf66ea"
585+
integrity sha512-nZuo3oDsSSlC5mti/M2aCWTEIfHPGDXmBwWgPeCpRbrNz3IWd109rkajll+yxgidVjznAdBS9y00JkAVJblNYw==
586586
dependencies:
587587
iterare "1.2.1"
588588
tslib "2.4.1"
589589
uuid "9.0.0"
590590

591-
"@nestjs/core@9.2.0":
592-
version "9.2.0"
593-
resolved "https://registry.yarnpkg.com/@nestjs/core/-/core-9.2.0.tgz#12b021808f615d71302a2f675afc79347a1e6023"
594-
integrity sha512-eVN7aXAavV+ImVt8mO+rQ5YyUP6lJtQKUtQHxHKzz6Wg+9Y67WWZS2uDcDX5NNcNijbWky5bqad86fgcK9Oqig==
591+
"@nestjs/core@9.2.1":
592+
version "9.2.1"
593+
resolved "https://registry.yarnpkg.com/@nestjs/core/-/core-9.2.1.tgz#598e51a421a0aaafc568c1a02499f7c1f9491caf"
594+
integrity sha512-a9GkXuu8uXgNgCVW+17iI8kLCltO+HwHpU2IhR+32JKnN2WEQ1YEWU4t3GJ2MNq44YkjIw9zrKvFkjJBlYrNbQ==
595595
dependencies:
596596
"@nuxtjs/opencollective" "0.3.2"
597597
fast-safe-stringify "2.1.1"
@@ -601,10 +601,10 @@
601601
tslib "2.4.1"
602602
uuid "9.0.0"
603603

604-
"@nestjs/testing@9.2.0":
605-
version "9.2.0"
606-
resolved "https://registry.yarnpkg.com/@nestjs/testing/-/testing-9.2.0.tgz#2f862e8dc70cc27b86a32a78e74fab96d159fb58"
607-
integrity sha512-Lj6UXmBJKcXB16bZzu0IG7GpH7hl5Cn71OcPSrVVuPrFd5kDYqFbodfE9OkAKaHjEhOvZ2ynoo/i6cyfX4yOvQ==
604+
"@nestjs/testing@9.2.1":
605+
version "9.2.1"
606+
resolved "https://registry.yarnpkg.com/@nestjs/testing/-/testing-9.2.1.tgz#2a3f64214d58ec4ab878862395407947671e4ece"
607+
integrity sha512-lemXZdRSuqoZ87l0orCrS/c7gqwxeduIFOd21g9g2RUeQ4qlWPegbQDKASzbfC28klPyrgJLW4MNq7uv2JwV8w==
608608
dependencies:
609609
tslib "2.4.1"
610610

@@ -716,10 +716,10 @@
716716
dependencies:
717717
"@types/istanbul-lib-report" "*"
718718

719-
"@types/jest@29.2.3":
720-
version "29.2.3"
721-
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.2.3.tgz#f5fd88e43e5a9e4221ca361e23790d48fcf0a211"
722-
integrity sha512-6XwoEbmatfyoCjWRX7z0fKMmgYKe9+/HrviJ5k0X/tjJWHGAezZOfYaxqQKuzG/TvQyr+ktjm4jgbk0s4/oF2w==
719+
"@types/jest@29.2.4":
720+
version "29.2.4"
721+
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.2.4.tgz#9c155c4b81c9570dbd183eb8604aa0ae80ba5a5b"
722+
integrity sha512-PipFB04k2qTRPePduVLTRiPzQfvMeLwUN3Z21hsAKaB/W9IIzgB2pizCL466ftJlcyZqnHoC9ZHpxLGl3fS86A==
723723
dependencies:
724724
expect "^29.0.0"
725725
pretty-format "^29.0.0"
@@ -729,11 +729,16 @@
729729
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
730730
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
731731

732-
"@types/node@*", "@types/node@18.11.9":
732+
"@types/node@*":
733733
version "18.11.9"
734734
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4"
735735
integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==
736736

737+
"@types/node@18.11.18":
738+
version "18.11.18"
739+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f"
740+
integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
741+
737742
"@types/prettier@^2.1.5":
738743
version "2.7.1"
739744
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e"
@@ -2827,10 +2832,10 @@ prettier-linter-helpers@^1.0.0:
28272832
dependencies:
28282833
fast-diff "^1.1.2"
28292834

2830-
prettier@2.7.1:
2831-
version "2.7.1"
2832-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
2833-
integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
2835+
prettier@2.8.1:
2836+
version "2.8.1"
2837+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc"
2838+
integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==
28342839

28352840
pretty-format@^29.0.0, pretty-format@^29.3.1:
28362841
version "29.3.1"
@@ -2973,7 +2978,14 @@ run-parallel@^1.1.9:
29732978
dependencies:
29742979
queue-microtask "^1.2.2"
29752980

2976-
rxjs@7.5.7, rxjs@^7.5.5:
2981+
rxjs@7.8.0:
2982+
version "7.8.0"
2983+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
2984+
integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
2985+
dependencies:
2986+
tslib "^2.1.0"
2987+
2988+
rxjs@^7.5.5:
29772989
version "7.5.7"
29782990
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"
29792991
integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==
@@ -3257,10 +3269,10 @@ tsutils@^3.21.0:
32573269
dependencies:
32583270
tslib "^1.8.1"
32593271

3260-
twilio@3.83.3:
3261-
version "3.83.3"
3262-
resolved "https://registry.yarnpkg.com/twilio/-/twilio-3.83.3.tgz#5aec258aa433efa515c4302cb41ed35d72f2ac8f"
3263-
integrity sha512-uyYPXUmKIvpq54DGcq0elT0t2PLhDSwD7svu18SabiFSD6rmouws8gr9CZRix45IYSnIxTmOSr3i4vWR74/hQw==
3272+
twilio@3.84.0:
3273+
version "3.84.0"
3274+
resolved "https://registry.yarnpkg.com/twilio/-/twilio-3.84.0.tgz#57e035a7034e4c278cdd03d3e88c05f507b9d84e"
3275+
integrity sha512-XL+RR1SdfGExC51cE22unM/r7lEFzfDYUA3FecHEe5cLF+LzxmZGB9O9BXfqZu/sZ5YlGeltJfMA5j3TRLzhLw==
32643276
dependencies:
32653277
axios "^0.26.1"
32663278
dayjs "^1.8.29"
@@ -3296,10 +3308,10 @@ type-fest@^0.21.3:
32963308
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
32973309
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
32983310

3299-
typescript@4.9.3:
3300-
version "4.9.3"
3301-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db"
3302-
integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==
3311+
typescript@4.9.4:
3312+
version "4.9.4"
3313+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
3314+
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
33033315

33043316
update-browserslist-db@^1.0.9:
33053317
version "1.0.10"

0 commit comments

Comments
 (0)