Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 6, 2022

Bumps @types/node from 18.0.1 to 18.0.3.

Commits

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

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>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 6, 2022
@dependabot dependabot bot requested a review from a team July 6, 2022 17:35
@github-actions github-actions bot added the agent-nodejs Make available for APM Agents project planning. label Jul 6, 2022
@trentm trentm self-assigned this Jul 6, 2022
@ghost
Copy link

ghost commented Jul 6, 2022

💚 Build Succeeded

the below badges are clickable and redirect to their specific view in the CI or DOCS
Pipeline View Test View Changes Artifacts preview preview

Expand to view the summary

Build stats

  • Start Time: 2022-07-06T17:35:46.456+0000

  • Duration: 21 min 33 sec

Test stats 🧪

Test Results
Failed 0
Passed 256937
Skipped 0
Total 256937

🤖 GitHub comments

To re-run your PR in the CI, just comment with:

  • /test : Re-trigger the build.

  • run module tests for <modules> : Run TAV tests for one or more modules, where <modules> can be either a comma separated list of modules (e.g. memcached,redis) or the string literal ALL to test all modules

  • run benchmark tests : Run the benchmark test only.

  • run elasticsearch-ci/docs : Re-trigger the docs validation. (use unformatted text in the comment!)

@trentm
Copy link
Member

trentm commented Jul 6, 2022

The actual change in @types/node here is as follows (manually downloading and diffing). It is really hard to see what has changed between releases of @types/* packages from https://github.com/DefinitelyTyped/DefinitelyTyped

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 trentm merged commit 332e594 into main Jul 6, 2022
@trentm trentm deleted the dependabot/npm_and_yarn/types/node-18.0.3 branch July 6, 2022 19:03
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants