Skip to content

Latest commit

History

History
95 lines (62 loc) 路 3.61 KB

CHANGELOG.md

File metadata and controls

95 lines (62 loc) 路 3.61 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

For a full diff see [3.1.0...main][3.1.0...main].

[3.1.0][3.1.0]

For a full diff see 3.1.0...3.0.0.

Added

[3.0.0][3.0.0]

For a full diff see 2.1.0...3.0.0.

Added

Removed

For a full diff see 2.0.0...2.1.0.

Added

For a full diff see [1.0.0...2.0.0][1.0.0...2.0.0].

Added

  • Added named constructors JsonPointer::fromUriFragmentIdentifierString() and ReferenceToken::fromUriFragmentIdentifierString() to allow creation from URI fragment identifier representations (#6), by @localheinz
  • Added named constructor JsonPointer::fromReferenceTokens() to allow creation of JsonPointer from ReferenceTokens (#9), by @localheinz

Changed

  • Renamed named constructors and accessors of Exception\InvalidJsonPointer, JsonPointer, and ReferenceToken (#4) and (#5), by @localheinz

    • Exception\InvalidJsonPointer::fromString() to Exception\InvalidJsonPointer::fromJsonString()
    • JsonPointer::fromString() to JsonPointer::fromJsonString()
    • JsonPointer::toString() to JsonPointer::toJsonString()
    • ReferenceToken::fromEscapedString() to ReferenceToken::fromJsonString()
    • ReferenceToken::fromUnescapedString() to ReferenceToken::fromString()
    • ReferenceToken::toEscapedString() to ReferenceToken::toJsonString()
    • ReferenceToken::toUnescapedString() to ReferenceToken::toString()

For a full diff see a5ba52c...1.0.0.

Added