Skip to content

Commit 08be0e8

Browse files
committed
chore: bump version
1 parent b7f32a3 commit 08be0e8

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 2.4.10
2+
3+
## Ext
4+
5+
- Added ignore metadata files from VideoJS subtitles
6+
- Added support `learn-dev.` and `learn-staging.` subdomains for DeeplearningAI
7+
- Added support Netacad
8+
- Added methods to get PO Token for YouTube
9+
10+
## Workspace
11+
12+
- Bump oxlint to 1.0.0
13+
- Removed eslint
14+
115
# 2.4.9
216

317
## Ext

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vot.js/core",
33
"description": "core package",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"author": "Toil",
66
"license": "MIT",
77
"repository": {

packages/ext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vot.js/ext",
33
"description": "package for web extensions",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"author": "Toil",
66
"license": "MIT",
77
"repository": {

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vot.js/node",
33
"description": "package for runtimes",
4-
"version": "2.4.8",
4+
"version": "2.4.10",
55
"author": "Toil",
66
"license": "MIT",
77
"repository": {

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vot.js/shared",
33
"description": "shared for all @vot.js package",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"author": "Toil",
66
"license": "MIT",
77
"repository": {

packages/shared/src/data/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ export default {
1515
defaultDuration: 343,
1616
minChunkSize: 5295308,
1717
loggerLevel: 1,
18-
version: "2.4.9",
18+
version: "2.4.10",
1919
} as ConfigSchema;

packages/shared/src/secure.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function getSecYaHeaders<T extends SecType>(
5151
const { secretKey, uuid } = session;
5252

5353
// https://github.com/FOSWLY/vot.js/issues/36
54-
const token = `${uuid}:${path}:${config.componentVersion}`;
54+
const token = `${uuid}:${path}:${componentVersion}`;
5555
const tokenBody = utf8Encoder.encode(token);
5656
const tokenSign = await getSignature(tokenBody);
5757
if (secType === "Ya-Summary") {

0 commit comments

Comments
 (0)