Skip to content

Releases: symbiote/silverstripe-addressable

Silverstripe 5 support

01 Nov 01:26
16bad8e
Compare
Choose a tag to compare

Updates to support PHP8.3 and Silverstripe 5

Guzzle updates, Silverstripe version update

11 Oct 23:37
6991661
Compare
Choose a tag to compare

Updates to fix guzzle security issues, attach to latest Silverstripe version

5.0.3

05 Jan 01:12
2ce5330
Compare
Choose a tag to compare
Merge pull request #67 from TheBnl/patch-2

Fix yml issue: The reserved indicator "%" cannot start a plain scalar

5.0.2

01 Jun 23:14
f65c4c2
Compare
Choose a tag to compare
Merge pull request #61 from phyzical/ISSUE-60

Addressable getFrontendFields issues

5.0.1

28 Mar 22:26
b2d08c6
Compare
Choose a tag to compare

This release only relaxes the dependencies, but shouldn't affect existing installations that are already using the CMS.

5.0.0: Add MapboxGeocodeService to allow using Mapbox services

29 Oct 23:12
Compare
Choose a tag to compare
* Add MapboxGeocodeService
* Rename GeocodeService to GoogleGeocodeService
* Implement GeocodeServiceInterface

4.0.1: Update the hasExtension check on Addressable class

03 Sep 00:57
Compare
Choose a tag to compare
Could not find `'Addressable'` because the class is now namespaced. Changed to `Addressable::class`

4.0.0 - SilverStripe 4 upgrade

27 Jul 02:46
0c31d56
Compare
Choose a tag to compare

Changes from SilverStripe 3.X

  • GoogleGeocoding changed class name to Symbiote\Addressable\GeocodeService
    • The static method address_to_point was changed to a non-static method called addressToPoint. This allows you to use the Injector and replace GeocodeService with something else if you need to.
  • Addressable::set_allowed_states(array('' => '', 'NSW' => "New South Wales")); has been deprecated in favour of config values.
  • Addressable::set_allowed_countries(array('' => '', 'AU' => "Australia")); has been deprecated in favour of config values.
  • Addressable::set_postcode_regex(...); has been deprecated in favour of config values.
    • Addressable::set_postcode_regex config value has been deprecated in favour of Addressable::postcode_regex
      • NOTE: Previously there was a hack in Addressable that read Addressable::set_postcode_regex config value, then called Addressable::set_postcode_regex() to update the protected static postcode_regex; value in the Addressable __construct() method.

3.0.1

25 Jul 05:46
cef994b
Compare
Choose a tag to compare
  • Fix tests and get them running in TravisCI
  • Change to PSR-2
  • Add comments surrounding how things work / why certain features exist

Fix Frontend Fields

05 Jul 00:01
89a5d17
Compare
Choose a tag to compare

Changes:

  • Make updateFrontEndFields on Geocodable compatible with DataObject #56