Skip to content

Commit

Permalink
chore(release): 26.0.0
Browse files Browse the repository at this point in the history
## [26.0.0](v25.4.3...v26.0.0) (2023-06-21)

### ⚠ BREAKING CHANGES

* **core:** The unit of the config property 'mfaAuthTimeout' has been changed from hours to minutes (for easier testing).
* new database table auto_registration_group was created, data from the old table
groups_to_register should be migrated into this new table with appropriate relation to form_item_id
* edit CoreConfig

### Features

* 🎸 add GroupManager::addAdmin for SPREGAPPLICATION ([42ae4e7](42ae4e7))
* allow embedded group form item in group applications ([b4958c6](b4958c6))
* **core:** add logback-journal appender dependency ([31e269d](31e269d))
* **core:** add PROXY role ([80bc612](80bc612))
* **core:** change response status when MFA exception is thrown ([f6f7d73](f6f7d73))
* **core:** default blocked login checker ([574782b](574782b))
* use introspection data saved in request headers for MFA ([b9c8b65](b9c8b65))

### Bug Fixes

* **core:** add member validation into Lifescience password manager upon adding a new member ([9bc7fc0](9bc7fc0))
* **core:** Do not cache LDAP ExtSource ([7da88e8](7da88e8))
* **core:** fix randomly failing test ([dba3212](dba3212))
* **core:** fixed attributes parsing for sql group structure synchronizations ([b1abc36](b1abc36))
* **core:** MFA timeout ([b67c23f](b67c23f))
* **core:** refresh principal roles more effectively ([6345ef6](6345ef6))
* **core:** reworked module for pithia project ([41548da](41548da))
* **core:** updated perunDefaultBlockedLoginChecker ([885fe38](885fe38))
* **deps:** update dependency com.google.apis:google-api-services-admin-directory to directory_v1-rev20230516-2.0.0 ([64a432c](64a432c))
* **deps:** update dependency io.swagger:swagger-annotations to v1.6.11 ([bb1434b](bb1434b))
* **deps:** update dependency org.springframework.boot:spring-boot-starter-parent to v2.7.12 ([5f5d0e9](5f5d0e9))
* **gui:** fixed cell index for showing VO stats results ([f3cf3db](f3cf3db))
* **gui:** Limit search for managers to vo/group members ([e695b20](e695b20))
  • Loading branch information
semantic-release-bot committed Jun 21, 2023
1 parent 73b2bcf commit 0f77470
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion perun-auditlogger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-auditparser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-cabinet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-cli-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-cli/Perun/Agent.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Perun::Agent;
my $agentVersion = '25.4.3';
my $agentVersion = '26.0.0';
my $agentVersionMajor;
if ($agentVersion !~ /^(\d+)(?{ $agentVersionMajor = $^N })\..*/i)
{
Expand Down
2 changes: 1 addition & 1 deletion perun-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-dispatcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion perun-ldapc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-notification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-openapi/openapi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
version: 25.4.3
version: 26.0.0
title: Perun RPC API
description: Perun Remote Procedure Calls Application Programming Interface
contact:
Expand Down
2 changes: 1 addition & 1 deletion perun-openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-registrar-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-scim/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perun-web-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>perun</artifactId>
<groupId>cz.metacentrum</groupId>
<version>25.4.3</version>
<version>26.0.0</version>
</parent>

<groupId>cz.metacentrum.perun</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- PERUN -->
<groupId>cz.metacentrum</groupId>
<artifactId>perun</artifactId>
<version>25.4.3</version>
<version>26.0.0</version>
<packaging>pom</packaging>

<!-- Spring Boot Starter Parent as parent project - this project inherits versions of dependencies and plugins -->
Expand Down

0 comments on commit 0f77470

Please sign in to comment.