@@ -54,6 +54,9 @@ Functions promoted to official
5454
5555** Signatures promoted to official**
5656
57+ [ #2718 ] ( https://github.com/pgRouting/pgrouting/issues/2918 )
58+ Make official the Combinations signature on the official functions
59+
5760* pgr_aStar(Combinations)
5861* pgr_aStarCost(Combinations)
5962* pgr_bdAstar(Combinations)
@@ -68,14 +71,45 @@ Functions promoted to official
6871* pgr_maxFlow(Combinations)
6972* pgr_pushRelabel(Combinations)
7073
71- SQL signatures modification on functions
74+ SQL signatures and output standardization
7275...............................................................................
7376
77+ [ #2904 ] ( https://github.com/pgRouting/pgrouting/issues/2904 )
78+ Standardize output columns of functions with different output columns within overloads
79+
80+ ** Official functions**
81+
82+ * [ #2905 ] ( https://github.com/pgRouting/pgrouting/issues/2905 )
83+ pgr_withPoints
84+
85+ * Output columns standardized to `` (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) ``
86+ * Function promoted to official.
87+ * Signature change: `` driving_side `` parameter changed from named optional to
88+ unnamed positional.
89+ - Directed graph valid values: `` l `` or `` L `` and `` r `` , `` R ``
90+ - Undirected graph valid values: `` b `` or `` B ``
91+
7492* [ #2906 ] ( https://github.com/pgRouting/pgrouting/issues/2906 ) pgr_bdDijkstra
7593
7694 * Output columns standardized to `` (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) ``
7795 * Combinations signature promoted to official.
7896
97+ ** Experimental functions**
98+
99+ * [ #2907 ] ( https://github.com/pgRouting/pgrouting/issues/2907 )
100+ pgr_bellmanFord
101+
102+ * Output columns standardized to `` (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) ``
103+
104+ * [ #2910 ] ( https://github.com/pgRouting/pgrouting/issues/2910 )
105+ pgr_edwardMoore
106+
107+ * Output columns standardized to `` (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) ``
108+
109+ * [ #2913 ] ( https://github.com/pgRouting/pgrouting/issues/2913 )
110+ pgr_DAGshortestPath
111+
112+ * Output columns standardized to `` (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) ``
79113
80114Removal of SQL deprecated signatures
81115...............................................................................
@@ -170,6 +204,10 @@ Related issues: [#2897](https://github.com/pgRouting/pgrouting/issues/2897)
170204* _ v4trsp(text,text,text,boolean)
171205* _ pgr_tspeuclidean(text,bigint,bigint,double precision,integer,integer,integer,double precision,double precision,double precision,boolean)
172206* _ pgr_tsp(text,bigint,bigint,double precision,integer,integer,integer,double precision,double precision,double precision,boolean)
207+ * [ #2913 ] ( https://github.com/pgRouting/pgrouting/issues/2913 )
208+ _ pgr_dagshortestpath(text,text,boolean,boolean)
209+ * [ #2913 ] ( https://github.com/pgRouting/pgrouting/issues/2913 )
210+ _ pgr_dagshortestpath(text,anyarray,anyarray,boolean,boolean)
173211
174212
175213* [ #2861 ] ( https://github.com/pgRouting/pgrouting/issues/2861 ) :
@@ -216,5 +254,7 @@ Code enhancements
216254* _ v4trsp(text,text,anyarray,anyarray,boolean)
217255* _ v4trsp(text,text,text,boolean)
218256* _ pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean)
257+ * [ #2913 ] ( https://github.com/pgRouting/pgrouting/issues/2913 )
258+ _ pgr_dagshortestpath
219259
220260</details >
0 commit comments