Skip to content

Commit 54905a0

Browse files
authored
Advance PG17 branch to Apache AGE version 1.6.0 (#2221)
Updated the following files to advance the Apache AGE version to 1.6.0 modified: Makefile modified: README.md modified: RELEASE modified: age.control modified: docker/Dockerfile deleted: age--1.5.0--y.y.y.sql new file: age--1.6.0--y.y.y.sql
1 parent dfd1e1b commit 54905a0

File tree

7 files changed

+135
-328
lines changed

7 files changed

+135
-328
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
MODULE_big = age
1919

20-
age_sql = age--1.5.0.sql
20+
age_sql = age--1.6.0.sql
2121

2222
OBJS = src/backend/age.o \
2323
src/backend/catalog/ag_catalog.o \

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<a href="https://age.apache.org/age-manual/master/_static/logo.png" target="_blank">
1313
</a>
1414
is a leading multi-model graph database </h3>
15-
15+
1616
</h3>
1717

1818
<h3 align="center">Graph Processing & Analytics for Relational Databases</h3>
@@ -24,13 +24,13 @@
2424

2525

2626

27-
<p align="center">
27+
<p align="center">
2828
<a href="https://github.com/apache/age/blob/master/LICENSE">
2929
<img src="https://img.shields.io/github/license/apache/age"/>
3030
</a>
3131
&nbsp;
3232
<a href="https://github.com/apache/age/releases">
33-
<img src="https://img.shields.io/badge/Release-v1.5.0-FFA500?labelColor=gray&style=flat&link=https://github.com/apache/age/releases"/>
33+
<img src="https://img.shields.io/badge/Release-v1.6.0-FFA500?labelColor=gray&style=flat&link=https://github.com/apache/age/releases"/>
3434
</a>
3535
&nbsp;
3636
<a href="https://www.postgresql.org/docs/17/index.html">
@@ -154,16 +154,16 @@ Clone the <a href="https://github.com/apache/age">github repository</a> or downl
154154
</a>
155155
Run the pg_config utility and check the version of PostgreSQL. Currently, only PostgreSQL versions 11, 12, 13, 14, 15, 16 & 17 are supported. If you have any other version of Postgres, you will need to install PostgreSQL version 11, 12, 13, 14, 15, 16 & 17.
156156
<br>
157-
157+
158158
```bash
159159
pg_config
160160
```
161161
Run the following command in the source code directory of Apache AGE to build and install the extension.
162-
162+
163163
```bash
164164
make install
165165
```
166-
166+
167167
If the path to your Postgres installation is not in the PATH variable, add the path in the arguments:
168168
```bash
169169
make PG_CONFIG=/path/to/postgres/bin/pg_config install
@@ -228,14 +228,14 @@ SELECT create_graph('graph_name');
228228
To create a single vertex with label and properties, use the CREATE clause.
229229

230230
```bash
231-
SELECT *
231+
SELECT *
232232
FROM cypher('graph_name', $$
233233
CREATE (:label {property:"Node A"})
234234
$$) as (v agtype);
235235
```
236236

237237
```bash
238-
SELECT *
238+
SELECT *
239239
FROM cypher('graph_name', $$
240240
CREATE (:label {property:"Node B"})
241241
$$) as (v agtype);
@@ -244,7 +244,7 @@ $$) as (v agtype);
244244
To create an edge between two nodes and set its properties:
245245

