refs #6428 change file
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-05-14 08:30:22 +02:00
parent a8299383b9
commit ebcf8e2927
2 changed files with 34 additions and 92 deletions

View File

@ -1,95 +1,3 @@
# Version XX.XX - XXXX-XX-XX (TEXTO DE PRUEBA CREADO APARTIR DE DEV → TEST)
### Added 🆕
- feat: #7130 added "served" field to RouteList table(Salix). by:Jon
- feat(binlog): refs #4409 New function for binlog queue monitoring by:Juan Ferrer Toribio
- feat: bloquear facturas recibidas contabilizadas refs #7173 by:Carlos Andrés
- feat: commit by:pablone
- feat(delay): refs #6005 add new restriction by:pablone
- feat(git): add commit lint refs #6130 by:pablone
- feat(git): add commit lint refs#6130 by:pablone
- feat(githook) add reference by:pablone
- feat(noSpam): refs #6005 check if exists a previous notification by:pablone
- feat(notify): refs #6005 add restriction on created notification time by:pablone
- feat(operator.spec): refs #6005 add spec for delay and fix spec for spam by:pablone
- feat: permissions to vn.entry.isBooked refs#6724 by:Carlos Andrés
- feat: refs #12 peter by:pablone
- feat: refs #6005 move logic from report to hook by:pablone
- feat: refs #6005 mover sql a la ultima carpeta by:pablone
- feat: refs #6021 fix proc by:pablone
- feat: refs #6021 order_put refactor by:pablone
- feat: refs #6130 add commit by:pablone
- feat: refs #6130 handle branch without task by:pablone
- feat: refs #6130 test commitLint (6130-commitLint) by:alexm
- feat: refs #6500 by:robert
- feat: refs #6500 cambios solicitados by:robert
- feat: refs #6500 delete procedure by:robert
- feat: refs #6500 procRefactor8 by:robert
- feat: refs #6724 Added admon acl to vn-check by:guillermo
- feat: refs #6724 Grant changes by:guillermo
- feat: refs #6724 hook added by:jorgep
- feat: refs #6938 add scope & acls by:jorgep
- feat: refs #6968 Changed groupingMode to enum by:guillermo
- feat: refs #6968 Requested changes by:guillermo
- feat: refs #6968 Transactioned and isTriggerDisabled by:guillermo
- feat: refs #7173 Added restrictions in invoiceIn structure by:guillermo
- feat: refs #7173 Added traduction by:guillermo
- feat(salix): refs #6930 Undo rollback salix-back by:Javier Segarra
- feat(salix): refs #6930 Undo rollback salix-front by:Javier Segarra
- feat: sin concatenar en el nombre by:jgallego
- feat(spec): refs #6005 add spec by:pablone
- feat(spec): refs #6005 add spec to backup Notify by:pablone
- feat: test by:pablone
- refs #7190 feat: renewToken for multimedia by:Javier Segarra
### Changed 📦
- feat: refs #6021 order_put refactor by:pablone
- refactor(main-labeler): refs #6005 refactor de mainLabeler a backupPrinterFk by:pablone
- refactor(printer-notification): refs #6005 refactor de la notificación by:pablone
- refactor: refs #6005 delay on productionConfig by:pablone
- refactor: refs #6005 move the logic to the report by:pablone
- refactor: refs #6005 refactor spec by:pablone
- refactor: refs #6724 Minor change by:guillermo
- refactor: refs #7139 replace warehouse with ticket by:Jon
- refactor: refs #7181 Added grant by:guillermo
- refactor: refs #7181 Minor change by:guillermo
- refactor: refs #7181 Requested changes by:guillermo
- refactor: refs #7181 vn2008.Deleted risk_vs_client_list by:guillermo
### Fixed 🛠️
- feat(operator.spec): refs #6005 add spec for delay and fix spec for spam by:pablone
- feat: refs #6021 fix proc by:pablone
- fix(binlog): refs #4409 Fixtures for binlogQueue by:Juan Ferrer Toribio
- fix(changes): refs #6005 remove changes files by:pablone
- fix(claim): remove blank space refs #6130 by:pablone
- fix commit code by:pablone
- fix: husky by:alexm
- fix(notification): refs #6005 notification changes by:pablone
- fix: refs #6005 add fixtures for a spec by:pablone
- fix: refs #6005 move logic to hook by:pablone
- fix: refs #6021 catalogue_findById by:pablone
- fix: refs #6021 proc by:pablone
- fix: refs #6130 code by:pablone
- fix:refs #6130 code by:pablone
- fix: refs #6130 code:code by:pablone
- fix: refs #6130 code remove console.log by:pablone
- fix: refs #6130 test by:pablone
- fix: refs #6938 acls & scope by:jorgep
- fix: refs #6938 e2e tests by:jorgep
- fix: refs #6938 filters & scope by:jorgep
- fix: refs #6938 front tests by:jorgep
- fix: refs #6938 scope by:jorgep
- fix: remove logs (testHusky_deleteme) by:alexm
- fix(spec): refs #6005 backupLabeler spec by:pablone
- fix(sql): refs #6005 fix fk formation by:pablone
- fix(yml): refs #6005 backUpLabeler yml fix by:pablone
- refs #6641 fix PR changes by:jcasado
- refs #6641 fix test by:jcasado
- refs #6641 test fixtures by:jcasado
- refs #6835 fix: issue by:Javier Segarra
# Changelog # Changelog

34
changelog.sh Normal file
View File

@ -0,0 +1,34 @@
features_types=(chore feat style)
changes_types=(refactor perf)
fix_types=(fix revert)
file="CHANGELOG.md"
file_tmp="temp_log.txt"
file_current_tmp="temp_current_log.txt"
setType(){
echo "### $1" >> $file_tmp
arr=("$@")
echo "" > $file_current_tmp
for i in "${arr[@]}"
do
git log --grep="$i" --oneline --no-merges --format="- %s %d by:%an" master..test >> $file_current_tmp
done
# remove duplicates
sort -o $file_current_tmp -u $file_current_tmp
cat $file_current_tmp >> $file_tmp
echo "" >> $file_tmp
# remove tmp current file
[ -e $file_current_tmp ] && rm $file_current_tmp
}
echo "# Version XX.XX - XXXX-XX-XX" >> $file_tmp
echo "" >> $file_tmp
setType "Added 🆕" "${features_types[@]}"
setType "Changed 📦" "${changes_types[@]}"
setType "Fixed 🛠️" "${fix_types[@]}"
cat $file >> $file_tmp
mv $file_tmp $file