@ctx-core/graphql-client 7.0.124 → 7.1.0

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,5 +1,11 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - @ctx-core/fetch-undici instead of @ctx-core/fetch
8
+
3
9
  ## 7.0.124
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.124",
3
+ "version": "7.1.0",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@ctx-core/dom": "^11.1.5",
29
- "@ctx-core/fetch": "^11.0.113",
29
+ "@ctx-core/fetch-undici": "^1.0.0",
30
30
  "@ctx-core/graphql": "^9.0.55",
31
31
  "@ctx-core/object": "^22.0.13"
32
32
  },
@@ -1,4 +1,4 @@
1
- import { fetch } from '@ctx-core/fetch'
1
+ import { safe_fetch as fetch } from '@ctx-core/fetch-undici'
2
2
  import { assign } from '@ctx-core/object'
3
3
  export function graphql_fetch_(in_http_opts = {}) {
4
4
  return async function graphql_fetch(body, fn_in_http_opts = {}) {