This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/github_actions/github-actions-dependencies-0f13251b35
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
discard 0a226269a2a Bump the github-actions-dependencies group with 9 updates
add f820d0125de fix end of files and codespell errors
add 3166e64891f Add support for new variables to the GUI whitelabel
runtime system (#12760)
add 4df32ae79fb fix: NsxResource.executeRequest DeleteNsxNatRuleCommand
comparison bug (#12833)
add 6c1437b7ddd fix end of file schema-42200to42210.sql
add be89e6f7c37 [KVM] Reorder migration logs to prevent populating agent
logs on migrations (#12883)
add 64ac0822b43 merge conflict fixes (#13046)
add 856d83a15ee Merge branch '4.22'
add b12eaf54f26 Bump the github-actions-dependencies group across 1
directory with 9 updates
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 (0a226269a2a)
\
N -- N -- N
refs/heads/dependabot/github_actions/github-actions-dependencies-0f13251b35
(b12eaf54f26)
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/ui.yml | 2 +-
agent/conf/agent.properties | 1 -
.../resources/META-INF/db/schema-42200to42210.sql | 1 -
.../LibvirtConvertInstanceCommandWrapper.java | 2 +-
.../wrapper/LibvirtMigrateCommandWrapper.java | 10 +-
.../cloudstack/gui/theme/GuiThemeServiceImpl.java | 110 +--------------------
.../validator/JsonConfigAttributeValidator.java | 9 +-
.../json/config/validator/JsonConfigValidator.java | 76 ++++++++++++++
.../config/validator/attributes/AttributeBase.java | 72 ++++++++++++++
.../validator/attributes/ErrorAttribute.java | 35 +++----
.../validator/attributes/PluginsAttribute.java | 68 +++++++++++++
.../validator/attributes/ThemeAttribute.java | 43 ++++++++
.../validator/attributes/UserCardAttribute.java | 88 +++++++++++++++++
.../cloudstack/vm/UnmanagedVMsManagerImpl.java | 10 +-
.../core/spring-server-core-misc-context.xml | 5 +
.../cloudstack/vm/UnmanagedVMsManagerImplTest.java | 1 -
ui/src/components/view/Setting.vue | 2 +-
ui/src/utils/guiTheme.js | 27 ++++-
18 files changed, 410 insertions(+), 152 deletions(-)
copy
api/src/main/java/org/apache/cloudstack/api/IBaseListTaggedResourcesCmd.java =>
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/JsonConfigAttributeValidator.java
(75%)
create mode 100644
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/JsonConfigValidator.java
create mode 100644
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/attributes/AttributeBase.java
copy core/src/main/java/com/cloud/agent/api/CheckS2SVpnConnectionsCommand.java
=>
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/attributes/ErrorAttribute.java
(58%)
create mode 100644
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/attributes/PluginsAttribute.java
create mode 100644
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/attributes/ThemeAttribute.java
create mode 100644
server/src/main/java/org/apache/cloudstack/gui/theme/json/config/validator/attributes/UserCardAttribute.java