@forge/confluence-bridge 3.1.0-next.2 → 3.1.1-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @forge/confluence-bridge
2
2
 
3
+ ## 3.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0b7cde8: replace window with globalThis to ensure the bridge packages can work in both browser and worker environment
8
+
9
+ ## 3.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 6617110: Added updateBylineProperties bridge method
14
+
15
+ ### Patch Changes
16
+
17
+ - 4454464: Add setMacroViewportHeight function to confluence-bridge
18
+ - aa6fe6a: Remove bad import
19
+
3
20
  ## 3.1.0-next.2
4
21
 
5
22
  ### Patch Changes
package/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2025 Atlassian
1
+ Copyright (c) 2026 Atlassian
2
2
  Permission is hereby granted to use this software in accordance with the terms
3
3
  and conditions outlined in the Atlassian Developer Terms, which can be found
4
4
  at the following URL:
package/out/bridge.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getCallBridge = void 0;
4
4
  const getCallBridge = () => {
5
- return window.__bridge.callBridge;
5
+ return globalThis.__bridge.callBridge;
6
6
  };
7
7
  exports.getCallBridge = getCallBridge;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/confluence-bridge",
3
- "version": "3.1.0-next.2",
3
+ "version": "3.1.1-next.0",
4
4
  "description": "Forge Confluence custom bridge API",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",