rafsun42 commented on code in PR #1711:
URL: https://github.com/apache/age/pull/1711#discussion_r1571518058
##########
META.json:
##########
@@ -1,24 +1,24 @@
{
"name": "ApacheAGE",
- "abstract": "Apache AGE is a PostgreSQL Extension that provides graph
database functionality",
- "description": "Apache AGE is a PostgreSQL Extension that provides graph
database functionality. AGE is an acronym for A Graph Extension, and is
inspired by Bitnine's fork of PostgreSQL 10, AgensGraph, which is a multi-model
database. The goal of the project is to create single storage that can handle
both relational and graph model data so that users can use standard ANSI SQL
along with openCypher, the Graph query language. A graph consists of a set of
vertices (also called nodes) and edges, where each individual vertex and edge
possesses a map of properties. A vertex is the basic object of a graph, that
can exist independently of everything else in the graph. An edge creates a
directed connection between two vertices. A graph database is simply composed
of vertices and edges. This type of database is useful when the meaning is in
the relationships between the data. Relational databases can easily handle
direct relationships, but indirect relationships are more difficult to deal
with in relational databases. A graph database stores relationship
information as a first-class entity. Apache AGE gives you the best of both
worlds, simultaneously.",
- "version": "1.3.0",
+ "abstract": "Graph database functionality for PostgreSQL",
+ "description": "Apache AGE is a PostgreSQL Extension that provides graph
database functionality. The goal of the project is to create single storage
that can handle both relational and graph model data so that users can use
standard ANSI SQL along with openCypher, the Graph query language.",
+ "version": "1.5.0",
"maintainer": [
"[email protected]"
],
"license": "apache_2_0",
"provides": {
- "ApacheAGE": {
+ "age": {
"abstract": "Apache AGE is a PostgreSQL Extension that provides graph
database functionality",
- "file": "age--1.3.0.sql",
+ "file": "age--1.5.0.sql",
"docfile": "README.md",
- "version": "1.3.0"
+ "version": "1.5.0"
}
},
"prereqs": {
"runtime": {
"requires": {
- "PostgreSQL": "14.0.0"
+ "PostgreSQL": "11.0.0"
Review Comment:
@theory An age release for PG16 (which is master branch currently) will not
compile on Postgres 11, or any other Postgres version (at least it is not meant
to). For context, we have different development branches for different PG
versions. Given that, I believe the version in the meta file would depend on
the branch this PR is being applied on. For example, if the PR is being applied
on PG15, then the version can point to the latest minor version of PG15.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]