Skip to content

Commit

Permalink
Update to 3.0.4 (#2314)
Browse files Browse the repository at this point in the history
* Update Terminus dependencies.

* Update CHANGELOG file.

* Set version to 3.0.4
  • Loading branch information
kporras07 authored Jan 18, 2022
1 parent 064a0ae commit 1ac5729
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Change Log
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org)

## 3.0.4 - 2022-01-18

### Added
- Added self:plugin:migrate command (#2299)
- Add php 8.1 support (#2295)

### Changed
- Set memory limit with ini_set() rather than /usr/bin/env -S (#2303)
- Optimize Terminus phar build (#2307)
- Do not require composer/composer as a direct dependency of Terminus (#2308)
- Avoid dependency on ext-curl in Terminus (#2310)
- Improve error verbosity in `Sites::get()` (#2311)
- Retry API request on "Connection refused" and "Operation timed out" errors (#2313)

### Fixed
- self:update command should now work when plugins have been installed (#2297)
- Fix filestore scandir problem (#2309)

## 3.0.3 - 2021-12-17

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion bin/terminus
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (!getenv('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP') && version_compare(PHP_VERSI

// This variable is automatically managed via updateDependenciesversion() in /RoboFile.php,
// which is run after every call to composer update.
$terminusPluginsDependenciesVersion = '1c2089af13';
$terminusPluginsDependenciesVersion = 'cdec7a1afd';

// Cannot use $_SERVER superglobal since that's empty during phpunit testing
// getenv('HOME') isn't set on Windows and generates a Notice.
Expand Down
5 changes: 1 addition & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/constants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
---

# App
TERMINUS_VERSION: '3.0.4-dev'
TERMINUS_VERSION: '3.0.4'

# Connectivity
TERMINUS_HOST: 'terminus.pantheon.io'
Expand Down

0 comments on commit 1ac5729

Please sign in to comment.