@openfin/remote-adapter 42.100.90 → 42.100.91

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.
@@ -6082,6 +6082,9 @@ function requireInstance$1 () {
6082
6082
  * ```
6083
6083
  */
6084
6084
  updateOptions(options) {
6085
+ if ('frame' in options) {
6086
+ console.warn(`Deprecation Warning: Starting with version 45 it will not be possible to change the frame value after window has been created.`);
6087
+ }
6085
6088
  return this.wire.sendAction('update-window-options', { options, ...this.identity }).then(() => undefined);
6086
6089
  }
6087
6090
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "42.100.90",
3
+ "version": "42.100.91",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,
@@ -20,6 +20,6 @@
20
20
  "author": "OpenFin",
21
21
  "dependencies": {
22
22
  "lodash": "^4.17.21",
23
- "@openfin/core": "42.100.90"
23
+ "@openfin/core": "42.100.91"
24
24
  }
25
25
  }