fjall 0.94.1 → 0.96.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fjall",
3
- "version": "0.94.1",
3
+ "version": "0.96.0",
4
4
  "description": "Fjall CLI",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",
@@ -33,7 +33,6 @@
33
33
  "@aws-sdk/client-sso-admin": "^3.997.0",
34
34
  "@aws-sdk/client-sso-oidc": "^3.997.0",
35
35
  "@aws-sdk/client-sts": "^3.997.0",
36
- "@fjall/cli": "^0.94.1",
37
36
  "@opennextjs/aws": "^3.9.16",
38
37
  "aws-cdk": "^2.1105.0",
39
38
  "dockerode": "^4.0.9",
@@ -45,6 +44,7 @@
45
44
  "typescript": "^5.8.2"
46
45
  },
47
46
  "devDependencies": {
47
+ "@fjall/cli": "^0.96.0",
48
48
  "esbuild": "^0.25.0",
49
49
  "vitest": "^4.0.14"
50
50
  },
@@ -59,5 +59,5 @@
59
59
  "engines": {
60
60
  "node": ">=22.0.0"
61
61
  },
62
- "gitHead": "65d778bc6370a5becd761b367a482ca51e890f58"
62
+ "gitHead": "bfbd3625ab029ba77a6571630e0edb85f9d53380"
63
63
  }
@@ -1,126 +0,0 @@
1
- // Simplified BuildKit StatusResponse schema
2
- // Source: https://github.com/moby/buildkit/blob/master/api/services/control/control.proto
3
- // Only includes types needed for decoding build progress
4
-
5
- syntax = "proto3";
6
-
7
- package moby.buildkit.v1;
8
-
9
- import "google/protobuf/timestamp.proto";
10
-
11
- // StatusResponse is the response from the Status RPC
12
- // This is what Docker sends in the aux field of build events
13
- message StatusResponse {
14
- repeated Vertex vertexes = 1;
15
- repeated VertexStatus statuses = 2;
16
- repeated VertexLog logs = 3;
17
- repeated VertexWarning warnings = 4;
18
- }
19
-
20
- // Vertex represents a node in the build graph
21
- message Vertex {
22
- string digest = 1;
23
- repeated string inputs = 2;
24
- string name = 3;
25
- bool cached = 4;
26
- google.protobuf.Timestamp started = 5;
27
- google.protobuf.Timestamp completed = 6;
28
- string error = 7;
29
- ProgressGroup progressGroup = 8;
30
- }
31
-
32
- // VertexStatus represents progress of a vertex
33
- message VertexStatus {
34
- string ID = 1;
35
- string vertex = 2;
36
- string name = 3;
37
- int64 current = 4;
38
- int64 total = 5;
39
- google.protobuf.Timestamp timestamp = 6;
40
- google.protobuf.Timestamp started = 7;
41
- google.protobuf.Timestamp completed = 8;
42
- }
43
-
44
- // VertexLog is a log message from a vertex
45
- message VertexLog {
46
- string vertex = 1;
47
- google.protobuf.Timestamp timestamp = 2;
48
- int64 stream = 3; // 1 = stdout, 2 = stderr
49
- bytes msg = 4;
50
- }
51
-
52
- // VertexWarning is a warning from a vertex
53
- message VertexWarning {
54
- string vertex = 1;
55
- int64 level = 2;
56
- bytes short = 3;
57
- repeated bytes detail = 4;
58
- string url = 5;
59
- SourceInfo info = 6;
60
- repeated Range ranges = 7;
61
- }
62
-
63
- // ProgressGroup for grouping related vertices
64
- message ProgressGroup {
65
- string id = 1;
66
- string name = 2;
67
- bool weak = 3;
68
- }
69
-
70
- // SourceInfo provides source location for warnings
71
- message SourceInfo {
72
- string filename = 1;
73
- bytes data = 2;
74
- Definition definition = 3;
75
- string language = 4;
76
- }
77
-
78
- // Range specifies a range in source
79
- message Range {
80
- Position start = 1;
81
- Position end = 2;
82
- }
83
-
84
- // Position in source
85
- message Position {
86
- int32 line = 1;
87
- int32 character = 2;
88
- }
89
-
90
- // Definition for source info
91
- message Definition {
92
- repeated bytes def = 1;
93
- map<string, OpMetadata> metadata = 2;
94
- Source Source = 3;
95
- }
96
-
97
- // OpMetadata for operation metadata
98
- message OpMetadata {
99
- bool ignore_cache = 1;
100
- map<string, string> description = 2;
101
- WorkerConstraint export_cache = 4;
102
- map<string, bytes> caps = 5;
103
- ProgressGroup progress_group = 6;
104
- }
105
-
106
- // WorkerConstraint for cache export
107
- message WorkerConstraint {
108
- repeated string filter = 1;
109
- }
110
-
111
- // Source information
112
- message Source {
113
- map<string, Locations> locations = 1;
114
- repeated SourceInfo infos = 2;
115
- }
116
-
117
- // Locations in source
118
- message Locations {
119
- repeated Location locations = 1;
120
- }
121
-
122
- // Location in source
123
- message Location {
124
- int32 sourceIndex = 1;
125
- repeated Range ranges = 2;
126
- }