-
Notifications
You must be signed in to change notification settings - Fork 240
chore(deps-dev): bump @types/node from 18.0.1 to 18.0.3 #2806
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.0.1 to 18.0.3. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Member
|
The actual change in diff -ur node-18.0.1/README.md node-18.0.3/README.md
--- node-18.0.1/README.md 2022-07-03 06:02:19.000000000 -0700
+++ node-18.0.3/README.md 2022-07-05 21:02:23.000000000 -0700
@@ -8,7 +8,7 @@
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
### Additional Details
- * Last updated: Sun, 03 Jul 2022 13:02:19 GMT
+ * Last updated: Wed, 06 Jul 2022 04:02:23 GMT
* Dependencies: none
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
diff -ur node-18.0.1/http.d.ts node-18.0.3/http.d.ts
--- node-18.0.1/http.d.ts 2022-07-03 06:02:20.000000000 -0700
+++ node-18.0.3/http.d.ts 2022-07-05 21:02:23.000000000 -0700
@@ -249,6 +249,16 @@
* @since v14.11.0
*/
requestTimeout: number;
+ /**
+ * Closes all connections connected to this server.
+ * @since v18.2.0
+ */
+ closeAllConnections(): void;
+ /**
+ * Closes all connections connected to this server which are not sending a request or waiting for a response.
+ * @since v18.2.0
+ */
+ closeIdleConnections(): void;
addListener(event: string, listener: (...args: any[]) => void): this;
addListener(event: 'close', listener: () => void): this;
addListener(event: 'connection', listener: (socket: Socket) => void): this;
diff -ur node-18.0.1/https.d.ts node-18.0.3/https.d.ts
--- node-18.0.1/https.d.ts 2022-07-03 06:02:20.000000000 -0700
+++ node-18.0.3/https.d.ts 2022-07-05 21:02:23.000000000 -0700
@@ -34,6 +34,16 @@
class Server extends tls.Server {
constructor(requestListener?: http.RequestListener);
constructor(options: ServerOptions, requestListener?: http.RequestListener);
+ /**
+ * Closes all connections connected to this server.
+ * @since v18.2.0
+ */
+ closeAllConnections(): void;
+ /**
+ * Closes all connections connected to this server which are not sending a request or waiting for a response.
+ * @since v18.2.0
+ */
+ closeIdleConnections(): void;
addListener(event: string, listener: (...args: any[]) => void): this;
addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;
addListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this;
diff -ur node-18.0.1/package.json node-18.0.3/package.json
--- node-18.0.1/package.json 2022-07-03 06:02:19.000000000 -0700
+++ node-18.0.3/package.json 2022-07-05 21:02:23.000000000 -0700
@@ -1,6 +1,6 @@
{
"name": "@types/node",
- "version": "18.0.1",
+ "version": "18.0.3",
"description": "TypeScript definitions for Node.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
"license": "MIT",
@@ -220,6 +220,6 @@
},
"scripts": {},
"dependencies": {},
- "typesPublisherContentHash": "54636f01c874a366065f9b55b2a2d8bac9b0b654b04e244404745c7e0506e5f7",
+ "typesPublisherContentHash": "f88edb516946d349187ba7de857caf040f59be37853483f48af1af856105ff55",
"typeScriptVersion": "4.0"
}
\ No newline at end of file
diff -ur node-18.0.1/perf_hooks.d.ts node-18.0.3/perf_hooks.d.ts
--- node-18.0.1/perf_hooks.d.ts 2022-07-03 06:02:20.000000000 -0700
+++ node-18.0.3/perf_hooks.d.ts 2022-07-05 21:02:23.000000000 -0700
@@ -507,6 +507,12 @@
* @since v15.9.0, v14.18.0
*/
recordDelta(): void;
+ /**
+ * Adds the values from other to this histogram.
+ * @since v17.4.0, v16.14.0
+ * @param other Recordable Histogram to combine with
+ */
+ add(other: RecordableHistogram): void;
}
/**
* _This property is an extension by Node.js. It is not available in Web browsers._ |
trentm
approved these changes
Jul 6, 2022
v1v
added a commit
to v1v/apm-agent-nodejs
that referenced
this pull request
Jul 6, 2022
…re/test-opentelemetry-actions * 'main' of github.com:elastic/apm-agent-nodejs: chore(deps): bump moment from 2.29.3 to 2.29.4 (elastic#2813) chore(deps-dev): bump @types/node from 18.0.1 to 18.0.3 (elastic#2806) chore: bump to got@11.8.5 for vuln fix (elastic#2787) test: fix setup of benchmarks in CI on new CPU models (elastic#2804)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
agent-nodejs
Make available for APM Agents project planning.
dependencies
Pull requests that update a dependency file
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps @types/node from 18.0.1 to 18.0.3.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)