Skip to content

Commit

Permalink
Update changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Aug 25, 2020
1 parent f40cfdd commit 7c28a1d
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# Release Notes

## [Unreleased](https://github.com/laravel/forge-sdk/compare/v2.2...3.x)
## [Unreleased](https://github.com/laravel/forge-sdk/compare/v3.0.0...3.x)


## [v3.0.0](https://github.com/laravel/forge-sdk/compare/v2.2...v3.0.0)

### Added
- Security rules ([#83](https://github.com/laravel/forge-sdk/pull/83))
- Add installPHP and updatePHP methods ([ef5da6e](https://github.com/laravel/forge-sdk/commit/ef5da6e2c30ffb58674fb2984e8d4a0c31e6ac2c))
- Add full PHP management methods ([#84](https://github.com/laravel/forge-sdk/pull/84))
- Adds installPhpMyAdmin install and deletePhpMyAdmin methods ([#85](https://github.com/laravel/forge-sdk/pull/85))
- Adds `resetDeploymentState()` and `siteDeploymentLog()` to `Site` resource ([#88](https://github.com/laravel/forge-sdk/pull/88))

### Changed
- Renamed namespaces ([fdcc996](https://github.com/laravel/forge-sdk/commit/fdcc996209681e252ddc060ee983fec327af10de))
- Changed `$apiKey` property visibility ([88cbb08](https://github.com/laravel/forge-sdk/commit/88cbb08014b3ea3768e47c3a9e14367b7d10f59f))
- Update rebootPHP method ([f619c0f](https://github.com/laravel/forge-sdk/commit/f619c0f57dbd3b632b5e424f2288135f811719a1))
- Remove references to only MySQL databases ([#86](https://github.com/laravel/forge-sdk/pull/86), [628b083](https://github.com/laravel/forge-sdk/commit/628b08303a3801e9279ea2b561e7d899327992bb))
- Rename `SSHKey` method to `sshKey` ([af6860f](https://github.com/laravel/forge-sdk/commit/af6860f505fff7a8cff623ab32e3edab73f79559))

### Fixed
- Fix empty collection ([26dedb8](https://github.com/laravel/forge-sdk/commit/26dedb8ca7dfac49d0f6fe35d3444eb3d0a52a7b))


## v2.2 (2020-05-14)
22 changes: 21 additions & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# Upgrade Guide

Future upgrade notes will be placed here.
## Upgrading To 3.0 From 2.x

### New Package Name

The package has moved to the Laravel organisation and should now be referenced as `laravel/forge-sdk` in your `composer.json`.

### Namespace Changes

The starting namespace for the package has changed from `ThemSaid\\` to `Laravel\\`.

### Minimum PHP Version

PHP 7.2 is the new minimum version.

### Method Changes

The `upgradePHP` method [has been replaced](https://github.com/laravel/forge-sdk/commit/ef5da6e2c30ffb58674fb2984e8d4a0c31e6ac2c) by the `installPHP` and `updatePHP` methods.

The "Managing MySQL" specific functionality [has been removed](https://github.com/laravel/forge-sdk/pull/86) in favor of the new and general "Managing Databases" functionality.

The `SSHKey` method [has been changed](https://github.com/laravel/forge-sdk/commit/af6860f505fff7a8cff623ab32e3edab73f79559) to `sshKey`.

0 comments on commit 7c28a1d

Please sign in to comment.