Skip to content

Commit

Permalink
Merge pull request #14 from THEOplayer/release/v1.3.0
Browse files Browse the repository at this point in the history
Update changelog entry
  • Loading branch information
tvanlaerhoven authored Jan 11, 2024
2 parents 87a49fe + f491e9d commit 97beb72
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export class CastLabsPlayReadyContentProtectionIntegration implements ContentPro
}

onLicenseRequest(request: LicenseRequest): MaybeAsync<Partial<LicenseRequest> | 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!,

Check warning on line 26 in src/castlabs/CastLabsPlayReadyContentProtectionIntegration.ts

View workflow job for this annotation

GitHub Actions / lint

Forbidden non-null assertion
Expand Down

0 comments on commit 97beb72

Please sign in to comment.