v1.2.0 - Katana
[v1.2.0] - Katana - 7/27/2026
Changed
- APOC local file permissions now use separate import and export toggles.
Added distinct APOC security controls for local file reads and writes so
operators can allow import/load procedures without implicitly allowing export
sinks, or vice versa.allow_file_accessremains supported as a legacy
shorthand that enables both directions, while the preferred configuration is
allow_import_file_accessplusallow_export_file_access. The APOC config
docs, environment-variable reference, and sample YAML now reflect the split
settings and the Neo4j-stylefile_access_rootbehavior. - The UI dependency graph now pins a patched React Router core release.
The UI now overrides the transitivereact-routerdependency to the patched
8.3.0line whilereact-router-domremains on its current published
release. This clears the known vulnerable router core without requiring a
breaking application-level routing refactor.
Fixed
-
Authentication is now enabled by default, and omitted YAML auth settings no
longer downgrade the secure default.
New default deployments now require authentication unless it is explicitly
disabled. Configuration loading also preserves the secure default when
auth.enabledis omitted from YAML, while still honoring explicittrueand
falsevalues and the final CLI override path. -
APOC local file reads now honor explicit security gates and a rooted
import/export directory policy.
apoc.load.json,apoc.load.jsonArray,apoc.load.csv, and
apoc.import.jsonpreviously accepted caller-controlled local file paths and
opened them directly. Local APOC reads are now denied by default, validate
file:URL shape, and whenfile_access_rootis configured, normalize and
rebase local file paths under that root to prevent absolute-path and
traversal-based file disclosure. -
APOC export procedures no longer write directly to arbitrary caller-supplied
paths.
apoc.export.json.all,apoc.export.json.query,apoc.export.csv.all, and
apoc.export.csv.querynow route local file destinations through the same
validated path-resolution policy as APOC imports. This closes arbitrary local
file write and traversal paths by requiring explicit export file access and,
when configured, constraining writes to the configuredfile_access_root. -
APOC file-access root configuration now loads independently of the legacy
combined file-access flag.
NORNICDB_APOC_SECURITY_FILE_ACCESS_ROOTwas previously only honored when
the combinedALLOW_FILE_ACCESSenv var was also set. The root path now
loads independently from environment variables and YAML, so deployments can
preconfigure a restricted local-file root without relying on legacy flag
ordering.
Full Changelog: v1.1.12...v1.2.0