Skip to content

Commit

Permalink
Update swaggest/json-diff
Browse files Browse the repository at this point in the history
  • Loading branch information
vearutop committed Sep 26, 2020
1 parent 767bc7b commit 290ae2e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 290ae2e

Please sign in to comment.