Skip to content

Commit 855860c

Browse files
authoredMay 16, 2024
[REST API v3] Change how create-artifact and create-version APIs work! (#4671)
* Change how create-artifact and create-version APIs work! * Fix python sdk tests * Regenerated the go-sdk and fixed tests to use v3 of the api * Basic fixes to the UI to use the new v3 REST API changes * Fix broken UI tests * Fixed artifact type discovery from content * Fix default schema resolver to send content-type when making REST call * Regen go sdk * Fix lint issues * Fix bug in dispatching create-artifact kafkasql message * Fixed all broken examples * Fix a problem in the canonical hash integration test * Extract metadata only in v2 rest api * Extract metadata when updating an artifact in the v2 api * Fix new basic auth test
1 parent 11b7e71 commit 855860c

File tree

172 files changed

+5334
-7824
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+5334
-7824
lines changed
 

‎.github/workflows/integration-tests.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145

146146
- name: Collect logs
147147
if: failure()
148-
run: ./.github/scripts/collect_logs.sh
148+
run: sh ./.github/scripts/collect_logs.sh
149149

150150
- name: Upload tests logs artifacts
151151
if: failure()
@@ -190,7 +190,7 @@ jobs:
190190

191191
- name: Collect logs
192192
if: failure()
193-
run: ./.github/scripts/collect_logs.sh
193+
run: sh ./.github/scripts/collect_logs.sh
194194

195195
- name: Upload tests logs artifacts
196196
if: failure()
@@ -236,7 +236,7 @@ jobs:
236236

237237
- name: Collect logs
238238
if: failure()
239-
run: ./.github/scripts/collect_logs.sh
239+
run: sh ./.github/scripts/collect_logs.sh
240240

241241
- name: Upload tests logs artifacts
242242
if: failure()
@@ -309,7 +309,7 @@ jobs:
309309

310310
- name: Collect logs
311311
if: failure()
312-
run: ./.github/scripts/collect_logs.sh
312+
run: sh ./.github/scripts/collect_logs.sh
313313

314314
- name: Upload tests logs artifacts
315315
if: failure()
@@ -347,7 +347,7 @@ jobs:
347347
348348
- name: Collect logs
349349
if: failure()
350-
run: ./.github/scripts/collect_logs.sh
350+
run: sh ./.github/scripts/collect_logs.sh
351351

352352
- name: Upload tests logs artifacts
353353
if: failure()

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ target/
1111

1212
# IntelliJ / IDEA
1313
.idea/
14+
.run/
1415
*.iml
1516
*.ipr
1617
*.iws

0 commit comments

Comments
 (0)