@zuplo/cli 6.70.56 → 6.70.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/node_modules/@fastify/reply-from/node_modules/undici/lib/global.js +10 -1
  2. package/node_modules/@fastify/reply-from/node_modules/undici/package.json +1 -1
  3. package/node_modules/@zuplo/core/package.json +1 -1
  4. package/node_modules/@zuplo/graphql/package.json +1 -1
  5. package/node_modules/@zuplo/openapi-tools/package.json +1 -1
  6. package/node_modules/@zuplo/otel/package.json +1 -1
  7. package/node_modules/@zuplo/runtime/out/esm/{chunk-IASCNBZZ.js → chunk-AQGS5CID.js} +66 -66
  8. package/node_modules/@zuplo/runtime/out/esm/chunk-AQGS5CID.js.map +1 -0
  9. package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
  10. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +12 -12
  11. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
  12. package/node_modules/@zuplo/runtime/out/types/index.d.ts +3 -1
  13. package/node_modules/@zuplo/runtime/out/types/mcp-gateway/index.d.ts +28 -0
  14. package/node_modules/@zuplo/runtime/package.json +1 -1
  15. package/node_modules/hasown/CHANGELOG.md +7 -0
  16. package/node_modules/hasown/index.d.ts +0 -1
  17. package/node_modules/hasown/package.json +4 -5
  18. package/node_modules/protobufjs/dist/light/protobuf.js +7 -5
  19. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  20. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  21. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  22. package/node_modules/protobufjs/dist/minimal/protobuf.js +3 -3
  23. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
  24. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
  25. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
  26. package/node_modules/protobufjs/dist/protobuf.js +7 -5
  27. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  28. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  29. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  30. package/node_modules/protobufjs/package.json +1 -1
  31. package/node_modules/protobufjs/src/converter.js +4 -2
  32. package/node_modules/protobufjs/src/roots.js +1 -1
  33. package/package.json +6 -6
  34. package/node_modules/@zuplo/runtime/out/esm/chunk-IASCNBZZ.js.map +0 -1
  35. /package/node_modules/@zuplo/runtime/out/esm/{chunk-IASCNBZZ.js.LEGAL.txt → chunk-AQGS5CID.js.LEGAL.txt} +0 -0
@@ -2,7 +2,8 @@
2
2
 
3
3
  // We include a version number for the Dispatcher API. In case of breaking changes,
4
4
  // this version number must be increased to avoid conflicts.
5
- const globalDispatcher = Symbol.for('undici.globalDispatcher.1')
5
+ const globalDispatcher = Symbol.for('undici.globalDispatcher.2')
6
+ const legacyGlobalDispatcher = Symbol.for('undici.globalDispatcher.1')
6
7
  const { InvalidArgumentError } = require('./core/errors')
7
8
  const Agent = require('./dispatcher/agent')
8
9
 
@@ -14,12 +15,20 @@ function setGlobalDispatcher (agent) {
14
15
  if (!agent || typeof agent.dispatch !== 'function') {
15
16
  throw new InvalidArgumentError('Argument agent must implement Agent')
16
17
  }
18
+
17
19
  Object.defineProperty(globalThis, globalDispatcher, {
18
20
  value: agent,
19
21
  writable: true,
20
22
  enumerable: false,
21
23
  configurable: false
22
24
  })
25
+
26
+ Object.defineProperty(globalThis, legacyGlobalDispatcher, {
27
+ value: agent,
28
+ writable: true,
29
+ enumerable: false,
30
+ configurable: false
31
+ })
23
32
  }
24
33
 
25
34
  function getGlobalDispatcher () {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici",
3
- "version": "7.26.0",
3
+ "version": "7.27.0",
4
4
  "description": "An HTTP/1.1 client, written from scratch for Node.js",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/core",
3
- "version": "6.70.56",
3
+ "version": "6.70.59",
4
4
  "repository": "https://github.com/zuplo/zuplo",
5
5
  "author": "Zuplo, Inc.",
6
6
  "type": "module",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zuplo/graphql",
3
3
  "type": "module",
4
- "version": "6.70.56",
4
+ "version": "6.70.59",
5
5
  "repository": "https://github.com/zuplo/zuplo",
6
6
  "author": "Zuplo, Inc.",
7
7
  "exports": {
@@ -2,7 +2,7 @@
2
2
  "name": "@zuplo/openapi-tools",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "6.70.56",
5
+ "version": "6.70.59",
6
6
  "description": "Tooling for OpenAPI files",
7
7
  "repository": {
8
8
  "type": "git",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zuplo/otel",
3
3
  "type": "module",
4
- "version": "6.70.56",
4
+ "version": "6.70.59",
5
5
  "repository": "https://github.com/zuplo/zuplo",
6
6
  "author": "Zuplo, Inc.",
7
7
  "exports": {