Skip to content

Commit 4a94ded

Browse files
author
karel26
committed
BUGFIX:
- Added "server" to the dostring_in schema
1 parent 5e2beeb commit 4a94ded

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ NODENAME: # this will usually be your hostname
372372
allow_dostring_in: # as of DCS 2.9.18: allow dostring_in only targeting these contexts
373373
- scripting
374374
- config
375+
- server
375376
- mission
376377
- gui
377378
- export

requirements.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ audioop-lts==0.2.1; python_version>='3.13'
1111
aiohttp==3.12.13
1212

1313
# Certifi: Python package for providing Mozilla's CA Bundle
14-
certifi==2025.6.15
14+
certifi==2025.7.14
1515

1616
# Croniter: Python iterator implementing a cron schedule format
1717
croniter==6.0.0
@@ -23,7 +23,7 @@ discord.py==2.4.0
2323
eyeD3==0.9.8
2424

2525
# FastAPI: A modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints
26-
fastapi==0.115.13
26+
fastapi==0.116.1
2727

2828
# FuzzyWuzzy: Python library that uses Levenshtein Distance to calculate the differences between strings
2929
fuzzywuzzy==0.18.0
@@ -32,7 +32,7 @@ fuzzywuzzy==0.18.0
3232
GitPython==3.1.44
3333

3434
# jsonschema: An implementation of JSON Schema for Python
35-
jsonschema==4.24.0
35+
jsonschema==4.25.0
3636

3737
# Fast LUA parser
3838
lupa==2.5
@@ -53,7 +53,7 @@ numpy>=2.2.6
5353
openpyxl==3.1.5
5454

5555
# Pandas: Python data analysis library
56-
pandas==2.3.0
56+
pandas==2.3.1
5757

5858
# Packaging: A core package providing support for PEP 440 version identifiers
5959
packaging==25.0
@@ -71,7 +71,7 @@ psycopg-pool==3.2.6
7171
psutil==7.0.0
7272

7373
# PyArrow: Python library providing high-performance tools for doing analytics on Arrow-based columnar data
74-
pyarrow==20.0.0
74+
pyarrow==21.0.0
7575

7676
# pyKwalify: A Python library for YAML/JSON schema validation
7777
pykwalify==1.8.0
@@ -83,7 +83,7 @@ python-Levenshtein==0.27.1
8383
python-multipart==0.0.20
8484

8585
# Pywin32: Set of Python extensions for MS Windows
86-
pywin32==310; sys_platform == 'win32'
86+
pywin32==311; sys_platform == 'win32'
8787

8888
# Requests: Python HTTP library
8989
requests==2.32.4
@@ -101,7 +101,7 @@ seaborn==0.13.2
101101
sqlparse==0.5.3
102102

103103
# TimetoneFinder: Find the right timezones for a given coordinate
104-
timezonefinder==6.5.9
104+
timezonefinder>=6.5.9
105105

106106
# tomli: Python TOML parser
107107
tomli==2.2.1
@@ -111,9 +111,10 @@ tomli_w==1.2.0
111111
trueskill==0.4.5
112112

113113
# Uvicorn: ASGI server implemented using asyncio and uvloop
114-
uvicorn==0.34.3
114+
uvicorn==0.35.0
115115

116116
# Watchdog: API library and shell utilities to monitor file system events
117117
watchdog==6.0.0
118118

119+
# wxPython: GUI library to build Windows-like UI components
119120
wxpython==4.2.3

schemas/nodes_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ mapping:
5555
type: seq
5656
nullable: false
5757
sequence:
58-
- {type: str, nullable: false, unique: true, enum: ['scripting', 'config', 'mission', 'gui', 'export']}
58+
- {type: str, nullable: false, unique: true, enum: ['server', 'scripting', 'config', 'mission', 'gui', 'export']}
5959
extensions:
6060
include: 'node_extensions_schema'
6161
instances:

0 commit comments

Comments
 (0)