@onepilot/cli-darwin-arm64 0.13.0 → 0.14.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.
@@ -0,0 +1,279 @@
1
+ # Third party notices
2
+
3
+ The bridge vendors no libraries: `go.mod` is limited to the four
4
+ dependencies allowlisted in `ci/bridge/isolation-guard.sh`. Instead, several
5
+ metric collectors under `internal/metrics/` are **adapted** from open source
6
+ monitoring agents: the collection approach, field layouts, and parsing logic
7
+ follow the upstream implementation, rewritten against the Go standard library
8
+ (plus `golang.org/x/sys`) so the daemon keeps zero dependency churn. Every
9
+ adapted file carries an `Adapted from ...` provenance header naming its
10
+ upstream, and `ci/bridge/vendored-provenance.sh` enforces that each named
11
+ upstream has a section in this file.
12
+
13
+ ## gopsutil
14
+
15
+ - Repo: https://github.com/shirou/gopsutil (v4)
16
+ - License: BSD-3-Clause
17
+ - Adapted: `/proc/net/dev`, `/proc/diskstats`, `/proc/<pid>/stat`,
18
+ `/proc/meminfo` swap, `vm.swapusage`, netstat, and hwmon parsing patterns.
19
+
20
+ ```
21
+ BSD License
22
+
23
+ Copyright (c) 2014, WAKAYAMA Shirou
24
+ All rights reserved.
25
+
26
+ Redistribution and use in source and binary forms, with or without
27
+ modification, are permitted provided that the following conditions are met:
28
+
29
+ * Redistributions of source code must retain the above copyright notice,
30
+ this list of conditions and the following disclaimer.
31
+ * Redistributions in binary form must reproduce the above copyright notice,
32
+ this list of conditions and the following disclaimer in the documentation
33
+ and/or other materials provided with the distribution.
34
+ * Neither the name of the gopsutil authors nor the names of its contributors
35
+ may be used to endorse or promote products derived from this software
36
+ without specific prior written permission.
37
+
38
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
39
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
41
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
42
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
43
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
44
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
45
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
46
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
47
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
48
+ POSSIBILITY OF SUCH DAMAGE.
49
+ ```
50
+
51
+ ## windows_exporter
52
+
53
+ - Repo: https://github.com/prometheus-community/windows_exporter
54
+ - License: MIT
55
+ - Adapted: `MIB_IF_ROW2` layout for `GetIfTable2`, physical disk and
56
+ per-process perf counter class and field names, thermal zone class.
57
+
58
+ ```
59
+ The MIT License (MIT)
60
+
61
+ Copyright (c) 2016 Martin Lindhe
62
+ Copyright (c) 2016 The Prometheus Authors
63
+
64
+ Permission is hereby granted, free of charge, to any person obtaining a copy
65
+ of this software and associated documentation files (the "Software"), to deal
66
+ in the Software without restriction, including without limitation the rights
67
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
68
+ copies of the Software, and to permit persons to whom the Software is
69
+ furnished to do so, subject to the following conditions:
70
+
71
+ The above copyright notice and this permission notice shall be included in
72
+ all copies or substantial portions of the Software.
73
+
74
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
75
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
76
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
77
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
78
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
79
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
80
+ THE SOFTWARE.
81
+ ```
82
+
83
+ ## beszel
84
+
85
+ - Repo: https://github.com/henrygd/beszel
86
+ - License: MIT
87
+ - Adapted: agent collector patterns for sensors, GPU (nvidia-smi query
88
+ set), S.M.A.R.T. (smartctl JSON), and battery.
89
+
90
+ ```
91
+ MIT License
92
+
93
+ Copyright (c) 2024 henrygd
94
+
95
+ Permission is hereby granted, free of charge, to any person obtaining a copy
96
+ of this software and associated documentation files (the "Software"), to deal
97
+ in the Software without restriction, including without limitation the rights
98
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
+ copies of the Software, and to permit persons to whom the Software is
100
+ furnished to do so, subject to the following conditions:
101
+
102
+ The above copyright notice and this permission notice shall be included in
103
+ all copies or substantial portions of the Software.
104
+
105
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
106
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
107
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
108
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
109
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
110
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
111
+ THE SOFTWARE.
112
+ ```
113
+
114
+ ## telegraf
115
+
116
+ - Repo: https://github.com/influxdata/telegraf
117
+ - License: MIT
118
+ - Adapted: `systemd_units` and `win_services` input plugin collection
119
+ approach (service state enumeration and summarization).
120
+
121
+ ```
122
+ The MIT License (MIT)
123
+
124
+ Copyright (c) 2015-2024 InfluxData Inc.
125
+
126
+ Permission is hereby granted, free of charge, to any person obtaining a copy
127
+ of this software and associated documentation files (the "Software"), to deal
128
+ in the Software without restriction, including without limitation the rights
129
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
130
+ copies of the Software, and to permit persons to whom the Software is
131
+ furnished to do so, subject to the following conditions:
132
+
133
+ The above copyright notice and this permission notice shall be included in
134
+ all copies or substantial portions of the Software.
135
+
136
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
137
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
138
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
139
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
140
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
141
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
142
+ THE SOFTWARE.
143
+ ```
144
+
145
+ # Compiled-in dependencies
146
+
147
+ Unlike the adapted collectors above (which are rewritten source), these are
148
+ LINKED INTO the shipped `onepilot` binaries verbatim. Both MIT and BSD-3
149
+ require their copyright and permission notice to travel with a binary
150
+ redistribution, so this file ships inside the npm package (see the `files`
151
+ array in `bridge/npm/onepilot/package.json`). Attribution here is what keeps
152
+ the grant valid; it is deliberately not surfaced in the CLI, the app, or any
153
+ user-facing copy.
154
+
155
+ ## pty
156
+
157
+ - Module: `github.com/creack/pty` v1.1.21
158
+ - License: MIT
159
+ - Used for: Unix PTY allocation for the session daemon's shells.
160
+
161
+ ```
162
+ Copyright (c) 2011 Keith Rarick
163
+
164
+ Permission is hereby granted, free of charge, to any person
165
+ obtaining a copy of this software and associated
166
+ documentation files (the "Software"), to deal in the
167
+ Software without restriction, including without limitation
168
+ the rights to use, copy, modify, merge, publish, distribute,
169
+ sublicense, and/or sell copies of the Software, and to
170
+ permit persons to whom the Software is furnished to do so,
171
+ subject to the following conditions:
172
+
173
+ The above copyright notice and this permission notice shall
174
+ be included in all copies or substantial portions of the
175
+ Software.
176
+
177
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
178
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
179
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
180
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
181
+ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
182
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
183
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
184
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
185
+ ```
186
+
187
+ ## go-qrcode
188
+
189
+ - Module: `github.com/skip2/go-qrcode` v0.0.0-20200617195104-da1b6568686e
190
+ - License: MIT
191
+ - Used for: QR code rendering for `onepilot pair`.
192
+
193
+ ```
194
+ Copyright (c) 2014 Tom Harwood
195
+
196
+ Permission is hereby granted, free of charge, to any person obtaining a copy
197
+ of this software and associated documentation files (the "Software"), to deal
198
+ in the Software without restriction, including without limitation the rights
199
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
200
+ copies of the Software, and to permit persons to whom the Software is
201
+ furnished to do so, subject to the following conditions:
202
+
203
+ The above copyright notice and this permission notice shall be included in
204
+ all copies or substantial portions of the Software.
205
+
206
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
207
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
208
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
209
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
210
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
211
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
212
+ THE SOFTWARE.
213
+ ```
214
+
215
+ ## conpty
216
+
217
+ - Module: `github.com/UserExistsError/conpty` v0.1.4
218
+ - License: MIT
219
+ - Used for: Windows ConPTY pseudo-console for the session daemon.
220
+
221
+ ```
222
+ MIT License
223
+
224
+ Copyright (c) 2020 UserExistsError
225
+
226
+ Permission is hereby granted, free of charge, to any person obtaining a copy
227
+ of this software and associated documentation files (the "Software"), to deal
228
+ in the Software without restriction, including without limitation the rights
229
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
230
+ copies of the Software, and to permit persons to whom the Software is
231
+ furnished to do so, subject to the following conditions:
232
+
233
+ The above copyright notice and this permission notice shall be included in all
234
+ copies or substantial portions of the Software.
235
+
236
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
237
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
238
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
239
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
240
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
241
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
242
+ SOFTWARE.
243
+ ```
244
+
245
+ ## x/sys
246
+
247
+ - Module: `golang.org/x/sys` v0.47.0
248
+ - License: BSD-3-Clause
249
+ - Used for: raw syscalls in the metric collectors and the Windows console.
250
+
251
+ ```
252
+ Copyright 2009 The Go Authors.
253
+
254
+ Redistribution and use in source and binary forms, with or without
255
+ modification, are permitted provided that the following conditions are
256
+ met:
257
+
258
+ * Redistributions of source code must retain the above copyright
259
+ notice, this list of conditions and the following disclaimer.
260
+ * Redistributions in binary form must reproduce the above
261
+ copyright notice, this list of conditions and the following disclaimer
262
+ in the documentation and/or other materials provided with the
263
+ distribution.
264
+ * Neither the name of Google LLC nor the names of its
265
+ contributors may be used to endorse or promote products derived from
266
+ this software without specific prior written permission.
267
+
268
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
269
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
270
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
271
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
272
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
273
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
274
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
275
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
276
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
277
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
278
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
279
+ ```
package/bin/onepilot CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onepilot/cli-darwin-arm64",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Onepilot CLI binary for darwin arm64. Install the onepilot package instead of this one.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "os": [
@@ -11,7 +11,8 @@
11
11
  ],
12
12
  "files": [
13
13
  "bin/onepilot",
14
- "LICENSE"
14
+ "LICENSE",
15
+ "THIRD_PARTY_NOTICES.md"
15
16
  ],
16
17
  "homepage": "https://onepilotapp.com"
17
18
  }