Skip to content

Commit ab4d2b4

Browse files
committed
Support new TZ API fields; fix bug in bulk API
1 parent a00aa2a commit ab4d2b4

151 files changed

Lines changed: 1292 additions & 1654 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ lib/Api/GeospatialApi.php
99
lib/Api/RoutingApi.php
1010
lib/ApiException.php
1111
lib/Configuration.php
12+
lib/FormDataProcessor.php
1213
lib/HeaderSelector.php
1314
lib/Model/Access.php
1415
lib/Model/AddendumV2.php

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.12.0
1+
7.13.0

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Version 3.3.0 - 2025-06-03
9+
10+
### Added
11+
12+
- New fields to the time zone API responses including localized timestamps in several standard formats.
13+
14+
### Fixed
15+
16+
- Fix a bug which caused structured search bulk requests to incorrectly spell the `postalcode` field.
17+
818
## Version 3.2.0 - 2025-04-21
919

1020
# Added

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For more information, please visit [https://docs.stadiamaps.com](https://docs.st
88

99
### Requirements
1010

11-
PHP 7.4 and later.
11+
PHP 8.1 and later.
1212
(NOTE: Unit tests use PHP 8-style named arguments.)
1313

1414
### Composer
@@ -66,7 +66,6 @@ $apiInstance = new GeocodingApi(
6666
$text = '1600 Pennsylvania Ave NW'; // The place name (address, venue name, etc.) to search for.
6767

6868
try {
69-
// We're using a PHP 8-style named argument; PHP 7 users will need to add a bunch of null arguments
7069
$result = $apiInstance->autocompleteV2($text, lang: 'en');
7170
print_r($result);
7271
} catch (Exception $e) {

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.4 || ^8.0",
22+
"php": "^8.1",
2323
"ext-curl": "*",
2424
"ext-json": "*",
2525
"ext-mbstring": "*",
@@ -28,7 +28,7 @@
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^8.0 || ^9.0",
31-
"friendsofphp/php-cs-fixer": "^3.68"
31+
"friendsofphp/php-cs-fixer": "^3.75"
3232
},
3333
"scripts": {
3434
"test": "phpunit"

0 commit comments

Comments
 (0)