Releases: acquia/orca
v1.2.4
v1.2.3
v1.2.2
Patch release to fix issue from upstream library version change causing Lightning component test failures on CORE_PREVIOUS
job.
v1.2.1
v1.2.0
Note: Add the following to your .travis.yml
to enable Travis CI build config validation (example):
version: ~> 1.0
Also make the following update to your .travis.yml
to change to the new preferred method of installing ORCA which adds support for semantic version numbers.
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,10 +21,11 @@ env:
global:
- ORCA_SUT_NAME=drupal/example
- ORCA_SUT_BRANCH=8.x-1.x
- # Specify the version of ORCA to use. Use the master branch for the latest
- # release, develop for Dev/HEAD, or a tag name (e.g., v1.0.0) for a specific
- # release.
- - ORCA_VERSION=master
+ # Specify the version of ORCA to use. Use dev-master to track the latest
+ # release, dev-develop to track Dev/HEAD, or any other Composer version
+ # string.
+ # @see https://getcomposer.org/doc/articles/versions.md
+ - ORCA_VERSION=dev-master
jobs:
fast_finish: true
@@ -45,7 +46,7 @@ jobs:
- { php: "7.3", env: ORCA_JOB=D9_READINESS }
before_install:
- - git clone [email protected]:acquia/orca.git "${PARENT_DIR}/orca"
+ - composer create-project --no-dev acquia/orca ../orca "$ORCA_VERSION"
- ../orca/bin/travis/before_install.sh
install: ../orca/bin/travis/install.sh
- Added drupal/mautic to packages.
- Added the ability to specify the coding standard used by PHPCS (#46)
- Added example notifications to
example/.travis.yml
(#47) - Added Travis CI build config validation (#50)
- Added output of telemetry data that gets sent after script.
- Updated Composer libraries for security vulnerabilities.
v1.1.2
Patch release to add support for pre-stable releases of BLT to account for its removal of webflo/drupal-core-require-dev.
v1.1.1
Patch release to update Composer libraries for security updates.
v1.1.0
Note: Add a new cache directory to your .travis.yml
for this release:
directories:
- "$HOME/.composer/cache"
- "$HOME/.drush/cache"
+ - "$HOME/.rvm"
- "${TMPDIR:-/tmp}/phpstan/cache"
Changes:
v1.0.0
v1.0.0-alpha12
Important: Be sure to review the updated example/.travis.yml
for changes that may need to be applied to your package! (Details below)
- Added full, out-of-the-box support for Drupal installation profiles to Travis CI scripts. (Now in use by Lightning.)
- Added support for custom Travis CI jobs.
- Made fixture creator install themes and sub-themes.
- Added debugging details to Travis CI scripts:
- ORCA configuration values in
before_install
. - ORCA version and outdated Composer packages to
before_script
- ORCA configuration values in
- Added
drupal/mautic
topackages.yml
. Welcome to Acquia, Mautic! 😃 - Made the Travis CI jobs for the current version of Drupal core ensures installation of the current version of Drupal core so that Composer constraints can't force a different version.
- Made Travis CI scripts usable locally.
- Changes to example Travis CI configuration:
- Removed
DEPRECATED_CODE_SCAN_CONTRIB
. - Allowed
ORCA_JOB=CORE_NEXT
to fail.
- Removed
- Made
composer normalize
always use four spaces.