bitmovin-player-ui 3.54.0 → 3.56.0
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.
- package/.github/ISSUE_TEMPLATE/config.yml +11 -0
- package/.github/scripts/updateChangelog.js +16 -9
- package/CHANGELOG.md +17 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +30 -48
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/storageutils.d.ts +1 -2
- package/dist/js/framework/storageutils.js +26 -44
- package/package.json +1 -1
- package/src/ts/storageutils.ts +29 -47
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Report a Bug
|
|
4
|
+
url: https://dashboard.bitmovin.com/support/tickets
|
|
5
|
+
about: Report a Bug you encountered in our Bitmovin Player UI in your Bitmovin Customer Dashboard.
|
|
6
|
+
- name: Feature Requests
|
|
7
|
+
url: https://community.bitmovin.com/t/how-to-submit-a-feature-request-to-us/1463
|
|
8
|
+
about: Learn how to suggest new features for our Player SDKs.
|
|
9
|
+
- name: Report a security vulnerability
|
|
10
|
+
url: https://bitmovin.atlassian.net/wiki/external/1502085332/YTYwODMwZjQyNjkwNGQ0ODg5MTgwM2NhMDliNjRmODE
|
|
11
|
+
about: Report a security vulnerability.
|
|
@@ -6,12 +6,19 @@
|
|
|
6
6
|
* @param {string} releaseDate the release date to be written to the changelog
|
|
7
7
|
*/
|
|
8
8
|
function updateChangeLog(changelogString, version, releaseDate) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
9
|
+
const optionalBetaOrRc = '(-rc.d+)?(-(b|beta).d+)?';
|
|
10
|
+
const changelogVersionRegExp = new RegExp(
|
|
11
|
+
`\\[(development|develop|unreleased|${version})${optionalBetaOrRc}.*`,
|
|
12
|
+
'gi',
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
const lastReleaseVersion = changelogString.match(/## \[(\d+.\d+.\d+)\] - \d{4}-\d{2}-\d{2}/)[1];
|
|
16
|
+
const changelogWithReleaseVersionAndDate = changelogString.replace(changelogVersionRegExp, `[${version}] - ${releaseDate}`);
|
|
17
|
+
|
|
18
|
+
return changelogWithReleaseVersionAndDate.replace(
|
|
19
|
+
'## 1.0.0 (2017-02-03)\n- First release\n\n',
|
|
20
|
+
`## 1.0.0 (2017-02-03)\n- First release\n\n[${version}]: https://github.com/bitmovin/bitmovin-player-ui/compare/v${lastReleaseVersion}...v${version}\n`
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
module.exports.updateChangeLog = updateChangeLog;
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [3.56.0] - 2024-03-26
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- `localStorage` availability check to not create a test-entry anymore
|
|
11
|
+
|
|
12
|
+
## [3.55.0] - 2024-03-21
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Automatically add compare link in changelog file in relase workflow
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Missing compare link in the changelog file
|
|
19
|
+
|
|
7
20
|
## [3.54.0] - 2024-02-01
|
|
8
21
|
|
|
9
22
|
### Fixed
|
|
@@ -898,6 +911,10 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
898
911
|
## 1.0.0 (2017-02-03)
|
|
899
912
|
- First release
|
|
900
913
|
|
|
914
|
+
[3.56.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.55.0...v3.56.0
|
|
915
|
+
[3.55.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.54.0...v3.55.0
|
|
916
|
+
[3.54.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.53.0...v3.54.0
|
|
917
|
+
[3.53.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.52.2...v3.53.0
|
|
901
918
|
[3.52.2]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.52.1...v3.52.2
|
|
902
919
|
[3.52.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.52.0...v3.52.1
|
|
903
920
|
[3.52.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.51.0...v3.52.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|