-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,061 changed files
with
64,174 additions
and
45,152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ jobs: | |
strategy: | ||
matrix: | ||
image: ["server-core", "playout-gateway", "mos-gateway"] | ||
timeout-minutes: 15 | ||
|
||
steps: | ||
- name: Run Trivy vulnerability scanner (json) | ||
uses: aquasecurity/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ Follow these instructions to start up Sofie Core in development mode. (For produ | |
### Prerequisites | ||
|
||
- Install [Node.js](https://nodejs.org) 14 (using [nvm](https://github.com/nvm-sh/nvm) or [nvm-windows](https://github.com/coreybutler/nvm-windows) is the recommended way to install Node.js) | ||
- Install [Meteor](https://www.meteor.com/install) (`npm install --global meteor`) | ||
- Install [Meteor](https://www.meteor.com/install) (`npm install --global meteor@2`) | ||
- Install [Node.js](https://nodejs.org) 18 (using the same method you used above, you can uninstall node 14 if needed) | ||
- Install an older version of corepack (`npm install --global [email protected]`) | ||
- Enable [corepack](https://nodejs.org/api/corepack.html#corepack) (`corepack enable`) as administrator/root. If `corepack` is not found, you may need to install it first with `npm install --global corepack` | ||
|
@@ -132,6 +132,30 @@ The resulting JSON file will be placed in `meteor/public/locales/xx`, where it w | |
|
||
Then submit this as a PR. | ||
|
||
## Deprecations | ||
|
||
### ConfigManifests | ||
|
||
The ConfigManifests for Blueprints and Gateways was replaced with JSONSchema in R50. | ||
However, one usage by AdlibActions for their userDataManifest remains as this is not something we are actively using. | ||
|
||
## Blueprint Migrations | ||
|
||
In R49, a replacement flow was added consisting of `validateConfig` and `applyConfig`. | ||
It is no longer recommended to use the old migrations flow for showstyle and studio blueprints. | ||
|
||
### ExpectedMediaItems | ||
|
||
These are used for Media-manager which is no longer being developed. | ||
|
||
### Blueprints: getPieceABSessionId & getTimelineObjectAbSessionId | ||
|
||
With AB being a native concept supported by Sofie since R50, these are likely no longer useful to Blueprints. | ||
|
||
### MongoQuery `fields` specifier | ||
|
||
It is recommended to use `projection` instead, as it is functionally identical but follows recommended naming from mongodb. | ||
|
||
## Other info | ||
|
||
### Version-Numbering Scheme | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,26 +10,27 @@ | |
|
||
[email protected] # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
mongo@1.15.0 # The database Meteor supports right now | ||
[email protected].11 # Reactive variable for tracker | ||
mongo@1.16.7 # The database Meteor supports right now | ||
[email protected].12 # Reactive variable for tracker | ||
|
||
standard-minifier-css@1.8.1 # CSS minifier run for production mode | ||
[email protected].0 # JS minifier run for production mode | ||
standard-minifier-css@1.9.2 # CSS minifier run for production mode | ||
[email protected].1 # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers | ||
[email protected].2 # Enable ECMAScript2015+ syntax in app code | ||
typescript@4.5.4 # Enable TypeScript syntax in .ts and .tsx modules | ||
[email protected].7 # Enable ECMAScript2015+ syntax in app code | ||
typescript@4.9.4 # Enable TypeScript syntax in .ts and .tsx modules | ||
[email protected] # Server-side component of the `meteor shell` command | ||
[email protected].7 # Select when to allow use of the "modern" bundle | ||
[email protected].9 # Select when to allow use of the "modern" bundle | ||
|
||
[email protected] # Define static page content in .html files | ||
react-meteor-data # React higher-order component for reactively tracking Meteor data | ||
|
||
tracker@1.2.0 # Meteor's client-side reactive programming library | ||
[email protected].0 | ||
tracker@1.3.2 # Meteor's client-side reactive programming library | ||
[email protected].1 | ||
fourseven:scss | ||
|
||
[email protected].2 | ||
[email protected].3 | ||
ostrio:meteor-root | ||
[email protected].1 | ||
[email protected].4 | ||
|
||
julusian:[email protected] | ||
zodern:types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@2.7.3 | ||
METEOR@2.13.3 |
Oops, something went wrong.