Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 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.8.5] - 2021-04-20

### Added
- Dependencies updated.

## [1.8.4] - 2021-04-07

### Added
Expand Down Expand Up @@ -165,6 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Local file resolver in references.

[1.8.4]: https://github.com/swaggest/json-cli/compare/v1.8.4...v1.8.5
[1.8.4]: https://github.com/swaggest/json-cli/compare/v1.8.3...v1.8.4
[1.8.3]: https://github.com/swaggest/json-cli/compare/v1.8.2...v1.8.3
[1.8.2]: https://github.com/swaggest/json-cli/compare/v1.8.1...v1.8.2
[1.8.1]: https://github.com/swaggest/json-cli/compare/v1.8.0...v1.8.1
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"symfony/yaml": "^3",
"salsify/json-streaming-parser": "^7.0",
"swaggest/json-schema": "^0.12.21",
"swaggest/go-code-builder": "^0.4.42",
"swaggest/go-code-builder": "^0.4.43",
"swaggest/php-code-builder": "^0.2.29",
"swaggest/code-builder": "^0.3.2",
"swaggest/json-schema-maker": "^0.3.4"
Expand Down
26 changes: 13 additions & 13 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.8.4';
public static $ver = 'v1.8.5';

public $diff;
public $apply;
Expand Down
18 changes: 9 additions & 9 deletions tests/assets/jsdoc/asyncapi-streetlights/entities.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/**
* @typedef ComponentsMessagesLightMeasuredPayload
* @type {object}
* @property {number} lumens - Light intensity measured in lumens (updated).
* @property {string} sentAt - Date and time when the message was sent (updated).
* @type {Object}
* @property {Number} lumens - Light intensity measured in lumens (updated).
* @property {String} sentAt - Date and time when the message was sent (updated).
*/

/**
* @typedef ComponentsMessagesTurnOnOffPayload
* @type {object}
* @property {string} command - Whether to turn on or off the light.
* @property {string} sentAt - Date and time when the message was sent (updated).
* @type {Object}
* @property {('on'|'off')} command - Whether to turn on or off the light.
* @property {String} sentAt - Date and time when the message was sent (updated).
*/

/**
* @typedef ComponentsMessagesDimLightPayload
* @type {object}
* @property {number} percentage - Percentage to which the light should be dimmed to.
* @property {string} sentAt - Date and time when the message was sent (updated).
* @type {Object}
* @property {Number} percentage - Percentage to which the light should be dimmed to.
* @property {String} sentAt - Date and time when the message was sent (updated).
*/

Loading