cobrowse-sdk-js 2.11.3 → 2.11.4
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 +8 -0
- package/README.md +23 -3
- package/dist/CobrowseIO.js +1 -1
- package/dist/CobrowseIO.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.11.4](#) (2021-12-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* set redaction: undefined when not redacted ([6c0c212](#))
|
|
11
|
+
* treat unredacted nodes as being added ([c2bf353](#))
|
|
12
|
+
|
|
5
13
|
### [2.11.2](#) (2021-11-09)
|
|
6
14
|
|
|
7
15
|
### [2.11.1](#) (2021-11-09)
|
package/README.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Cobrowse SDK for Web
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the Cobrowse SDK for Web.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Development
|
|
6
|
+
|
|
7
|
+
### Cross Domain
|
|
8
|
+
|
|
9
|
+
To update the server side component for cross domain sessions:
|
|
10
|
+
|
|
11
|
+
1. Run `npm build`
|
|
12
|
+
2. Copy `/iframe_storage/server.*` to the frontend at `/apps/iframe_storage/server.*`.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Deployment
|
|
16
|
+
|
|
17
|
+
This SDK is available via NPM as well as a scripted hosted via out CDN. To deploy a new version:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
./script/release.sh
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
**Prerequisites**
|
|
24
|
+
|
|
25
|
+
Before you can deploy, you must have write access to this repository in the cobrowseio organisation, and must be added to the deployers team in GitHub. You must also have been granted access to deploy new versions to NPM.
|