Skip to content

Releases: pgRouting/pgrouting

v3.6.2

30 Mar 21:08
24d25b3
Compare
Choose a tag to compare

pgRouting 3.6.2 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.6.2

Upgrade fix

  • The upgrade was failing for same minor

Code fixes

  • Fix warnings from cpplint

Others

  • Adjust NEWS generator
    • Name change to NEWS.md for better visualization on GitHub

Attachments

File Contents
doc-v3.6.2-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.6.2-en.tar.gz English documentation. Redirection to English
doc-v3.6.2-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.6.2.tar.gz tar.gz of the release
pgrouting-3.6.2.zip zip of the release

v3.6.1

29 Nov 13:16
Compare
Choose a tag to compare

pgRouting 3.6.1 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.6.1

Issue fixes

  • #2588 pgrouting 3.6.0 fails to build on OSX

Attachments

File Contents
doc-v3.6.1-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.6.1-en.tar.gz English documentation. Redirection to English
doc-v3.6.1-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.6.1.tar.gz tar.gz of the release
pgrouting-3.6.1.zip zip of the release

v3.6.0

24 Nov 09:31
Compare
Choose a tag to compare

pgRouting 3.6.0 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.6.0

Official functions changes

  • #2516 Standarize output pgr_aStar

    • Standarizing output columns to (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)
      • pgr_aStar (One to One) added start_vid and end_vid columns.
      • pgr_aStar (One to Many) added end_vid column.
      • pgr_aStar (Many to One) added start_vid column.
  • #2523 Standarize output pgr_bdAstar

    • Standarizing output columns to (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)

      • pgr_bdAstar (One to One) added start_vid and end_vid columns.
      • pgr_bdAstar (One to Many) added end_vid column.
      • pgr_bdAstar (Many to One) added start_vid column.
  • #2547 Standarize output and modifying signature pgr_KSP

    • Result columns standarized to: (seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)

    • pgr_ksp (One to One)

      • Added start_vid and end_vid result columns.
    • New overload functions:

      • pgr_ksp (One to Many)
      • pgr_ksp (Many to One)
      • pgr_ksp (Many to Many)
      • pgr_ksp (Combinations)
  • #2548 Standarize output pgr_drivingdistance

    • Standarizing output columns to (seq, depth, start_vid, pred, node, edge, cost, agg_cost)

      • pgr_drivingdistance (Single vertex)

        • Added depth and start_vid result columns.
      • pgr_drivingdistance (Multiple vertices)

        • Result column name change: from_v to start_vid.
        • Added depth and pred result columns.

Proposed functions changes

  • #2544 Standarize output and modifying signature pgr_withPointsDD

    • Signature change: driving_side parameter changed from named optional to unnamed compulsory driving side.
      • pgr_withPointsDD (Single vertex)
      • pgr_withPointsDD (Multiple vertices)
    • Standarizing output columns to (seq, depth, start_vid, pred, node, edge, cost, agg_cost)
      • pgr_withPointsDD (Single vertex)
        • Added depth, pred and start_vid column.
      • pgr_withPointsDD (Multiple vertices)
        • Added depth, pred columns.
    • When details is false:
      • Only points that are visited are removed, that is, points reached within the distance are included
    • Deprecated signatures
      • pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean)
      • pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean)
  • #2546 Standarize output and modifying signature pgr_withPointsKSP

    • Standarizing output columns to (seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)

    • pgr_withPointsKSP (One to One)

      • Signature change: driving_side parameter changed from named optional to unnamed compulsory driving side.
      • Added start_vid and end_vid result columns.
    • New overload functions

      • pgr_withPointsKSP (One to Many)
      • pgr_withPointsKSP (Many to One)
      • pgr_withPointsKSP (Many to Many)
      • pgr_withPointsKSP (Combinations)
    • Deprecated signature

      • pgr_withpointsksp(text,text,bigint,bigint,integer,boolean,boolean,char,boolean)

C/C++ code enhancements

  • #2504 To C++ pg data get, fetch and check.
    • Stopping support for compilation with MSVC.
  • #2505 Using namespace.
  • #2512 [Dijkstra] Removing duplicate code on Dijkstra.
  • #2517 Astar code simplification.
  • #2521 Dijkstra code simplification.
  • #2522 bdAstar code simplification.

Documentation

  • #2490 Automatic page history links.

SQL standarization

  • #2555 standarize deprecated messages
  • On new internal function: do not use named parameters and default parameters.

Attachments

File Contents
doc-v3.6.0-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.6.0-en.tar.gz English documentation. Redirection to English
doc-v3.6.0-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.6.0.tar.gz tar.gz of the release
pgrouting-3.6.0.zip zip of the release

v3.5.1

27 Sep 10:13
Compare
Choose a tag to compare

pgRouting 3.5.1 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.5.1

Documentation fixes

