Skip to content

Commit 182a2fd

Browse files
committed
bump version to 0.13.0
1 parent c49379e commit 182a2fd

File tree

17 files changed

+195
-195
lines changed

17 files changed

+195
-195
lines changed

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ott-client",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"license": "AGPL-3.0-or-later",
55
"type": "module",
66
"scripts": {

common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ott-common",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"license": "AGPL-3.0-or-later",
55
"type": "module",
66
"module": "index.ts",

crates/harness-tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harness-tests"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

crates/harness/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harness"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

crates/ott-balancer-bin/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ott-balancer-bin"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

crates/ott-balancer-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ott-balancer-protocol"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

crates/ott-balancer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ott-balancer"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

crates/ott-collector/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ott-collector"
33
description = "A small service to collect and aggregate system state from Balancers, and make it available to Grafana."
4-
version = "0.12.0"
4+
version = "0.13.0"
55
edition = "2021"
66

77
[dependencies]

crates/ott-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ott-common"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55

66
[dependencies]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opentogethertube",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"private": true,
55
"license": "AGPL-3.0-or-later",
66
"engines": {
+75-75
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
{
2-
"name": "ott-vis-datasource",
3-
"version": "0.12.0",
4-
"description": "Collects ott system state",
5-
"author": "Ott",
6-
"license": "AGPL-3.0-or-later",
7-
"engines": {
8-
"node": ">=18"
9-
},
10-
"scripts": {
11-
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
12-
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
13-
"test": "jest --passWithNoTests --maxWorkers 4 --coverage",
14-
"test:ci": "jest --passWithNoTests --maxWorkers 4",
15-
"typecheck": "tsc --noEmit",
16-
"lint": "prettier --write --config ../../.prettierrc . && tsc --noEmit && eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx . --fix",
17-
"lint-ci": "prettier --check --config ../../.prettierrc . && tsc --noEmit && eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
18-
"e2e": "npm exec cypress install && npm exec grafana-e2e run",
19-
"e2e:open": "npm exec cypress install && npm exec grafana-e2e open",
20-
"e2e:update": "npm exec cypress install && npm exec grafana-e2e run --update-screenshots",
21-
"server": "docker-compose up --build",
22-
"sign": "npx --yes @grafana/sign-plugin@latest"
23-
},
24-
"devDependencies": {
25-
"@babel/core": "^7.21.4",
26-
"@grafana/e2e": "10.0.3",
27-
"@grafana/e2e-selectors": "10.0.3",
28-
"@grafana/eslint-config": "^6.0.0",
29-
"@grafana/tsconfig": "^1.2.0-rc1",
30-
"@swc/core": "^1.3.90",
31-
"@swc/helpers": "^0.5.0",
32-
"@swc/jest": "^0.2.26",
33-
"@testing-library/jest-dom": "6.1.4",
34-
"@testing-library/react": "14.0.0",
35-
"@types/jest": "^29.5.0",
36-
"@types/lodash": "^4.14.194",
37-
"@types/node": "^20.8.7",
38-
"@types/react-router-dom": "^5.2.0",
39-
"@types/testing-library__jest-dom": "5.14.8",
40-
"copy-webpack-plugin": "^11.0.0",
41-
"css-loader": "^6.7.3",
42-
"cypress": "9.5.1",
43-
"eslint": "^8.57.0",
44-
"eslint-plugin-deprecation": "^2.0.0",
45-
"eslint-plugin-jest": "^27.9.0",
46-
"eslint-webpack-plugin": "^4.0.1",
47-
"fork-ts-checker-webpack-plugin": "^8.0.0",
48-
"glob": "^10.2.7",
49-
"identity-obj-proxy": "3.0.0",
50-
"jest": "^29.5.0",
51-
"jest-environment-jsdom": "^29.5.0",
52-
"prettier": "^2.8.7",
53-
"replace-in-file-webpack-plugin": "^1.0.6",
54-
"sass": "1.63.2",
55-
"sass-loader": "13.3.1",
56-
"style-loader": "3.3.3",
57-
"swc-loader": "^0.2.3",
58-
"ts-node": "^10.9.1",
59-
"tsconfig-paths": "^4.2.0",
60-
"typescript": "4.8.4",
61-
"webpack": "^5.86.0",
62-
"webpack-cli": "^5.1.4",
63-
"webpack-livereload-plugin": "^3.0.2"
64-
},
65-
"dependencies": {
66-
"@emotion/css": "11.10.6",
67-
"@grafana/data": "10.0.3",
68-
"@grafana/runtime": "10.0.3",
69-
"@grafana/schema": "10.0.3",
70-
"@grafana/ui": "10.0.3",
71-
"ott-vis": "*",
72-
"react": "18.2.0",
73-
"react-dom": "18.2.0",
74-
"rxjs": "7.8.0",
75-
"tslib": "2.5.3"
76-
}
2+
"name": "ott-vis-datasource",
3+
"version": "0.13.0",
4+
"description": "Collects ott system state",
5+
"author": "Ott",
6+
"license": "AGPL-3.0-or-later",
7+
"engines": {
8+
"node": ">=18"
9+
},
10+
"scripts": {
11+
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
12+
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
13+
"test": "jest --passWithNoTests --maxWorkers 4 --coverage",
14+
"test:ci": "jest --passWithNoTests --maxWorkers 4",
15+
"typecheck": "tsc --noEmit",
16+
"lint": "prettier --write --config ../../.prettierrc . && tsc --noEmit && eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx . --fix",
17+
"lint-ci": "prettier --check --config ../../.prettierrc . && tsc --noEmit && eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
18+
"e2e": "npm exec cypress install && npm exec grafana-e2e run",
19+
"e2e:open": "npm exec cypress install && npm exec grafana-e2e open",
20+
"e2e:update": "npm exec cypress install && npm exec grafana-e2e run --update-screenshots",
21+
"server": "docker-compose up --build",
22+
"sign": "npx --yes @grafana/sign-plugin@latest"
23+
},
24+
"devDependencies": {
25+
"@babel/core": "^7.21.4",
26+
"@grafana/e2e": "10.0.3",
27+
"@grafana/e2e-selectors": "10.0.3",
28+
"@grafana/eslint-config": "^6.0.0",
29+
"@grafana/tsconfig": "^1.2.0-rc1",
30+
"@swc/core": "^1.3.90",
31+
"@swc/helpers": "^0.5.0",
32+
"@swc/jest": "^0.2.26",
33+
"@testing-library/jest-dom": "6.1.4",
34+
"@testing-library/react": "14.0.0",
35+
"@types/jest": "^29.5.0",
36+
"@types/lodash": "^4.14.194",
37+
"@types/node": "^20.8.7",
38+
"@types/react-router-dom": "^5.2.0",
39+
"@types/testing-library__jest-dom": "5.14.8",
40+
"copy-webpack-plugin": "^11.0.0",
41+
"css-loader": "^6.7.3",
42+
"cypress": "9.5.1",
43+
"eslint": "^8.57.0",
44+
"eslint-plugin-deprecation": "^2.0.0",
45+
"eslint-plugin-jest": "^27.9.0",
46+
"eslint-webpack-plugin": "^4.0.1",
47+
"fork-ts-checker-webpack-plugin": "^8.0.0",
48+
"glob": "^10.2.7",
49+
"identity-obj-proxy": "3.0.0",
50+
"jest": "^29.5.0",
51+
"jest-environment-jsdom": "^29.5.0",
52+
"prettier": "^2.8.7",
53+
"replace-in-file-webpack-plugin": "^1.0.6",
54+
"sass": "1.63.2",
55+
"sass-loader": "13.3.1",
56+
"style-loader": "3.3.3",
57+
"swc-loader": "^0.2.3",
58+
"ts-node": "^10.9.1",
59+
"tsconfig-paths": "^4.2.0",
60+
"typescript": "4.8.4",
61+
"webpack": "^5.86.0",
62+
"webpack-cli": "^5.1.4",
63+
"webpack-livereload-plugin": "^3.0.2"
64+
},
65+
"dependencies": {
66+
"@emotion/css": "11.10.6",
67+
"@grafana/data": "10.0.3",
68+
"@grafana/runtime": "10.0.3",
69+
"@grafana/schema": "10.0.3",
70+
"@grafana/ui": "10.0.3",
71+
"ott-vis": "*",
72+
"react": "18.2.0",
73+
"react-dom": "18.2.0",
74+
"rxjs": "7.8.0",
75+
"tslib": "2.5.3"
76+
}
7777
}

0 commit comments

Comments
 (0)