rescript-relay 1.0.0-rc.3 → 1.0.0-rc.4

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,6 +1,6 @@
1
1
  # master
2
2
 
3
- # 1.0.0-rc.3
3
+ # 1.0.0-rc.4
4
4
 
5
5
  _[Here's a commit showing a project being upgraded to this version](https://github.com/zth/rescript-relay/commit/5831c2f1f0f13eedc1cb60468c32fd32b2dc01d3)_
6
6
 
@@ -47,6 +47,11 @@ You can go ahead and remove these packages, that are no longer needed, as the co
47
47
 
48
48
  ## 1.0.0 development changelog
49
49
 
50
+ ### rc.4
51
+
52
+ - _potentially breaking_ All enum type definitions now reside in `RelaySchemaAssets_graphql.enum_<yourEnumName>`, and are _not_ generated on the operation itself anymore. So, if you previously referred to the actual enum _type_, like `Fragment.Types.enum_MyFineEnum`, you'll now need to refer to that enum type as `RelaySchemaAssets_graphql.enum_MyFineEnum`.
53
+ - Fix bug in the new type safe connection ID makers where different types could end up in the same array, yielding type errors in ReScript.
54
+
50
55
  ### rc.3
51
56
 
52
57
  - Fix bug in the new type safe connection ID makers where constant value `null` couldn't be used.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rescript-relay",
3
- "version": "1.0.0-rc.3",
3
+ "version": "1.0.0-rc.4",
4
4
  "main": "src/RescriptRelay.res",
5
5
  "license": "MIT",
6
6
  "author": "Gabriel Nordeborn",
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -33,3 +33,5 @@ let internal_nullableToOptionalExnHandler = x =>
33
33
  | None => None
34
34
  | Some(handler) => Some(maybeExn => maybeExn->Js.Nullable.toOption->handler)
35
35
  }
36
+
37
+ @live @unboxed type rec arg = Arg(_): arg
@@ -4,3 +4,4 @@ let internal_removeUndefinedAndConvertNullsRaw: 't => 't
4
4
  let internal_nullableToOptionalExnHandler: option<option<'b> => 'a> => option<
5
5
  Js.Nullable.t<'b> => 'a,
6
6
  >
7
+ @live @unboxed type rec arg = Arg(_): arg