Skip to content

Commit

Permalink
prepare 6.0 relase
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Dec 13, 2020
1 parent d8a8db9 commit ef61cc3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Expand Up @@ -10,7 +10,7 @@ We accept bug reports via issues created on [Github](https://github.com/jeremyke

- **Always search the issue or pull request list first** - The odds are good that if you've found a problem, someone else has found it, too.

- **Always try the [developer branch](https://github.com/jeremykendall/php-domain-parser/tree/develop)** - to see if the reported bug has not already been fixed.
- **Always try the [master branch](https://github.com/jeremykendall/php-domain-parser/tree/master)** - to see if the reported bug has not already been fixed.

### When submitting your report

Expand All @@ -24,7 +24,7 @@ We accept bug reports via issues created on [Github](https://github.com/jeremyke

We accept contributions via Pull Requests on [Github](https://github.com/jeremykendall/php-domain-parser/pull).

- **Always make your Pull Request against the [developer branch](https://github.com/jeremykendall/php-domain-parser/tree/develop)**
- **Always make your Pull Request against the [master branch](https://github.com/jeremykendall/php-domain-parser/tree/master)**

- **[PSR-2 Coding Standard](http://www.php-fig.org/psr/psr-2/)** - Your patch won't be accepted if it doesn't pass the package coding style test suite.

Expand Down
15 changes: 8 additions & 7 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

All Notable changes to `PHP Domain Parser` starting from the **5.x** series will be documented in this file

## 6.0.0 - TBD
## 6.0.0 - 2020-12-13

### Added

Expand All @@ -11,10 +11,11 @@ All Notable changes to `PHP Domain Parser` starting from the **5.x** series will
- Added `Domain::slice` to easily slice a domain object
- Added `ResolvedDomain` object to normalize Resolver results.
- Added `Suffix` object to replace the `PublicSuffix` object from v5.
- Public Suffix List and IANA Root Zone Database are fully decoupled
- Added `IntlIdna`, IDN support has been completely revamped
- Public Suffix List and IANA Top Level Domain List are fully decoupled
- Added `Idna`, IDN support has been completely revamped
- Added internal `Stream` class, to improve path/stream resolution
- Resolver uses by default UTS#46 IDNA2008 algorithm to convert domain names
- Storage capability is optional and can be based on PHP-FIG related interfaces to improve interoperability
- Storage capability is now optional and can be based on PHP-FIG related interfaces to improve interoperability
- `Pdp\TopLevelDomains::getIANADomain` which throws on syntax error and if no effective TLD is found (behave like `Pdp\TopLevelDomains::resolve` in v5).

### Fixed
Expand Down Expand Up @@ -46,11 +47,11 @@ All Notable changes to `PHP Domain Parser` starting from the **5.x** series will
- `Pdp\Domain::getSubDomain` replaced by `Pdp\ResolvedDomain::subDomain`
- `Pdp\Domain::withPublicSuffix` replaced by `Pdp\ResolvedDomain::withSuffix`
- `Pdp\Domain::getLabel` replaced by `Pdp\Domain::label`
- `Pdp\Domain::isTransitionalDifferent` without replacement
- `Pdp\Domain::isTransitionalDifferent` replaced by `Pdp\IdnaInfo::isTransitionalDifferent`
- `Pdp\PublicSuffix` replaced by `Pdp\Suffix`
- Directly accessing suffix information from the `Pdp\Domain` object
- Accessing suffix information from the `Pdp\Domain` object is no longer possible you need to do it from `Pdp\Suffix`
- `Pdp\TopLevelDomains::contains` without replacement
- Internal Converter classes to convert external resources into PHP array structures.
- Internal Converter classes (implementation details are no longer exposed).

## 5.7.2 - 2020-10-25

Expand Down

0 comments on commit ef61cc3

Please sign in to comment.