diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fde62bb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,32 @@ + +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and follows the requirements of the [Nextcloud Appstore Metadata specification](https://nextcloudappstore.readthedocs.io/en/latest/developer.html#changelog). + + + +## [Unreleased] + +## 1.0.0 - 2026-03-30 + +💝 **SUPPORT PROFILE FIELDS** — Built from scratch and released for free. If it saves your team time, please consider sponsoring: https://github.com/sponsors/LibreSign + +🏢 **ENTERPRISE SUPPORT** — Need custom field types or a tailored implementation? Contact us: contact@librecode.coop + +### Added +- Seven field types out of the box: text, select, multiselect, date, boolean, URL, and email [#5](https://github.com/LibreCodeCoop/profile_fields/pull/5) [#14](https://github.com/LibreCodeCoop/profile_fields/pull/14) [#27](https://github.com/LibreCodeCoop/profile_fields/pull/27) [#28](https://github.com/LibreCodeCoop/profile_fields/pull/28) [#29](https://github.com/LibreCodeCoop/profile_fields/pull/29) [#30](https://github.com/LibreCodeCoop/profile_fields/pull/30) [#31](https://github.com/LibreCodeCoop/profile_fields/pull/31) +- Per-field edit and visibility policies (admin-only, user-and-admin, visible-to-all, hidden) +- Admin field catalog and user management dialog for setting values per user [#8](https://github.com/LibreCodeCoop/profile_fields/pull/8) [#21](https://github.com/LibreCodeCoop/profile_fields/pull/21) +- Personal Settings page for self-service field updates, subject to field policies +- Nextcloud Flow integration: field-aware operator with type-specific conditions (contains, before/after, is true/false, is/is not) and five actions: log, notify admins, notify groups, Talk message, and webhook [#11](https://github.com/LibreCodeCoop/profile_fields/pull/11) +- Unified Search provider so admins can find users by any field value [#15](https://github.com/LibreCodeCoop/profile_fields/pull/15) +- OpenAPI-documented REST API with auto-generated TypeScript client +- `occ` commands for data export, import, clear, and developer reset [#5](https://github.com/LibreCodeCoop/profile_fields/pull/5) +- Transifex integration for community translations [#34](https://github.com/LibreCodeCoop/profile_fields/pull/34) + +[Unreleased]: https://github.com/LibreCodeCoop/profile_fields/compare/v1.0.0...HEAD diff --git a/appinfo/info.xml b/appinfo/info.xml index ae753d3..a1cf636 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -23,7 +23,7 @@ Developed with ❤️ by [LibreCode](https://librecode.coop). Ongoing maintenanc * [Sponsor LibreSign on GitHub (monthly recurring support is especially welcome): ![Donate using GitHub Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/LibreSign) ]]> - 0.0.1-dev + 1.0.0 agpl LibreCode ProfileFields diff --git a/package-lock.json b/package-lock.json index 2010b54..ce82a85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profile_fields", - "version": "0.0.1-dev", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "profile_fields", - "version": "0.0.1-dev", + "version": "1.0.0", "license": "AGPL-3.0-or-later", "dependencies": { "@mdi/js": "^7.4.47", diff --git a/package.json b/package.json index 9418520..c8cad58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profile_fields", - "version": "0.0.1-dev", + "version": "1.0.0", "description": "Profile fields", "license": "AGPL-3.0-or-later", "private": true,