Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7ad652a
chore: update to node 20
tarzacodes Jun 25, 2024
cc6ce53
chore: re-lint everything due to linter update
tarzacodes Jun 25, 2024
50c7f66
fix: update tsconfig
tarzacodes Jun 25, 2024
b5ddd64
fix: update tsconfig - 2
tarzacodes Jun 25, 2024
64789f1
fix: package-lock regeneration and minor fix
tarzacodes Jun 25, 2024
0368cb0
chore: update node version to lts in tool-versions
tarzacodes Jun 26, 2024
9ab7c14
chore: use subarray instead of slice which has been deprecated
tarzacodes Jun 26, 2024
19315db
chore: removed trailingComma from prettier conf and applied the rule
tarzacodes Jun 26, 2024
664a8ce
chore: minor cleanup
tarzacodes Jun 26, 2024
46671b5
chore: expanded ci node versions matrix
tarzacodes Jun 26, 2024
6b961a7
chore: downgrade cspell to run tooling on node16 too
tarzacodes Jun 26, 2024
f209833
chore: regenerated package.lock for cspell downgrade
tarzacodes Jun 26, 2024
a912367
chore: update rabbitmq running on the pipeline
tarzacodes Jun 26, 2024
65685af
test: increase timeout on test which is flaky on the pipeline
tarzacodes Jul 2, 2024
499e620
chore: remove node 16 from pipeline matrix, improve pipeline definiti…
tarzacodes Jul 2, 2024
a49e28e
fix: typo
tarzacodes Jul 2, 2024
c9705ee
tests: log error to diagnose pipeline issue
tarzacodes Jul 2, 2024
9476b41
tests: log error to diagnose pipeline issue - 2
tarzacodes Jul 2, 2024
066aa60
tests: log error to diagnose pipeline issue - 3
tarzacodes Jul 2, 2024
04c028a
tests: log error to diagnose pipeline issue - 4
tarzacodes Jul 2, 2024
0314b91
tests: log error to diagnose pipeline issue - 5
tarzacodes Jul 2, 2024
68daa04
tests: log error to diagnose pipeline issue - 6
tarzacodes Jul 2, 2024
227f7cb
tests: log error to diagnose pipeline issue - 7
tarzacodes Jul 2, 2024
ba9043d
tests: log error to diagnose pipeline issue - 8
tarzacodes Jul 2, 2024
d481451
tests: log error to diagnose pipeline issue - try without Promise.all
tarzacodes Jul 2, 2024
6111e14
tests: log error to diagnose pipeline issue - add explicit return
tarzacodes Jul 2, 2024
af5752c
tests: log error to diagnose pipeline issue - 10
tarzacodes Jul 2, 2024
eefd4e0
tests: cleanup
tarzacodes Jul 2, 2024
6e02616
tests: cleanup - 2
tarzacodes Jul 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

services:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Package

on:
release:
types: [created,edited]
types: [created, edited]

jobs:
github-package-registry:
Expand All @@ -15,8 +15,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 16.15.1
nodejs 20.15.0
python 3.8.12
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rabbitmq-stream-js-client": "file:../."
},
"engines": {
"node": "16.x.x"
"node": "20.x.x"
},
"devDependencies": {
"typescript": "^4.9.5"
Expand Down
3 changes: 1 addition & 2 deletions example/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
// "extends": "@tsconfig/node16/tsconfig.json",
// "extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"preserveConstEnums": true,
Expand All @@ -9,7 +9,6 @@
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"sourceMap": true,
"noEmit": true,
"declaration": true,
Expand Down
Loading