File tree Expand file tree Collapse file tree 7 files changed +214
-184
lines changed
Expand file tree Collapse file tree 7 files changed +214
-184
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.8.5] - 2021-04-20
8+
9+ ### Added
10+ - Dependencies updated.
11+
712## [ 1.8.4] - 2021-04-07
813
914### Added
@@ -165,6 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
165170### Fixed
166171- Local file resolver in references.
167172
173+ [ 1.8.4 ] : https://github.com/swaggest/json-cli/compare/v1.8.4...v1.8.5
174+ [ 1.8.4 ] : https://github.com/swaggest/json-cli/compare/v1.8.3...v1.8.4
168175[ 1.8.3 ] : https://github.com/swaggest/json-cli/compare/v1.8.2...v1.8.3
169176[ 1.8.2 ] : https://github.com/swaggest/json-cli/compare/v1.8.1...v1.8.2
170177[ 1.8.1 ] : https://github.com/swaggest/json-cli/compare/v1.8.0...v1.8.1
Original file line number Diff line number Diff line change 1616 "symfony/yaml" : " ^3" ,
1717 "salsify/json-streaming-parser" : " ^7.0" ,
1818 "swaggest/json-schema" : " ^0.12.21" ,
19- "swaggest/go-code-builder" : " ^0.4.42 " ,
19+ "swaggest/go-code-builder" : " ^0.4.43 " ,
2020 "swaggest/php-code-builder" : " ^0.2.29" ,
2121 "swaggest/code-builder" : " ^0.3.2" ,
2222 "swaggest/json-schema-maker" : " ^0.3.4"
Original file line number Diff line number Diff line change 77
88class App extends Command \Application
99{
10- public static $ ver = 'v1.8.4 ' ;
10+ public static $ ver = 'v1.8.5 ' ;
1111
1212 public $ diff ;
1313 public $ apply ;
Original file line number Diff line number Diff line change 11/**
22 * @typedef ComponentsMessagesLightMeasuredPayload
3- * @type {object }
4- * @property {number } lumens - Light intensity measured in lumens (updated).
5- * @property {string } sentAt - Date and time when the message was sent (updated).
3+ * @type {Object }
4+ * @property {Number } lumens - Light intensity measured in lumens (updated).
5+ * @property {String } sentAt - Date and time when the message was sent (updated).
66 */
77
88/**
99 * @typedef ComponentsMessagesTurnOnOffPayload
10- * @type {object }
11- * @property {string } command - Whether to turn on or off the light.
12- * @property {string } sentAt - Date and time when the message was sent (updated).
10+ * @type {Object }
11+ * @property {('on'|'off') } command - Whether to turn on or off the light.
12+ * @property {String } sentAt - Date and time when the message was sent (updated).
1313 */
1414
1515/**
1616 * @typedef ComponentsMessagesDimLightPayload
17- * @type {object }
18- * @property {number } percentage - Percentage to which the light should be dimmed to.
19- * @property {string } sentAt - Date and time when the message was sent (updated).
17+ * @type {Object }
18+ * @property {Number } percentage - Percentage to which the light should be dimmed to.
19+ * @property {String } sentAt - Date and time when the message was sent (updated).
2020 */
2121
You can’t perform that action at this time.
0 commit comments