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.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.8.5] - 2021-04-20
8
+
9
+ ### Added
10
+ - Dependencies updated.
11
+
7
12
## [ 1.8.4] - 2021-04-07
8
13
9
14
### Added
@@ -165,6 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
165
170
### Fixed
166
171
- Local file resolver in references.
167
172
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
168
175
[ 1.8.3 ] : https://github.com/swaggest/json-cli/compare/v1.8.2...v1.8.3
169
176
[ 1.8.2 ] : https://github.com/swaggest/json-cli/compare/v1.8.1...v1.8.2
170
177
[ 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 16
16
"symfony/yaml" : " ^3" ,
17
17
"salsify/json-streaming-parser" : " ^7.0" ,
18
18
"swaggest/json-schema" : " ^0.12.21" ,
19
- "swaggest/go-code-builder" : " ^0.4.42 " ,
19
+ "swaggest/go-code-builder" : " ^0.4.43 " ,
20
20
"swaggest/php-code-builder" : " ^0.2.29" ,
21
21
"swaggest/code-builder" : " ^0.3.2" ,
22
22
"swaggest/json-schema-maker" : " ^0.3.4"
Original file line number Diff line number Diff line change 7
7
8
8
class App extends Command \Application
9
9
{
10
- public static $ ver = 'v1.8.4 ' ;
10
+ public static $ ver = 'v1.8.5 ' ;
11
11
12
12
public $ diff ;
13
13
public $ apply ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* @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).
6
6
*/
7
7
8
8
/**
9
9
* @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).
13
13
*/
14
14
15
15
/**
16
16
* @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).
20
20
*/
21
21
You can’t perform that action at this time.
0 commit comments