Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,30 @@ The frameworks with examples can be found in the following folders.
* [Angular](./frameworks/angular)
* [React](./frameworks/react)

Please see the README.md files in each sub-folder for more details on getting started with each project.

## Branches

The current main branch always matches the stable release of the OpenFin components.

There are older branches which match the container/workspace release with the version of the frameworks that were available at the time of release.

## Versions
https://github.com/built-on-openfin/frontend-framework-starter/branches/all

## Upgrade Script

To automate the upgrade of OpenFin versions across all projects, use the `upgrade-versions.mjs` script. This script updates `package.json` dependencies, `manifest.fin.json` runtime settings, and version references in documentation.

### Usage

Run with default versions (configured inside the script):
```bash
node scripts/upgrade-versions.mjs
```

This branch covers the following versions:
### Flags

* OpenFin Workspace 22
* Angular 19
* React 18
- `--runtime <version>`: Updates the runtime version in manifests and markdown.
- `--workspace <version>`: Updates `@openfin/workspace` and `@openfin/workspace-platform` (coupled).
- `--core <version>`: Updates `@openfin/core` and `@openfin/node-adapter` (coupled).
- `--core-web <version>`: Updates `@openfin/core-web` (independent).
92 changes: 46 additions & 46 deletions frameworks/angular/container/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions frameworks/angular/container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@finos/fdc3": "2.0.3",
"@openfin/core": "42.102.4",
"@openfin/workspace": "22.3.25",
"@openfin/core": "42.103.1",
"@openfin/workspace": "22.3.27",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
Expand All @@ -31,7 +31,7 @@
"@angular-devkit/build-angular": "^19.0.1",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@openfin/node-adapter": "42.102.4",
"@openfin/node-adapter": "42.103.1",
"@types/jasmine": "~5.1.4",
"angular-eslint": "18.3.1",
"eslint": "^9.9.1",
Expand Down
2 changes: 1 addition & 1 deletion frameworks/angular/container/public/manifest.fin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"runtime": {
"arguments": "--v=1 --inspect",
"version": "42.138.102.4"
"version": "42.138.103.1"
},
"platform": {
"uuid": "angular-container-starter",
Expand Down
Loading