Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Releases: chappy84/google-analytics-server-side

v0.7.5-beta

04 Oct 22:42
Compare
Choose a tag to compare
  • Fix wrong name variable used in BrowserCap.
  • Ensure UserAgent has been sent to BotInfo.
  • Ensure AcceptedLanguage / RemoteAddress / UserAgent has been sent to Http.

v0.7.4-beta

04 Oct 22:43
Compare
Choose a tag to compare
  • Fix autoloading issue in PHP 5.2 where GASS_Adapter_Base::__construct didn't match GASS_Adapter_Interface::__construct.

v0.7.3-beta

04 Oct 22:44
Compare
Choose a tag to compare
  • Add in setting of Custom Variables.
  • Add extra nonInteraction parameter to setEvent / createEvent.
  • Correct issue with getEventString where value set in wrong place.

v0.7.2-beta

04 Oct 22:44
Compare
Choose a tag to compare
  • Check event value is integer.
  • 5: Readme updates from @skl
    (#5)

v0.7.1-beta

04 Oct 22:45
Compare
Choose a tag to compare
  • PHPDoc and Readme updates.

v0.7.0-beta

04 Oct 22:46
Compare
Choose a tag to compare
  • Convert into a small framework under GASS PHP 5.2 virtual namespace (for backwards compatability).
  • Add in autoloader for new GASS virtual namespace.
  • GASS_Http singleton so can be used anywhere in framework without passing options around.
  • GASS_Http uses adapters, defaults to Stream, can also use cURL, ability for developer to write own adapters.
  • GASS_BotInfo which detects if user-agent is a bot or not separated out as not required.
  • GASS_BotInfo uses adapters, php's BrowserCap is default, but original UserAgentString.info is also available, developer can write own adapters.

v0.6.4-beta

04 Oct 22:47
Compare
Choose a tag to compare
  • 3: Ensure bots.csv is not empty when received from url and ensure lines in csv aren't empty before dealing with them.
    (#3)

v0.6.3-beta

04 Oct 22:47
Compare
Choose a tag to compare
  • 1: Ensure set cookie headers are only sent out once.
    (#1)
  • 2: Readme Updates from @skl
    (#2)

v0.6.2-beta

04 Oct 22:47
Compare
Choose a tag to compare
  • Add in check to ensure cURL extension has been installed when the class is instantiated.

v0.6.1-beta

04 Oct 22:48
Compare
Choose a tag to compare
  • Allow setting / getting of any class level variable with a publicly available get / set method via getOption / setOption methods.