atlassian-connect-descriptor 0.4.1.0 → 0.4.2.0
raw patch · 2 files changed
+4/−3 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ Data.Connect.Descriptor: [extractionAlias] :: Extraction -> Maybe Text
- Data.Connect.Descriptor: Extraction :: Text -> ExtractionType -> Extraction
+ Data.Connect.Descriptor: Extraction :: Text -> ExtractionType -> Maybe Text -> Extraction
Files
atlassian-connect-descriptor.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.4.1.0+version: 0.4.2.0 -- A short (one-line) description of the package. synopsis: Code that helps you create a valid Atlassian Connect Descriptor.
src/Data/Connect/Modules.hs view
@@ -530,8 +530,9 @@ -- | An 'Extraction' represents a snippet of data that should be extracted from a 'KeyConfiguration' such that it is -- Indexed by JIRA and capable of being searched in JQL. data Extraction = Extraction- { extractionObjectName :: T.Text- , extractionType :: ExtractionType+ { extractionObjectName :: T.Text -- ^ The json path to the data in the json data stored in this property.+ , extractionType :: ExtractionType -- ^ The type of data contained in this extraction. Arrays are automatically handled.+ , extractionAlias :: Maybe T.Text -- ^ The alias for this extraction to use in JQL queries. } deriving (Show, Generic) instance ToJSON Extraction where