Skip to content

Add nonce protection to Social admin plan refresh#47844

Merged
manzoorwanijk merged 7 commits intotrunkfrom
copilot/soc-421-fix-csrf-able-plan-refresh-trigger
Apr 13, 2026
Merged

Add nonce protection to Social admin plan refresh#47844
manzoorwanijk merged 7 commits intotrunkfrom
copilot/soc-421-fix-csrf-able-plan-refresh-trigger

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 30, 2026

  • Add PHPDoc to wp_die test closure
  • Run package PHP tests
  • Verify CI static analysis expectations
Original prompt

Issue Title: FIND-14: CSRF-able Plan Refresh Trigger (Social Admin Page)
Issue Description: ## Finding Details

Field Value
Severity Low
File projects/packages/publicize/src/class-social-admin-page.php
Commit cf2c1627
Auth Required Admin (CSRF)

Description

A GET parameter refresh_plan_data triggers Current_Plan::refresh_from_wpcom() — an outbound WP.com API call — with no nonce check.

Proof of Concept

<!-- Attacker page visited by a logged-in Social admin: -->
<img src="https://target.example.com/wp-admin/admin.php?page=jetpack-social&refresh_plan_data=1"
     width="1" height="1" />
<!-- Forces an unauthenticated remote call and plan data update -->

Suggested Fix

Verify a nonce (check_admin_referer) before calling refresh_from_wpcom().
Fixes https://linear.app/a8c/issue/SOCIAL-421/find-14-csrf-able-plan-refresh-trigger-social-admin-page
Branch Name should include the identifier "SOCIAL-421"
Agent Guidance:

  • Agent scope and context
  • Always anchor your work to the agent-specific guidance in the mention (e.g., githubcopilot , cursor ). This is your primary context.
  • Treat the Linear issue as background information. Do not begin implementation unless the request explicitly authorizes it.

Execution rules

  • For exploration requests (e.g., “create a tech exploration”), deliver a draft PR containing exploration artifacts only—prototypes, notes, comparisons, or spike code. Avoid fixes, refactors, and production changes.
  • Keep output minimal, reviewable, and clearly labeled as “Exploration” to prevent accidental merges.

Quality and handoff

  • Summarize assumptions, constraints, and next steps in the draft PR description.
  • Flag any implementation-ready insights, but do not act on them without explicit approval in a follow-up request.
  • Ensure you reference the ISSUE # in your PR and commit descriptions, not the Linear issue (e.g., `closes Deprecated Hooks: Missing version information in message #12345` NOT `closes #LIN-123`)

Issue Comments:
Comment by User (2026-03-30T16:08:17.577Z):
This thread is for an agent session with githubcopilot.

Agent-Logs-Url: https://github.com/Automattic/jetpack/sessions/529daf3a-170a-4530-9581-d51fd3aca058

Co-authored-by: manzoorwanijk <18226415+manzoorwanijk@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix CSRF vulnerability in plan refresh trigger Add nonce protection to Social admin plan refresh Mar 30, 2026
Copilot AI requested a review from manzoorwanijk March 30, 2026 16:22
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Mar 30, 2026

Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.

  • To test on WoA, go to the Plugins menu on a WoA dev site. Click on the "Upload" button and follow the upgrade flow to be able to upload, install, and activate the Jetpack Beta plugin. Once the plugin is active, go to Jetpack > Jetpack Beta, select your plugin (Jetpack), and enable the copilot/soc-421-fix-csrf-able-plan-refresh-trigger branch.
  • To test on Simple, run the following command on your sandbox:
bin/jetpack-downloader test jetpack copilot/soc-421-fix-csrf-able-plan-refresh-trigger

Interested in more tips and information?

  • In your local development environment, use the jetpack rsync command to sync your changes to a WoA dev blog.
  • Read more about our development workflow here: PCYsg-eg0-p2
  • Figure out when your changes will be shipped to customers here: PCYsg-eg5-p2

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Mar 30, 2026

Thank you for your PR!

When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:

  • ✅ Include a description of your PR changes.
  • ✅ Add a "[Status]" label (In Progress, Needs Review, ...).
  • 🔴 Add testing instructions.
  • 🔴 Specify whether this PR includes any changes to data or privacy.
  • ✅ Add changelog entries to affected projects

This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖


🔴 Action required: Please include detailed testing steps, explaining how to test your change, like so:

## Testing instructions:

* Go to '..'
*

🔴 Action required: We would recommend that you add a section to the PR description to specify whether this PR includes any changes to data or privacy, like so:

## Does this pull request change what data or activity we track or use?

My PR adds *x* and *y*.

