Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Dec 24, 2024
1 parent 3913245 commit 5b70146
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 6 deletions.
30 changes: 30 additions & 0 deletions interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

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

## [Next](https://github.com/thephpleague/uri-interfaces/compare/7.5.0...master) - TBD

### Added

- `Contidionable` interface
- `UriInterface::resolve`
- `UriInterface::relativize`
- `UriInterface::isAbsolute`
- `UriInterface::isNetworkPath`
- `UriInterface::isAbsolutePath`
- `UriInterface::isRelativePath`
- `UriInterface::isSameDocument`
- `UriInterface::equals`
- `UriInterface::toNormalizedString`
- `UriInterface::getOrigin`
- `UriInterface::isSameOrigin`
- `UriInterface::isCrossOrigin`

### Fixed

- None

### Deprecated

- None

### Removed

- None

## [7.5.0](https://github.com/thephpleague/uri-interfaces/compare/7.3.1...7.5.0) - 2024-12-08

### Added
Expand Down
24 changes: 18 additions & 6 deletions uri/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,27 @@ All Notable changes to `League\Uri` will be documented in this file

### Added

- `BaseUri::when` conditional method to ease component building logic.
- `Http::when` conditional method to ease component building logic.
- `Http::tryNew` returns a new `Uri` instance on success or null on failure.
- `Uri::when` conditional method to ease component building logic.
- `BaseUri::when` conditional method to ease component building logic.
- `Uri::tryNew` returns a new `Uri` instance on success or null on failure.
- `Http::tryNew` returns a new `Uri` instance on success or null on failure.

### Fixed

- None
- `Uri::resolve`
- `Uri::relativize`
- `Uri::isAbsolute`
- `Uri::isNetworkPath`
- `Uri::isAbsolutePath`
- `Uri::isRelativePath`
- `Uri::isSameDocument`
- `Uri::equals`
- `Uri::toNormalizedString`
- `Uri::getOrigin`
- `Uri::isSameOrigin`
- `Uri::isCrossOrigin`

### Fixed

- `Uri` and `Http` normalization normalized IP against RFC3986 rules and not WHATWG rules.

### Deprecated

Expand Down

0 comments on commit 5b70146

Please sign in to comment.