Skip to content

Commit

Permalink
ci: test against WP 6.7 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine authored Dec 6, 2024
1 parent 5029cc8 commit e1b1f55
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:
strategy:
matrix:
php: ["8.2", "8.1", "8.0"]
wordpress: ["6.6", "6.5", "6.4", "6.3", "6.2"]
wordpress: ["6.7", "6.6", "6.5", "6.4", "6.3", "6.2"]
include:
- php: "8.2"
wordpress: "6.6"
wordpress: "6.7"
coverage: 1
exclude:
# New WP versions that dont support older PHP versions
- php: "8.0"
wordpress: "6.7"
- php: "8.0"
wordpress: "6.6"
- php: "8.0"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

- ci: Test compatibility with WordPress 6.7.1.
- feat!: Refactor Settings handling and storage.
- feat: Refactor admin package.
- feat: Add Upgrader class for handling plugin upgrades.
Expand Down
6 changes: 3 additions & 3 deletions bin/build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ print_usage_instructions() {
echo "Example use:"
echo " npm run docker:build"
echo ""
echo " WP_VERSION=6.6 PHP_VERSION=8.2 npm run docker:build -- - c"
echo " WP_VERSION=6.7 PHP_VERSION=8.2 npm run docker:build -- - c"
echo ""
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/build-docker.sh -- c"
echo " WP_VERSION=6.7S PHP_VERSION=8.2 bin/build-docker.sh -- c"
exit 1
}

Expand Down Expand Up @@ -50,7 +50,7 @@ done


TAG=${TAG:-latest}
WP_VERSION=${WP_VERSION:-6.6}
WP_VERSION=${WP_VERSION:-6.7}
PHP_VERSION=${PHP_VERSION:-8.2}

BUILD_NO_CACHE=${BUILD_NO_CACHE:-}
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: axepress, justlevine
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, SSO, Social Login, OAuth, OAuth2, SAML, Authentication, JWT, Login, OpenID
Requires at least: 6.2
Tested up to: 6.6.2
Tested up to: 6.7.1
Requires PHP: 7.4
Requires WPGraphQL: 1.14.0
Stable tag: 0.3.1
Expand Down
2 changes: 1 addition & 1 deletion wp-graphql-headless-login.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Text Domain: wp-graphql-headless-login
* Domain Path: /languages
* Requires at least: 6.2
* Tested up to: 6.6.2
* Tested up to: 6.7.1
* Requires PHP: 7.4
* Requires Plugins: wp-graphql
* WPGraphQL requires at least: 1.14.0
Expand Down

0 comments on commit e1b1f55

Please sign in to comment.