diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dcd2c4..d4f0db1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.0.5] - 2024-11-22 + +### Added + +- Password confirmation for sensitive configuration changes. #29 + +### Changed + +- Multiple dependency upgrades. #28 + +### Fixed + +- Query parameter formatting for API requests. #31 +- Removal of stored secrets from front-end. #29 +- Encryption of stored API key. #24 + ## [1.0.4] - 2024-10-01 ### Changed @@ -42,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Upload selected Nextcloud files to configured Zulip instance. -[Unreleased]: https://github.com/nextcloud/integration_zulip/compare/v1.0.4...HEAD +[Unreleased]: https://github.com/nextcloud/integration_zulip/compare/v1.0.5...HEAD +[1.0.5]: https://github.com/nextcloud/integration_zulip/releases/tag/v1.0.5 [1.0.4]: https://github.com/nextcloud/integration_zulip/releases/tag/v1.0.4 [1.0.3]: https://github.com/nextcloud/integration_zulip/releases/tag/v1.0.3 [1.0.2]: https://github.com/nextcloud/integration_zulip/releases/tag/v1.0.2 diff --git a/appinfo/info.xml b/appinfo/info.xml index 59fb619..c5eb2dd 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ These values can be found in and copied from your Zulip account's `zuliprc` file If those settings are not configured, a link to the "Connected accounts" user settings page will be displayed when attempting to send a file to a Zulip user/topic. The context menu to send a file can be accessed by right clicking on the file/folder to be shared or selecting them and clicking on the "Actions" button. ]]> - 1.0.4 + 1.0.5 agpl Edward Ly Zulip diff --git a/package-lock.json b/package-lock.json index f03cb82..f539722 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "integration_zulip", - "version": "1.0.4", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index b79a878..78d1bfa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "integration_zulip", - "version": "1.0.4", + "version": "1.0.0", "description": "Zulip integration", "scripts": { "build": "NODE_ENV=production webpack --progress --config webpack.js",