Skip to content

Commit

Permalink
Merge pull request #12 from thephpleague/bugfix/host-lazy-loading-pub…
Browse files Browse the repository at this point in the history
…licsuffix

the host lazy load public suffix info when needed
  • Loading branch information
nyamsprod authored Feb 16, 2018
2 parents 0a82a42 + 80c696c commit 880b8fc
Show file tree
Hide file tree
Showing 20 changed files with 185 additions and 75 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All Notable changes to `League\Uri\Components` will be documented in this file

## 1.7.1 - TBD

### Added

- None

### Fixed

- The `Host` resolver and its usage is lazyloaded so that `Host` only requires and used them if needed
- Bug fix issue with:
- `Host::withPublicSuffix`
- `Host::withRegistrableDomain`
- `Host::withSubDomain`
methods that were leaving the current `Host` object corrupted in some cases.

### Deprecated

- None

### Remove

- None

## 1.7.0 - 2018-01-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Components/AbstractComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/AbstractHierarchicalComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ComponentInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-interfaces/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-interfaces/
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ComponentTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/DataPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/EncodingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-interfaces/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-interfaces/
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Fragment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
2 changes: 1 addition & 1 deletion src/Components/HierarchicalPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @subpackage League\Uri\Components
* @author Ignace Nyamagana Butera <[email protected]>
* @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License)
* @version 1.7.0
* @version 1.7.1
* @link https://github.com/thephpleague/uri-components
*
* For the full copyright and license information, please view the LICENSE
Expand Down
Loading

0 comments on commit 880b8fc

Please sign in to comment.