This is an automated email from the ASF dual-hosted git repository.
dahn pushed a change to branch healthcheck-main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
omit 98acbcc7d87 4.23/main Health Check, please don't merge this!
add 124fcde59c4 unlink an ldap domain (#11962)
add 2ac2e5ba33f Github Action: Add action to auto close issues/PRs after a
certain time (#8667)
add 10d76d3384a Bump cs.aws.sdk.version from 1.12.439 to 1.12.795 (#12267)
add e21aacf5bea Bump `actions/cache` to `v5` (#12247)
add 91376c79945 cleanup LDAP code according to warnings (#11436)
add 28820f6e253 Bump org.influxdb:influxdb-java from 2.22 to 2.25 (#12270)
add bb5da0e49cf security groups: conntrack only if needed (#10594)
add 051507adbe1 4.23/main Health Check, please don't merge this!
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (98acbcc7d87)
\
N -- N -- N refs/heads/healthcheck-main (051507adbe1)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/main-sonar-check.yml | 4 +-
.github/workflows/pre-commit.yml | 2 +-
.github/workflows/sonar-check.yml | 4 +-
.github/workflows/stale.yml | 41 ++++
plugins/user-authenticators/ldap/pom.xml | 6 +
.../api/command/LdapAddConfigurationCmd.java | 2 +-
.../api/command/LdapCreateAccountCmd.java | 13 +-
.../api/command/LdapDeleteConfigurationCmd.java | 4 +-
.../cloudstack/api/command/LdapImportUsersCmd.java | 31 ++-
.../api/command/LdapListConfigurationCmd.java | 16 +-
.../cloudstack/api/command/LdapListUsersCmd.java | 112 +++-------
.../cloudstack/api/command/LdapUserSearchCmd.java | 4 +-
.../api/command/LinkAccountToLdapCmd.java | 14 +-
.../api/command/LinkDomainToLdapCmd.java | 14 +-
.../api/command/UnlinkDomainFromLdapCmd.java | 69 ++++++
.../api/response/LinkAccountToLdapResponse.java | 4 +
.../cloudstack/ldap/ADLdapUserManagerImpl.java | 6 +-
.../apache/cloudstack/ldap/LdapAuthenticator.java | 27 +--
.../apache/cloudstack/ldap/LdapConfiguration.java | 88 ++++----
.../apache/cloudstack/ldap/LdapContextFactory.java | 14 +-
.../org/apache/cloudstack/ldap/LdapManager.java | 7 +-
.../apache/cloudstack/ldap/LdapManagerImpl.java | 155 +++++++-------
.../org/apache/cloudstack/ldap/LdapTrustMapVO.java | 4 +-
.../java/org/apache/cloudstack/ldap/LdapUser.java | 2 +-
.../apache/cloudstack/ldap/LdapUserManager.java | 18 +-
.../cloudstack/ldap/OpenLdapUserManagerImpl.java | 34 +--
.../cloudstack/ldap/dao/LdapConfigurationDao.java | 6 +-
.../ldap/dao/LdapConfigurationDaoImpl.java | 6 -
.../api/command/LdapListUsersCmdTest.java | 4 +-
.../api/command/LinkAccountToLdapCmdTest.java | 1 +
.../cloudstack/ldap/ADLdapUserManagerImplTest.java | 44 ++--
pom.xml | 4 +-
scripts/vm/network/security_group.py | 232 +++++++++++++--------
ui/public/locales/en.json | 2 +
ui/src/config/section/domain.js | 16 +-
35 files changed, 580 insertions(+), 430 deletions(-)
create mode 100644 .github/workflows/stale.yml
create mode 100644
plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/api/command/UnlinkDomainFromLdapCmd.java