Skip to content

Commit ef61cc3

Browse files
committed
prepare 6.0 relase
1 parent d8a8db9 commit ef61cc3

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We accept bug reports via issues created on [Github](https://github.com/jeremyke
1010

1111
- **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.
1212

13-
- **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.
13+
- **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.
1414

1515
### When submitting your report
1616

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

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

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

2929
- **[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.
3030

CHANGELOG.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## 6.0.0 - TBD
5+
## 6.0.0 - 2020-12-13
66

77
### Added
88

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

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

5556
## 5.7.2 - 2020-10-25
5657

0 commit comments

Comments
 (0)