cobrowse-sdk-js 3.2.0 → 3.2.2
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 +21 -0
- package/Dockerfile +2 -2
- package/dist/CobrowseIO.js +1 -1
- package/dist/CobrowseIO.js.LICENSE.txt +1 -1
- package/dist/CobrowseIO.umd.js +1 -1
- package/dist/pdf-viewer.chunk.js +1 -1
- package/dist/pdf-viewer.umd.js +1 -1
- package/dist/universal-client.js +1 -1
- package/dist/universal-client.js.LICENSE.txt +1 -1
- package/package.json +30 -31
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.2.2](#) (2025-01-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* apply the button check to mouse down in native select ([#274](#)) ([e49b6fc](#))
|
|
11
|
+
* don't set Content-Type headers on outgoing GET requests ([b0e06d3](#))
|
|
12
|
+
* fix docker build warnings ([6a4d787](#))
|
|
13
|
+
* patch document write ([#276](#)) ([1afa0e7](#))
|
|
14
|
+
* prevent wrapper from applying on variable name ([#279](#)) ([48b85a5](#))
|
|
15
|
+
|
|
16
|
+
### [3.2.1](#) (2024-12-10)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* debounce native select to prevent accidental selection ([#269](#)) ([ce3383c](#))
|
|
22
|
+
* only respond to left clicks on native select ([#272](#)) ([d430215](#))
|
|
23
|
+
* redaction on native select ([#271](#)) ([eeb3524](#))
|
|
24
|
+
* set z-index on native select ([#270](#)) ([8210ce9](#))
|
|
25
|
+
|
|
5
26
|
## [3.2.0](#) (2024-12-10)
|
|
6
27
|
|
|
7
28
|
|
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:20-alpine
|
|
5
|
+
FROM node:20-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:20-alpine
|
|
13
|
+
FROM node:20-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
|