-
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.
* Update project to latest tag sacer-jboss-10.3.0 * Update SNAPSHOT version * [maven-release-plugin] prepare release sacer-jboss-10.3.0 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: parerworker <DevPARER@regione.emilia-romagna.it> Co-authored-by: GitHub Actions <actions@github.com>
- Loading branch information
1 parent
dca7646
commit b610f37
Showing
95 changed files
with
3,015 additions
and
502 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
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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
## 10.2.1 (18-09-2024) | ||
## 10.3.0 (11-11-2024) | ||
|
||
### Bugfix: 4 | ||
- [#34039](https://parermine.regione.emilia-romagna.it/issues/34039) Correzione job evasione richieste restituzione archivio | ||
- [#34023](https://parermine.regione.emilia-romagna.it/issues/34023) Correzione dell'errore nel salvataggio del periodo di validità di un tipo fascicolo quando si modifica un parametro | ||
- [#33957](https://parermine.regione.emilia-romagna.it/issues/33957) Correzione in fase di eliminazione file e/o directory temporenee nei casi di servizi recupero e monitoraggio | ||
- [#33851](https://parermine.regione.emilia-romagna.it/issues/33851) Importazione parametri struttura: Import tipo fascicolo errore su ambiente diverso dall'export | ||
### Bugfix: 2 | ||
- [#34366](https://parermine.regione.emilia-romagna.it/issues/34366) Correzione controllo esistenza password nulla nel servizi di recupero | ||
- [#34301](https://parermine.regione.emilia-romagna.it/issues/34301) Correzione della chiamata al parametro TIMEOUT_CALCOLO_SERVIZI_EROGATI | ||
|
||
### Novità: 12 | ||
- [#34489](https://parermine.regione.emilia-romagna.it/issues/34489) Sostituzione partizionamenti by_list e subpartizionamenti by_list con partizionamenti automatici - tabelle ARO_CNTENUTO_COMP | ||
- [#34433](https://parermine.regione.emilia-romagna.it/issues/34433) Sostituzione partizionamenti by_range in sacer_LOG con partizionamenti automatici con interval | ||
- [#34321](https://parermine.regione.emilia-romagna.it/issues/34321) Sostituzione partizionamenti by_list/by_range in partizionamenti automatici - tabelle SERIE | ||
- [#33897](https://parermine.regione.emilia-romagna.it/issues/33897) Eliminazione controllo LOGINNAME/PASSWORD nella chiamata ai servizi di recupero con certificato | ||
- [#32722](https://parermine.regione.emilia-romagna.it/issues/32722) Modifiche al monitoraggio Riepilogo versamenti fascicoli | ||
- [#32535](https://parermine.regione.emilia-romagna.it/issues/32535) Aggiornamento delle logiche di creazione della richiesta di restituzione archivio. | ||
- [#32490](https://parermine.regione.emilia-romagna.it/issues/32490) Riduzione tempi di apertura della pagina di dettaglio della richiesta di estrazione | ||
- [#31668](https://parermine.regione.emilia-romagna.it/issues/31668) Visualizzazione dei dati relativi alle sessioni errate e fallite cancellate | ||
- [#30400](https://parermine.regione.emilia-romagna.it/issues/30400) Salvataggio diretto su object storage dell'indice AIP delle serie | ||
- [#27019](https://parermine.regione.emilia-romagna.it/issues/27019) Ridimensionamento di tutte le colonne che contengono esiti di errore. | ||
- [#23686](https://parermine.regione.emilia-romagna.it/issues/23686) Visualizzazione chiave normalizzata fascicolo | ||
- [#15967](https://parermine.regione.emilia-romagna.it/issues/15967) Attivazione della firma Xades e XadesT |
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,58 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<actions> | ||
<action> | ||
<actionName>test.single</actionName> | ||
<packagings> | ||
<packaging>*</packaging> | ||
</packagings> | ||
<goals> | ||
<goal>test-compile</goal> | ||
<goal>test</goal> | ||
</goals> | ||
<properties> | ||
<test>${packageClassName}</test> | ||
<skipTests>false</skipTests> | ||
</properties> | ||
</action> | ||
<action> | ||
<actionName>debug.test.single</actionName> | ||
<packagings> | ||
<packaging>*</packaging> | ||
</packagings> | ||
<goals> | ||
<goal>test-compile</goal> | ||
<goal>test</goal> | ||
</goals> | ||
<properties> | ||
<test>${packageClassName}</test> | ||
<forkMode>once</forkMode> | ||
<maven.surefire.debug>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</maven.surefire.debug> | ||
<jpda.listen>true</jpda.listen> | ||
<skipTests>false</skipTests> | ||
</properties> | ||
</action> | ||
<action> | ||
<actionName>CUSTOM-build skipTests</actionName> | ||
<displayName>build skipTests</displayName> | ||
<goals> | ||
<goal>clean</goal> | ||
<goal>package</goal> | ||
</goals> | ||
<properties> | ||
<skipTests>true</skipTests> | ||
</properties> | ||
</action> | ||
<action> | ||
<actionName>rebuild</actionName> | ||
<packagings> | ||
<packaging>*</packaging> | ||
</packagings> | ||
<goals> | ||
<goal>clean</goal> | ||
<goal>install</goal> | ||
</goals> | ||
<activatedProfiles> | ||
<activatedProfile>dev</activatedProfile> | ||
</activatedProfiles> | ||
</action> | ||
</actions> |
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
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
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
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
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
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.