Skip to content

Releases: PilotDataPlatform/cli

Release develop 3.18.0

09 Apr 20:37
1da84d7

Choose a tag to compare

Release Notes

Summary

The old logic will attach attribute template at endpoint entire upload, which is now incompatible with portal workflow. And it will need extra step to let bff-cli validate attribute. Instead, we directly pass the attribute template with pre upload api, and let metadata to check if input is valid.

Versions

  • Pilot Release Version: 2.15.1
  • Compatible Version: 2.15.1

Release develop 3.17.2

03 Apr 14:53
93a715f

Choose a tag to compare

Release Notes

Summary

when resumable uploading,if cli detects any invalid download size, it will stop and raise the error. For this update, instead of exiting the program, cli will report a warning and continue resume rest of files.

Versions

  • Pilot Release Version: 2.15
  • Compatible Version: 2.15

Release develop 3.17.1

24 Mar 20:31
25ffa5c

Choose a tag to compare

Release Notes

Summary

Because the development branch is protected, now change workflow to push back to feature branch during PR instead of directly push into develop branch.

Versions

  • Pilot Release Version: 2.15
  • Compatible Version: 2.15

Release develop 3.17.0

19 Mar 15:31

Choose a tag to compare

Updated docs/compatible_version.md with PR #215

Release develop 3.16.0

18 Mar 19:51
38f318f

Choose a tag to compare

Summary

  • Update the message of new version notification. due to the lower version of terminal cant display the clickable link.

Versions

  • Pilot Release Version: 2.15
  • Minimum Release Version: 2.15

Release hot_fix_2.14.2 3.15.1

17 Mar 19:41

Choose a tag to compare

Updates

  • fixup the initial setup will crash the help page due to missing token
  • remove -s for release 2.14.2

Versions

  • Pilot Release Version: 2.14.2
  • Minimum Release Version: 2.14.2

Release develop 3.15.2

17 Mar 21:15
9f493e9

Choose a tag to compare

Updates

  • fixup the resumable check doen't check local files.

Versions

  • Pilot Release Version: 2.15
  • Minimum Release Version: 2.15

Release develop 3.15.0

27 Feb 21:46
425ba4b

Choose a tag to compare

Update

  • add size parameter in preupload api
  • update integrity check when resumable upload

Versions

  • Pilot Release Version: 2.14.2
  • Minimum Release Version: 2.14.2

Release develop 3.14.1

24 Feb 20:00
7284611

Choose a tag to compare

  • add upload status check at the end of upload/resumable upload

Release develop 3.14.0

20 Feb 22:12
1847d4b

Choose a tag to compare

  1. change the number of concurrent job to the number of thread + 1, in order to reduce the memory usage when uploading.
  2. update the logic of access_token, refresh_token and api_key logic to cache it for runtime instead of decrypt it from file everytime during commands
  3. remove the outstanding token refresh thread during upload
  4. optimize the logic of threading upload:
    • move finishing event chunk_upload_done into function to avoid racing condition.
    • scheduled check and timeout for finishing event chunk_upload_done.
    • so it won't run into a dead loop when resuming at 100% for chunk upload.