@capgo/cli 4.10.3 → 4.10.6-beta.1
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/.github/workflows/build.yml +12 -12
- package/.github/workflows/bump_version.yml +2 -2
- package/.github/workflows/check_posix_paths.yml +222 -0
- package/.github/workflows/test.yml +1 -1
- package/CHANGELOG.md +407 -0
- package/bun.lockb +0 -0
- package/dist/index.js +54257 -39665
- package/package.json +22 -17
- package/src/api/channels.ts +28 -5
- package/src/api/versions.ts +2 -3
- package/src/app/add.ts +5 -5
- package/src/app/debug.ts +39 -24
- package/src/app/delete.ts +12 -8
- package/src/app/set.ts +5 -3
- package/src/bundle/cleanup.ts +5 -5
- package/src/bundle/delete.ts +2 -2
- package/src/bundle/list.ts +2 -2
- package/src/bundle/upload.ts +15 -24
- package/src/bundle/zip.ts +93 -89
- package/src/channel/add.ts +10 -4
- package/src/channel/delete.ts +8 -3
- package/src/channel/set.ts +1 -2
- package/src/index.ts +5 -6
- package/src/init.ts +121 -21
- package/src/key.ts +2 -2
- package/src/types/supabase.types.ts +97 -172
- package/src/utils.ts +76 -15
- package/test/VerifyZip.java +83 -0
- package/test/VerifyZip.swift +54 -0
- package/test/check-posix-paths.js +21 -0
- package/test/test_upload/app.js +3 -0
- package/test/test_upload/assets/check-posix-paths.js +21 -0
- package/test/test_upload/index.html +0 -0
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
fetch-depth: 0
|
|
20
20
|
- name: Setup bun
|
|
21
|
-
uses: oven-sh/setup-bun@v1.
|
|
21
|
+
uses: oven-sh/setup-bun@v1.2.2
|
|
22
22
|
with:
|
|
23
23
|
bun-version: latest
|
|
24
24
|
- name: Install dependencies
|
|
@@ -33,14 +33,14 @@ jobs:
|
|
|
33
33
|
- name: Run
|
|
34
34
|
id: run_cli
|
|
35
35
|
run: node dist/index.js --help
|
|
36
|
-
- uses: JS-DevTools/npm-publish@v3
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
- uses: JS-DevTools/npm-publish@v3
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
36
|
+
# - uses: JS-DevTools/npm-publish@v3
|
|
37
|
+
# if: ${{ !contains(github.ref, '-alpha.') }}
|
|
38
|
+
# with:
|
|
39
|
+
# token: ${{ secrets.NPM_TOKEN }}
|
|
40
|
+
# provenance: true
|
|
41
|
+
# - uses: JS-DevTools/npm-publish@v3
|
|
42
|
+
# if: ${{ contains(github.ref, '-alpha.') }}
|
|
43
|
+
# with:
|
|
44
|
+
# token: ${{ secrets.NPM_TOKEN }}
|
|
45
|
+
# tag: next
|
|
46
|
+
# provenance: true
|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
fetch-depth: 0
|
|
19
19
|
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
|
|
20
20
|
- name: Setup bun
|
|
21
|
-
uses: oven-sh/setup-bun@v1.
|
|
21
|
+
uses: oven-sh/setup-bun@v1.2.2
|
|
22
22
|
with:
|
|
23
23
|
bun-version: latest
|
|
24
24
|
- name: Install dependencies
|
|
@@ -48,7 +48,7 @@ jobs:
|
|
|
48
48
|
- name: Checkout
|
|
49
49
|
uses: actions/checkout@v4
|
|
50
50
|
- name: Setup bun
|
|
51
|
-
uses: oven-sh/setup-bun@v1.
|
|
51
|
+
uses: oven-sh/setup-bun@v1.2.2
|
|
52
52
|
with:
|
|
53
53
|
bun-version: latest
|
|
54
54
|
- name: Install dependencies
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
name: Check POSIX Paths in Zip File
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
create-valid-zip-linux:
|
|
13
|
+
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout repository
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- name: Setup bun
|
|
21
|
+
uses: oven-sh/setup-bun@v1.2.2
|
|
22
|
+
with:
|
|
23
|
+
bun-version: latest
|
|
24
|
+
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
id: install_code
|
|
27
|
+
run: bun install --frozen-lockfile
|
|
28
|
+
|
|
29
|
+
- name: Build code
|
|
30
|
+
id: build_code
|
|
31
|
+
run: bun run build
|
|
32
|
+
|
|
33
|
+
- name: Create a valid zip test
|
|
34
|
+
id: create_zip
|
|
35
|
+
run: node ./dist/index.js bundle zip --path test/test_upload -n build-linux.zip
|
|
36
|
+
|
|
37
|
+
- name: Check build directory contents
|
|
38
|
+
run: |
|
|
39
|
+
echo "Listing contents of the build directory..."
|
|
40
|
+
ls -R ./dist
|
|
41
|
+
|
|
42
|
+
- name: Check ZIP file contents
|
|
43
|
+
run: |
|
|
44
|
+
echo "Listing contents of the ZIP file..."
|
|
45
|
+
unzip -l build-linux.zip
|
|
46
|
+
|
|
47
|
+
- name: Upload build-linux.zip artifact
|
|
48
|
+
uses: actions/upload-artifact@v4
|
|
49
|
+
with:
|
|
50
|
+
name: build-zip-linux
|
|
51
|
+
path: build-linux.zip
|
|
52
|
+
|
|
53
|
+
check-posix-paths-windows:
|
|
54
|
+
runs-on: ${{ matrix.os }}
|
|
55
|
+
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
|
|
56
|
+
|
|
57
|
+
strategy:
|
|
58
|
+
matrix:
|
|
59
|
+
os: [windows-2019, windows-2022]
|
|
60
|
+
|
|
61
|
+
steps:
|
|
62
|
+
- name: Checkout repository
|
|
63
|
+
uses: actions/checkout@v4
|
|
64
|
+
|
|
65
|
+
- name: Setup bun
|
|
66
|
+
uses: oven-sh/setup-bun@v1.2.2
|
|
67
|
+
with:
|
|
68
|
+
bun-version: latest
|
|
69
|
+
|
|
70
|
+
- name: Install dependencies
|
|
71
|
+
id: install_code
|
|
72
|
+
run: bun install --frozen-lockfile
|
|
73
|
+
|
|
74
|
+
- name: Build code
|
|
75
|
+
id: build_code
|
|
76
|
+
run: bun run build
|
|
77
|
+
|
|
78
|
+
- name: Create a zip test
|
|
79
|
+
id: create_zip
|
|
80
|
+
run: node ./dist/index.js bundle zip --path test/test_upload -n build-${{ matrix.os }}.zip
|
|
81
|
+
|
|
82
|
+
- name: Upload build.zip artifact
|
|
83
|
+
uses: actions/upload-artifact@v4
|
|
84
|
+
with:
|
|
85
|
+
name: build-zip-${{ matrix.os }}
|
|
86
|
+
path: build-${{ matrix.os }}.zip
|
|
87
|
+
|
|
88
|
+
check-posix-paths-unix:
|
|
89
|
+
runs-on: ubuntu-latest
|
|
90
|
+
needs: [create-valid-zip-linux, check-posix-paths-windows]
|
|
91
|
+
|
|
92
|
+
steps:
|
|
93
|
+
- name: Checkout repository
|
|
94
|
+
uses: actions/checkout@v4
|
|
95
|
+
|
|
96
|
+
- name: Download build-linux.zip artifact
|
|
97
|
+
uses: actions/download-artifact@v4
|
|
98
|
+
with:
|
|
99
|
+
name: build-zip-linux
|
|
100
|
+
|
|
101
|
+
- name: List the files
|
|
102
|
+
run: ls -lh
|
|
103
|
+
|
|
104
|
+
- name: Check file size of Linux build
|
|
105
|
+
run: ls -lh build-linux.zip
|
|
106
|
+
|
|
107
|
+
- name: Verify ZIP file integrity for Linux build with zipinfo
|
|
108
|
+
run: |
|
|
109
|
+
echo "Verifying ZIP file integrity for Linux build with zipinfo..."
|
|
110
|
+
zipinfo ./build-linux.zip || (echo "ZIP file is corrupted: build-linux.zip" && exit 1)
|
|
111
|
+
|
|
112
|
+
- name: Verify POSIX paths for Linux build
|
|
113
|
+
run: |
|
|
114
|
+
unzip build-linux.zip -d extracted-linux
|
|
115
|
+
if find extracted-linux -type f | grep -qE '\\\\'; then
|
|
116
|
+
echo "Non-POSIX paths detected in build-linux.zip."
|
|
117
|
+
exit 1
|
|
118
|
+
else
|
|
119
|
+
echo "All paths are POSIX compliant in build-linux.zip."
|
|
120
|
+
fi
|
|
121
|
+
|
|
122
|
+
- name: Setup Java
|
|
123
|
+
uses: actions/setup-java@v4
|
|
124
|
+
with:
|
|
125
|
+
distribution: 'zulu'
|
|
126
|
+
java-version: '17'
|
|
127
|
+
|
|
128
|
+
- name: Compile VerifyZip.java
|
|
129
|
+
run: javac ./test/VerifyZip.java
|
|
130
|
+
|
|
131
|
+
- name: Verify ZIP file integrity for Linux build with Java
|
|
132
|
+
run: java -cp ./test VerifyZip build-linux.zip
|
|
133
|
+
|
|
134
|
+
- name: Download build-windows-2019.zip artifact
|
|
135
|
+
uses: actions/download-artifact@v4
|
|
136
|
+
with:
|
|
137
|
+
name: build-zip-windows-2019
|
|
138
|
+
|
|
139
|
+
- name: Download build-windows-2022.zip artifact
|
|
140
|
+
uses: actions/download-artifact@v4
|
|
141
|
+
with:
|
|
142
|
+
name: build-zip-windows-2022
|
|
143
|
+
|
|
144
|
+
- name: List the files
|
|
145
|
+
run: ls -lh
|
|
146
|
+
|
|
147
|
+
- name: Check file sizes of Windows builds
|
|
148
|
+
run: |
|
|
149
|
+
echo "Checking file sizes..."
|
|
150
|
+
ls -lh build-windows-2019.zip
|
|
151
|
+
ls -lh build-windows-2022.zip
|
|
152
|
+
|
|
153
|
+
- name: Verify ZIP file integrity for Windows 2019 build with zipinfo
|
|
154
|
+
run: |
|
|
155
|
+
echo "Verifying ZIP file integrity for Windows 2019 build with zipinfo..."
|
|
156
|
+
zipinfo ./build-windows-2019.zip || (echo "ZIP file is corrupted: build-windows-2019.zip" && exit 1)
|
|
157
|
+
|
|
158
|
+
- name: Verify ZIP file integrity for Windows 2022 build with zipinfo
|
|
159
|
+
run: |
|
|
160
|
+
echo "Verifying ZIP file integrity for Windows 2022 build with zipinfo..."
|
|
161
|
+
zipinfo ./build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
162
|
+
|
|
163
|
+
- name: Verify POSIX paths for Windows 2019 build
|
|
164
|
+
run: |
|
|
165
|
+
unzip build-windows-2019.zip -d extracted-2019
|
|
166
|
+
if find extracted-2019 -type f | grep -qE '\\\\'; then
|
|
167
|
+
echo "Non-POSIX paths detected in build-windows-2019.zip."
|
|
168
|
+
exit 1
|
|
169
|
+
else
|
|
170
|
+
echo "All paths are POSIX compliant in build-windows-2019.zip."
|
|
171
|
+
fi
|
|
172
|
+
|
|
173
|
+
- name: Verify POSIX paths for Windows 2022 build
|
|
174
|
+
run: |
|
|
175
|
+
unzip build-windows-2022.zip -d extracted-2022
|
|
176
|
+
if find extracted-2022 -type f | grep -qE '\\\\'; then
|
|
177
|
+
echo "Non-POSIX paths detected in build-windows-2022.zip."
|
|
178
|
+
exit 1
|
|
179
|
+
else
|
|
180
|
+
echo "All paths are POSIX compliant in build-windows-2022.zip."
|
|
181
|
+
fi
|
|
182
|
+
|
|
183
|
+
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
184
|
+
run: java -cp ./test VerifyZip build-windows-2019.zip
|
|
185
|
+
|
|
186
|
+
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
187
|
+
run: java -cp ./test VerifyZip build-windows-2022.zip
|
|
188
|
+
|
|
189
|
+
- name: Setup Swift
|
|
190
|
+
uses: swift-actions/setup-swift@v2
|
|
191
|
+
with:
|
|
192
|
+
swift-version: '5.9.2'
|
|
193
|
+
|
|
194
|
+
- name: Install CocoaPods
|
|
195
|
+
run: |
|
|
196
|
+
export GEM_HOME=$HOME/.gem
|
|
197
|
+
export PATH=$GEM_HOME/bin:$PATH
|
|
198
|
+
gem install cocoapods
|
|
199
|
+
|
|
200
|
+
- name: Create Podfile
|
|
201
|
+
run: |
|
|
202
|
+
echo "platform :ios, '12.0'" > Podfile
|
|
203
|
+
echo "target 'VerifyZip' do" >> Podfile
|
|
204
|
+
echo " use_frameworks!" >> Podfile
|
|
205
|
+
echo " pod 'SSZipArchive'" >> Podfile
|
|
206
|
+
echo "end" >> Podfile
|
|
207
|
+
|
|
208
|
+
- name: Install dependencies
|
|
209
|
+
run: |
|
|
210
|
+
export GEM_HOME=$HOME/.gem
|
|
211
|
+
export PATH=$GEM_HOME/bin:$PATH
|
|
212
|
+
pod install
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
- name: Verify ZIP file integrity for Linux build with Swift
|
|
216
|
+
run: swift run VerifyZip build-linux.zip
|
|
217
|
+
|
|
218
|
+
- name: Verify ZIP file integrity for Windows 2019 build with Swift
|
|
219
|
+
run: swift run VerifyZip build-windows-2019.zip
|
|
220
|
+
|
|
221
|
+
- name: Verify ZIP file integrity for Windows 2022 build with Swift
|
|
222
|
+
run: swift run VerifyZip build-windows-2022.zip
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,413 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.10.64](https://github.com/Cap-go/CLI/compare/v4.10.63...v4.10.64) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add test in swift as well ([9dfd7e6](https://github.com/Cap-go/CLI/commit/9dfd7e6d36699759b18799bef624d59d4e360da5))
|
|
11
|
+
|
|
12
|
+
### [4.10.63](https://github.com/Cap-go/CLI/compare/v4.10.62...v4.10.63) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* try to force posix ([5d0b446](https://github.com/Cap-go/CLI/commit/5d0b4465d0d49988c95d85b465efd88d3966077a))
|
|
18
|
+
|
|
19
|
+
### [4.10.62](https://github.com/Cap-go/CLI/compare/v4.10.61...v4.10.62) (2024-06-21)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* try other lib to zip ([99b03ee](https://github.com/Cap-go/CLI/commit/99b03eea88e6c88572aff919f6dafbd2f49680be))
|
|
25
|
+
|
|
26
|
+
### [4.10.61](https://github.com/Cap-go/CLI/compare/v4.10.60...v4.10.61) (2024-06-21)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* add console log ([9f0a7a0](https://github.com/Cap-go/CLI/commit/9f0a7a0347ef520bb8075d55374054240dba074c))
|
|
32
|
+
|
|
33
|
+
### [4.10.60](https://github.com/Cap-go/CLI/compare/v4.10.59...v4.10.60) (2024-06-21)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* path issue ([cbab5a9](https://github.com/Cap-go/CLI/commit/cbab5a9526c52cf2e51204d2e068e6493fc1f1cc))
|
|
39
|
+
|
|
40
|
+
### [4.10.59](https://github.com/Cap-go/CLI/compare/v4.10.58...v4.10.59) (2024-06-21)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* try new fix ([4d65f3c](https://github.com/Cap-go/CLI/commit/4d65f3cf7b8d617156668a596b18ef06f08a4659))
|
|
46
|
+
|
|
47
|
+
### [4.10.58](https://github.com/Cap-go/CLI/compare/v4.10.57...v4.10.58) (2024-06-21)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
* zipFile ([8a5f0b6](https://github.com/Cap-go/CLI/commit/8a5f0b62392bfd2be77c3a45bd3d5e83a9d58ace))
|
|
53
|
+
|
|
54
|
+
### [4.10.57](https://github.com/Cap-go/CLI/compare/v4.10.56...v4.10.57) (2024-06-21)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Bug Fixes
|
|
58
|
+
|
|
59
|
+
* use better path system ([330a130](https://github.com/Cap-go/CLI/commit/330a130ba3f16be88a40ebf298893b2d3cd518ba))
|
|
60
|
+
|
|
61
|
+
### [4.10.56](https://github.com/Cap-go/CLI/compare/v4.10.55...v4.10.56) (2024-06-21)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Bug Fixes
|
|
65
|
+
|
|
66
|
+
* test in shell ([1026921](https://github.com/Cap-go/CLI/commit/1026921a44259295bfc5157ffee08eaaabcee1fa))
|
|
67
|
+
|
|
68
|
+
### [4.10.55](https://github.com/Cap-go/CLI/compare/v4.10.54...v4.10.55) (2024-06-21)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Bug Fixes
|
|
72
|
+
|
|
73
|
+
* try to force correct path ([c639d9e](https://github.com/Cap-go/CLI/commit/c639d9ef500640de37f5144fbae1c9b4d057ff83))
|
|
74
|
+
|
|
75
|
+
### [4.10.54](https://github.com/Cap-go/CLI/compare/v4.10.53...v4.10.54) (2024-06-21)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
* test the new path system ([73551e9](https://github.com/Cap-go/CLI/commit/73551e9b57976aecf1fd1f0eb8001f9e8fe9fe80))
|
|
81
|
+
|
|
82
|
+
### [4.10.53](https://github.com/Cap-go/CLI/compare/v4.10.52...v4.10.53) (2024-06-21)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* update test to fail like updater ([4a9a75d](https://github.com/Cap-go/CLI/commit/4a9a75d3d98bdb594b17a9a2149a73fae75b6ffa))
|
|
88
|
+
|
|
89
|
+
### [4.10.52](https://github.com/Cap-go/CLI/compare/v4.10.51...v4.10.52) (2024-06-21)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Bug Fixes
|
|
93
|
+
|
|
94
|
+
* path ([78a210e](https://github.com/Cap-go/CLI/commit/78a210e9fc61add77be4e0103abffd5469fbfd00))
|
|
95
|
+
|
|
96
|
+
### [4.10.51](https://github.com/Cap-go/CLI/compare/v4.10.50...v4.10.51) (2024-06-21)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
* add missing checkout ([5428a4f](https://github.com/Cap-go/CLI/commit/5428a4f6f4ccf92391433cc6b48eca75e1f92fa9))
|
|
102
|
+
|
|
103
|
+
### [4.10.50](https://github.com/Cap-go/CLI/compare/v4.10.49...v4.10.50) (2024-06-21)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Bug Fixes
|
|
107
|
+
|
|
108
|
+
* java ([502052c](https://github.com/Cap-go/CLI/commit/502052c192253e0629e328dcbedd55fd75cbdef8))
|
|
109
|
+
|
|
110
|
+
### [4.10.49](https://github.com/Cap-go/CLI/compare/v4.10.48...v4.10.49) (2024-06-21)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* disable on build + add back java ([e131c54](https://github.com/Cap-go/CLI/commit/e131c545708b4755efdf73dc9c5a3176634f11d3))
|
|
116
|
+
|
|
117
|
+
### [4.10.48](https://github.com/Cap-go/CLI/compare/v4.10.47...v4.10.48) (2024-06-21)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Bug Fixes
|
|
121
|
+
|
|
122
|
+
* disable java for now ([386e7a7](https://github.com/Cap-go/CLI/commit/386e7a760d9d35a48988118059fac19990a24d32))
|
|
123
|
+
|
|
124
|
+
### [4.10.47](https://github.com/Cap-go/CLI/compare/v4.10.46...v4.10.47) (2024-06-21)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Bug Fixes
|
|
128
|
+
|
|
129
|
+
* do java last ([7374db6](https://github.com/Cap-go/CLI/commit/7374db68ac96dc4c0c8cd69452ad9485285f7d63))
|
|
130
|
+
|
|
131
|
+
### [4.10.46](https://github.com/Cap-go/CLI/compare/v4.10.45...v4.10.46) (2024-06-21)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Bug Fixes
|
|
135
|
+
|
|
136
|
+
* path javac ([e323cef](https://github.com/Cap-go/CLI/commit/e323cef1aa48ed164e1d503edc86ac6133abe0ca))
|
|
137
|
+
* remove double check ([5752085](https://github.com/Cap-go/CLI/commit/57520855f066cb3dc7ed78358b3e53628402c55d))
|
|
138
|
+
|
|
139
|
+
### [4.10.45](https://github.com/Cap-go/CLI/compare/v4.10.44...v4.10.45) (2024-06-21)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Bug Fixes
|
|
143
|
+
|
|
144
|
+
* path verifyZip ([8d33d6f](https://github.com/Cap-go/CLI/commit/8d33d6f4590a923f0b1bcad18e5817b759967bee))
|
|
145
|
+
|
|
146
|
+
### [4.10.44](https://github.com/Cap-go/CLI/compare/v4.10.43...v4.10.44) (2024-06-21)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Bug Fixes
|
|
150
|
+
|
|
151
|
+
* better download ([56c8206](https://github.com/Cap-go/CLI/commit/56c82063eae4fca364e1ceae576f609c466ad08e))
|
|
152
|
+
|
|
153
|
+
### [4.10.43](https://github.com/Cap-go/CLI/compare/v4.10.42...v4.10.43) (2024-06-21)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Bug Fixes
|
|
157
|
+
|
|
158
|
+
* add list of files ([d445ff8](https://github.com/Cap-go/CLI/commit/d445ff816764c24ffaa4557d9c6bc3a7b2858765))
|
|
159
|
+
|
|
160
|
+
### [4.10.42](https://github.com/Cap-go/CLI/compare/v4.10.41...v4.10.42) (2024-06-21)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
### Bug Fixes
|
|
164
|
+
|
|
165
|
+
* checkout v4 ([991f01a](https://github.com/Cap-go/CLI/commit/991f01acbfdf4a758b7b6f514d5da10315507e0b))
|
|
166
|
+
|
|
167
|
+
### [4.10.41](https://github.com/Cap-go/CLI/compare/v4.10.40...v4.10.41) (2024-06-21)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
### Bug Fixes
|
|
171
|
+
|
|
172
|
+
* zipinfo ([acb92ce](https://github.com/Cap-go/CLI/commit/acb92cee851d22c4fb7074b4d5074cdcc6b3eb44))
|
|
173
|
+
|
|
174
|
+
### [4.10.40](https://github.com/Cap-go/CLI/compare/v4.10.39...v4.10.40) (2024-06-21)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
### Bug Fixes
|
|
178
|
+
|
|
179
|
+
* better test ([0bf19ce](https://github.com/Cap-go/CLI/commit/0bf19ce088c6c97ed0bdca8c277b1c973c493645))
|
|
180
|
+
|
|
181
|
+
### [4.10.39](https://github.com/Cap-go/CLI/compare/v4.10.38...v4.10.39) (2024-06-21)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
* add missing java file and control test linux ([bcb0141](https://github.com/Cap-go/CLI/commit/bcb0141eda8e6fe9c607285fbb9a23f7421a5a1b))
|
|
187
|
+
|
|
188
|
+
### [4.10.38](https://github.com/Cap-go/CLI/compare/v4.10.37...v4.10.38) (2024-06-21)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
### Bug Fixes
|
|
192
|
+
|
|
193
|
+
* try artifact v4 and add java command ([1ba8907](https://github.com/Cap-go/CLI/commit/1ba8907eaf82f16f61eec4c5b8c5d1beacd7dbd2))
|
|
194
|
+
|
|
195
|
+
### [4.10.37](https://github.com/Cap-go/CLI/compare/v4.10.36...v4.10.37) (2024-06-21)
|
|
196
|
+
|
|
197
|
+
### [4.10.36](https://github.com/Cap-go/CLI/compare/v4.10.35...v4.10.36) (2024-06-21)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### Bug Fixes
|
|
201
|
+
|
|
202
|
+
* add other file for better test ([9757a93](https://github.com/Cap-go/CLI/commit/9757a9375cc754556b4384e30cb95faee9ab23e1))
|
|
203
|
+
* get info with zipinfo ([5d7ecdc](https://github.com/Cap-go/CLI/commit/5d7ecdcd94bb7489c01e53ce9927b05185165f37))
|
|
204
|
+
|
|
205
|
+
### [4.10.35](https://github.com/Cap-go/CLI/compare/v4.10.34...v4.10.35) (2024-06-21)
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
### Bug Fixes
|
|
209
|
+
|
|
210
|
+
* test file before unzip ([9ec2ac3](https://github.com/Cap-go/CLI/commit/9ec2ac31b53cd3c5ccd76f3cb3d72cdfada63a84))
|
|
211
|
+
|
|
212
|
+
### [4.10.34](https://github.com/Cap-go/CLI/compare/v4.10.33...v4.10.34) (2024-06-21)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Bug Fixes
|
|
216
|
+
|
|
217
|
+
* add check file ([41cd144](https://github.com/Cap-go/CLI/commit/41cd144ee0e757157e98d5ebbdbb04fabee0e3b9))
|
|
218
|
+
* deps ([cef42c3](https://github.com/Cap-go/CLI/commit/cef42c390ac148dd24237ac603c5fbd697e3fe9c))
|
|
219
|
+
|
|
220
|
+
### [4.10.33](https://github.com/Cap-go/CLI/compare/v4.10.32...v4.10.33) (2024-06-21)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### Bug Fixes
|
|
224
|
+
|
|
225
|
+
* path unzip ([4a58dc1](https://github.com/Cap-go/CLI/commit/4a58dc19b7623730b7034262aa8a6e2c96748084))
|
|
226
|
+
|
|
227
|
+
### [4.10.32](https://github.com/Cap-go/CLI/compare/v4.10.31...v4.10.32) (2024-06-21)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
### Bug Fixes
|
|
231
|
+
|
|
232
|
+
* unzip command ([3e9390a](https://github.com/Cap-go/CLI/commit/3e9390a04d3c37bbc8273bcef9b9c7b4907a0ab6))
|
|
233
|
+
|
|
234
|
+
### [4.10.31](https://github.com/Cap-go/CLI/compare/v4.10.30...v4.10.31) (2024-06-21)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Bug Fixes
|
|
238
|
+
|
|
239
|
+
* try to excrat both ([3906045](https://github.com/Cap-go/CLI/commit/39060457304f571140c7d86b2044123658937264))
|
|
240
|
+
|
|
241
|
+
### [4.10.30](https://github.com/Cap-go/CLI/compare/v4.10.29...v4.10.30) (2024-06-21)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
|
|
246
|
+
* add depends ([af4a12c](https://github.com/Cap-go/CLI/commit/af4a12cc771c28f4232031897898cd43be176e8c))
|
|
247
|
+
|
|
248
|
+
### [4.10.29](https://github.com/Cap-go/CLI/compare/v4.10.28...v4.10.29) (2024-06-21)
|
|
249
|
+
|
|
250
|
+
### [4.10.28](https://github.com/Cap-go/CLI/compare/v4.10.27...v4.10.28) (2024-06-20)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
### Bug Fixes
|
|
254
|
+
|
|
255
|
+
* lockfile issue ([a63b4eb](https://github.com/Cap-go/CLI/commit/a63b4eb53bf8959e3c839aa6297f5d181d2da576))
|
|
256
|
+
* try another way to test posix ([9e7574d](https://github.com/Cap-go/CLI/commit/9e7574d24e54339b8f41de7958d5562682466088))
|
|
257
|
+
|
|
258
|
+
### [4.10.27](https://github.com/Cap-go/CLI/compare/v4.10.26...v4.10.27) (2024-06-20)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Bug Fixes
|
|
262
|
+
|
|
263
|
+
* remove too old version ([6b510e3](https://github.com/Cap-go/CLI/commit/6b510e37165487f74829296ee4becb5644d8880f))
|
|
264
|
+
|
|
265
|
+
### [4.10.26](https://github.com/Cap-go/CLI/compare/v4.10.25...v4.10.26) (2024-06-20)
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Bug Fixes
|
|
269
|
+
|
|
270
|
+
* test on multiple os ([9516f96](https://github.com/Cap-go/CLI/commit/9516f9647ae66fc455ff4d9955d922abbfc5bed0))
|
|
271
|
+
|
|
272
|
+
### [4.10.25](https://github.com/Cap-go/CLI/compare/v4.10.24...v4.10.25) (2024-06-20)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Bug Fixes
|
|
276
|
+
|
|
277
|
+
* add zip test ([45da8fe](https://github.com/Cap-go/CLI/commit/45da8fee6c7ac068532295d26180aa73996e6b58))
|
|
278
|
+
|
|
279
|
+
### [4.10.24](https://github.com/Cap-go/CLI/compare/v4.10.23...v4.10.24) (2024-06-19)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### Bug Fixes
|
|
283
|
+
|
|
284
|
+
* add message for multipart ([db2fc69](https://github.com/Cap-go/CLI/commit/db2fc6921418d3665304e358fe842efb8c9bc773))
|
|
285
|
+
|
|
286
|
+
### [4.10.23](https://github.com/Cap-go/CLI/compare/v4.10.22...v4.10.23) (2024-06-19)
|
|
287
|
+
|
|
288
|
+
### [4.10.22](https://github.com/Cap-go/CLI/compare/v4.10.21...v4.10.22) (2024-06-19)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Bug Fixes
|
|
292
|
+
|
|
293
|
+
* disable windows powershell ([83d0c6a](https://github.com/Cap-go/CLI/commit/83d0c6a61c5085aefc3a1a7f5567cda2fd629469))
|
|
294
|
+
|
|
295
|
+
### [4.10.21](https://github.com/Cap-go/CLI/compare/v4.10.20...v4.10.21) (2024-06-18)
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
### Bug Fixes
|
|
299
|
+
|
|
300
|
+
* remove old headers ([4d0c4b2](https://github.com/Cap-go/CLI/commit/4d0c4b24c5608034f948e0ce07d1e6fb5b9bb75d))
|
|
301
|
+
|
|
302
|
+
### [4.10.20](https://github.com/Cap-go/CLI/compare/v4.10.19...v4.10.20) (2024-06-18)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### Bug Fixes
|
|
306
|
+
|
|
307
|
+
* lint issue ([df7867b](https://github.com/Cap-go/CLI/commit/df7867ba88b1c87a2a123caae68b5b9c4505487e))
|
|
308
|
+
|
|
309
|
+
### [4.10.19](https://github.com/Cap-go/CLI/compare/v4.10.18...v4.10.19) (2024-06-18)
|
|
310
|
+
|
|
311
|
+
### [4.10.18](https://github.com/Cap-go/CLI/compare/v4.10.17...v4.10.18) (2024-06-17)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
### Bug Fixes
|
|
315
|
+
|
|
316
|
+
* add log message for the user ([e8b7437](https://github.com/Cap-go/CLI/commit/e8b7437da81bf819d6765fab7659f5d975855693))
|
|
317
|
+
|
|
318
|
+
### [4.10.17](https://github.com/Cap-go/CLI/compare/v4.10.16...v4.10.17) (2024-06-13)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### Bug Fixes
|
|
322
|
+
|
|
323
|
+
* remove old userId ([b263deb](https://github.com/Cap-go/CLI/commit/b263debe9b13fd68841c3a176f660863160a3872))
|
|
324
|
+
|
|
325
|
+
### [4.10.16](https://github.com/Cap-go/CLI/compare/v4.10.15...v4.10.16) (2024-06-13)
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
### Bug Fixes
|
|
329
|
+
|
|
330
|
+
* issue auto delete failed ([62fef1d](https://github.com/Cap-go/CLI/commit/62fef1dd5816c9c9781002d68f9566bbcace8e0f))
|
|
331
|
+
|
|
332
|
+
### [4.10.15](https://github.com/Cap-go/CLI/compare/v4.10.14...v4.10.15) (2024-06-12)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
### Bug Fixes
|
|
336
|
+
|
|
337
|
+
* remove crc32 from presigned ([fb1c6b6](https://github.com/Cap-go/CLI/commit/fb1c6b62571c47f204f05b4dbf5d903fc2fc9d65))
|
|
338
|
+
|
|
339
|
+
### [4.10.14](https://github.com/Cap-go/CLI/compare/v4.10.13...v4.10.14) (2024-06-09)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
### Bug Fixes
|
|
343
|
+
|
|
344
|
+
* better report error in init command ([af3dbf9](https://github.com/Cap-go/CLI/commit/af3dbf9e882e1dceb5d0b0ffb15484c1d4e01764))
|
|
345
|
+
|
|
346
|
+
### [4.10.13](https://github.com/Cap-go/CLI/compare/v4.10.12...v4.10.13) (2024-06-08)
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
* image upload ([cc42ebf](https://github.com/Cap-go/CLI/commit/cc42ebf8b297119383d5e08a73416515218bdbae))
|
|
352
|
+
|
|
353
|
+
### [4.10.12](https://github.com/Cap-go/CLI/compare/v4.10.11...v4.10.12) (2024-06-07)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
* add back debug command ([bb220a3](https://github.com/Cap-go/CLI/commit/bb220a3c42d30397f67d78233d6b8be460674a23))
|
|
359
|
+
|
|
360
|
+
### [4.10.11](https://github.com/Cap-go/CLI/compare/v4.10.10...v4.10.11) (2024-06-05)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Bug Fixes
|
|
364
|
+
|
|
365
|
+
* rename method to get id ([60fa77b](https://github.com/Cap-go/CLI/commit/60fa77b69ceb5f540357856ed9f3a886e0641337))
|
|
366
|
+
|
|
367
|
+
### [4.10.10](https://github.com/Cap-go/CLI/compare/v4.10.9...v4.10.10) (2024-06-03)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
### Bug Fixes
|
|
371
|
+
|
|
372
|
+
* use latest packages ([9ce1d30](https://github.com/Cap-go/CLI/commit/9ce1d30713600c4feb0fac7a9f84dec6867655b2))
|
|
373
|
+
|
|
374
|
+
### [4.10.9](https://github.com/Cap-go/CLI/compare/v4.10.8...v4.10.9) (2024-06-03)
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
### Bug Fixes
|
|
378
|
+
|
|
379
|
+
* add better error message ([53336b4](https://github.com/Cap-go/CLI/commit/53336b439cc946977fb34f8ba9cc45ab0e0a15ce))
|
|
380
|
+
* use latest types ([02289b3](https://github.com/Cap-go/CLI/commit/02289b3a637a60cee7543272e5617652c094ef75))
|
|
381
|
+
|
|
382
|
+
### [4.10.8](https://github.com/Cap-go/CLI/compare/v4.10.7...v4.10.8) (2024-05-27)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
### Bug Fixes
|
|
386
|
+
|
|
387
|
+
* lint and updates types ([1b3313f](https://github.com/Cap-go/CLI/commit/1b3313f6b165c88b57ea64c7cb2544c05a6921df))
|
|
388
|
+
|
|
389
|
+
### [4.10.7](https://github.com/Cap-go/CLI/compare/v4.10.6...v4.10.7) (2024-05-27)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Bug Fixes
|
|
393
|
+
|
|
394
|
+
* add snag for multipart upload ([eef8d38](https://github.com/Cap-go/CLI/commit/eef8d38d01bc7b25def9d5e9995ec3ae5acfc8cf))
|
|
395
|
+
|
|
396
|
+
### [4.10.6](https://github.com/Cap-go/CLI/compare/v4.10.5...v4.10.6) (2024-05-24)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
### Bug Fixes
|
|
400
|
+
|
|
401
|
+
* userId in logsnag ([b4f0cef](https://github.com/Cap-go/CLI/commit/b4f0cefd4e4f3366e5e8e6698f7c7b7b907eebba))
|
|
402
|
+
|
|
403
|
+
### [4.10.5](https://github.com/Cap-go/CLI/compare/v4.10.4...v4.10.5) (2024-05-21)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### Bug Fixes
|
|
407
|
+
|
|
408
|
+
* issue returning channel list ([aee3ed5](https://github.com/Cap-go/CLI/commit/aee3ed5cb011c10854f8a7806f69a80d10b389ac))
|
|
409
|
+
|
|
410
|
+
### [4.10.4](https://github.com/Cap-go/CLI/compare/v4.10.3...v4.10.4) (2024-05-15)
|
|
411
|
+
|
|
5
412
|
### [4.10.3](https://github.com/Cap-go/CLI/compare/v4.10.2...v4.10.3) (2024-05-14)
|
|
6
413
|
|
|
7
414
|
|
package/bun.lockb
CHANGED
|
Binary file
|