Follow this PR Review Process:

  1. Ensure all required checks appearing at the bottom of this PR are passing.
  2. Make sure to test your changes on all platforms that it applies to. You're responsible for the quality of the code you ship.
  3. You can use GitHub's Reviewers functionality to request a review.
  4. When it's reviewed and merged, you will be pinged in Slack to deploy the changes to WordPress.com simple once the build is done.

If you have questions about anything, reach out in #jetpack-developers for guidance!

@github-actions github-actions Bot added the [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. label Mar 30, 2026
@jp-launch-control
Copy link
Copy Markdown

jp-launch-control Bot commented Mar 30, 2026

Code Coverage Summary

Coverage changed in 3 files.

File Coverage Δ% Δ Uncovered
projects/packages/publicize/src/class-publicize-script-data.php 0/100 (0.00%) 0.00% 4 💔
projects/packages/publicize/_inc/utils/script-data.ts 6/8 (75.00%) 8.33% 1 ❤️‍🩹
projects/packages/publicize/src/class-social-admin-page.php 7/39 (17.95%) 17.95% -5 💚

Full summary · PHP report · JS report

Coverage check overridden by Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR .

Copy link
Copy Markdown
Member

@manzoorwanijk manzoorwanijk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot Let us make CI happy

Comment thread projects/packages/publicize/src/class-publicize-script-data.php
Agent-Logs-Url: https://github.com/Automattic/jetpack/sessions/40363902-fbae-4b76-931a-cb65c48f3194

Co-authored-by: manzoorwanijk <18226415+manzoorwanijk@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 30, 2026

@copilot Let us make CI happy

Re-ran package PHP tests after installing the test env; they now pass (composer test-php) with 72a0686.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • downloads.w.org
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (dns block)
  • https://api.github.com/repos/Automattic/wordbless/zipball/7db3385da450e6568627894fa1a431d68dea1440
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/134921bfca9b02d8f374c48381451da1d98402f9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/7b8842c2d8e85d0c3a5831236bf5869af6ab2a11
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/47283cfd98d553edcb1353591f4e255dc1bb61f0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/console/zipball/e1e6770440fb9c9b0cf725f81d1361ad1835329d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/2QD7EL /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/SVVSK4 /usr/bin/composer install --no-interaction k/_temp/ghcca-node/node/bin/git --quiet --verify /usr/local/.ghcu--hard git rese�� --hard gmann-phpunit.git/ nit/phpunit github.accesstoksh t.git/ gmann-phpunit.giexec &#39;git&#39; &#39;--version&#39; git (http block)
  • jetpack.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)
  • public-api.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Agent-Logs-Url: https://github.com/Automattic/jetpack/sessions/971c2bb6-dc75-4eb2-8c10-8b7ab634cd4b

Co-authored-by: manzoorwanijk <18226415+manzoorwanijk@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 30, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • downloads.w.org
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (dns block)
  • https://api.github.com/repos/Automattic/wordbless/zipball/7db3385da450e6568627894fa1a431d68dea1440
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/134921bfca9b02d8f374c48381451da1d98402f9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/7b8842c2d8e85d0c3a5831236bf5869af6ab2a11
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/47283cfd98d553edcb1353591f4e255dc1bb61f0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • https://api.github.com/repos/symfony/console/zipball/e1e6770440fb9c9b0cf725f81d1361ad1835329d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/IAZfsR /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/uE75OF /usr/bin/composer install --no-interaction e/git 3b53c&#39; &#39;--&#39; git k e/git -c set p nfig/composer/vendor/bin/git verage.git che/composer/vcsbranch k/_temp/ghcca-no-a git (http block)
  • jetpack.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)
  • public-api.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

