cobrowse-sdk-js 3.4.1 → 3.4.3
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 +16 -0
- package/Dockerfile +2 -2
- package/dist/CobrowseIO.js +1 -1
- package/dist/CobrowseIO.umd.js +1 -1
- package/dist/universal-client.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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
|
+
### [3.4.3](#) (2025-07-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* let the user share the current tab in full device mode ([#318](#)) ([7e92fcf](#))
|
|
11
|
+
* prevent viewport scaling ([#320](#)) ([b882a88](#))
|
|
12
|
+
* safely reset compression and patch stream ([#321](#)) ([821b774](#))
|
|
13
|
+
|
|
14
|
+
### [3.4.2](#) (2025-06-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* invalidate frame sync ([#317](#)) ([ac7c196](#))
|
|
20
|
+
|
|
5
21
|
### [3.4.1](#) (2025-06-06)
|
|
6
22
|
|
|
7
23
|
|
package/Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
ARG COBROWSEIO_GITHUB_TOKEN=""
|
|
3
3
|
ARG npm_config_ignore_scripts="false"
|
|
4
4
|
|
|
5
|
-
FROM node:
|
|
5
|
+
FROM node:22-alpine AS deps
|
|
6
6
|
RUN apk add --update --no-cache wget git python3 make g++ pkgconfig pixman-dev cairo-dev pango-dev
|
|
7
7
|
WORKDIR /usr/src
|
|
8
8
|
COPY package.json package-lock.json .npmrc ./
|
|
@@ -10,7 +10,7 @@ RUN --mount=type=secret,id=cobrowseio_github_token \
|
|
|
10
10
|
COBROWSEIO_GITHUB_TOKEN=$(cat /run/secrets/cobrowseio_github_token) \
|
|
11
11
|
npm install
|
|
12
12
|
|
|
13
|
-
FROM node:
|
|
13
|
+
FROM node:22-alpine AS dev
|
|
14
14
|
ENV NODE_ENV=development
|
|
15
15
|
ENV STAGE=development
|
|
16
16
|
RUN apk add --no-cache ca-certificates && update-ca-certificates
|