forked from LibreSign/libresign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac10e48
commit 3092099
Showing
4 changed files
with
1,838 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# 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.0.0/), and follows the requirements of the [Nextcloud Appstore Metadata specification](https://nextcloudappstore.readthedocs.io/en/latest/developer.html#changelog). | ||
|
||
Types of changes: | ||
- *Added* for new features. | ||
- *Changed* for changes in existing functionality. | ||
- *Deprecated* for soon-to-be removed features. | ||
- *Removed* for now removed features. | ||
- *Fixed* for any bug fixes. | ||
- *Security* in case of vulnerabilities. | ||
|
||
<!-- changelog-linker --> | ||
|
||
## Unreleased | ||
|
||
### Changed | ||
|
||
- [#96] Changelog workflow, Thanks to [@vitormattos] | ||
- [#95] Changelog workflow, Thanks to [@vitormattos] | ||
- [#22] External route, Thanks to [@vinicios-gomes] | ||
|
||
## [v2.0.0] - 2021-02-25 | ||
|
||
### Added | ||
|
||
- [#91] Add CSP, Thanks to [@vitormattos] | ||
- [#90] Inserting data in the store, Thanks to [@vinicios-gomes] | ||
- [#89] Send mail when change sign request, Thanks to [@vitormattos] | ||
- [#86] Feature update improvements, Thanks to [@vitormattos] | ||
- [#85] Route to get PDF, Thanks to [@vitormattos] | ||
- [#83] Redux Struture for persistence of data, Thanks to [@vinicios-gomes] | ||
- [#82] Validate user, Thanks to [@vitormattos] | ||
- [#81] Cancel sign notification, Thanks to [@vitormattos] | ||
- [#80] Delete sign request, Thanks to [@vitormattos] | ||
- [#79] Success default page, Thanks to [@vinicios-gomes] | ||
- [#77] Show error when user already signed the file, Thanks to [@vitormattos] | ||
- [#76] error handler, Thanks to [@vitormattos] | ||
- [#74] patch sign request and move description to relation beetwen user and file, Thanks to [@vitormattos] | ||
- [#69] Now it is possible to view the pdf, Thanks to [@vinicios-gomes] | ||
- [#68] Disable button if sign sucess, show toast error if has error message, Thanks to [@vinicios-gomes] | ||
- [#67] Translated texts and change in the error toast message., Thanks to [@vinicios-gomes] | ||
- [#66] Improvement on error handling, Thanks to [@vitormattos] | ||
- [#62] Pass error message through route props, Thanks to [@vinicios-gomes] | ||
- [#59] Bump max nextloud version, Thanks to [@vitormattos] | ||
- [#57] Documentation, Thanks to [@vitormattos] | ||
- [#56] Feature notify callback, Thanks to [@vitormattos] | ||
- [#55] Feature add footer, Thanks to [@vitormattos] | ||
- [#54] Test libraries, Thanks to [@vinicios-gomes] | ||
- [#51] Route sign document, Thanks to [@vinicios-gomes] | ||
- [#50] Interaction with the api, Thanks to [@vinicios-gomes] | ||
- [#48] Rename field, Thanks to [@vitormattos] | ||
- [#47] Ident, Thanks to [@vitormattos] | ||
- [#45] Refactor rename field, Thanks to [@vitormattos] | ||
- [#41] Feature sign using uuuid, Thanks to [@vitormattos] | ||
- [#40] Return data to sign after create user, Thanks to [@vitormattos] | ||
- [#39] Feature account create, Thanks to [@vitormattos] | ||
- [#35] Feature send email, Thanks to [@vitormattos] | ||
- [#33] External route create user, Thanks to [@raw-vitor] | ||
- [#32] Webhook config front, Thanks to [@vinicios-gomes] | ||
- [#30] Feature add webhook, Thanks to [@vitormattos] | ||
- [#28] Translate, Thanks to [@vinicios-gomes] | ||
- [#27] External route, Thanks to [@vitormattos] | ||
- [#23] Mock config, Thanks to [@vitormattos] | ||
- [#21] Secutiry Policy for acessing data on an external route., Thanks to [@vinicios-gomes] | ||
- [#20] Add badge and ajust position of itens in composer.json, Thanks to [@vitormattos] | ||
- [#19] Refactor bump package, Thanks to [@vitormattos] | ||
- [#18] Add php-cs check, Thanks to [@vitormattos] | ||
- [#17] GitHub actions, Thanks to [@vitormattos] | ||
- [#16] Change to jsignpdf without java, Thanks to [@vitormattos] | ||
- [#15] Add blank page, Thanks to [@vitormattos] | ||
- [#13] php_cs, Thanks to [@vitormattos] | ||
- [#11] Refactor, Thanks to [@vitormattos] | ||
|
||
### Fixed | ||
|
||
- [#92] Fix Did not access the subscription page after creating the user and …, Thanks to [@vinicios-gomes] | ||
- [#88] Fix widthh description, Thanks to [@vinicios-gomes] | ||
- [#84] fix validate user, Thanks to [@vitormattos] | ||
- [#63] Fix invalid route, Thanks to [@vitormattos] | ||
- [#49] Fix much bugs, Thanks to [@vitormattos] | ||
- [#14] Fix admin permissions in routes., Thanks to [@vitormattos] | ||
|
||
[@vitormattos]: https://github.com/vitormattos | ||
[@vinicios-gomes]: https://github.com/vinicios-gomes | ||
[@raw-vitor]: https://github.com/raw-vitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; | ||
use Symplify\ChangelogLinker\ValueObject\ChangelogFormat; | ||
use Symplify\ChangelogLinker\ValueObject\Option; | ||
|
||
return static function (ContainerConfigurator $containerConfigurator) : void { | ||
$parameters = $containerConfigurator->parameters(); | ||
$parameters->set(Option::CHANGELOG_FORMAT, ChangelogFormat::CATEGORIES_ONLY); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.