Signed-off-by: Jonas Rittershofer <jotoeri@users.noreply.github.com>
This commit is contained in:
Jonas Rittershofer 2021-07-28 10:28:57 +02:00
Родитель e6e92fc46c
Коммит 0b69bba384
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A865740F334316E0
4 изменённых файлов: 46 добавлений и 6 удалений

Просмотреть файл

@ -1,12 +1,52 @@
# Changelog
## v2.3.0 - tbd
## v2.3.0 - 2021-07-28
### Deprecated
[Full Changelog](https://github.com/nextcloud/forms/compare/v2.2.4...v2.3.0)
### Deprecated ⚠️
- Question property `mandatory` is deprecated and replaced by `isRequired`. The old property will be removed in API version 2.
[\#882](https://github.com/nextcloud/forms/pull/882) ([chartman123](https://github.com/Chartman123))
### Enhancements
- Add server-side validation of submissions
[\#895](https://github.com/nextcloud/forms/pull/895) ([Chartman123](https://github.com/Chartman123))
- Delete a deleted Users Forms
[\#856](https://github.com/nextcloud/forms/pull/856) ([jotoeri](https://github.com/jotoeri))
### Fixed
- Fix Activity Link
[\#976](https://github.com/nextcloud/forms/pull/976) ([jotoeri](https://github.com/jotoeri))
- Allow non-admins to export to files
[\#923](https://github.com/nextcloud/forms/pull/923) ([skjnldsv](https://github.com/skjnldsv))
- Fix result view for long text answers
[\#913](https://github.com/nextcloud/forms/pull/913) ([Chartman123](https://github.com/Chartman123))
- Fix boolean columns nullable
[\#881](https://github.com/nextcloud/forms/pull/881) ([jotoeri](https://github.com/jotoeri))
### Merged
- Minversion 20
[\#1021](https://github.com/nextcloud/forms/pull/1021) ([jotoeri](https://github.com/jotoeri))
- Fix phpunit typo
[\#1020](https://github.com/nextcloud/forms/pull/1020) ([jotoeri](https://github.com/jotoeri))
- Update version on master
[\#994](https://github.com/nextcloud/forms/pull/994) ([nickvergessen](https://github.com/nickvergessen))
- Update master target versions
[\#993](https://github.com/nextcloud/forms/pull/993) ([nickvergessen](https://github.com/nickvergessen))
- Bump node and npm version in package.json
[\#989](https://github.com/nextcloud/forms/pull/989) ([nickvergessen](https://github.com/nickvergessen))
- Test FormsService
[\#921](https://github.com/nextcloud/forms/pull/921) ([jotoeri](https://github.com/jotoeri))
- Some more tests
[\#893](https://github.com/nextcloud/forms/pull/893) ([jotoeri](https://github.com/jotoeri))
- Refactor Mandatory
[\#882](https://github.com/nextcloud/forms/pull/882) ([Chartman123](https://github.com/Chartman123))
## v2.2.4 - 2021-03-30
[Full Changelog](https://github.com/nextcloud/forms/compare/v2.2.3...v2.2.4)

Просмотреть файл

@ -11,7 +11,7 @@
- **🔒 Data under your control!** Unlike in Google Forms, Typeform, Doodle and others, the survey info and responses are kept private on your instance.
- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!
]]></description>
<version>2.3.0-alpha.0</version>
<version>2.3.0</version>
<licence>agpl</licence>
<author>Affan Hussain</author>

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,11 +1,11 @@
{
"name": "forms",
"version": "2.3.0-alpha.0",
"version": "2.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "2.3.0-alpha.0",
"version": "2.3.0",
"license": "AGPL-3.0",
"dependencies": {
"@nextcloud/auth": "^1.3.0",

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "forms",
"description": "Forms app for nextcloud",
"version": "2.3.0-alpha.0",
"version": "2.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/forms.git"