May 1, 2024

Overview

In the month of April, we've been busy adding Daily Adaptive Bitrate support to all of our client libraries. Check out our announcement post to learn more.

Related, Daily Adaptive Bitrate is now the default configuration for 1:1 calls on daily-js.

In addition, we've shipped a number of smaller features to all platforms and have continue to improve the reliability and performance of our products and platform. Check out the release notes below for more details.

daily-js

0.63.0

Count faces found within a camera stream

We added the ability to detect the number of faces that appear in a camera stream. To use this, set "face-detection" as a the video processor type when calling updateInputSettings(). When a face is detected a face-counts-updated event is emitted.

Release notes

This release contained a number of bug fixes and package upgrades to resolve security issues. For more information, check out the release notes.

0.62.0

Highlights

  • Daily Adaptive Bitrate is now available as a beta for multi-party calls. Contact us to get started.
  • daily-js has update the browser versions it supports. Check out this page to learn about the latest update. Also, this update means that daily-js no longer supports Plan B browsers.

Release notes

For more information, check out the release notes.

0.61.1

Release notes

This release contains a number of small features, bug fixes, and package upgrades. For more information, check out the release notes.

react-native-daily-js

0.61.0

Daily Adaptive Bitrate now available

Daily Adaptive Bitrate is now available for 1:1 calls on react-native-daily-js. Read more about Daily Adaptive Btirate.

Release notes

For more information, check out the release notes.

0.60.0

Get local and remove audio levels

We've added new audio level APIs, which provide to you the local client's and remote participants' audio levels. These APIs efficiently retrieve audio levels, so that you can add audio level animation to your UI.

To get started, check out these methods:

and events:

Release notes

For more information, check out the release notes.

daily-android

0.19.0

Added a local audio level observer

daily-android now adds support to retrieve the local audio level from the local client. With the existing remote audio level observer, you can now retrieve audio from all participants in a call, so that your app can display an animation driven by client audio levels.

To get started check out:

Release notes

For more information, check out the release notes.

0.18.0

Daily Adaptive Bitrate now available

Daily Adaptive Bitrate is now available for 1:1 calls on daily-android. Read more about Daily Adaptive Btirate.

Get started by setting allowAdaptiveLayers when calling updatePublishing. For example:

callClient?.updatePublishing( PublishingSettingsUpdate( camera = CameraPublishingSettingsUpdate( sendSettings = VideoSendSettingsUpdate( allowAdaptiveLayers = Enable() ) ) ) )

Release notes

For more information, check out the release notes.

daily-ios

0.19.0

Added a local audio level observer

daily-ios now adds support to retrieve the local audio level from the local client. With the existing remote audio level observer, you can now retrieve audio from all participants in a call, so that your app can display an animation driven by client audio levels.

To get started check out:

Release notes

For more information, check out the release notes.

0.18.0

Daily Adaptive Bitrate now available

Daily Adaptive Bitrate is now available for 1:1 calls on daily-ios. Read more about Daily Adaptive Btirate.

Get started by setting allowAdaptiveLayers when calling updatePublishing. For example:

self.callClient.updatePublishing(.set( camera: .set( isPublishing: .set(self.cameraIsPublishing), sendSettings: .set( allowAdaptiveLayers: .set(true) ) ) ), completion: nil)

Release notes

For more information, check out the release notes.

daily-python

0.7.2 through 0.7.4

Release notes

These releases contain a number of bugfixes. For more information, check out the release notes.

daily-react

0.18.0

This adds a behavioral change in how transcription messages are handled, when interim results were configured. In order to distinguish interim from final results, transcription needs to be configured with includeRawResponse: true. See startTranscription() for details.

Daily Prebuilt

Improvements and fixes

  • Issued a fix for state mismatch issues in breakout rooms between different hosts and clients
  • We've added support for custom avatar images, which can be added by including an avatar property when setting userData:
Daily.createFrame(parentEl, { // ... userData: { avatar: 'https://example.com/avatar.jpg', } );

Media Services

  • (Auto-recording)[https://docs.daily.co/reference/rest-api/meeting-tokens/config#start_cloud_recording] parameter can now start raw tracks.
  • The value of room-peers is now sent to the VCS server.
  • VCS now supports zipped assets in the session asset loader.

Dial-in & Dial-out

  • If a dial-out number is purchased for the domain, allow user to use that number for dial-in as well.
  • SIP now supports multiple instances for dial-in.
  • CallerID now supports unverified numbers.

Webhooks

Additional

  • The oldest supported version of daily-js is now 0.53.0.
  • Increased the rate limit of internal methods to support higher frequency of the testWebhookConnectivity() method.