Skip to content

Add SIARD 2.2 validation support#628

Draft
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-siard-2-2-validation
Draft

Add SIARD 2.2 validation support#628
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-siard-2-2-validation

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 9, 2026

SIARD 2.2 files could not be validated in the UI despite the underlying SIARD 2 module already supporting them. Users received an error stating only version 2.1 was supported.

Changes

  • ValidationNavigationPanel.java: Extended version check to accept both SIARD_V21 and SIARD_V22
  • SIARDController.java: Added SIARD_V22 to the siard-2 import module factory mapping
  • i18n messages: Updated error message in all 6 language files to reflect support for versions 2.1 and 2.2
// Before
if (database.getVersion().equals(ViewerConstants.SIARD_V21)) {

// After
if (database.getVersion().equals(ViewerConstants.SIARD_V21)
    || database.getVersion().equals(ViewerConstants.SIARD_V22)) {

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • dl.google.com
    • Triggering command: /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java -jar /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/xml/tools/xml-extractor.jar --fileList=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/working/files-to-index13600092797170994692.list --sourceArchiveDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/src --outputDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/trap/java (dns block)
  • java.sun.com
    • Triggering command: /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java -jar /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/xml/tools/xml-extractor.jar --fileList=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/working/files-to-index13600092797170994692.list --sourceArchiveDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/src --outputDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/trap/java (dns block)
  • www.puppycrawl.com
    • Triggering command: /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/tools/linux64/java/bin/java -jar /opt/hostedtoolcache/CodeQL/2.25.1/x64/codeql/xml/tools/xml-extractor.jar --fileList=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/working/files-to-index13600092797170994692.list --sourceArchiveDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/src --outputDir=/tmp/codeql-scratch-bdf55c41eda725a5/dbs/java/trap/java (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI linked an issue Apr 9, 2026 that may be closed by this pull request
Agent-Logs-Url: https://github.com/keeps/dbptk-ui/sessions/3b348422-2eca-4b14-bcbc-8c64bb077310

Co-authored-by: hmiguim <1252710+hmiguim@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix UI validation issue for SIARD version 2.2 Add SIARD 2.2 validation support Apr 9, 2026
Copilot AI requested a review from hmiguim April 9, 2026 12:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

UI - cannot validate SIARD 2.2

2 participants