diff --git a/CHANGELOG.md b/CHANGELOG.md index b83e8e2..0fcf5f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.3.0] - 2024-01-11 + +### Added + +- Added CastLabs connector. +- Added PallyCon connector. + +### Changed + +- Optimized `readStreamAsArrayBuffer` method. + ## [1.2.0] - 2023-09-15 ### Fixed diff --git a/package-lock.json b/package-lock.json index e8db162..a94d2be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@theoplayer/react-native-drm", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@theoplayer/react-native-drm", - "version": "1.2.0", + "version": "1.3.0", "license": "SEE LICENSE AT https://www.theoplayer.com/terms", "devDependencies": { "@commitlint/config-conventional": "^17.7.0", diff --git a/package.json b/package.json index 5d7dfdf..5872d3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@theoplayer/react-native-drm", - "version": "1.2.0", + "version": "1.3.0", "description": "DRM connectors for react-native-theoplayer", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/src/castlabs/CastLabsPlayReadyContentProtectionIntegration.ts b/src/castlabs/CastLabsPlayReadyContentProtectionIntegration.ts index d2d8231..3160b99 100644 --- a/src/castlabs/CastLabsPlayReadyContentProtectionIntegration.ts +++ b/src/castlabs/CastLabsPlayReadyContentProtectionIntegration.ts @@ -19,7 +19,8 @@ export class CastLabsPlayReadyContentProtectionIntegration implements ContentPro } onLicenseRequest(request: LicenseRequest): MaybeAsync | BufferSource> { - request.url = this.contentProtectionConfiguration.playready?.licenseAcquisitionURL ?? CastLabsPlayReadyContentProtectionIntegration.DEFAULT_LICENSE_URL; + request.url = this.contentProtectionConfiguration.playready?.licenseAcquisitionURL ?? + CastLabsPlayReadyContentProtectionIntegration.DEFAULT_LICENSE_URL; request.headers = { ...request.headers, 'x-dt-custom-data': this.customData!,