Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara McCutcheon committed Aug 25, 2016
1 parent 3c81472 commit 8609107
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 24 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,24 @@ All notable changes to this project starting with the 0.6.0 release will be docu
### [0.12.0] - 2016-08-24
### Added
- Added `choices` property to `InputHelper::siteName` parameter object. (#1152)
- Added `TerminusCollection::listing` to create a list of models therein. (#1152)
- Added `UserSiteMemberships` collection and `UserSiteMembership` model. (#1152)
- Added `UserOrganizationMemberships` collection and `UserOrganizationMembership` model. (#1152)

### Changed
- Renamed `Sites::addSite` to `Sites::create`. (#1152)
- Renamed `OrganizationUserMemberships::addMember` to `OrganizationUserMemberships::create`. (#1152)
- Renamed `OrganizationSiteMemberships::addMember` to `OrganizationSiteMemberships::create`. (#1152)
- When using the sites collection to gather all sites, you now must use `Sites::fetch()` to retrieve the relevant objects. (#1152)
- Renamed `OrganizationSiteMembership::removeMember` to `OrganizationSiteMembership::delete`. (#1152)
- Renamed `OrganizationUserMembership::removeMember` to `OrganizationUserMembership::delete`. (#1152)
- Remamed `Sites::filterAllByTag` to `Sites::filterByTag`. (#1152)
- Renamed `UserOrganizationMemberships::get` to `UserOrganizationMemberships::getOrganization`. (#1152)
- `Sites::get` no longer fetches all sites to find the named site. (#1152)

### Removed
- `cli cache-clear` command. (#1152)
- The `SitesCache` class and all site cache-relevant functions have been removed. (#1152)
- The command `site set-php-version` has been removed. Please set your PHP version by your pantheon.yml file. (See: https://pantheon.io/docs/php-versions) (#1121)

## [0.11.4] - 2016-08-10
Expand Down
43 changes: 23 additions & 20 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 @@ -25,7 +25,7 @@ TERMINUS_CONFIG_DIR: '~/terminus'
TERMINUS_LOG_DIR: '/tmp'
TERMINUS_PLUGINS_DIR: '[[ TERMINUS_CONFIG_DIR ]]/plugins'
TERMINUS_TOKENS_DIR: '[[ TERMINUS_CACHE_DIR ]]/tokens'
TERMINUS_ASSETS_DIR: '[[ TERMINUS_ROOT ]]/app/assets'
TERMINUS_ASSETS_DIR: '[[ TERMINUS_ROOT ]]/php/assets'

# Helpers
TERMINUS_USER: null
Expand Down
2 changes: 1 addition & 1 deletion php/Terminus/Commands/MachineTokensCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(array $options = []) {
}

/**
* Show a list of your macnine tokens on Pantheon
* Show a list of your machine tokens on Pantheon
*
* @subcommand list
* @alias show
Expand Down
2 changes: 1 addition & 1 deletion php/Terminus/Configurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private function ensureDirExists($dir) {
try {
$dir_exists = (
is_dir($dir)
|| (!file_exists($dir) && mkdir($dir, 0777, true))
|| (!file_exists($dir) && @mkdir($dir, 0777, true))
);
} catch (\Exception $e) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion tests/features/auth.feature
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Feature: Authorization command
[[user_uuid]]
"""

Scenario: Checking my user should not give any useful result when I am logged out.
Scenario: Checking my user should not get any useful result when I am logged out.
When I am not authenticated
And I run "terminus auth whoami"
Then I should not get:
Expand Down

0 comments on commit 8609107

Please sign in to comment.