Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Roll to version 0.2.1 #55

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 28 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
# Nx-Lyve-Cloud-Plugin Changelog #

## **0.2.1** ##

August 29 2024
This release is packaged with Cloudfuse [v1.5.0](https://github.com/Seagate/cloudfuse/releases/tag/v1.5.0).
This release includes all features planned for the 1.0.0 release of the nx-lyve-cloud-plugin, which will be released after additional bug fixes and testing.

### Changes ###

- [#47](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/47) Allow config template to be modified by user
- [#52](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/52) Provide status feedback directly in settings UI
- [#45](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/45) Write cloudfuse log output to a file (~/.cloudfuse/cloudfuse.log) instead of syslog
- [#50](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/50) Write plugin log output to a
file (nx_ini/mediaserver_stderr.log)

### Bug Fixes ###

- [#48](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/48) Improve plugin log output
- [#46](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/46) Fix Windows install script privileges
- [#51](https://github.com/Seagate/nx-lyve-cloud-plugin/pull/51) Don't lose users settings on cloud connection failure

## **0.2.0** ##

August 7 2024
August 7 2024
This release is packaged with Cloudfuse [v1.4.0](https://github.com/Seagate/cloudfuse/releases/tag/v1.4.0).
This release includes all features planned for the 1.0.0 release of the nx-lyve-cloud-plugin, which will be released after additional bug fixes and testing.

### Bug Fixes ###
Expand All @@ -13,7 +34,8 @@ This release includes all features planned for the 1.0.0 release of the nx-lyve-

## **0.1.2** ##

July 23 2024
July 23 2024
This release was tested with Cloudfuse [v1.3.2](https://github.com/Seagate/cloudfuse/releases/tag/v1.3.2).
This release includes all features planned for the 1.0.0 release of the nx-lyve-cloud-plugin, which will be released after additional bug fixes and testing.

### Bug Fixes ###
Expand All @@ -24,7 +46,8 @@ This release includes all features planned for the 1.0.0 release of the nx-lyve-

## **0.1.1** ##

July 19 2024
July 19 2024
This release was tested with Cloudfuse [v1.3.1](https://github.com/Seagate/cloudfuse/releases/tag/v1.3.1).
This release includes all features planned for the 1.0.0 release of the nx-lyve-cloud-plugin, which will be released after additional bug fixes and testing.

### Bug Fixes ###
Expand All @@ -33,7 +56,8 @@ This release includes all features planned for the 1.0.0 release of the nx-lyve-

## **0.1.0** ##

July 11 2024
July 11 2024
This release was tested with Cloudfuse [v1.3.1](https://github.com/Seagate/cloudfuse/releases/tag/v1.3.1).
This release includes all features planned for the 1.0.0 release of the nx-lyve-cloud-plugin, which will be released after additional bug fixes and testing.

### Features ###
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif()

project(
cloudfuse_plugin
VERSION 0.2.0
VERSION 0.2.1
DESCRIPTION "VMS Plugin for Lyve Cloud"
HOMEPAGE_URL "https://github.com/Seagate/nx-lyve-cloud-plugin"
LANGUAGES CXX
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/settings/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ std::string Plugin::manifestString() const
instanceId() + R"json(",
"name": "Lyve Cloud Backup Storage",
"description": "Connect a cloud storage container as a backup location.",
"version": "0.2.0",
"version": "0.2.1",
"vendor": "Seagate Technology",
"engineSettingsModel": )json" +
kEngineSettingsModel + R"json(
Expand Down
Loading