Skip to content

Commit

Permalink
v1.42.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Oct 12, 2023
1 parent 8d35782 commit fce16b2
Show file tree
Hide file tree
Showing 38 changed files with 254 additions and 53 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)


### Bug Fixes

* add new option `warningLimit` to monitor. ([a50b1a2](https://github.com/nrkno/tv-automation-package-manager/commit/a50b1a225719e78d1fd7471d9c183f1af888042d))
* bug ([6c99dd7](https://github.com/nrkno/tv-automation-package-manager/commit/6c99dd79542872f2281e8a82cf683be9dcf33b77))
* fix in file monitor ([3fb2eed](https://github.com/nrkno/tv-automation-package-manager/commit/3fb2eedee84a0992e969e96451040e4cdda418e1))
* hack to make pkg include @parcel/watcher native dependencies ([3f1fd7d](https://github.com/nrkno/tv-automation-package-manager/commit/3f1fd7da092dee2d217f2e8c879a74c49e85441e))
* improve debug logging, add CLI argument: --logLevel=debug ([52043c0](https://github.com/nrkno/tv-automation-package-manager/commit/52043c03fd924f33c88e7e4771826e8e2ff435e5))
* replace chokidar file monitor with ParcelWatcher ([60922e4](https://github.com/nrkno/tv-automation-package-manager/commit/60922e403c60739c5360b61d932b526b98c70ef3))
* restart deep-scanning if ffpmeg doesn't output progress. ([a13b4f6](https://github.com/nrkno/tv-automation-package-manager/commit/a13b4f6eac488f880ab0c87de4ccca75963266e3))
* rewrite the retrying of ffmpeg ([c7a8b06](https://github.com/nrkno/tv-automation-package-manager/commit/c7a8b063362344f0c2acc63b44be80269bd571fc))
* wrap Accessor methods, in order to catch timeout issues earlier ([7f2a1f2](https://github.com/nrkno/tv-automation-package-manager/commit/7f2a1f2b1bcbce9ce1f3fcb15c4f2553a8cf03fe))
* wrap lookupAccessorHandles in promiseTimeout, in order to catch timeouts earlier ([dc95092](https://github.com/nrkno/tv-automation-package-manager/commit/dc95092f46dadabaacb60023ef59083f509dd74b))


### Reverts

* chore: lerna useWorkspaces ([e1e5d27](https://github.com/nrkno/tv-automation-package-manager/commit/e1e5d2767c83e0230d6aab56705e021b67f38178))





## [1.42.1](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)


Expand Down
8 changes: 8 additions & 0 deletions apps/appcontainer-node/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @appcontainer-node/app





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @appcontainer-node/app
Expand Down
4 changes: 2 additions & 2 deletions apps/appcontainer-node/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appcontainer-node/app",
"version": "1.42.1",
"version": "1.42.2",
"description": "AppContainer-Node.js",
"private": true,
"scripts": {
Expand All @@ -14,7 +14,7 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@appcontainer-node/generic": "1.42.1"
"@appcontainer-node/generic": "1.42.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
Expand Down
11 changes: 11 additions & 0 deletions apps/appcontainer-node/packages/generic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)


### Bug Fixes

* improve debug logging, add CLI argument: --logLevel=debug ([52043c0](https://github.com/nrkno/tv-automation-package-manager/commit/52043c03fd924f33c88e7e4771826e8e2ff435e5))





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @appcontainer-node/generic
Expand Down
6 changes: 3 additions & 3 deletions apps/appcontainer-node/packages/generic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appcontainer-node/generic",
"version": "1.42.1",
"version": "1.42.2",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -10,8 +10,8 @@
"__test": "jest"
},
"dependencies": {
"@sofie-package-manager/api": "1.42.1",
"@sofie-package-manager/worker": "1.42.1",
"@sofie-package-manager/api": "1.42.2",
"@sofie-package-manager/worker": "1.42.2",
"underscore": "^1.12.0"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions apps/http-server/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @http-server/app





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @http-server/app
Expand Down
4 changes: 2 additions & 2 deletions apps/http-server/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@http-server/app",
"version": "1.42.1",
"version": "1.42.2",
"description": "Upload to and serve proxies of packages",
"private": true,
"scripts": {
Expand All @@ -14,7 +14,7 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@http-server/generic": "1.42.1"
"@http-server/generic": "1.42.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
Expand Down
8 changes: 8 additions & 0 deletions apps/http-server/packages/generic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @http-server/generic





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @http-server/generic
Expand Down
4 changes: 2 additions & 2 deletions apps/http-server/packages/generic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@http-server/generic",
"version": "1.42.1",
"version": "1.42.2",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,7 +11,7 @@
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@sofie-package-manager/api": "1.42.1",
"@sofie-package-manager/api": "1.42.2",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-range": "^0.3.0",
Expand Down
8 changes: 8 additions & 0 deletions apps/package-manager/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @package-manager/app





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @package-manager/app
Expand Down
4 changes: 2 additions & 2 deletions apps/package-manager/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@package-manager/app",
"version": "1.42.1",
"version": "1.42.2",
"private": true,
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
Expand All @@ -13,7 +13,7 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@package-manager/generic": "1.42.1"
"@package-manager/generic": "1.42.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
Expand Down
13 changes: 13 additions & 0 deletions apps/package-manager/packages/generic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)


### Bug Fixes

* add new option `warningLimit` to monitor. ([a50b1a2](https://github.com/nrkno/tv-automation-package-manager/commit/a50b1a225719e78d1fd7471d9c183f1af888042d))
* improve debug logging, add CLI argument: --logLevel=debug ([52043c0](https://github.com/nrkno/tv-automation-package-manager/commit/52043c03fd924f33c88e7e4771826e8e2ff435e5))
* replace chokidar file monitor with ParcelWatcher ([60922e4](https://github.com/nrkno/tv-automation-package-manager/commit/60922e403c60739c5360b61d932b526b98c70ef3))





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)


Expand Down
8 changes: 4 additions & 4 deletions apps/package-manager/packages/generic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@package-manager/generic",
"version": "1.42.1",
"version": "1.42.2",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -13,10 +13,10 @@
"@sofie-automation/server-core-integration": "*"
},
"dependencies": {
"@sofie-package-manager/api": "1.42.1",
"@sofie-package-manager/expectation-manager": "1.42.1",
"@sofie-package-manager/worker": "1.42.1",
"@parcel/watcher": "^2.3.0",
"@sofie-package-manager/api": "1.42.2",
"@sofie-package-manager/expectation-manager": "1.42.2",
"@sofie-package-manager/worker": "1.42.2",
"data-store": "^4.0.3",
"deep-extend": "^0.6.0",
"fast-clone": "^1.5.13",
Expand Down
8 changes: 8 additions & 0 deletions apps/quantel-http-transformer-proxy/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @quantel-http-transformer-proxy/app





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @quantel-http-transformer-proxy/app
Expand Down
4 changes: 2 additions & 2 deletions apps/quantel-http-transformer-proxy/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantel-http-transformer-proxy/app",
"version": "1.42.1",
"version": "1.42.2",
"description": "Proxy for a Quantel HTTP Transformer",
"private": true,
"scripts": {
Expand All @@ -13,7 +13,7 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@quantel-http-transformer-proxy/generic": "1.42.1"
"@quantel-http-transformer-proxy/generic": "1.42.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @quantel-http-transformer-proxy/generic





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @quantel-http-transformer-proxy/generic
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantel-http-transformer-proxy/generic",
"version": "1.42.1",
"version": "1.42.2",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -12,7 +12,7 @@
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/multer": "3.0.0",
"@sofie-package-manager/api": "1.42.1",
"@sofie-package-manager/api": "1.42.2",
"got": "^11.8.6",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
Expand Down
11 changes: 11 additions & 0 deletions apps/single-app/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)


### Bug Fixes

* improve debug logging, add CLI argument: --logLevel=debug ([52043c0](https://github.com/nrkno/tv-automation-package-manager/commit/52043c03fd924f33c88e7e4771826e8e2ff435e5))





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @single-app/app
Expand Down
16 changes: 8 additions & 8 deletions apps/single-app/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@single-app/app",
"version": "1.42.1",
"version": "1.42.2",
"description": "Package Manager, http-proxy etc.. all in one application",
"private": true,
"scripts": {
Expand All @@ -14,13 +14,13 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@appcontainer-node/generic": "1.42.1",
"@http-server/generic": "1.42.1",
"@package-manager/generic": "1.42.1",
"@quantel-http-transformer-proxy/generic": "1.42.1",
"@sofie-package-manager/api": "1.42.1",
"@sofie-package-manager/worker": "1.42.1",
"@sofie-package-manager/workforce": "1.42.1",
"@appcontainer-node/generic": "1.42.2",
"@http-server/generic": "1.42.2",
"@package-manager/generic": "1.42.2",
"@quantel-http-transformer-proxy/generic": "1.42.2",
"@sofie-package-manager/api": "1.42.2",
"@sofie-package-manager/worker": "1.42.2",
"@sofie-package-manager/workforce": "1.42.2",
"underscore": "^1.12.0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
Expand Down
8 changes: 8 additions & 0 deletions apps/worker/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @worker/app





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @worker/app
Expand Down
4 changes: 2 additions & 2 deletions apps/worker/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@worker/app",
"version": "1.42.1",
"version": "1.42.2",
"description": "Boilerplace",
"private": true,
"scripts": {
Expand All @@ -15,7 +15,7 @@
"nexe": "^3.3.7"
},
"dependencies": {
"@worker/generic": "1.42.1"
"@worker/generic": "1.42.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
Expand Down
8 changes: 8 additions & 0 deletions apps/worker/packages/generic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.42.2](https://github.com/nrkno/tv-automation-package-manager/compare/v1.42.1...v1.42.2) (2023-10-12)

**Note:** Version bump only for package @worker/generic





## [1.42.1](https://github.com/nrkno/sofie-package-manager/compare/v1.42.1-alpha.4...v1.42.1) (2023-06-19)

**Note:** Version bump only for package @worker/generic
Expand Down
Loading

0 comments on commit fce16b2

Please sign in to comment.