Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
09ee765
Implement transparent routing to Cloud Tasks for Push Queues
gajjarc Jul 5, 2026
86c0e08
Remove transactional task support from PHP SDK as it is out of scope
gajjarc Jul 5, 2026
6afb1d5
Support Host header routing in Cloud Tasks URL resolution
gajjarc Jul 5, 2026
d8b2a16
Fix createTask call to use positional arguments for older cloud-tasks…
gajjarc Jul 5, 2026
2227b1f
Enforce legacy 100KB task size limit in Cloud Tasks routing
gajjarc Jul 5, 2026
dd7014e
Convert hostname to dot-notation for Cloud Tasks HTTP target HTTPS URLs
gajjarc Jul 6, 2026
b941478
Implement BatchCreateTasks with SDK chunking and token resolution in …
gajjarc Jul 7, 2026
ed31320
Fix AppIdentityService APC/Memcache calls for PHP 8.2 compatibility
gajjarc Jul 9, 2026
d42d91d
Parse individual task error status in batchCreate response for Cloud …
gajjarc Jul 9, 2026
2a7d64b
Fix ALREADY_EXISTS and NOT_FOUND error handling in Cloud Tasks batchC…
gajjarc Jul 9, 2026
0e08196
Fix syntax error (missing closing brace) in PushQueue.php
gajjarc Jul 9, 2026
200e51b
Check Operation error and metadata.failedRequests in Cloud Tasks batc…
gajjarc Jul 9, 2026
be5dc7b
Normalize HTTP header casing in PushQueue to prevent duplicate Conten…
gajjarc Jul 9, 2026
f20bbf8
Map 404/NOT_FOUND (Requested entity was not found) on task creation t…
gajjarc Jul 9, 2026
2184c80
Fix: Strip version ID from hostname to route tasks to active service …
gajjarc Jul 20, 2026
8d34bd1
Use CloudTasks Client SDK for batchCreateTasks on dogfood branch
gajjarc Jul 31, 2026
9eb5542
Update PushQueue to use Google Cloud Tasks V2beta3 CloudTasksClient
gajjarc Aug 1, 2026
c6695c1
Use batchCreateTasks REST endpoint for batch task creation
gajjarc Aug 1, 2026
ea2f132
Use CloudTasksClient batchCreateTasks in PushQueue.php
gajjarc Aug 1, 2026
f2960e9
Update region detection in PushQueue.php to match Python SDK and reve…
gajjarc Aug 3, 2026
d79fe59
Clean up addTasksCloudTasks in PushQueue.php: use server-generated ta…
gajjarc Aug 3, 2026
c4ab5f1
Switch PushQueue.php from HttpRequest with full URL to AppEngineHttpR…
gajjarc Aug 3, 2026
18cc91f
Unpack metadata failed_requests from BatchCreateTasks OperationRespon…
gajjarc Aug 3, 2026
7ee7e06
Align Cloud Tasks batchCreateTasks error handling in PushQueue.php wi…
gajjarc Aug 3, 2026
3449542
Update google/cloud-tasks dependency to ^2.0 in composer.json for bat…
gajjarc Aug 3, 2026
514a3bd
Use integer enum constants for HttpMethod in PushQueue.php
gajjarc Aug 3, 2026
cc20019
feat(taskqueue): migrate push queue client to Cloud Tasks v2
riddhi-shivhare Sep 3, 2026
600f741
feat(taskqueue): support both GAE_PUSHQUEUE_BACKEND and APPENGINE_USE…
riddhi-shivhare Sep 7, 2026
77c4650
chore(taskqueue): remove unused token lookup and revert AppIdentitySe…
riddhi-shivhare Sep 7, 2026
50d1798
feat(taskqueue): route single tasks to createTask and batches to batc…
riddhi-shivhare Sep 7, 2026
6a5349a
Support CloudTasksClient V2 client namespace and V2beta3 batchCreateT…
riddhi-shivhare Sep 7, 2026
56ba2d0
Support V2beta3 Client namespace and BatchCreateTasksRequest in addTa…
riddhi-shivhare Sep 7, 2026
456d149
Fallback to createTask for batch tasks when batchCreateTasks is not a…
riddhi-shivhare Sep 7, 2026
5dae248
fix(composer): move google/cloud-tasks to suggest and pin php-coveral…
riddhi-shivhare Sep 9, 2026
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
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
},
"require-dev": {
"phpunit/phpunit": "^8",
"php-coveralls/php-coveralls": "dev-master",
"php-coveralls/php-coveralls": "^2.7",
"php-mock/php-mock-phpunit": "^2.6"
},
"suggest": {
"google/cloud-tasks": "Required to use Cloud Tasks push queue routing (^2.0)."
},
"autoload": {
"psr-4": {
"Google\\AppEngine\\": "src"
Expand Down
Loading
Loading