Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/coding_standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

- name: Run PHP Code Sniffer
run: vendor/bin/phpcs -n src ${{ needs.provide_data.outputs.package_code_paths }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/distribute_plugins_to_source_repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install root dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

###########################################################################
# Downgrade plugin
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
args: unzip -qq build/${{ matrix.pluginConfig.zip_file }}-source.zip -d build/dist-plugin/${{ matrix.pluginConfig.plugin_slug }}

- name: Upload plugin zip as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.pluginConfig.zip_file }}-source
path: build/dist-plugin/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/downgrade_php_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

- name: Local packages - Downgrade PHP code via Rector
run: vendor/bin/rector process ${{ needs.provide_data.outputs.package_srcs }} --config=config/rector/downgrade/monorepo/rector.php --ansi
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
# Only PROD dependencies must be tested
# --ignore-platform-reqs to avoid Composer checking the PHP 8.1 requirement
- name: Keep dependencies for PROD only (for testing)
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4
with:
composer-options: "--no-dev --ignore-platform-reqs"

Expand All @@ -124,7 +124,7 @@ jobs:
run: zip -X -r build/downgraded-code.zip . -x *.git* build/\* php-parallel-lint/\*
if: ${{ needs.provide_data.outputs.generate_artifact }}
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ needs.provide_data.outputs.generate_artifact }}
with:
name: downgraded-code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install root dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

# "custom-bump-interdependency" temporarily needed because of bug:
# https://github.com/symplify/symplify/issues/2773
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
args: unzip -qq build/${{ matrix.pluginConfig.zip_file }}.zip -d build/dist-plugin/${{ matrix.pluginConfig.plugin_slug }}

- name: Upload plugin zip as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.pluginConfig.zip_file }}
path: build/dist-plugin/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: input_data
run: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- name: Create InstaWP instance
uses: instawp/wordpress-testing-automation@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/monorepo_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

- name: Run validation
run: vendor/bin/monorepo-builder validate --config=config/monorepo-builder/validate.php --ansi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

- name: Regenerate Monorepo PHPStan config
run: vendor/bin/monorepo-builder merge-phpstan --config=config/monorepo-builder/merge-phpstan.php --ansi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scoping_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install root dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

# "custom-bump-interdependency" temporarily needed because of bug:
# https://github.com/symplify/symplify/issues/2773
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/split_monorepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

# git diff to generate matrix with modified packages only
- uses: technote-space/get-diff-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/split_monorepo_tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: ramsey/composer-install@v3
- uses: ramsey/composer-install@v4

- id: output_data
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Composer dependencies
uses: ramsey/composer-install@v3
uses: ramsey/composer-install@v4

- name: Run tests
run: vendor/bin/phpunit --filter='/^((?!Integration).)*$/'
Expand Down
2 changes: 1 addition & 1 deletion submodules/GatoGraphQL
Submodule GatoGraphQL updated 50 files
+2 −2 .github/workflows/coding_standards.yml
+3 −3 .github/workflows/distribute_plugins_to_source_repo.yml
+4 −4 .github/workflows/downgrade_php_tests.yml
+3 −3 .github/workflows/generate_plugins.yml
+2 −2 .github/workflows/integration_tests.yml
+1 −1 .github/workflows/monorepo_validation.yml
+1 −1 .github/workflows/phpstan.yml
+2 −2 .github/workflows/scoping_tests.yml
+1 −1 .github/workflows/split_monorepo.yml
+1 −1 .github/workflows/split_monorepo_tagged.yml
+1 −1 .github/workflows/unit_tests.yml
+2 −1 README.md
+6 −2 layers/Engine/packages/engine-wp/src/HelperServices/TemplateHelpers.php
+9 −0 layers/Engine/packages/engine-wp/src/Hooks/TemplateHookSet.php
+15 −9 layers/GatoGraphQLForWP/phpunit-plugins/gatographql-testing/src/Webserver/LandoAdapter.php
+11 −0 layers/GatoGraphQLForWP/plugins/gatographql/CHANGELOG.md
+2 −1 layers/GatoGraphQLForWP/plugins/gatographql/README.md
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-composable-directives/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-expose-sensitive-data/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-global-fields/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-multifield-directives/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-mutation-scheme/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-namespacing/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-payload-types-for-mutations/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-response-headers/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-categories/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-comment-meta/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-custompost-meta/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-customposts/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-settings/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-tags/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-taxonomy-meta/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-schema-user-meta/package-lock.json
+3 −3 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-config-self-fields/package-lock.json
+6 −4 layers/GatoGraphQLForWP/plugins/gatographql/blocks/schema-configuration/package-lock.json
+2 −1 layers/GatoGraphQLForWP/plugins/gatographql/docs/general/about/en.md
+10 −0 layers/GatoGraphQLForWP/plugins/gatographql/docs/release-notes/17.1/en.md
+3 −3 ...hQLForWP/plugins/gatographql/editor-scripts/schema-configuration-additional-documentation/package-lock.json
+13 −1 layers/GatoGraphQLForWP/plugins/gatographql/extensions/jetengine-ccts/docs/modules/jetengine-ccts/en.md
+ layers/GatoGraphQLForWP/plugins/gatographql/extensions/jetengine/docs/images/jetengine-cct-fields.webp
+ ...lugins/gatographql/extensions/jetengine/docs/images/jetengine-ccts-schema-configuration-queryable-ccts.webp
+ ...aphQLForWP/plugins/gatographql/extensions/jetengine/docs/images/jetengine-ccts-settings-queryable-ccts.webp
+48 −261 layers/GatoGraphQLForWP/plugins/gatographql/packages/api-fetch/package-lock.json
+5 −3 layers/GatoGraphQLForWP/plugins/gatographql/packages/components/package-lock.json
+5 −0 layers/GatoGraphQLForWP/plugins/gatographql/readme.txt
+1 −0 .../GatoGraphQLForWP/plugins/gatographql/src/ModuleResolvers/Extensions/PowerBundleExtensionModuleResolver.php
+1 −0 ...atoGraphQLForWP/plugins/gatographql/src/ModuleResolvers/Extensions/PremiumBundleExtensionModuleResolver.php
+5 −1 layers/GatoGraphQLForWP/plugins/gatographql/src/ModuleResolvers/Extensions/PremiumExtensionModuleResolver.php
+2 −2 ...raphQLForWP/plugins/testing-schema/blocks/not-server-side-registered-block-schema-testing/package-lock.json
+2 −2 ...atoGraphQLForWP/plugins/testing-schema/blocks/server-side-registered-block-schema-testing/package-lock.json
Loading