Releases: geocoder-php/Geocoder
2.8.2 (2015-01-07)
- Fixed: encoding issue for
maxmind
provider
3.0.0-alpha2 (2014-12-22)
This is the new 3.0.0 pre-release, including the following changes:
- Added: Introduce
AddressCollection
class - Added: new documentation
3.0.0-alpha1 (2014-12-18)
Hi!
I am proud to announce that we are ready to ship the next major version of Geocoder: 3.0.0. This is a pre-release which will help us ensure everything works smoothly. We are currently working hard on making Geocoder related projects compatible with this new version, hence the need for a pre-release version.
Basically, we changed almost everything in this library but its simplicity and its robustness have been kept. Since 2012, Geocoder provides a powerful API to perform geocoding actions in PHP. However, things in PHP evolved a lot, and we decided to refactor the lib to be more flexible, and even more powerful.
For instance, providers are now highly configurable and Geocoder leverages a third-party library implementing PSR-7.
Update: the main idea behind this was to introduce a dependency to PSR-7 interfaces, and to avoid the NIH syndrom. The http-adapter
library is a great one, and Geocoder is not about dealing with HTTP, it is about geocoding stuff.
Geocoder 3.0.0 contains less code than previously, 49 classes, 5 interfaces and less than 5300 lines of code for the code (tests are not included here). As a matter of fact, Geocoder 2.x has 56 classes and 6500 lines of code. Removing code was a challenge as we did not want to remove features from this library. We rather re-organized Geocoder to fit its initial goal: providing a simple yet powerful way to geocode street and IP addresses, with the ability to switch from one provider to another with ease. Geocoder Extra contains alternative providers that are not worldwide and therefore less used. Again, we did not remove anything.
New features have been added, such as the TimedGeocoder
implementation and a better model layer. You will find all details in the CHANGELOG below.
The documentation, which has been rewritten, also contains a description of Geocoder's versioning strategy, and we are proud to have a Contributor Code of Conduct, because the lack of diversity in Open Source is not acceptable.
Help us making Geocoder 3.0.0 really stable by giving this very first pre-release a try!
Last but not the least, THANK YOU to all contributors!!! 💛 💙 ❤️ 💚 🚢 ⭐ 🌟 💙 🌠 💝
Let's celebrate now!
Full Changelog
- Added:
using()
method now throws an exception if provider not found - Added: new Result classes (
Address
,Bounds
,Region
,Country
,County
,Coordinates
) - Added: new named exceptions
- Added: better exception messages
- Added: new HTTP layer thanks to
egeloen/http-adapter
library - Added:
TimedGeocoder
implementation (works with StopWatch Symfony component) - Added:
AbstractHttpProvider
(extendingAbstractProvider
) - Added: provide a way to use IpInfoDB country precision
- Added: cached responses for BingMaps provider (tests)
- Added: cached reponse for GoogleMaps provider (tests)
- Added:
ProviderAggregator
(replacing the formerGeocoder
class) - Added: ability to change providers locale at runtime
- Documentation: almost entirely rewritten
- Documentation: a note on versioning has been added
- Documentation: a Contributor Code of Conduct has been added for the entire
Geocoder project - Fixed: phpdoc, wording
- Fixed: providers are now highly configurable, even at runtime
- Fixed:
FreeGeoIp
property because of an API change - Moved: IGN OpenLS provider to geocoder-extra (#339)
- Moved: OIORest provider to geocoder-extra (#336)
- Moved: GeoCoder.us provider to geocoder-extra (#338)
- Moved: GeoCoder.ca provider to geocoder-extra (#337)
- Moved: DataScienceToolkit provider to geocoder-extra (#340)
- Moved: Baidu provider to geocoder-extra (#341)
- Moved: IpGeoBase provider to geocoder-extra (#342)
- Renamed: properties such as:
- city => locality
- cityDistrict => subLocality
- zipcode => postalCode
- Refactored: dumpers (remove Interface suffix, define a new method signature)
- Refactored: class names!
- Refactored: all providers now implement the
Geocoder
interface - Refactored: exception messages are a bit more verbose
- Removed:
Provider
,Dumper
,Interface
, andException
suffixes - Removed:
autoload.php
file - Removed:
OpenStreetMapsProvider
class (#335) - Removed: HTTP adapters layer
- Removed: the
Geocoder
class does not exist anymore and has been replaced by
theProviderAggregator
class
2.8.1 (2014-12-08)
- Fixed: freegeoip
zip_code
property because of an API change
2.8.0 (2014-10-03)
- Added: Allow for greater flexibility in setting curl parameters by passing in an array.
- Removed: GeoIP2 Omni support
- Removed: Cloudmade provider. They discontinued their service Apr/2014
This is most likely the last minor version of Geocoder 2.x.
2.7.0 (2014-09-14)
- Added: new provider:
OpenCageProvider
geocoder.opencagedata.com - Fixed:
MapQuestProvider
when no relevant data are fetched - Fixed: Ensure mb
formatString
is congruent to standarducwords()
functionality
2.6.0 (2014-09-02)
- Added:
region
andregionCode
to GeoIP2Provider - Added: throw
InvalidCredentialsException
with GoogleMapsBusinessProvider - Added: support in MapQuestProvider for licensed endpoints (#318)
- Added: it is now possible to set the user agent in
CurlHttpAdapter
- Fixed: google maps provider test
- Fixed: GeoPlugin returns 206 for anonymous proxies
- Removed: Google's sensor parameter
- Updated: Travis-CI config, doc, tests
Thank you to all contributors!
2.5.0 (2014-05-16)
- Added: ability to set timeouts for
CurlHttpAdapter
- Added: support for a Google Maps API key
- Added: premium support to
GeocoderCaProvider
+ tests - Added: test against
hhvm-nightly
on Travis-CI - Updated: documentation
2.4.2 (2014-01-05)
- Fixed: GeoIPs provider expects a single location response due to recent API changes (#283).
2.4.1 (2013-12-16)
- Fixed:
MapQuestProvider
now works with API keys - Fixed:
ProviderInterface
(bad argument name, still BC)
🎆