Skip to content

Releases: LanceMcCarthy/Action-AzureBlobUpload

Maintenance Release - Security and Dependency Updates

11 Jan 00:00
Compare
Choose a tag to compare

This is solely a maintenance release that contains the latest security and improvements in the dependencies this project uses.

What's Changed

Full Changelog: v1...v1.10.0

v1.9.0 - New Feature: Single File Mode

29 Apr 00:22
Compare
Choose a tag to compare

This release brings support for using a single file path as the source_folder value. Although not commonly needed when uploading build artifacts, it is a welcome benefit for single-file executables inside a build output folder that has a lot of files. See the new Single File Mode example in the README.

This release also comes with lots of behind-the-scenes improvements in addition to fixes to some long-time nagging issues! Here are tghe highlights:

  • Fix #122
  • Fix #124
  • Code
  • Improved tests
  • Lots of general clean up and refactoring to make the code easier to understand for contributors
  • Workflow run output improvements

v1.8.4 Release - Improved Path Join and Normalization

16 Apr 14:11
e26da25
Compare
Choose a tag to compare

This release fixes #122 and adds some additional tests to confirm path normalization and joins work.

v1.8.3 Release - Path Improvements

01 Apr 15:16
Compare
Choose a tag to compare

Highlight

This release contains a fix for #34.

Merges

PRs Included in this release

v1.8.2 Release - Target Folder Clean Improvement

17 Mar 17:20
Compare
Choose a tag to compare

This release comes with 2 improvments:

  • Fix for #113
  • Bumped Jest version to address a transient dependency vuln. See CVE-2020-7789

Note: The node-notifier problem in the CVE did not affect this GitHub Action. I am resolving it to be proactive and consistently maintain best practices.

v1.8.1 Release - Maintenance and Fixes

29 Jan 17:23
Compare
Choose a tag to compare

Release Notes:

  • Missing is_recursive YAML parameter fixed (#106)
  • 20+ dependency updates (#82 -> #103)

v1.8.0 Release - New Feature and Dependency Updates

23 Nov 22:05
ee45bae
Compare
Choose a tag to compare

Introducing the new is_recursive parameter to disable source folder tree walking. This will let you set a source folder and the Action will only upload the files in that folder, no subfolder files.

- uses: LanceMcCarthy/[email protected]
  name: Upload only the files in the documents folder, no subfolder files!
  with:
    connection_string: ${{ secrets.YourAzureBlobConnectionString }}
    container_name: your-container-name
    source_folder: C:\Users\JohnDoe\Documents
    is_recursive: false

Dependency Quality Update

12 Oct 17:48
Compare
Choose a tag to compare

this update includes security fixes and improvements from upstream sources and dependencies. Particularly the update to @actions/core 1.2.6 (includes fix for https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ )

Version 1.7

01 Sep 19:10
54e98bb
Compare
Choose a tag to compare

See README for features and capabilities.

  • Contains fix for #23 (last char trim)

Version 1.6

31 Aug 17:23
37bd0e1
Compare
Choose a tag to compare

See README for features and capabilities.

  • Contains fix for #20 (extra empty folder in blob container)