Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connectycube

Package Overview
Dependencies
Maintainers
2
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connectycube - npm Package Versions

23
11

3.35.1

Diff

Changelog

Source

3.35.1

[Types] Second argument is optional in ConnectyCube.init(credentials, config) (ConnectyCube.init(credentials: any, configMap: any): void > ConnectyCube.init(credentials: any, configMap?: any): void)

cube.js
published 3.35.0 •

Changelog

Source

3.35.0

@xmpp/client was upgraded from 0.9.2 to 0.13.1 in all packages. ConnectyCube SDK uses custom build of the xmpp.js library to get rid of @xmpp/stream-management package, which was replaced by ConnectyCube stream-management implementation

cube.js
published 3.34.0 •

Changelog

Source

3.34.0

Fixed

  • [ConnectyCube.videochat] session.getUserMedia(mediaOptions) returns undefined;

Updated

  • [react-native-connectycube] "react-native-webrtc" has been replaced from dependencies to peerDependencies to support autolinking
yarn add react-native-connectycube react-native-webrtc

or

npm install react-native-connectycube react-native-webrtc --save
cube.js
published 3.33.2 •

Changelog

Source

3.33.2

Fixed

  • the "@xmpp/client" dependency was reverted to version 0.9.2 to prevent errors with XMPP chat (streamManagement - "[Chat] ERROR: TypeError: Cannot read properties of undefined (reading 'catch')").
cube.js
published 3.33.1 •

Changelog

Source

3.33.1

❗️ This release has XMPP chat issues. Upgrade to 3.33.2 or dump to 0.32.0.

Fixed

  • typescript declarations for ConnectyCube.videochat;
  • typescript declarations for ConnectyCube.videochatconference.
cube.js
published 3.33.0 •

Changelog

Source

3.33.0

❗️ This release has XMPP chat issues. Upgrade to 3.33.2 or dump to 0.32.0.

Upgraded

  • @xmpp/client from 0.9.2 to 0.13.1 in all packages;
  • react-native-webrtc from 124.0.1 to 124.0.4 in react-native-connectycube;
  • all "devDependencies" in connectycube package;

Fixed

  • reassign const error (**/lib/videocalling_conference/JanusVideoConferencingWrapper.js);
  • typescript declarations.
cube.js
published 3.32.0 •

Changelog

Source

3.32.0

Added

  • session.restartIce(userID) to restore WebRTC peer connection;
  • ConnectyCube.chat.pingWithTimeout(msTimeout).then(() => {...}).catch((e) => {...});

Fixed

  • [Chat] prevent presence error from XMPP chat

Usage flow:

ConnectyCube.videochat.onSessionConnectionStateChangedListener = function (session, userID, connectionState) {
  if (connectionState === 'failed') {
    if (onLine && session.canInitiateIceRestart(userID)) {
      session.restartIce(userID);
    }
  }
};
ConnectyCube.chat
  .pingWithTimeout()
  .then(() => {})
  .catch((error) => {});
cube.js
published 3.31.0 •

Changelog

Source

3.31.0

Added

  • prettifier;
  • typescript declarations (types/**/*.d.ts);

Updated

  • [React Native][videocalling][videocalling conference] getDisplayMedia may not accept parameters

Removed

  • warnings about deprecated code.
cube.js
published 3.30.0 •

Changelog

Source

3.30.0

Updated

  • [Video Calling][Conference Video Calling] "session.getUserMedia(mediaParams)" and "session.getDisplayMedia(mediaParams)" have been updated to correctly update an existed stream (track) when it needs to be replaced with a new one;

Removed

  • [Video Calling][Conference Video Calling] "session.stopLocalStreamTracks()" method was removed;

Upgraded

  • react-native-connectycube SDK (react-native-webrtc v124.0.1);

Added

  • react-native-connectycube.podspec.
cube.js
published 3.29.0 •

Changelog

Source

3.29.0

Upgraded

  • connectycube SDK ("crypto-js", "fbemitter", "form-data", "node-fetch" and devDependencies);
  • react-native-connectycube SDK ("crypto-js", "fbemitter", "js-base64", "react-native-webrtc");
  • webpack config in connectycube JavaScript SDK;
  • lerna for repository.
23
11
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc