• v1.2.0 308172a8f9

    Stable

    GiteaMirror released this 2026-01-25 08:30:57 -06:00 | 128 commits to main since this release

    📅 Originally published on GitHub: Sun, 25 Jan 2026 14:32:55 GMT
    🏷️ Git tag created: Sun, 25 Jan 2026 14:30:57 GMT

    • usage of a new format of GraphNode to manipulate in front and back:

    ⚠️ Make sure you run make migrate-prod if you want to keep your existing neo4j data (or make migrate-dev in dev mode) after pulling those changes, so that the migration can parse those in the right format.

    export type GraphNode = {
      id: string
      nodeType: string
      nodeLabel: string
      nodeProperties: NodeProperties // Domain, Ip, Individual...
      nodeSize: number
      nodeColor: string | null
      nodeIcon: keyof typeof LucideIcons | null
      nodeImage: string | null
      nodeFlag: flagColor | null
      nodeShape: NodeShape // circle, hexagonal, square, triangle
      nodeMetadata: NodeMetadata
      x: number
      y: number
      val?: number
      neighbors?: any[]
      links?: any[]
    }
    

    And proper way to store them in neo4j.

    • proper way and usage of GraphService, GraphRepository and GraphSerializer. Previous implementation was shady.
    image

    What's Changed

    Full Changelog: https://github.com/reconurge/flowsint/compare/v1.1.0...v1.2.0

    Downloads