Skip to content

Commit 0bc0fd0

Browse files
committed
(pgr_DAGshortestPath) updating NEWS and release notes about standardization
1 parent 43cb2d9 commit 0bc0fd0

File tree

2 files changed

+35
-24
lines changed

2 files changed

+35
-24
lines changed

NEWS.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -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)
@@ -74,14 +77,8 @@ SQL signatures and output standardization
7477
[#2904](https://github.com/pgRouting/pgrouting/issues/2904)
7578
Standardize output columns of functions with different output columns within overloads
7679

77-
7880
**Official functions**
7981

80-
* [#2906](https://github.com/pgRouting/pgrouting/issues/2906) pgr_bdDijkstra
81-
82-
* Output columns standardized to ``(seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
83-
* Combinations signature promoted to official.
84-
8582
* [#2905](https://github.com/pgRouting/pgrouting/issues/2905)
8683
pgr_withPoints
8784

@@ -92,15 +89,10 @@ Standardize output columns of functions with different output columns within ove
9289
- Directed graph valid values: ``l`` or ``L`` and ``r``, ``R``
9390
- Undirected graph valid values: ``b`` or ``B``
9491

95-
* [#2905](https://github.com/pgRouting/pgrouting/issues/2905)
96-
pgr_withPointsCost
92+
* [#2906](https://github.com/pgRouting/pgrouting/issues/2906) pgr_bdDijkstra
9793

98-
* Function promoted to official.
99-
* Output columns standardized to ``(start_vid, end_vid, agg_cost)``
100-
* Signature change: ``driving_side`` parameter changed from named optional to
101-
unnamed positional.
102-
- Directed graph valid values: ``l`` or ``L`` and ``r``, ``R``
103-
- Undirected graph valid values: ``b`` or ``B``
94+
* Output columns standardized to ``(seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
95+
* Combinations signature promoted to official.
10496

10597
**Experimental functions**
10698

@@ -114,6 +106,11 @@ Standardize output columns of functions with different output columns within ove
114106

115107
* Output columns standardized to ``(seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
116108

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)``
113+
117114
Removal of SQL deprecated signatures
118115
...............................................................................
119116

@@ -207,6 +204,10 @@ Related issues: [#2897](https://github.com/pgRouting/pgrouting/issues/2897)
207204
* _v4trsp(text,text,text,boolean)
208205
* _pgr_tspeuclidean(text,bigint,bigint,double precision,integer,integer,integer,double precision,double precision,double precision,boolean)
209206
* _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)
210211

211212

212213
* [#2861](https://github.com/pgRouting/pgrouting/issues/2861):
@@ -253,5 +254,7 @@ Code enhancements
253254
* _v4trsp(text,text,anyarray,anyarray,boolean)
254255
* _v4trsp(text,text,text,boolean)
255256
* _pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean)
257+
* [#2913](https://github.com/pgRouting/pgrouting/issues/2913)
258+
_pgr_dagshortestpath
256259

257260
</details>

doc/src/release_notes.rst

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ Functions promoted to official
7575

7676
.. rubric:: Signatures promoted to official
7777

78+
`#2718 <https://github.com/pgRouting/pgrouting/issues/2918>`__
79+
Make official the Combinations signature on the official functions
80+
7881
* pgr_aStar(Combinations)
7982
* pgr_aStarCost(Combinations)
8083
* pgr_bdAstar(Combinations)
@@ -95,26 +98,18 @@ SQL signatures and output standardization
9598
`#2904 <https://github.com/pgRouting/pgrouting/issues/2904>`__
9699
Standardize output columns of functions with different output columns within overloads
97100

98-
99101
.. rubric:: Official functions
100102

101-
* `#2906 <https://github.com/pgRouting/pgrouting/issues/2906>`__ pgr_bdDijkstra
102-
103-
.. include:: pgr_bdDijkstra.rst
104-
:start-after: Version 4.0.0
105-
:end-before: .. rubric
106-
107103
* `#2905 <https://github.com/pgRouting/pgrouting/issues/2905>`__
108104
pgr_withPoints
109105

110106
.. include:: pgr_withPoints.rst
111107
:start-after: Version 4.0.0
112108
:end-before: .. rubric
113109

114-
* `#2905 <https://github.com/pgRouting/pgrouting/issues/2905>`__
115-
pgr_withPointsCost
110+
* `#2906 <https://github.com/pgRouting/pgrouting/issues/2906>`__ pgr_bdDijkstra
116111

117-
.. include:: pgr_withPointsCost.rst
112+
.. include:: pgr_bdDijkstra.rst
118113
:start-after: Version 4.0.0
119114
:end-before: .. rubric
120115

@@ -134,6 +129,13 @@ Standardize output columns of functions with different output columns within ove
134129
:start-after: Version 4.0.0
135130
:end-before: .. rubric
136131

132+
* `#2913 <https://github.com/pgRouting/pgrouting/issues/2913>`__
133+
pgr_DAGshortestPath
134+
135+
.. include:: pgr_dagShortestPath.rst
136+
:start-after: Version 4.0.0
137+
:end-before: .. rubric
138+
137139
Removal of SQL deprecated signatures
138140
...............................................................................
139141

@@ -227,6 +229,10 @@ Related issues: `#2897 <https://github.com/pgRouting/pgrouting/issues/2897>`__
227229
* _v4trsp(text,text,text,boolean)
228230
* _pgr_tspeuclidean(text,bigint,bigint,double precision,integer,integer,integer,double precision,double precision,double precision,boolean)
229231
* _pgr_tsp(text,bigint,bigint,double precision,integer,integer,integer,double precision,double precision,double precision,boolean)
232+
* `#2913 <https://github.com/pgRouting/pgrouting/issues/2913>`__
233+
_pgr_dagshortestpath(text,text,boolean,boolean)
234+
* `#2913 <https://github.com/pgRouting/pgrouting/issues/2913>`__
235+
_pgr_dagshortestpath(text,anyarray,anyarray,boolean,boolean)
230236

231237

232238
* `#2861 <https://github.com/pgRouting/pgrouting/issues/2861>`__:
@@ -273,6 +279,8 @@ Code enhancements
273279
* _v4trsp(text,text,anyarray,anyarray,boolean)
274280
* _v4trsp(text,text,text,boolean)
275281
* _pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean)
282+
* `#2913 <https://github.com/pgRouting/pgrouting/issues/2913>`__
283+
_pgr_dagshortestpath
276284

277285
pgRouting 3
278286
*******************************************************************************

0 commit comments

Comments
 (0)