@manzoorwanijk manzoorwanijk requested a review from a team March 30, 2026 19:19
@manzoorwanijk manzoorwanijk marked this pull request as ready for review March 30, 2026 19:19
@manzoorwanijk manzoorwanijk removed [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. [Status] In Progress labels Mar 30, 2026
@manzoorwanijk manzoorwanijk added the [Status] Needs Team Review Obsolete. Use Needs Review instead. label Mar 30, 2026
@github-actions github-actions Bot added [Status] In Progress [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. labels Mar 30, 2026
Copy link
Copy Markdown
Member

@manzoorwanijk manzoorwanijk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI is not happy

@manzoorwanijk manzoorwanijk added Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR and removed [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. [Status] In Progress labels Mar 30, 2026
@github-actions github-actions Bot added the [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. label Mar 30, 2026
Agent-Logs-Url: https://github.com/Automattic/jetpack/sessions/6cbe5dac-ae33-4492-8966-73cf410f4337

Co-authored-by: manzoorwanijk <18226415+manzoorwanijk@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 30, 2026

CI is not happy

Fixed the PHPCS warnings by adding safe wp_json_encode flags and aligning the assignments; package PHP tests now pass locally (composer test-php) in ad5d3af.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • downloads.w.org
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (dns block)
  • https://api.github.com/repos/Automattic/wordbless/zipball/7db3385da450e6568627894fa1a431d68dea1440
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/134921bfca9b02d8f374c48381451da1d98402f9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/7b8842c2d8e85d0c3a5831236bf5869af6ab2a11
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/47283cfd98d553edcb1353591f4e255dc1bb61f0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • https://api.github.com/repos/symfony/console/zipball/e1e6770440fb9c9b0cf725f81d1361ad1835329d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/36umLv /usr/bin/composer install --no-interaction de/node/bin/git (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/dOavA9 /usr/bin/composer install --no-interaction /usr/lib/git-core/git c5360474fbc405f8git git e/git-upload-pacset-url /usr/lib/git-cororigin pack�� --delta-base-offREDACTED --honor-pack-keep git verage.git --non-empty --all git (http block)
  • jetpack.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)
  • public-api.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

* @return callable
*/
public function throw_on_wp_die() {
return static function ( $message ) {
Copy link
Copy Markdown
Member

@manzoorwanijk manzoorwanijk Mar 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot To fix the static analysis, you need to add a PHPDoc block to the closure here.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a PHPDoc block to the wp_die assertion closure to satisfy static analysis; package PHP tests pass (composer test-php) in 0343cec.

Agent-Logs-Url: https://github.com/Automattic/jetpack/sessions/222fbdbf-8e3a-48b8-9504-f82d517ffeae

Co-authored-by: manzoorwanijk <18226415+manzoorwanijk@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 30, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • downloads.w.org
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (dns block)
  • https://api.github.com/repos/Automattic/wordbless/zipball/7db3385da450e6568627894fa1a431d68dea1440
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/134921bfca9b02d8f374c48381451da1d98402f9
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/environment/zipball/7b8842c2d8e85d0c3a5831236bf5869af6ab2a11
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/phpunit/zipball/47283cfd98d553edcb1353591f4e255dc1bb61f0
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • https://api.github.com/repos/symfony/console/zipball/e1e6770440fb9c9b0cf725f81d1361ad1835329d
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
  • https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/jbUtYP /usr/bin/composer install --no-interaction (http block)
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -n -c /tmp/rDurCA /usr/bin/composer install --no-interaction ndor/bin/git --git-dir sh de/node/bin/git sh -c exec &#39;git&#39; &#39;clon--dissociate gmann-phpunit.gi--reference ndor/phpunit/php/home/REDACTED/.cache/composer/vcs/https---github.com-Yoast-PHPUnit-Polyfills.git/--tags r.git/&#39; r.git/&#39; gmann-phpunit.git/ git (http block)
  • jetpack.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)
  • public-api.wordpress.com
    • Triggering command: /usr/bin/php8.3 /usr/bin/php8.3 -dxdebug.var_display_max_depth=3 -dxdebug.var_display_max_data=512 -dxdebug.var_display_max_children=128 -dxdebug.use_compression=0 -dxdebug.trigger_value= -dxdebug.trace_output_name=trace.%c -dxdebug.trace_output_dir=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_options=0 -dxdebug.trace_format=0 -dxdebug.trace_enable_trigger_value=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.trace_enable_trigger=This setting has been changed, see the upgrading guide at REDACTED -dxdebug.start_with_request=default -dxdebug.start_upon_error=default -dxdebug.show_mem_delta=This setting has been removed, see the upgrading guide at REDACTED -dxdebug.show_local_vars=0 -dxdebug.show_exception_trace=0 -dxdebug.show_error_trace=0 -dxdebug.scream=0 -dxdebug.remote_timeout=This setting has been changed, see the upgrading guide at REDACTED (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

@manzoorwanijk manzoorwanijk requested a review from a team April 11, 2026 13:11
@manzoorwanijk manzoorwanijk merged commit 0a0f9c4 into trunk Apr 13, 2026
73 checks passed
@manzoorwanijk manzoorwanijk deleted the copilot/soc-421-fix-csrf-able-plan-refresh-trigger branch April 13, 2026 09:14
@github-actions github-actions Bot removed [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. [Status] Needs Team Review Obsolete. Use Needs Review instead. labels Apr 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Coverage tests to be added later Use to ignore the Code coverage requirement check when tests will be added in a follow-up PR [Feature] Publicize Now Jetpack Social, auto-sharing [Package] Publicize [Tests] Includes Tests

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Deprecated Hooks: Missing version information in message

2 participants