Changes on the documentation to the following:

  • pgr_degree
  • pgr_dijkstra
  • pgr_ksp
  • Automatic page history links
    • using bootstrap_version 2 because 3+ does not do dropdowns

Issue fixes

  • #2565: pgr_pgr_lengauerTarjanDominatorTree triggers an assertion

SQL enhancements

  • #2561: Not use wildcards on SQL

pgtap tests

  • #2559: pgtap test using sampledata

Build fixes

  • Fix winnie build

Code fixes

  • Fix clang warnings

    • Grouping headers of postgres readers

Attachments

File Contents
doc-v3.5.1-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.5.1-en.tar.gz English documentation. Redirection to English
doc-v3.5.1-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.5.1.tar.gz tar.gz of the release
pgrouting-3.5.1.zip zip of the release

v3.5.0

08 Mar 04:50
Compare
Choose a tag to compare

pgRouting 3.5.0 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.5.0

Official functions changes

  • Dijkstra

    • Standarizing output columns to |short-generic-result|

      • pgr_dijkstra (One to One) added start_vid and end_vid columns.
      • pgr_dijkstra (One to Many) added end_vid column.
      • pgr_dijkstra (Many to One) added start_vid column.

Attachments

File Contents
doc-v3.5.0-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.5.0-en.tar.gz English documentation. Redirection to English
doc-v3.5.0-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.5.0.tar.gz tar.gz of the release
pgrouting-3.5.0.zip zip of the release

v3.4.2

03 Dec 04:43
Compare
Choose a tag to compare

pgRouting 3.4.2 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.4.2

Issue fixes

  • #2394: pgr_bdAstar accumulates heuristic cost in visited node cost.
  • #2427: pgr_createVerticesTable & pgr_createTopology, variable should be of type Record.

Attachments

File Contents
doc-v3.4.2-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.4.2-en.tar.gz English documentation. Redirection to English
doc-v3.4.2-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.4.2.tar.gz tar.gz of the release
pgrouting-3.4.2.zip zip of the release

v3.4.1

11 Oct 18:41
Compare
Choose a tag to compare

pgRouting 3.4.1 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.4.1

Issue fixes

  • #2401: pgRouting 3.4.0 do not build docs when sphinx is too low or missing
  • #2398: v3.4.0 does not upgrade from 3.3.3

v3.3.5

11 Oct 18:40
Compare
Choose a tag to compare

pgRouting 3.3.5 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.3.5

  • #2401: pgRouting 3.4.0 do not build docs when sphinx is too low or missing

v3.3.4

11 Oct 18:38
Compare
Choose a tag to compare

pgRouting 3.3.4 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.3.4

Issue fixes

  • #2400: pgRouting 3.3.3 does not build in focal

v3.4.0

06 Oct 16:28
Compare
Choose a tag to compare

pgRouting 3.4.0 Release Notes

To see all issues & pull requests closed by this release see the Git closed milestone for 3.4.0

Issue fixes

  • #1891: pgr_ksp doesn't give all correct shortest path

New proposed functions

  • With points

    • pgr_withPointsVia (One Via)
  • Turn Restrictions

    • Via with turn restrictions

      • pgr_trspVia (One Via)
      • pgr_trspVia_withPoints (One Via)
    • pgr_trsp

      • pgr_trsp (One to One)
      • pgr_trsp (One to Many)
      • pgr_trsp (Many to One)
      • pgr_trsp (Many to Many)
      • pgr_trsp (Combinations)
    • pgr_trsp_withPoints

      • pgr_trsp_withPoints (One to One)
      • pgr_trsp_withPoints (One to Many)
      • pgr_trsp_withPoints (Many to One)
      • pgr_trsp_withPoints (Many to Many)
      • pgr_trsp_withPoints (Combinations)
  • Topology

    • pgr_degree
  • Utilities

    • pgr_findCloseEdges (One point)
    • pgr_findCloseEdges (Many points)

New experimental functions

  • Ordering

    • pgr_cuthillMckeeOrdering
  • Unclassified

    • pgr_hawickCircuits

Official functions changes

  • Flow functions

    • pgr_maxCardinalityMatch(text)

      • Deprecating pgr_maxCardinalityMatch(text,boolean)

Deprecated functions

  • Turn Restrictions

    • pgr_trsp(text,integer,integer,boolean,boolean,text)
    • pgr_trsp(text,integer,float8,integer,float8,boolean,boolean,text)
    • pgr_trspViaVertices(text,anyarray,boolean,boolean,text)
    • pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text)

Attachments

File Contents
doc-v3.4.0-en-es.tar.gz English and Spanish documentation. Redirection to English
doc-v3.4.0-en.tar.gz English documentation. Redirection to English
doc-v3.4.0-es.tar.gz Spanish documentation. Redirection to Spanish
pgrouting-3.4.0.tar.gz tar.gz of the release
pgrouting-3.4.0.zip zip of the release