@signageos/lib 10.8.0 → 10.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [10.9.0] - 2023-01-25
8
+ ### Added
9
+ - Zod utils
10
+ - String utils
11
+
12
+ ### Fixed
13
+ - Restricted node and npm versions to `12` and `6` respectively
14
+
7
15
  ## [10.8.0] - 2023-01-23
8
16
  ### Added
9
17
  - `deviceActionsQueue` wait for response from device only when not specified `sessionUid`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signageos/lib",
3
- "version": "10.8.0",
3
+ "version": "10.9.0",
4
4
  "main": "./dist",
5
5
  "files": [
6
6
  "tools",
@@ -50,8 +50,8 @@
50
50
  "zen-observable": "0.8.14"
51
51
  },
52
52
  "engines": {
53
- "node": ">=12.0.0",
54
- "npm": ">=6.0.0"
53
+ "node": "12",
54
+ "npm": "6"
55
55
  },
56
56
  "publishConfig": {
57
57
  "registry": "https://registry.npmjs.org/",