Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gs7 updateUpdate Here Geocode and Reverse Geocode Provider to GS7 (v7) #1231

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b89b41e
replace cached here.com responses with responses from GS7 endpoints
SCatrinh Jun 24, 2024
608c9c0
update deprecated has attribute to has property
SCatrinh Jun 24, 2024
72a671d
Updated geocode query to allow support for qualified queries
SCatrinh Jun 25, 2024
da43505
update from here v6.2 to here v7 api (GS7)
SCatrinh Jun 25, 2024
70cdb6e
Update with additional data to parse properly
SCatrinh Jun 25, 2024
b3e83a4
Update unit tests and integration tests
SCatrinh Jun 25, 2024
68afaa8
remove unused import, remove extra white space, update Changelog
SCatrinh Jun 25, 2024
9da8ad0
clean up some logic, move duplicated params to be parsed in a seperat…
SCatrinh Jun 25, 2024
3c1cb54
clean up exception annotations
SCatrinh Jun 25, 2024
d03fd1b
put empty string check back since we have updated the function param …
SCatrinh Jun 26, 2024
654e967
added a note for postalCodeDetails since here's implementation is not…
SCatrinh Jun 26, 2024
65792e1
revert deprecation update as per comments on geocoder-php/Geocoder PR…
SCatrinh Jun 27, 2024
8425c0e
Add support in php-common for building queries with alternative methods
SCatrinh Jun 28, 2024
ad0a926
Revert "Add support in php-common for building queries with alternati…
SCatrinh Jul 2, 2024
fa1b5ce
Revert "Updated geocode query to allow support for qualified queries"
SCatrinh Jul 2, 2024
b2b19a5
Revert "Update with additional data to parse properly"
SCatrinh Jul 2, 2024
5cbd114
Added boolean param for using qualified query instead of regular query
SCatrinh Jul 2, 2024
f636bed
Updated here test for qualified query, update cached response for test
SCatrinh Jul 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Provider/Here/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## 0.8.0

### Added

- Add support for GS7 API as per https://www.here.com/docs/bundle/geocoding-and-search-api-v7-api-reference/page/index.html

### Removed

- Drop support for Geocode version 6

## 0.7.1

### Fixed
Expand Down
Loading