diff --git a/CHANGELOG.md b/CHANGELOG.md index bad7896..037c24d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.7.13] - 2020-09-26 + +### Added +- Dependency `swaggest/json-diff` updated. + ## [1.7.12] - 2020-09-25 ### Added @@ -133,6 +138,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Local file resolver in references. +[1.7.13]: https://github.com/swaggest/json-cli/compare/v1.7.12...v1.7.13 [1.7.12]: https://github.com/swaggest/json-cli/compare/v1.7.11...v1.7.12 [1.7.11]: https://github.com/swaggest/json-cli/compare/v1.7.10...v1.7.11 [1.7.10]: https://github.com/swaggest/json-cli/compare/v1.7.9...v1.7.10 diff --git a/composer.lock b/composer.lock index 153d875..805a586 100644 --- a/composer.lock +++ b/composer.lock @@ -298,16 +298,16 @@ }, { "name": "swaggest/json-diff", - "version": "v3.8.0", + "version": "v3.8.1", "source": { "type": "git", "url": "https://github.com/swaggest/json-diff.git", - "reference": "321078163129c2292ac5be38369730b107cd3716" + "reference": "d2184358c5ef5ecaa1f6b4c2bce175fac2d25670" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swaggest/json-diff/zipball/321078163129c2292ac5be38369730b107cd3716", - "reference": "321078163129c2292ac5be38369730b107cd3716", + "url": "https://api.github.com/repos/swaggest/json-diff/zipball/d2184358c5ef5ecaa1f6b4c2bce175fac2d25670", + "reference": "d2184358c5ef5ecaa1f6b4c2bce175fac2d25670", "shasum": "" }, "require": { @@ -333,7 +333,7 @@ } ], "description": "JSON diff/rearrange/patch/pointer library for PHP", - "time": "2020-09-24T22:42:02+00:00" + "time": "2020-09-25T17:47:07+00:00" }, { "name": "swaggest/json-schema", diff --git a/src/App.php b/src/App.php index 01d6e8d..da5dc19 100644 --- a/src/App.php +++ b/src/App.php @@ -7,7 +7,7 @@ class App extends Command\Application { - public static $ver = 'v1.7.12'; + public static $ver = 'v1.7.13'; public $diff; public $apply; diff --git a/src/Base.php b/src/Base.php index b3fe24e..100cf32 100644 --- a/src/Base.php +++ b/src/Base.php @@ -62,7 +62,7 @@ public static function readJsonOrYaml($path, $response) protected function postPerform() { - $options = JSON_UNESCAPED_SLASHES; + $options = JSON_UNESCAPED_SLASHES + JSON_UNESCAPED_UNICODE; if ($this->pretty) { $options += JSON_PRETTY_PRINT; }