Skip to content

Commit

Permalink
doc(CHANGELOG.md) add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Apr 12, 2024
1 parent f21b240 commit 9ee6a00
Show file tree
Hide file tree
Showing 12 changed files with 80 additions and 63 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased] Unreleased

### Changed

- Fix non standard installation handling, hello Bedrock! (#716)

## [3.5.6] 2024-04-07;

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -44,10 +44,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /tests/EndToEnd.suite.yml <<<

>>> /tests/Integration/SampleTest.php >>>
Expand Down Expand Up @@ -275,19 +275,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:35409
WORDPRESS_DOMAIN=localhost:35409
WORDPRESS_URL=http://localhost:55758
WORDPRESS_DOMAIN=localhost:55758
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=20606
CHROMEDRIVER_PORT=3248

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=35409
BUILTIN_SERVER_PORT=55758

<<< /tests/.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -44,10 +44,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /EndToEnd.suite.yml <<<

>>> /Integration/SampleTest.php >>>
Expand Down Expand Up @@ -285,19 +285,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:37987
WORDPRESS_DOMAIN=localhost:37987
WORDPRESS_URL=http://localhost:62570
WORDPRESS_DOMAIN=localhost:62570
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=54870
CHROMEDRIVER_PORT=44885

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=37987
BUILTIN_SERVER_PORT=62570

<<< /.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ extensions:
DB_ENGINE: sqlite
DB_DIR: '%codecept_root_dir%/tests/_data'
DB_FILE: db.sqlite
WPBROWSER_SITEURL: '%WORDPRESS_URL%'
WPBROWSER_HOMEURL: '%WORDPRESS_URL%'
commands:
- lucatume\WPBrowser\Command\RunOriginal
- lucatume\WPBrowser\Command\RunAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -44,10 +44,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /tests/EndToEnd.suite.yml <<<

>>> /tests/Integration/SampleTest.php >>>
Expand Down Expand Up @@ -283,19 +283,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:18237
WORDPRESS_DOMAIN=localhost:18237
WORDPRESS_URL=http://localhost:36997
WORDPRESS_DOMAIN=localhost:36997
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=63427
CHROMEDRIVER_PORT=56825

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=18237
BUILTIN_SERVER_PORT=36997

<<< /tests/.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -49,10 +49,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /tests/EndToEnd.suite.yml <<<

>>> /tests/Integration/SampleTest.php >>>
Expand Down Expand Up @@ -288,19 +288,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:38047
WORDPRESS_DOMAIN=localhost:38047
WORDPRESS_URL=http://localhost:4967
WORDPRESS_DOMAIN=localhost:4967
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=56902
CHROMEDRIVER_PORT=53508

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=38047
BUILTIN_SERVER_PORT=4967

<<< /tests/.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -49,10 +49,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /tests/EndToEnd.suite.yml <<<

>>> /tests/Integration/SampleTest.php >>>
Expand Down Expand Up @@ -288,19 +288,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:18285
WORDPRESS_DOMAIN=localhost:18285
WORDPRESS_URL=http://localhost:58054
WORDPRESS_DOMAIN=localhost:58054
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=28492
CHROMEDRIVER_PORT=38408

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=18285
BUILTIN_SERVER_PORT=58054

<<< /tests/.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -49,10 +49,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /tests/EndToEnd.suite.yml <<<

>>> /tests/Integration/SampleTest.php >>>
Expand Down Expand Up @@ -288,19 +288,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:20511
WORDPRESS_DOMAIN=localhost:20511
WORDPRESS_URL=http://localhost:2162
WORDPRESS_DOMAIN=localhost:2162
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=50604
CHROMEDRIVER_PORT=18950

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=20511
BUILTIN_SERVER_PORT=2162

<<< /tests/.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ modules:
url: '%WORDPRESS_URL%'
adminUsername: '%WORDPRESS_ADMIN_USER%'
adminPassword: '%WORDPRESS_ADMIN_PASSWORD%'
adminPath: '/wp-admin'
adminPath: '%WORDPRESS_ADMIN_PATH%'
browser: chrome
host: '%CHROMEDRIVER_HOST%'
port: '%CHROMEDRIVER_PORT%'
Expand Down Expand Up @@ -44,10 +44,10 @@ modules:
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
lucatume\WPBrowser\Module\WPLoader:
loadOnly: true
wpRootFolder: "%WORDPRESS_ROOT_DIR%"
wpRootFolder: '%WORDPRESS_ROOT_DIR%'
dbUrl: '%WORDPRESS_DB_URL%'
domain: '%WORDPRESS_DOMAIN%'

<<< /EndToEnd.suite.yml <<<

>>> /Integration/SampleTest.php >>>
Expand Down Expand Up @@ -285,19 +285,20 @@ TEST_TABLE_PREFIX=test_
WORDPRESS_TABLE_PREFIX=wp_

# The URL and domain of the WordPress site used in end-to-end tests.
WORDPRESS_URL=http://localhost:2607
WORDPRESS_DOMAIN=localhost:2607
WORDPRESS_URL=http://localhost:8865
WORDPRESS_DOMAIN=localhost:8865
WORDPRESS_ADMIN_PATH=/wp-admin

# The username and password of the administrator user of the WordPress site used in end-to-end tests.
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=password

# The host and port of the ChromeDriver server that will be used in end-to-end tests.
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=10091
CHROMEDRIVER_PORT=34174

# The port on which the PHP built-in server will serve the WordPress installation.
BUILTIN_SERVER_PORT=2607
BUILTIN_SERVER_PORT=8865

<<< /.env <<<

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ extensions:
DB_ENGINE: sqlite
DB_DIR: '%codecept_root_dir%/tests/_data'
DB_FILE: db.sqlite
WPBROWSER_SITEURL: '%WORDPRESS_URL%'
WPBROWSER_HOMEURL: '%WORDPRESS_URL%'
commands:
- lucatume\WPBrowser\Command\RunOriginal
- lucatume\WPBrowser\Command\RunAll
Expand Down
Loading

0 comments on commit 9ee6a00

Please sign in to comment.