codeql-development-mcp-server 2.25.1 → 2.25.2-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ ---
2
+ lockVersion: 1.0.0
3
+ dependencies:
4
+ codeql/concepts:
5
+ version: 0.0.20
6
+ codeql/controlflow:
7
+ version: 2.0.30
8
+ codeql/dataflow:
9
+ version: 2.1.2
10
+ codeql/mad:
11
+ version: 1.0.46
12
+ codeql/regex:
13
+ version: 1.0.46
14
+ codeql/rust-all:
15
+ version: 0.2.10
16
+ codeql/ssa:
17
+ version: 2.0.22
18
+ codeql/threat-models:
19
+ version: 1.0.46
20
+ codeql/tutorial:
21
+ version: 1.0.46
22
+ codeql/typeinference:
23
+ version: 0.0.27
24
+ codeql/typetracking:
25
+ version: 2.0.30
26
+ codeql/util:
27
+ version: 2.0.33
28
+ compiled: false
@@ -0,0 +1,6 @@
1
+ name: advanced-security/ql-mcp-rust-tools-src
2
+ version: 2.25.2-rc1
3
+ description: 'Queries for codeql-development-mcp-server tools for rust language'
4
+ library: false
5
+ dependencies:
6
+ codeql/rust-all: 0.2.10
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-swift-tools-src
2
- version: 2.25.1
2
+ version: 2.25.2-rc1
3
3
  description: 'Queries for codeql-development-mcp-server tools for swift language'
4
4
  library: false
5
5
  dependencies:
@@ -31,7 +31,7 @@ Install CodeQL pack dependencies for bundled tool query packs.
31
31
 
32
32
  OPTIONS:
33
33
  --language <lang> Install packs only for the specified language
34
- Valid values: actions, cpp, csharp, go, java, javascript, python, ruby, swift
34
+ Valid values: actions, cpp, csharp, go, java, javascript, python, ruby, rust, swift
35
35
  -h, --help Show this help message
36
36
 
37
37
  By default, installs pack dependencies for all supported languages.
@@ -62,7 +62,7 @@ while [[ $# -gt 0 ]]; do
62
62
  done
63
63
 
64
64
  ## Validate language if provided
65
- VALID_LANGUAGES=("actions" "cpp" "csharp" "go" "java" "javascript" "python" "ruby" "swift")
65
+ VALID_LANGUAGES=("actions" "cpp" "csharp" "go" "java" "javascript" "python" "ruby" "rust" "swift")
66
66
  if [ -n "${LANGUAGE}" ]; then
67
67
  LANGUAGE_VALID=false
68
68
  for valid_lang in "${VALID_LANGUAGES[@]}"; do