@balena/open-balena-api 40.0.0-build-Limit-size-ofl-arge-fields-5a574de877e46144915707df5fa90454e74fa21c-1 → 40.0.0-build-Limit-size-ofl-arge-fields-e9a8c1761285b0f2f2c7da1df3fb1f6b4ca1b10d-2
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
@@ -895,7 +895,7 @@ Fact type: image environment variable has value
|
|
895
895
|
Fact type: device service environment variable has value
|
896
896
|
Necessity: each device service environment variable has exactly one value.
|
897
897
|
-- TODO: Pitch cleanup and reduce to 100KB
|
898
|
-
Necessity: each device service environment variable has a value that has a Length (Type) that is less than or equal to
|
898
|
+
Necessity: each device service environment variable has a value that has a Length (Type) that is less than or equal to 285082.
|
899
899
|
Fact type: device service environment variable has service install
|
900
900
|
Necessity: each device service environment variable has exactly one service install.
|
901
901
|
|
@@ -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
|
|
@@ -227,10 +227,10 @@ BEGIN
|
|
227
227
|
WHERE tc.CONSTRAINT_TYPE = 'CHECK'
|
228
228
|
AND tc.table_schema = CURRENT_SCHEMA()
|
229
229
|
AND tc.table_name = 'device service environment variable'
|
230
|
-
AND tc.constraint_name = 'device service environment var$
|
230
|
+
AND tc.constraint_name = 'device service environment var$dSF1WVorgNJcspccMKJuZf9WhpZc/+Ou'
|
231
231
|
) THEN
|
232
|
-
ALTER TABLE "device service environment variable" ADD CONSTRAINT "device service environment var$
|
233
|
-
((LENGTH("value") <=
|
232
|
+
ALTER TABLE "device service environment variable" ADD CONSTRAINT "device service environment var$dSF1WVorgNJcspccMKJuZf9WhpZc/+Ou" CHECK (
|
233
|
+
((LENGTH("value") <= 285082) AND (LENGTH("value") IS NOT NULL) AND ("value" IS NOT NULL))
|
234
234
|
);
|
235
235
|
END IF;
|
236
236
|
|
@@ -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-build-Limit-size-ofl-arge-fields-
|
4
|
+
"version": "40.0.0-build-Limit-size-ofl-arge-fields-e9a8c1761285b0f2f2c7da1df3fb1f6b4ca1b10d-2",
|
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
|
}
|