Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Close #633 - Fixed characters encoding in repository credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Jul 10, 2016
1 parent 725d8c6 commit 7f18f39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

Rocketeer follows the [Semantic Versioning 2.0](http://semver.org/spec/v2.0.0.html) spec.

## [2.2.1] - Unreleased

### Fixed
- Rocketeer now uses the `composer.json` as source of truth for which extensions to check against
- Fixed characters encoding in repository credentials

## [2.2.0] - 2015-04-04

### Added
Expand Down
2 changes: 2 additions & 0 deletions src/Rocketeer/Services/Connections/ConnectionsHandler.php
Expand Up @@ -406,6 +406,8 @@ public function getRepositoryEndpoint()

// Add credentials if possible
if ($username || $password) {
$username = urlencode($username);
$password = urlencode($password);

// Build credentials chain
$credentials = $password ? $username.':'.$password : $username;
Expand Down

0 comments on commit 7f18f39

Please sign in to comment.