246246
```bash
247-
SELECT *
247+
SELECT *
248248
FROM cypher('graph_name', $$
249249
MATCH (a:label), (b:label)
250250
WHERE a.property = 'Node A' AND b.property = 'Node B'

RELEASE

Lines changed: 90 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -15,65 +15,96 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
Release Notes for Apache AGE release 1.5.0 for PostgreSQL version 16
18+
#
19+
# Please note that, as Apache AGE 1.6.0 for PostgreSQL 17 is
20+
# new, there isn't an upgrade script.
21+
#
1922

20-
Apache AGE 1.5.0 - Release Notes
23+
Release Notes for Apache AGE release 1.6.0 for PG17 branch
2124

22-
NOTE: This is an initial release of Apache AGE for PostgreSQL version
23-
16. There are no upgrade scripts to this release.
25+
Apache AGE 1.6.0 - Release Notes
2426

25-
Add additional index support and performance enhancements (#1232)
26-
Add an additional way to find a previous variable ref (#1450)
27-
Add auto apply labeler workflow for PRs (#1161)
28-
Add checks for array functions to recognize and decode VPC (#1064)
29-
Add concat || operator to agtype (#1198)
30-
Add exist(?, ?|, ?&) operators for agtype (#1218)
31-
Add missing dependency in cypher_expr.c (#1256)
32-
Add path extraction(#>, #>>)operators to agtype (#1224)
33-
Add support for chained expressions in CASE (#1431)
34-
Clean up agtype_to_int8, agtype_to_int4, & agtype_to_int2 (#1354)
35-
Clean up #included files in parser directory (#1465)
36-
Converted SQL main file into multiple files. (#1401)
37-
docs: Add to Docker setup (#1204)
38-
Extend access(->, ->>), addition and subtraction operators (#1258)
39-
Extend agtype containment operators (@>, <@) (#1285)
40-
Extend EXPLAIN and add config param to switch transformation of property filter (#1262)
41-
Fix ambiguous conditions (#1373)
42-
Fix Docker file to reflect PostgreSQL version 15 (#1449)
43-
Fix DockerHub warning messages for latest (#1380)
44-
Fix issue #1045 - error using path var in WHERE (#1295)
45-
Fix Issue #1159 - Server terminates for SET plus-equal (#1160)
46-
Fix issue #1219 - MERGE not seeing previous clause var (#1441)
47-
Fix issue #1302 - crash on NULL input to UNWIND (#1304)
48-
Fix issue #1303: Server crashes on executing SELECT * FROM agtype(null); (#1317)
49-
Fix Issue #1305 - drop_label NULL cases (#1306)
50-
Fix Issue #1329 - agtype_to_int4 crash (#1339)
51-
Fix issue #1347 - unknow type of agtype container 0 (#1349)
52-
Fix issue #1389 - Server crash on using null operand for access operators (#1390)
53-
Fix issue #1393 - previous clause variables not seen with EXISTS (#1426)
54-
Fix issue #1398 - SET followed by DELETE does not delete (#1412)
55-
Fix issue #1399 EXISTS doesn't handle non-existent labels (#1400)
56-
Fix Issue #945 - incorrect count(*) return values (#1288)
57-
Fix typo in agtype_raw.h header guard (#1368)
58-
Implement chained expression order of operations (#1402)
59-
Implemented age_tail function (#1283)
60-
Implemented the toBooleanList() function (#1014)
61-
Implement EXISTS subquery for CASE (#1345)
62-
Master to PostgreSQL version 16 (#1451)
63-
Minor fix in `agtype_volatile_wrapper` function (#1172)
64-
Modify COUNT() to output agtype (#1311)
65-
Optimize performance of detach delete (#1271)
66-
Optimize vertex and edge builder functions (#1252)
67-
py_driver : optimised Antlr4ResultHandler to improve time (#1107)
68-
Refactor Regression Tests for CASE statement (#1268)
69-
Refactor the IN operator to use '= ANY()' syntax (#1236)
70-
Removed unnecessary assignment (#1185)
71-
Remove redundant job from CIs (#1473)
72-
Remove unnecessary #include in src/backend/utils
73-
Updated age.control.
74-
Updated files, format, and version information.
75-
Updated Makefile.
76-
Updated RELEASE.
77-
Update Discord channel in README.md (#1253)
78-
Update README.md file for PostgreSQL version 16 support (#1463)
79-
Update the Python Driver (#1246)
27+
Fix issue 2205: left doesn't catch overflow (#2207)
28+
Fix issue 2201: unexpected empty string behavior (#2203)
29+
Add support for operators in cypher query (#2172)
30+
Reimplement list comprehension (#2169)
31+
Update labeler.yml (#2186)
32+
Fix issue with the CI build and labeler (#2183)
33+
Fix CSV import for edge with one property (#2175)
34+
Remove stale bot and update .asf.yaml settings (#2171)
35+
Prevent object access hook from accesing not installed namespace (#2161)
36+
Fix CI build errors caused by missing dependencies (#2163)
37+
Add support for external extensions (#2088)
38+
Fix issue 2093: pfree() called with a NULL pointer (#2095)
39+
Fix issue 1955 - List comprehension in WHERE clause (#2094)
40+
Add support for fuzzystrmatch and other external extensions (#2083)
41+
Fix memory leaks in functions part 1 (#2066)
42+
Issue 1996 - Add agtype to json typecast (#2075)
43+
Fix issue 2046: Memory leak during btree(agtype) (#2060)
44+
Refactor Dockerfile to use multi-stage builds (#2004)
45+
Revamp age csv loader (#2044)
46+
Fix issue 2020: Memory leak (#2028)
47+
Fix Issue 1907: SET on MERGE not storing edge properties (#2019)
48+
Add EmitWarningsOnPlaceholders("age") (#1997)
49+
Fix Issue 1988: How to update a property which is a keyword (#2005)
50+
Fix obsolete docker-compose command in CIs (#2007)
51+
Fix issue 1986: Failure creating label name close to MAX_LABEL_NAME_LEN (#1989)
52+
Fix issue 1953 - PG Boolean used as AGTYPE object (#1959)
53+
Add graph_exists function (#1958)
54+
Fix issue 1956 - null key name passed. (#1957)
55+
docs: add link to .NET open-source driver (#1938)
56+
Add the `load_from_plugins` parameter in the Python driver to load AGE from the $libdir/plugins directory (#1935)
57+
Fix issue 1910: Server crashes when using exists(vle path) (#1924)
58+
Converted single line comments to multiline (#1908)
59+
Add function is_valid_label_name (#1911) (#1912)
60+
Fixes small typos in the python driver's README.md file (#1909)
61+
Fix agtype_build_map to allow more than 50 pairs (#1901)
62+
Agtype hash cmp (#1893)
63+
Order some regression tests for stability on big-endian (#1892)
64+
Update github stale action (#1891)
65+
Make CALL YIELD grammar more precise (#1852)
66+
Fix issue 1878 - Regression test failure with delete global graphs (#1881)
67+
Corrected typos and grammatical errors in apache-age-basic.ipynb (#879)
68+
Add workflow for stale issues and PRs (#1872)
69+
Implement Returnless Unions in Subqueries (#1803)
70+
[CI] Update docker image tags (#1865)
71+
Add branch protection rules in .asf.yaml (#1854)
72+
[CI] Update labeler github action (#1851)
73+
Fix error using list comprehension with WITH * (#1838)
74+
python driver psycopg3 (#1793)
75+
Minor VLE and agtype_eq/ne performance updates (#1808)
76+
Fix issue 1767: CREATE TABLE AS SELECT * FROM cypher, errors (#1799)
77+
Implement Constraints on Subqueries (#1751)
78+
Fix connection string in Python Driver (#1757)
79+
Added integer conversion in toBoolean functions (#1199)
80+
Update README.md (#1756)
81+
Add the command graph_stats and improve VLE messaging for load (#1750)
82+
Add helpful messages to the VLE subsystem (#1742)
83+
Update README.md (#1728)
84+
Added Networkx Support in python driver (#1716)
85+
Remove duplicate check (#1740)
86+
Fix Issue 1709 - MERGE creates incomplete vertices after the first one (#1721)
87+
Fix shift/reduce conflict in grammar (#1719)
88+
Fix Issue 1691 - MERGE incorrectly creates multiple vertices (#1718)
89+
Implement map projection (#1710)
90+
Add hooks for multi-arch builds on dockerhub (#1683)
91+
Sample code for AGE-JDBC driver (#390)
92+
Allow agtype_build_map to use AGTYPE keys (#1666)
93+
Implement EXISTS Subquery (#1562)
94+
Fix Issue 1634: Setting all properties with map object causes error (#1637)
95+
Fix Issue 1630: MERGE using array not working in some cases (#1636)
96+
Implement list comprehension (#1610)
97+
Update Go installation and add in parser files (#1582)
98+
Add optional parameter '=' in property constraints (#1516)
99+
Fix unsorted output of some queries in the cypher_match test (#1507)
100+
Update age_load to make property value conversion optional (#1525)
101+
Update the Go driver documentation, Linux installer, and CI (#1527)
102+
Fix json serialization error in Python Driver (#1228)
103+
Add template for upgrading between versions of Apache AGE (#1506)
104+
Update age_load to load scalar property values with appropriate type (#1519)
105+
Fix apache#1513 - Invalid variable reuse in CREATE and MERGE clause (#1515)
106+
Clean up #included files in src/include directories (#1518)
107+
Bump gopkg.in/yaml.v3 in /drivers/golang (#1202)
108+
Clean up #included files in catalog & commands directories (#1514)
109+
Clean up #included files in nodes, executor, & optimizer directories (#1509)
110+
Correct cleanup of age--x.x.x.sql files (#1505)

0 commit comments

Comments
 (0)