node-datachannel 0.33.2 → 0.33.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.
Files changed (2) hide show
  1. package/CMakeLists.txt +2 -2
  2. package/package.json +13 -11
package/CMakeLists.txt CHANGED
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
2
2
  cmake_policy(SET CMP0091 NEW)
3
3
  cmake_policy(SET CMP0042 NEW)
4
4
 
5
- project(node_datachannel VERSION 0.33.2)
5
+ project(node_datachannel VERSION 0.33.4)
6
6
 
7
7
  # compile_commands.json
8
8
  # -----------------------------------
@@ -36,7 +36,7 @@ include(FetchContent)
36
36
  FetchContent_Declare(
37
37
  libdatachannel
38
38
  GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git
39
- GIT_TAG "v0.24.3"
39
+ GIT_TAG "v0.24.5"
40
40
  )
41
41
 
42
42
  option(NO_MEDIA "Disable media transport support in libdatachannel" OFF)
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "node-datachannel",
3
- "version": "0.33.2",
3
+ "version": "0.33.4",
4
+ "//": "NOTE: When bumping 'version', also update all @node-datachannel/* packages in 'optionalDependencies' below!",
4
5
  "description": "WebRTC For Node.js and Electron. libdatachannel node bindings.",
5
6
  "main": "./dist/cjs/lib/index.cjs",
6
7
  "module": "./dist/esm/lib/index.mjs",
@@ -41,7 +42,8 @@
41
42
  "build:tsc": "rimraf dist && rollup -c",
42
43
  "build:tsc:watch": "rollup -c -w",
43
44
  "clean": "rimraf dist build npm",
44
- "lint": "eslint . --ext .ts --ext .mts",
45
+ "lint": "eslint . --ext .ts --ext .mts && npm run verify-versions",
46
+ "verify-versions": "node scripts/verify-platform-versions.js",
45
47
  "test": "NODE_OPTIONS=--experimental-vm-modules jest",
46
48
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
47
49
  "test:wpt": "npm run run:wpt:server & (sleep 8 && (npm run run:wpt:test | tee test/wpt-tests/last-test-results.md) )",
@@ -118,14 +120,14 @@
118
120
  "detect-libc": "^2.0.4"
119
121
  },
120
122
  "optionalDependencies": {
121
- "@node-datachannel/android-arm64": "0.33.2",
122
- "@node-datachannel/darwin-arm64": "0.33.2",
123
- "@node-datachannel/darwin-x64": "0.33.2",
124
- "@node-datachannel/linux-arm64-gnu": "0.33.2",
125
- "@node-datachannel/linux-arm64-musl": "0.33.2",
126
- "@node-datachannel/linux-x64-gnu": "0.33.2",
127
- "@node-datachannel/linux-x64-musl": "0.33.2",
128
- "@node-datachannel/win32-arm64-msvc": "0.33.2",
129
- "@node-datachannel/win32-x64-msvc": "0.33.2"
123
+ "@node-datachannel/android-arm64": "0.33.4",
124
+ "@node-datachannel/darwin-arm64": "0.33.4",
125
+ "@node-datachannel/darwin-x64": "0.33.4",
126
+ "@node-datachannel/linux-arm64-gnu": "0.33.4",
127
+ "@node-datachannel/linux-arm64-musl": "0.33.4",
128
+ "@node-datachannel/linux-x64-gnu": "0.33.4",
129
+ "@node-datachannel/linux-x64-musl": "0.33.4",
130
+ "@node-datachannel/win32-arm64-msvc": "0.33.4",
131
+ "@node-datachannel/win32-x64-msvc": "0.33.4"
130
132
  }
131
133
  }