Upgrade Guide
Modules in @deck.gl-community are independently maintained, so this page will only list occasional major changes.
Please refer the documentation of each module for detailed upgrade guides.
v9.2
@deck.gl-community/graph-layers
- Deprecation: Graph style constants are now defined using literals instead of objects
- Replace deprecated
NODE_TYPE.CIRCLEwith'circle',EDGE_TYPE.LINEwith'line'etc.
- Replace deprecated
- Deprecation:
GraphLayernow groups styling under astylesheetprop- Replace
nodeStyle/edgeStylewithstylesheet.nodesandstylesheet.edges
- Replace
- Deprecation:
graphprop onGraphLayeris being phased out. Provide graphs via thedataprop instead (supportsGraphEngine,Graph, or raw{nodes, edges}/edge arrays) and supply alayoutwhen the layer must build the engine for you. - Breaking change:
JSONLoaderonly normalizes raw JSON payloads. PassGraphinstances directly toGraphLayer.datarather than routing them through the loader.