commit ghc-gogol-proximitybeacon for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-gogol-proximitybeacon for openSUSE:Factory checked in at 2017-08-31 20:54:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-gogol-proximitybeacon (Old) and /work/SRC/openSUSE:Factory/.ghc-gogol-proximitybeacon.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-gogol-proximitybeacon" Thu Aug 31 20:54:31 2017 rev:2 rq:513333 version:0.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-gogol-proximitybeacon/ghc-gogol-proximitybeacon.changes 2017-05-10 20:43:12.852679172 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-gogol-proximitybeacon.new/ghc-gogol-proximitybeacon.changes 2017-08-31 20:54:32.327642176 +0200 @@ -1,0 +2,5 @@ +Thu Jul 27 14:03:08 UTC 2017 - psimons@suse.com + +- Update to version 0.3.0. + +------------------------------------------------------------------- Old: ---- gogol-proximitybeacon-0.1.1.tar.gz New: ---- gogol-proximitybeacon-0.3.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-gogol-proximitybeacon.spec ++++++ --- /var/tmp/diff_new_pack.AXpFxR/_old 2017-08-31 20:54:33.371495511 +0200 +++ /var/tmp/diff_new_pack.AXpFxR/_new 2017-08-31 20:54:33.391492701 +0200 @@ -18,7 +18,7 @@ %global pkg_name gogol-proximitybeacon Name: ghc-%{pkg_name} -Version: 0.1.1 +Version: 0.3.0 Release: 0 Summary: Google Proximity Beacon SDK License: MPL-2.0 ++++++ gogol-proximitybeacon-0.1.1.tar.gz -> gogol-proximitybeacon-0.3.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-proximitybeacon-0.1.1/README.md new/gogol-proximitybeacon-0.3.0/README.md --- old/gogol-proximitybeacon-0.1.1/README.md 2016-11-03 14:26:26.000000000 +0100 +++ new/gogol-proximitybeacon-0.3.0/README.md 2017-07-12 16:45:05.000000000 +0200 @@ -8,7 +8,7 @@ ## Version -`0.1.1` +`0.3.0` ## Description diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-proximitybeacon-0.1.1/gen/Network/Google/ProximityBeacon/Types/Product.hs new/gogol-proximitybeacon-0.3.0/gen/Network/Google/ProximityBeacon/Types/Product.hs --- old/gogol-proximitybeacon-0.1.1/gen/Network/Google/ProximityBeacon/Types/Product.hs 2016-11-03 14:26:26.000000000 +0100 +++ new/gogol-proximitybeacon-0.3.0/gen/Network/Google/ProximityBeacon/Types/Product.hs 2017-07-12 16:45:05.000000000 +0200 @@ -97,7 +97,7 @@ -- -- /See:/ 'attachmentInfo' smart constructor. data AttachmentInfo = AttachmentInfo' - { _aiData :: !(Maybe Base64) + { _aiData :: !(Maybe Bytes) , _aiNamespacedType :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) @@ -120,7 +120,7 @@ aiData :: Lens' AttachmentInfo (Maybe ByteString) aiData = lens _aiData (\ s a -> s{_aiData = a}) . - mapping _Base64 + mapping _Bytes -- | Specifies what kind of attachment this is. Tells a client how to -- interpret the \`data\` field. Format is namespace\/type, for example @@ -378,10 +378,10 @@ data EphemeralIdRegistration = EphemeralIdRegistration' { _eirRotationPeriodExponent :: !(Maybe (Textual Word32)) , _eirInitialClockValue :: !(Maybe (Textual Word64)) - , _eirBeaconIdentityKey :: !(Maybe Base64) - , _eirBeaconEcdhPublicKey :: !(Maybe Base64) - , _eirInitialEid :: !(Maybe Base64) - , _eirServiceEcdhPublicKey :: !(Maybe Base64) + , _eirBeaconIdentityKey :: !(Maybe Bytes) + , _eirBeaconEcdhPublicKey :: !(Maybe Bytes) + , _eirInitialEid :: !(Maybe Bytes) + , _eirServiceEcdhPublicKey :: !(Maybe Bytes) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'EphemeralIdRegistration' with the minimum fields required to make a request. @@ -442,7 +442,7 @@ eirBeaconIdentityKey = lens _eirBeaconIdentityKey (\ s a -> s{_eirBeaconIdentityKey = a}) - . mapping _Base64 + . mapping _Bytes -- | The beacon\'s public key used for the Elliptic curve Diffie-Hellman key -- exchange. When this field is populated, \`service_ecdh_public_key\` must @@ -451,7 +451,7 @@ eirBeaconEcdhPublicKey = lens _eirBeaconEcdhPublicKey (\ s a -> s{_eirBeaconEcdhPublicKey = a}) - . mapping _Base64 + . mapping _Bytes -- | An initial ephemeral ID calculated using the clock value submitted as -- \`initial_clock_value\`, and the secret key generated by the @@ -462,7 +462,7 @@ eirInitialEid = lens _eirInitialEid (\ s a -> s{_eirInitialEid = a}) - . mapping _Base64 + . mapping _Bytes -- | The service\'s public key used for the Elliptic curve Diffie-Hellman key -- exchange. When this field is populated, \`beacon_ecdh_public_key\` must @@ -471,7 +471,7 @@ eirServiceEcdhPublicKey = lens _eirServiceEcdhPublicKey (\ s a -> s{_eirServiceEcdhPublicKey = a}) - . mapping _Base64 + . mapping _Bytes instance FromJSON EphemeralIdRegistration where parseJSON @@ -616,7 +616,7 @@ , _bEphemeralIdRegistration :: !(Maybe EphemeralIdRegistration) , _bIndoorLevel :: !(Maybe IndoorLevel) , _bExpectedStability :: !(Maybe Text) - , _bProvisioningKey :: !(Maybe Base64) + , _bProvisioningKey :: !(Maybe Bytes) , _bDescription :: !(Maybe Text) , _bPlaceId :: !(Maybe Text) , _bAdvertisedId :: !(Maybe AdvertisedId) @@ -722,7 +722,7 @@ bProvisioningKey = lens _bProvisioningKey (\ s a -> s{_bProvisioningKey = a}) - . mapping _Base64 + . mapping _Bytes -- | Free text used to identify and describe the beacon. Maximum length 140 -- characters. Optional. @@ -934,7 +934,7 @@ data EphemeralIdRegistrationParams = EphemeralIdRegistrationParams' { _eirpMinRotationPeriodExponent :: !(Maybe (Textual Word32)) , _eirpMaxRotationPeriodExponent :: !(Maybe (Textual Word32)) - , _eirpServiceEcdhPublicKey :: !(Maybe Base64) + , _eirpServiceEcdhPublicKey :: !(Maybe Bytes) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'EphemeralIdRegistrationParams' with the minimum fields required to make a request. @@ -977,7 +977,7 @@ eirpServiceEcdhPublicKey = lens _eirpServiceEcdhPublicKey (\ s a -> s{_eirpServiceEcdhPublicKey = a}) - . mapping _Base64 + . mapping _Bytes instance FromJSON EphemeralIdRegistrationParams where parseJSON @@ -1069,7 +1069,7 @@ -- -- /See:/ 'observation' smart constructor. data Observation = Observation' - { _oTelemetry :: !(Maybe Base64) + { _oTelemetry :: !(Maybe Bytes) , _oTimestampMs :: !(Maybe Text) , _oAdvertisedId :: !(Maybe AdvertisedId) } deriving (Eq,Show,Data,Typeable,Generic) @@ -1098,7 +1098,7 @@ oTelemetry :: Lens' Observation (Maybe ByteString) oTelemetry = lens _oTelemetry (\ s a -> s{_oTelemetry = a}) . - mapping _Base64 + mapping _Bytes -- | Time when the beacon was observed. oTimestampMs :: Lens' Observation (Maybe Text) @@ -1134,7 +1134,7 @@ -- -- /See:/ 'beaconAttachment' smart constructor. data BeaconAttachment = BeaconAttachment' - { _baData :: !(Maybe Base64) + { _baData :: !(Maybe Bytes) , _baAttachmentName :: !(Maybe Text) , _baNamespacedType :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) @@ -1164,7 +1164,7 @@ baData :: Lens' BeaconAttachment (Maybe ByteString) baData = lens _baData (\ s a -> s{_baData = a}) . - mapping _Base64 + mapping _Bytes -- | Resource name of this attachment. Attachment names have the format: -- beacons\/beacon_id\/attachments\/attachment_id. Leave this empty on @@ -1257,7 +1257,7 @@ -- -- /See:/ 'advertisedId' smart constructor. data AdvertisedId = AdvertisedId' - { _aiId :: !(Maybe Base64) + { _aiId :: !(Maybe Bytes) , _aiType :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) @@ -1283,8 +1283,7 @@ -- (such as hex) representation thereof. Required. aiId :: Lens' AdvertisedId (Maybe ByteString) aiId - = lens _aiId (\ s a -> s{_aiId = a}) . - mapping _Base64 + = lens _aiId (\ s a -> s{_aiId = a}) . mapping _Bytes -- | Specifies the identifier type. Required. aiType :: Lens' AdvertisedId (Maybe Text) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-proximitybeacon-0.1.1/gogol-proximitybeacon.cabal new/gogol-proximitybeacon-0.3.0/gogol-proximitybeacon.cabal --- old/gogol-proximitybeacon-0.1.1/gogol-proximitybeacon.cabal 2016-11-03 14:26:26.000000000 +0100 +++ new/gogol-proximitybeacon-0.3.0/gogol-proximitybeacon.cabal 2017-07-12 16:45:05.000000000 +0200 @@ -1,5 +1,5 @@ name: gogol-proximitybeacon -version: 0.1.1 +version: 0.3.0 synopsis: Google Proximity Beacon SDK. homepage: https://github.com/brendanhay/gogol bug-reports: https://github.com/brendanhay/gogol/issues @@ -57,5 +57,5 @@ , Network.Google.ProximityBeacon.Types.Sum build-depends: - gogol-core == 0.1.1.* + gogol-core == 0.3.0.* , base >= 4.7 && < 5
participants (1)
-
root@hilbert.suse.de