@graphql-hive/plugin-opentelemetry 1.2.0-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0 → 1.2.0-alpha-dbfcaa2770d780461712660e863534dad19590b4

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.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @graphql-hive/plugin-opentelemetry
2
2
 
3
- ## 1.2.0-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0
3
+ ## 1.2.0-alpha-dbfcaa2770d780461712660e863534dad19590b4
4
4
  ### Minor Changes
5
5
 
6
6
 
7
7
 
8
- - [#1611](https://github.com/graphql-hive/gateway/pull/1611) [`5680d9f`](https://github.com/graphql-hive/gateway/commit/5680d9f5e2c38fe5aa5610608b1c775d07d94d22) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - It is now possible to fully configure the OpenTelemetry setup when using `hiveTracingSetup`. You can now provide a `resource` and a `samplingRate` (among other options).
8
+ - [#1611](https://github.com/graphql-hive/gateway/pull/1611) [`6a64d1d`](https://github.com/graphql-hive/gateway/commit/6a64d1d52e8cb4d845aae9696e1811ded9dbdd03) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - It is now possible to fully configure the OpenTelemetry setup when using `hiveTracingSetup`. You can now provide a `resource` and a `samplingRate` (among other options).
9
9
 
10
10
 
11
11
  ### Patch Changes
@@ -22,9 +22,9 @@
22
22
  - Updated dependency [`@graphql-hive/core@^0.13.2` ↗︎](https://www.npmjs.com/package/@graphql-hive/core/v/0.13.2) (from `^0.13.1`, in `dependencies`)
23
23
  - Updated dependency [`@graphql-tools/utils@^10.10.3` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.10.3) (from `^10.10.1`, in `dependencies`)
24
24
  - Updated dependencies [[`4801627`](https://github.com/graphql-hive/gateway/commit/4801627ef16e963bed0052d0f071879004614a14), [`478d7e2`](https://github.com/graphql-hive/gateway/commit/478d7e25ef47fb8fb6183010a8bb61ac31688c55), [`7ecaf7e`](https://github.com/graphql-hive/gateway/commit/7ecaf7e8f658c4e4c1a91d1e8db3c1a8ceca51cb), [`a81b8b2`](https://github.com/graphql-hive/gateway/commit/a81b8b20ecdfda53fb77ae5fae3cbd508ab08936), [`ce83f35`](https://github.com/graphql-hive/gateway/commit/ce83f356cbeb2f8413689204275710e7d7a27822), [`7ecaf7e`](https://github.com/graphql-hive/gateway/commit/7ecaf7e8f658c4e4c1a91d1e8db3c1a8ceca51cb), [`7ecaf7e`](https://github.com/graphql-hive/gateway/commit/7ecaf7e8f658c4e4c1a91d1e8db3c1a8ceca51cb)]:
25
- - @graphql-hive/gateway-runtime@2.3.5-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0
26
- - @graphql-hive/logger@1.0.9-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0
27
- - @graphql-mesh/transport-common@1.0.12-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0
25
+ - @graphql-hive/gateway-runtime@2.3.5-alpha-dbfcaa2770d780461712660e863534dad19590b4
26
+ - @graphql-hive/logger@1.0.9-alpha-dbfcaa2770d780461712660e863534dad19590b4
27
+ - @graphql-mesh/transport-common@1.0.12-alpha-dbfcaa2770d780461712660e863534dad19590b4
28
28
 
29
29
  ## 1.1.2
30
30
  ### Patch Changes
package/dist/setup.cjs CHANGED
@@ -224,7 +224,7 @@ function getContextForRequest(attributes) {
224
224
  return plugin.otelCtxForRequestId.get(attributes.requestId) ?? api.ROOT_CONTEXT;
225
225
  }
226
226
 
227
- globalThis.__OTEL_PLUGIN_VERSION__ = '1.2.0-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0';
227
+ globalThis.__OTEL_PLUGIN_VERSION__ = '1.2.0-alpha-dbfcaa2770d780461712660e863534dad19590b4';
228
228
  let initialized = false;
229
229
  function openTelemetrySetup(options) {
230
230
  const log = options.log || new logger.Logger();
package/dist/setup.js CHANGED
@@ -224,7 +224,7 @@ function getContextForRequest(attributes) {
224
224
  return otelCtxForRequestId.get(attributes.requestId) ?? ROOT_CONTEXT;
225
225
  }
226
226
 
227
- globalThis.__OTEL_PLUGIN_VERSION__ = '1.2.0-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0';
227
+ globalThis.__OTEL_PLUGIN_VERSION__ = '1.2.0-alpha-dbfcaa2770d780461712660e863534dad19590b4';
228
228
  let initialized = false;
229
229
  function openTelemetrySetup(options) {
230
230
  const log = options.log || new Logger();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-hive/plugin-opentelemetry",
3
- "version": "1.2.0-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0",
3
+ "version": "1.2.0-alpha-dbfcaa2770d780461712660e863534dad19590b4",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -63,10 +63,10 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "@graphql-hive/core": "^0.13.2",
66
- "@graphql-hive/gateway-runtime": "2.3.5-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0",
67
- "@graphql-hive/logger": "1.0.9-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0",
66
+ "@graphql-hive/gateway-runtime": "2.3.5-alpha-dbfcaa2770d780461712660e863534dad19590b4",
67
+ "@graphql-hive/logger": "1.0.9-alpha-dbfcaa2770d780461712660e863534dad19590b4",
68
68
  "@graphql-mesh/cross-helpers": "^0.4.10",
69
- "@graphql-mesh/transport-common": "1.0.12-alpha-e698cb6b5b22dcd27d399fe601c95ddb992d7ca0",
69
+ "@graphql-mesh/transport-common": "1.0.12-alpha-dbfcaa2770d780461712660e863534dad19590b4",
70
70
  "@graphql-mesh/types": "^0.104.16",
71
71
  "@graphql-mesh/utils": "^0.104.16",
72
72
  "@graphql-tools/utils": "^10.10.3",