@balena/open-balena-api 40.0.0-build-Limit-size-ofl-arge-fields-1802aca8eb23dc092adc13da3e60530bc82e7efd-1 → 40.0.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/dist/balena.sbvr
CHANGED
@@ -905,7 +905,7 @@ Fact type: device service environment variable has service install
|
|
905
905
|
Fact type: application tag has value
|
906
906
|
Necessity: each application tag has exactly one value.
|
907
907
|
-- 1KB
|
908
|
-
Necessity: each application tag has a value that has a Length (Type) that is
|
908
|
+
Necessity: each application tag has a value that has a Length (Type) that is less than or equal to 1000.
|
909
909
|
|
910
910
|
|
911
911
|
-- device tag
|
@@ -913,7 +913,7 @@ Fact type: application tag has value
|
|
913
913
|
Fact type: device tag has value
|
914
914
|
Necessity: each device tag has exactly one value.
|
915
915
|
-- TODO: Pitch cleanup and reduce to 10KB
|
916
|
-
Necessity: each device tag has a value that has a Length (Type) that is
|
916
|
+
Necessity: each device tag has a value that has a Length (Type) that is less than or equal to 60158.
|
917
917
|
|
918
918
|
|
919
919
|
-- release tag
|
@@ -921,7 +921,7 @@ Fact type: device tag has value
|
|
921
921
|
Fact type: release tag has value
|
922
922
|
Necessity: each release tag has exactly one value.
|
923
923
|
-- 1KB
|
924
|
-
Necessity: each release tag has a value that has a Length (Type) that is
|
924
|
+
Necessity: each release tag has a value that has a Length (Type) that is less than or equal to 1000.
|
925
925
|
|
926
926
|
|
927
927
|
-- image install
|
@@ -58,10 +58,10 @@ BEGIN
|
|
58
58
|
WHERE tc.CONSTRAINT_TYPE = 'CHECK'
|
59
59
|
AND tc.table_schema = CURRENT_SCHEMA()
|
60
60
|
AND tc.table_name = 'application tag'
|
61
|
-
AND tc.constraint_name = 'application tag$
|
61
|
+
AND tc.constraint_name = 'application tag$4hGLjoES4ZaBho9oObl2U8SQoB1fEM+V2MrqNWfvDkM='
|
62
62
|
) THEN
|
63
|
-
ALTER TABLE "application tag" ADD CONSTRAINT "application tag$
|
64
|
-
((
|
63
|
+
ALTER TABLE "application tag" ADD CONSTRAINT "application tag$4hGLjoES4ZaBho9oObl2U8SQoB1fEM+V2MrqNWfvDkM=" CHECK (
|
64
|
+
((LENGTH("value") <= 1000) AND (LENGTH("value") IS NOT NULL) AND ("value" IS NOT NULL))
|
65
65
|
);
|
66
66
|
END IF;
|
67
67
|
|
@@ -240,11 +240,11 @@ BEGIN
|
|
240
240
|
WHERE tc.CONSTRAINT_TYPE = 'CHECK'
|
241
241
|
AND tc.table_schema = CURRENT_SCHEMA()
|
242
242
|
AND tc.table_name = 'device tag'
|
243
|
-
AND tc.constraint_name = 'device tag$
|
243
|
+
AND tc.constraint_name = 'device tag$azU8VEWffh5ov5y3yR0MLBIFZMhCBS7fkmP5EJ3czxM='
|
244
244
|
) THEN
|
245
|
-
ALTER TABLE "device tag" ADD CONSTRAINT "device tag$
|
246
|
-
|
247
|
-
|
245
|
+
ALTER TABLE "device tag" ADD CONSTRAINT "device tag$azU8VEWffh5ov5y3yR0MLBIFZMhCBS7fkmP5EJ3czxM=" CHECK (
|
246
|
+
((LENGTH("value") <= 60158) AND (LENGTH("value") IS NOT NULL) AND ("value" IS NOT NULL))
|
247
|
+
);
|
248
248
|
END IF;
|
249
249
|
|
250
250
|
IF NOT EXISTS (
|
@@ -474,10 +474,10 @@ BEGIN
|
|
474
474
|
WHERE tc.CONSTRAINT_TYPE = 'CHECK'
|
475
475
|
AND tc.table_schema = CURRENT_SCHEMA()
|
476
476
|
AND tc.table_name = 'release tag'
|
477
|
-
AND tc.constraint_name = 'release tag$
|
477
|
+
AND tc.constraint_name = 'release tag$or0ukbHG5sOwbDbRv83QWCxwR9PWg7O+YI2juW53aH0='
|
478
478
|
) THEN
|
479
|
-
ALTER TABLE "release tag" ADD CONSTRAINT "release tag$
|
480
|
-
((
|
479
|
+
ALTER TABLE "release tag" ADD CONSTRAINT "release tag$or0ukbHG5sOwbDbRv83QWCxwR9PWg7O+YI2juW53aH0=" CHECK (
|
480
|
+
((LENGTH("value") <= 1000) AND (LENGTH("value") IS NOT NULL) AND ("value" IS NOT NULL))
|
481
481
|
);
|
482
482
|
END IF;
|
483
483
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@balena/open-balena-api",
|
3
3
|
"description": "Internet of things, Made Simple",
|
4
|
-
"version": "40.0.0
|
4
|
+
"version": "40.0.0",
|
5
5
|
"license": "AGPL-3.0",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
@@ -174,6 +174,6 @@
|
|
174
174
|
"import": "@swc-node/register/esm-register"
|
175
175
|
},
|
176
176
|
"versionist": {
|
177
|
-
"publishedAt": "2025-07-
|
177
|
+
"publishedAt": "2025-07-21T08:52:38.883Z"
|
178
178
|
}
|
179
179
|
}
|