gi-javascriptcore 4.0.27 → 4.0.28
raw patch · 4 files changed
+9/−5 lines, 4 filesdep ~haskell-gisetup-changedPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: haskell-gi
API changes (from Hackage documentation)
- GI.JavaScriptCore.Objects.Value: valueObjectDefinePropertyAccessor :: (HasCallStack, MonadIO m, IsValue a) => a -> Text -> [ValuePropertyFlags] -> GType -> Maybe Callback -> Maybe Callback -> m ()
+ GI.JavaScriptCore.Callbacks: drop_closures_ClassEnumeratePropertiesFunction :: ClassEnumeratePropertiesFunction -> ClassEnumeratePropertiesFunction_WithClosures
+ GI.JavaScriptCore.Callbacks: noClassEnumeratePropertiesFunction_WithClosures :: Maybe ClassEnumeratePropertiesFunction_WithClosures
+ GI.JavaScriptCore.Callbacks: type ClassEnumeratePropertiesFunction_WithClosures = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | __Returns:__ a 'P.Nothing'-terminated array of strings -- containing the property names, or 'P.Nothing' if /@instance@/ doesn\'t have enumerable properties. IO (Maybe [Text])
- GI.JavaScriptCore.Callbacks: type ClassEnumeratePropertiesFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | __Returns:__ a 'P.Nothing'-terminated array of strings -- containing the property names, or 'P.Nothing' if /@instance@/ doesn\'t have enumerable properties. IO (Maybe [Text])
+ GI.JavaScriptCore.Callbacks: type ClassEnumeratePropertiesFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | __Returns:__ a 'P.Nothing'-terminated array of strings -- containing the property names, or 'P.Nothing' if /@instance@/ doesn\'t have enumerable properties. IO (Maybe [Text])
- GI.JavaScriptCore.Callbacks: wrap_ClassEnumeratePropertiesFunction :: Maybe (Ptr (FunPtr C_ClassEnumeratePropertiesFunction)) -> ClassEnumeratePropertiesFunction -> C_ClassEnumeratePropertiesFunction
+ GI.JavaScriptCore.Callbacks: wrap_ClassEnumeratePropertiesFunction :: Maybe (Ptr (FunPtr C_ClassEnumeratePropertiesFunction)) -> ClassEnumeratePropertiesFunction_WithClosures -> C_ClassEnumeratePropertiesFunction
- GI.JavaScriptCore.Functions: optionsGetSize :: (HasCallStack, MonadIO m) => Text -> m (Bool, Word64)
+ GI.JavaScriptCore.Functions: optionsGetSize :: (HasCallStack, MonadIO m) => Text -> m (Bool, CSize)
- GI.JavaScriptCore.Functions: optionsSetSize :: (HasCallStack, MonadIO m) => Text -> Word64 -> m Bool
+ GI.JavaScriptCore.Functions: optionsSetSize :: (HasCallStack, MonadIO m) => Text -> CSize -> m Bool
- GI.JavaScriptCore.Objects.Value: valueArrayBufferGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> Word64 -> m (Ptr ())
+ GI.JavaScriptCore.Objects.Value: valueArrayBufferGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> CSize -> m (Ptr ())
- GI.JavaScriptCore.Objects.Value: valueArrayBufferGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueArrayBufferGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m CSize
- GI.JavaScriptCore.Objects.Value: valueNewArrayBuffer :: (HasCallStack, MonadIO m, IsContext a) => a -> Ptr () -> Word64 -> Maybe DestroyNotify -> Ptr () -> m (Maybe Value)
+ GI.JavaScriptCore.Objects.Value: valueNewArrayBuffer :: (HasCallStack, MonadIO m, IsContext a) => a -> Ptr () -> CSize -> Maybe DestroyNotify -> m (Maybe Value)
- GI.JavaScriptCore.Objects.Value: valueNewTypedArray :: (HasCallStack, MonadIO m, IsContext a) => a -> TypedArrayType -> Word64 -> m Value
+ GI.JavaScriptCore.Objects.Value: valueNewTypedArray :: (HasCallStack, MonadIO m, IsContext a) => a -> TypedArrayType -> CSize -> m Value
- GI.JavaScriptCore.Objects.Value: valueNewTypedArrayWithBuffer :: (HasCallStack, MonadIO m, IsValue a) => a -> TypedArrayType -> Word64 -> Int64 -> m Value
+ GI.JavaScriptCore.Objects.Value: valueNewTypedArrayWithBuffer :: (HasCallStack, MonadIO m, IsValue a) => a -> TypedArrayType -> CSize -> Int64 -> m Value
- GI.JavaScriptCore.Objects.Value: valueTypedArrayGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> m (Ptr (), Word64)
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> m (Ptr (), CSize)
- GI.JavaScriptCore.Objects.Value: valueTypedArrayGetLength :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetLength :: (HasCallStack, MonadIO m, IsValue a) => a -> m CSize
- GI.JavaScriptCore.Objects.Value: valueTypedArrayGetOffset :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetOffset :: (HasCallStack, MonadIO m, IsValue a) => a -> m CSize
- GI.JavaScriptCore.Objects.Value: valueTypedArrayGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m CSize
- GI.JavaScriptCore.Structs.ClassVTable: getClassVTableEnumerateProperties :: MonadIO m => ClassVTable -> m (Maybe ClassEnumeratePropertiesFunction)
+ GI.JavaScriptCore.Structs.ClassVTable: getClassVTableEnumerateProperties :: MonadIO m => ClassVTable -> m (Maybe ClassEnumeratePropertiesFunction_WithClosures)
Files
- ChangeLog.md +4/−0
- README.md +1/−1
- Setup.hs +1/−1
- gi-javascriptcore.cabal +3/−3
ChangeLog.md view
@@ -1,3 +1,7 @@+### 4.0.28+++ Depend on haskell-gi >= 0.26.9 (see [issue 439](https://github.com/haskell-gi/haskell-gi/issues/439))+ ### 4.0.27 + Bump base lower bound
README.md view
@@ -1,6 +1,6 @@ # Documentation Autogenerated documentation for this package can be found at -[https://hackage.haskell.org/package/gi-javascriptcore-4.0.27/docs/GI-JavaScriptCore.html](https://hackage.haskell.org/package/gi-javascriptcore-4.0.27/docs/GI-JavaScriptCore.html)+[https://hackage.haskell.org/package/gi-javascriptcore-4.0.28/docs/GI-JavaScriptCore.html](https://hackage.haskell.org/package/gi-javascriptcore-4.0.28/docs/GI-JavaScriptCore.html) For general documentation on using [haskell-gi](https://github.com/haskell-gi/haskell-gi) based bindings, see [the project page](https://github.com/haskell-gi/haskell-gi) or [the Wiki](https://github.com/haskell-gi/haskell-gi/wiki).
Setup.hs view
@@ -11,7 +11,7 @@ where name = "JavaScriptCore" version = "4.0" pkgName = "gi-javascriptcore"- pkgVersion = "4.0.27"+ pkgVersion = "4.0.28" overridesFile = Nothing verbose = False outputDir = Nothing
gi-javascriptcore.cabal view
@@ -1,5 +1,5 @@ name: gi-javascriptcore-version: 4.0.27+version: 4.0.28 synopsis: JavaScriptCore bindings description: Bindings for JavaScriptCore, autogenerated by haskell-gi. homepage: https://github.com/haskell-gi/haskell-gi@@ -16,7 +16,7 @@ custom-setup setup-depends: base >= 4.11 && < 5, Cabal >= 1.24 && < 4,- haskell-gi >= 0.26 && < 0.27,+ haskell-gi >= 0.26.9 && < 0.27, gi-gobject == 2.0.*, gi-glib == 2.0.* @@ -29,7 +29,7 @@ pkgconfig-depends: javascriptcoregtk-4.0 build-depends: base >= 4.7 && <5, haskell-gi-base >= 0.26 && < 0.27,- haskell-gi >= 0.26 && < 0.27,+ haskell-gi >= 0.26.9 && < 0.27, haskell-gi-overloading < 1.1, gi-gobject == 2.0.*, gi-glib == 2.0.*,