packages feed

gi-javascriptcore 4.0.24 → 4.0.25

raw patch · 4 files changed

+9/−5 lines, 4 filesdep ~textsetup-changedPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: text

API changes (from Hackage documentation)

+ GI.JavaScriptCore.Enums: AnotherTypedArrayType :: Int -> TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeFloat32 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeFloat64 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeInt16 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeInt32 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeInt64 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeInt8 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeNone :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeUint16 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeUint32 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeUint64 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeUint8 :: TypedArrayType
+ GI.JavaScriptCore.Enums: TypedArrayTypeUint8Clamped :: TypedArrayType
+ GI.JavaScriptCore.Enums: data TypedArrayType
+ GI.JavaScriptCore.Enums: instance GHC.Classes.Eq GI.JavaScriptCore.Enums.TypedArrayType
+ GI.JavaScriptCore.Enums: instance GHC.Classes.Ord GI.JavaScriptCore.Enums.TypedArrayType
+ GI.JavaScriptCore.Enums: instance GHC.Enum.Enum GI.JavaScriptCore.Enums.TypedArrayType
+ GI.JavaScriptCore.Enums: instance GHC.Show.Show GI.JavaScriptCore.Enums.TypedArrayType
+ GI.JavaScriptCore.Objects.Value: valueArrayBufferGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> Word64 -> m (Ptr ())
+ GI.JavaScriptCore.Objects.Value: valueArrayBufferGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueIsArrayBuffer :: (HasCallStack, MonadIO m, IsValue a) => a -> m Bool
+ GI.JavaScriptCore.Objects.Value: valueIsTypedArray :: (HasCallStack, MonadIO m, IsValue a) => a -> m Bool
+ GI.JavaScriptCore.Objects.Value: valueNewArrayBuffer :: (HasCallStack, MonadIO m, IsContext a) => a -> Ptr () -> Word64 -> Maybe DestroyNotify -> Ptr () -> m (Maybe Value)
+ GI.JavaScriptCore.Objects.Value: valueNewTypedArray :: (HasCallStack, MonadIO m, IsContext a) => a -> TypedArrayType -> Word64 -> m Value
+ GI.JavaScriptCore.Objects.Value: valueNewTypedArrayWithBuffer :: (HasCallStack, MonadIO m, IsValue a) => a -> TypedArrayType -> Word64 -> Int64 -> m Value
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetBuffer :: (HasCallStack, MonadIO m, IsValue a) => a -> m Value
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetData :: (HasCallStack, MonadIO m, IsValue a) => a -> m (Ptr (), Word64)
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetLength :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetOffset :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetSize :: (HasCallStack, MonadIO m, IsValue a) => a -> m Word64
+ GI.JavaScriptCore.Objects.Value: valueTypedArrayGetType :: (HasCallStack, MonadIO m, IsValue a) => a -> m TypedArrayType
- GI.JavaScriptCore.Callbacks: type ClassDeletePropertyFunction = Class " /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class'" -> Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Ptr () " /@instance@/: the /@jscClass@/ instance" -> Text " /@name@/: the property name" -> IO Bool " __Returns:__ 'P.True' if handled or 'P.False' to to forward the request to the parent class or prototype chain."
+ GI.JavaScriptCore.Callbacks: type ClassDeletePropertyFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | /@name@/: the property name Text -> -- | __Returns:__ 'P.True' if handled or 'P.False' to to forward the request to the parent class or prototype chain. IO Bool
- GI.JavaScriptCore.Callbacks: type ClassEnumeratePropertiesFunction = Class " /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class'" -> Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Ptr () " /@instance@/: the /@jscClass@/ instance" -> IO (Maybe [Text]) " __Returns:__ a 'P.Nothing'-terminated array of strings containing the property names, or 'P.Nothing' if /@instance@/ doesn\'t have enumerable properties."
+ 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 ClassGetPropertyFunction = Class " /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class'" -> Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Ptr () " /@instance@/: the /@jscClass@/ instance" -> Text " /@name@/: the property name" -> IO (Maybe Value) " __Returns:__ a t'GI.JavaScriptCore.Objects.Value.Value' or 'P.Nothing' to forward the request to the parent class or prototype chain"
+ GI.JavaScriptCore.Callbacks: type ClassGetPropertyFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | /@name@/: the property name Text -> -- | __Returns:__ a t'GI.JavaScriptCore.Objects.Value.Value' or 'P.Nothing' to forward the request to -- the parent class or prototype chain IO (Maybe Value)
- GI.JavaScriptCore.Callbacks: type ClassHasPropertyFunction = Class " /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class'" -> Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Ptr () " /@instance@/: the /@jscClass@/ instance" -> Text " /@name@/: the property name" -> IO Bool " __Returns:__ 'P.True' if /@instance@/ has a property with /@name@/ or 'P.False' to forward the request to the parent class or prototype chain."
+ GI.JavaScriptCore.Callbacks: type ClassHasPropertyFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | /@name@/: the property name Text -> -- | __Returns:__ 'P.True' if /@instance@/ has a property with /@name@/ or 'P.False' to forward the request -- to the parent class or prototype chain. IO Bool
- GI.JavaScriptCore.Callbacks: type ClassSetPropertyFunction = Class " /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class'" -> Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Ptr () " /@instance@/: the /@jscClass@/ instance" -> Text " /@name@/: the property name" -> Value " /@value@/: the t'GI.JavaScriptCore.Objects.Value.Value' to set" -> IO Bool " __Returns:__ 'P.True' if handled or 'P.False' to forward the request to the parent class or prototype chain."
+ GI.JavaScriptCore.Callbacks: type ClassSetPropertyFunction = -- | /@jscClass@/: a t'GI.JavaScriptCore.Objects.Class.Class' Class -> -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@instance@/: the /@jscClass@/ instance Ptr () -> -- | /@name@/: the property name Text -> -- | /@value@/: the t'GI.JavaScriptCore.Objects.Value.Value' to set Value -> -- | __Returns:__ 'P.True' if handled or 'P.False' to forward the request to the parent class or prototype chain. IO Bool
- GI.JavaScriptCore.Callbacks: type ExceptionHandler = Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Exception " /@exception@/: a t'GI.JavaScriptCore.Objects.Exception.Exception'" -> IO ()
+ GI.JavaScriptCore.Callbacks: type ExceptionHandler = -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@exception@/: a t'GI.JavaScriptCore.Objects.Exception.Exception' Exception -> IO ()
- GI.JavaScriptCore.Callbacks: type ExceptionHandler_WithClosures = Context " /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context'" -> Exception " /@exception@/: a t'GI.JavaScriptCore.Objects.Exception.Exception'" -> Ptr () " /@userData@/: user data" -> IO ()
+ GI.JavaScriptCore.Callbacks: type ExceptionHandler_WithClosures = -- | /@context@/: a t'GI.JavaScriptCore.Objects.Context.Context' Context -> -- | /@exception@/: a t'GI.JavaScriptCore.Objects.Exception.Exception' Exception -> -- | /@userData@/: user data Ptr () -> IO ()
- GI.JavaScriptCore.Callbacks: type OptionsFunc = Text " /@option@/: the option name" -> OptionType " /@type@/: the option t'GI.JavaScriptCore.Enums.OptionType'" -> Maybe Text " /@description@/: the option description, or 'P.Nothing'" -> IO Bool " __Returns:__ 'P.True' to stop the iteration, or 'P.False' otherwise"
+ GI.JavaScriptCore.Callbacks: type OptionsFunc = -- | /@option@/: the option name Text -> -- | /@type@/: the option t'GI.JavaScriptCore.Enums.OptionType' OptionType -> -- | /@description@/: the option description, or 'P.Nothing' Maybe Text -> -- | __Returns:__ 'P.True' to stop the iteration, or 'P.False' otherwise IO Bool
- GI.JavaScriptCore.Callbacks: type OptionsFunc_WithClosures = Text " /@option@/: the option name" -> OptionType " /@type@/: the option t'GI.JavaScriptCore.Enums.OptionType'" -> Maybe Text " /@description@/: the option description, or 'P.Nothing'" -> Ptr () " /@userData@/: user data" -> IO Bool " __Returns:__ 'P.True' to stop the iteration, or 'P.False' otherwise"
+ GI.JavaScriptCore.Callbacks: type OptionsFunc_WithClosures = -- | /@option@/: the option name Text -> -- | /@type@/: the option t'GI.JavaScriptCore.Enums.OptionType' OptionType -> -- | /@description@/: the option description, or 'P.Nothing' Maybe Text -> -- | /@userData@/: user data Ptr () -> -- | __Returns:__ 'P.True' to stop the iteration, or 'P.False' otherwise IO Bool

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+### 4.0.25+++ Relax constraint on text+ ### 4.0.24  + Update to haskell-gi(-base)-0.26
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.24/docs/GI-JavaScriptCore.html](https://hackage.haskell.org/package/gi-javascriptcore-4.0.24/docs/GI-JavaScriptCore.html)+[https://hackage.haskell.org/package/gi-javascriptcore-4.0.25/docs/GI-JavaScriptCore.html](https://hackage.haskell.org/package/gi-javascriptcore-4.0.25/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.24"+        pkgVersion = "4.0.25"         overridesFile = Nothing         verbose = False         outputDir = Nothing
gi-javascriptcore.cabal view
@@ -1,5 +1,5 @@ name:                 gi-javascriptcore-version:              4.0.24+version:              4.0.25 synopsis:             JavaScriptCore bindings description:          Bindings for JavaScriptCore, autogenerated by haskell-gi. homepage:             https://github.com/haskell-gi/haskell-gi@@ -22,7 +22,7 @@  library       default-language: Haskell2010-      default-extensions: NoImplicitPrelude, ScopedTypeVariables, CPP, OverloadedStrings, NegativeLiterals, ConstraintKinds, TypeFamilies, MultiParamTypeClasses, KindSignatures, FlexibleInstances, UndecidableInstances, DataKinds, FlexibleContexts, UndecidableSuperClasses+      default-extensions: NoImplicitPrelude, ScopedTypeVariables, CPP, OverloadedStrings, NegativeLiterals, ConstraintKinds, TypeFamilies, MultiParamTypeClasses, KindSignatures, FlexibleInstances, UndecidableInstances, DataKinds, FlexibleContexts, UndecidableSuperClasses, TypeOperators       other-extensions: PatternSynonyms, ViewPatterns, TypeApplications       ghc-options: -fno-warn-unused-imports -fno-warn-warnings-deprecations @@ -35,7 +35,7 @@                      gi-glib == 2.0.*,                      bytestring >= 0.10 && < 1,                      containers >= 0.5 && < 1,-                     text >= 1.0 && < 2,+                     text >= 1.0 && < 3,                      transformers >= 0.4 && < 1        -- Disable overloading when compiling under GHC 8.2.x