Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump @types/node from 17.0.31 to 20.11.26 #243

Closed
Closed
Changes from all commits
Commits
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
36 changes: 27 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
"@types/amqplib": "^0.8.2",
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.31",
"@types/node": "^20.11.26",
"@types/node-fetch": "^2.6.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.22.0",

Unchanged files with check annotations Beta

let parsedYaml: unknown;
try {
parsedYaml = yaml.load(fileContents);
} catch (e: any) {

Check warning on line 95 in src/config/yaml-config.ts

GitHub Actions / Test on node version 16

Unexpected any. Specify a different type

Check warning on line 95 in src/config/yaml-config.ts

GitHub Actions / Test on node version 16

Unexpected any. Specify a different type
throw new Error(
`Error converting config.yml file to JSON: name ${e?.name}, message ${e.message}`
);
return config;
} else {
validateConfig.errors?.forEach((err) => {
console.error(`${err.schemaPath}: ${err.message}`);

Check warning on line 107 in src/config/yaml-config.ts

GitHub Actions / Test on node version 16

Unexpected console statement

Check warning on line 107 in src/config/yaml-config.ts

GitHub Actions / Test on node version 16

Unexpected console statement
});
throw new Error(
'Some errors occurred when validating config file against the schema. See the output above.'
import { MetricsServerInstance } from './metrics/metrics-server';

Check warning on line 1 in src/lifecycle.ts

GitHub Actions / Test on node version 16

'MetricsServerInstance' is defined but never used

Check warning on line 1 in src/lifecycle.ts

GitHub Actions / Test on node version 16

'MetricsServerInstance' is defined but never used
import { Publisher } from './publisher/publisher';
import { AppInstance } from './server';
import { Subscriber } from './subscriber/subscriber';
}
public cancelPlannedDeliveryRetries(isConnectionFailure: boolean) {
for (const plannedRetry of this.plannedRetries) {
clearTimeout(plannedRetry.timer);

Check failure on line 48 in src/subscriber/retry-manager.ts

GitHub Actions / Test on node version 16

No overload matches this call.

Check failure on line 48 in src/subscriber/retry-manager.ts

GitHub Actions / Test on node version 16

No overload matches this call.
if (!isConnectionFailure) this.channel.nack(plannedRetry.msg);
}
this.plannedRetries.clear();