You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2021/10/25 07:54:06 UTC

[GitHub] [incubator-age] deem0n opened a new issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

deem0n opened a new issue #132:
URL: https://github.com/apache/incubator-age/issues/132


   There is no upgrade scripts, unfortunately. To upgrade I need to drop extension and all dependent data.
   
   ```
   mi=# select * from pg_available_extensions where name = 'age';
   ┌──────┬─────────────────┬───────────────────┬────────────────────────┐
   │ name │ default_version │ installed_version │        comment         │
   ├──────┼─────────────────┼───────────────────┼────────────────────────┤
   │ age  │ 0.6.0           │ 0.5.0             │ AGE database extension │
   └──────┴─────────────────┴───────────────────┴────────────────────────┘
   (1 row)
   
   mi=# alter extension age update to '0.6.0';
   ERROR:  extension "age" has no update path from version "0.5.0" to version "0.6.0"
   mi=# drop extension age;
   ERROR:  cannot drop extension age because other objects depend on it
   DETAIL:  column id of table age._ag_label_vertex depends on type ag_catalog.graphid
   column id of table age._ag_label_edge depends on type ag_catalog.graphid
   column start_id of table age._ag_label_edge depends on type ag_catalog.graphid
   column end_id of table age._ag_label_edge depends on type ag_catalog.graphid
   column properties of table age._ag_label_vertex depends on type ag_catalog.agtype
   column properties of table age._ag_label_edge depends on type ag_catalog.agtype
   HINT:  Use DROP ... CASCADE to drop the dependent objects too.
   mi=# drop extension age cascade;
   NOTICE:  drop cascades to 6 other objects
   DETAIL:  drop cascades to column id of table age._ag_label_vertex
   drop cascades to column id of table age._ag_label_edge
   drop cascades to column start_id of table age._ag_label_edge
   drop cascades to column end_id of table age._ag_label_edge
   drop cascades to column properties of table age._ag_label_vertex
   drop cascades to column properties of table age._ag_label_edge
   DROP EXTENSION
   mi=# create extension age;
   CREATE EXTENSION
   
   
   mi=# select * from pg_available_extensions where name = 'age';
   ┌──────┬─────────────────┬───────────────────┬────────────────────────┐
   │ name │ default_version │ installed_version │        comment         │
   ├──────┼─────────────────┼───────────────────┼────────────────────────┤
   │ age  │ 0.6.0           │ 0.6.0             │ AGE database extension │
   └──────┴─────────────────┴───────────────────┴────────────────────────┘
   (1 row)
   ```
   
   
   


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] pdpotter edited a comment on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
pdpotter edited a comment on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-968636071


   :warning: I haven't tested this.
   
   I don't think the way the data is stored has changed between 0.5 and 0.6 (please correct me if I'm wrong), so you could try:
   
   ```
   sudo -u postgres pg_dump DATABASE_NAME > backup.sql
   sudo -u postgres dropdb DATABASE_NAME
   sudo -u postgres createdb -O DATABASE_USER DATABASE_NAME
   sudo -u postgres psql DATABASE_NAME < backup.sql
   ```


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] jrgemignani commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-990213063


   There aren't any real differences on how the data is stored between the recent versions.
   
   We will try to come up with a reasonable way to upgrade from version to version. 
   
   John


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] emotionbug commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
emotionbug commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-1067445514


   https://github.com/apache/incubator-age/commit/ede73e45acd894d7c17101b6d5af3d76bf18736c
   https://github.com/apache/incubator-age/commit/8b438860cd9007db2531a7d449438a03ca75b1bd
   
   These commits allow to upgrade to newer versions.


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] deem0n commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
deem0n commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-998799291


   > There aren't any real differences on how the data is stored between the recent versions.
   > 
   > We will try to come up with a reasonable way to upgrade from version to version.
   > 
   > John
   
   That means, that you can just install new age version (make sure that age.so file is new) and restart PostgreSQL server. 


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Alex Kwak <em...@apache.org>.
Hi Felix, could you review one more time to make sure there is no potential license issue?

On 2021/12/31 03:29:46 Felix Cheung wrote:
> lots of dependencies - are these licenses reviewed and handled in the LICENSE file?
> https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\
> 
> this requires a component - again could be a LICENSE check, if it is required for execution (at runtime) we should check license of that too. Also what is the trademark on the “AgensGraph” name?
> https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
> '@bitnine-oss/ag-driver');
> 
> The
> https://github.com/apache/incubator-age-viewer/blob/main/README.md
> references  to bitnine/agviewer
> ________________________________
> From: Eya Badal <ey...@apache.org>
> Sent: Thursday, December 30, 2021 6:44:11 AM
> To: dev@age.apache.org <de...@age.apache.org>
> Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
> 
> Looks good to me
> +1
> 
> I checked the following:
> 
> - Signature and hash - check.
> - DISCLAIMER - check.
> - LICENSE and NOTICE - check.
> - No unexpected binary files - check.
> - incubating in name - check.
> 
> Best,
> Eya
> 
> On 2021/12/23 00:58:26 Alex Kwak wrote:
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc0 that we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until December 25th at 5:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE 0.6.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> > The git commit hash:
> > commit 2c55b2302875449565674aa039517734cf338031
> >
> > The release files, including signatures, digests, etc. can be found at:
> > https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> >
> > The SHA512 Checksum for these artifacts is:
> > 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Josh Innis <jo...@apache.org>.
Correction: AgensGraph is trademarked.

https://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&p=1&u=%2Fnetahtml%2FPTO%2Fsearch-bool.html&r=1&f=G&l=50&co1=AND&d=PTXT&s1=AgensGraph&OS=AgensGraph&RS=AgensGraph

On 2022/01/03 21:08:14 Josh Innis wrote:
> Hi Felix,
> 
> I believe that dependencies that are not bundled in the release are not
> required. Which would be all the dependencies listed in the two
> package.json files.
> 
> https://infra.apache.org/licensing-howto.html#bundled-vs-non-bundled
> 
> For agensGraphRepository.js, the project AgensGraph is distributed under
> the Apache 2.0 license
> https://github.com/bitnine-oss/agensgraph/blob/master/LICENSE. No bundled
> bits are included in the release. A scan of the United Statement Patent and
> Trademark database yields no relevant results.
> 
> We should remove the reference to bitnine/agviewer and either remove the
> section or construct a docker image under the apache name.
> 
> 
> 
> 
> On Thu, Dec 30, 2021 at 7:29 PM Felix Cheung <fe...@hotmail.com>
> wrote:
> 
> > lots of dependencies - are these licenses reviewed and handled in the
> > LICENSE file?
> >
> > https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
> >
> > https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\
> >
> > this requires a component - again could be a LICENSE check, if it is
> > required for execution (at runtime) we should check license of that too.
> > Also what is the trademark on the “AgensGraph” name?
> >
> > https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
> > '@bitnine-oss/ag-driver');
> >
> > The
> > https://github.com/apache/incubator-age-viewer/blob/main/README.md
> > references  to bitnine/agviewer
> > ________________________________
> > From: Eya Badal <ey...@apache.org>
> > Sent: Thursday, December 30, 2021 6:44:11 AM
> > To: dev@age.apache.org <de...@age.apache.org>
> > Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
> >
> > Looks good to me
> > +1
> >
> > I checked the following:
> >
> > - Signature and hash - check.
> > - DISCLAIMER - check.
> > - LICENSE and NOTICE - check.
> > - No unexpected binary files - check.
> > - incubating in name - check.
> >
> > Best,
> > Eya
> >
> > On 2021/12/23 00:58:26 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer release v1.0.0-rc0
> > that we have been working toward it.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > >
> > >
> > > The vote is open now and until December 25th at 5:00 PM PST and passes
> > if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> > >
> > > [ ] +1 Release this package as Apache AGE 0.6.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> > >
> > > The git commit hash:
> > > commit 2c55b2302875449565674aa039517734cf338031
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> > https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> > 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> >
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Josh Innis <jo...@gmail.com>.
The northwind.jsx is an example on how to use AGE Viewer with AgensGraph.
Currently, AGE Viewer is compatible with both AgensGraph and Apache AGE, so
the file does not involve AGE, but it is helpful in how to use AGE Viewer
in general.

SIL dictates the License must be included
https://tldrlegal.com/license/open-font-license-(ofl)-explained#fulltext.
We must include the SIL license in the header.

The Cytoscape lib must be noted as such in the LICENSE.

References to Bitnine need to be removed, so the logo needs to change, the
same is true for the lines in the About sidebar.


On Mon, Jan 3, 2022 at 4:50 PM Nicholas Sorrell <ni...@cint.io> wrote:

> I have a few questions:
>
>
>   *   Should this file be included in the repo? It seems to be specific to
> Agensgraph.
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/documents/tutorial/northwind.jsx
>   *   The SVGs referenced in this file (
> https://github.com/apache/incubator-age-viewer/blame/main/frontend/src/static/icons/font/fontello.svg)
> seem to possibly be under the SIL license? I'm not entirely sure how
> fontello packages/licenses.
>   *   This Cytoscape lib seems to be bundled and under a different
> license:
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/lib/cytoscape-cxtmenu-bitnine/LICENSE
> - should it be noted as such?
>   *   Are there any possible issues from using the Bitnine logos for AGE
> Viewer in the frontend/public folder? Here is an example:
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/public/safari-pinned-tab.svg
>   *   Should the following references to "AGViewer" be changed to "AGE
> Viewer" or "Apache AGE Viewer"?
>      *
> https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/site.webmanifest#L2
>      *
> https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/site.webmanifest#L3
>      *
> https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/index.html#L29
>      *
> https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/index.html#L38
>      *
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/components/sidebar/presentations/SidebarAbout.jsx
> lines 27, 44, 49
>   *   SidebarAbout.jsx -
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/components/sidebar/presentations/SidebarAbout.jsx
>      *   Should line 31 say "Made by Bitnine"?
>      *   Should line 71 reference the Apache repo instead of the Bitnine
> repo?
>
> --
> Nick Sorrell
> 513.288.1084
> https://cint.io
>
>
> ________________________________
> From: Josh Innis <jo...@gmail.com>
> Sent: Monday, January 3, 2022 4:08 PM
> To: dev@age.apache.org <de...@age.apache.org>
> Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
>
> Hi Felix,
>
> I believe that dependencies that are not bundled in the release are not
> required. Which would be all the dependencies listed in the two
> package.json files.
>
> https://infra.apache.org/licensing-howto.html#bundled-vs-non-bundled
>
> For agensGraphRepository.js, the project AgensGraph is distributed under
> the Apache 2.0 license
> https://github.com/bitnine-oss/agensgraph/blob/master/LICENSE. No bundled
> bits are included in the release. A scan of the United Statement Patent and
> Trademark database yields no relevant results.
>
> We should remove the reference to bitnine/agviewer and either remove the
> section or construct a docker image under the apache name.
>
>
>
>
> On Thu, Dec 30, 2021 at 7:29 PM Felix Cheung <fe...@hotmail.com>
> wrote:
>
> > lots of dependencies - are these licenses reviewed and handled in the
> > LICENSE file?
> >
> >
> https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
> >
> >
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\
> >
> > this requires a component - again could be a LICENSE check, if it is
> > required for execution (at runtime) we should check license of that too.
> > Also what is the trademark on the “AgensGraph” name?
> >
> >
> https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
> > '@bitnine-oss/ag-driver');
> >
> > The
> > https://github.com/apache/incubator-age-viewer/blob/main/README.md
> > references  to bitnine/agviewer
> > ________________________________
> > From: Eya Badal <ey...@apache.org>
> > Sent: Thursday, December 30, 2021 6:44:11 AM
> > To: dev@age.apache.org <de...@age.apache.org>
> > Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
> >
> > Looks good to me
> > +1
> >
> > I checked the following:
> >
> > - Signature and hash - check.
> > - DISCLAIMER - check.
> > - LICENSE and NOTICE - check.
> > - No unexpected binary files - check.
> > - incubating in name - check.
> >
> > Best,
> > Eya
> >
> > On 2021/12/23 00:58:26 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer release v1.0.0-rc0
> > that we have been working toward it.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > >
> > >
> > > The vote is open now and until December 25th at 5:00 PM PST and passes
> > if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> > >
> > > [ ] +1 Release this package as Apache AGE 0.6.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> > >
> > > The git commit hash:
> > > commit 2c55b2302875449565674aa039517734cf338031
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> >
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> >
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Nicholas Sorrell <ni...@cint.io>.
I have a few questions:


  *   Should this file be included in the repo? It seems to be specific to Agensgraph. https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/documents/tutorial/northwind.jsx
  *   The SVGs referenced in this file (https://github.com/apache/incubator-age-viewer/blame/main/frontend/src/static/icons/font/fontello.svg) seem to possibly be under the SIL license? I'm not entirely sure how fontello packages/licenses.
  *   This Cytoscape lib seems to be bundled and under a different license: https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/lib/cytoscape-cxtmenu-bitnine/LICENSE - should it be noted as such?
  *   Are there any possible issues from using the Bitnine logos for AGE Viewer in the frontend/public folder? Here is an example: https://github.com/apache/incubator-age-viewer/blob/main/frontend/public/safari-pinned-tab.svg
  *   Should the following references to "AGViewer" be changed to "AGE Viewer" or "Apache AGE Viewer"?
     *   https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/site.webmanifest#L2
     *   https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/site.webmanifest#L3
     *   https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/index.html#L29
     *   https://github.com/apache/incubator-age-viewer/blob/839ce463543e8472fcbfd30784c4d46a441be1d6/frontend/public/index.html#L38
     *   https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/components/sidebar/presentations/SidebarAbout.jsx lines 27, 44, 49
  *   SidebarAbout.jsx - https://github.com/apache/incubator-age-viewer/blob/main/frontend/src/components/sidebar/presentations/SidebarAbout.jsx
     *   Should line 31 say "Made by Bitnine"?
     *   Should line 71 reference the Apache repo instead of the Bitnine repo?

--
Nick Sorrell
513.288.1084
https://cint.io


________________________________
From: Josh Innis <jo...@gmail.com>
Sent: Monday, January 3, 2022 4:08 PM
To: dev@age.apache.org <de...@age.apache.org>
Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Hi Felix,

I believe that dependencies that are not bundled in the release are not
required. Which would be all the dependencies listed in the two
package.json files.

https://infra.apache.org/licensing-howto.html#bundled-vs-non-bundled

For agensGraphRepository.js, the project AgensGraph is distributed under
the Apache 2.0 license
https://github.com/bitnine-oss/agensgraph/blob/master/LICENSE. No bundled
bits are included in the release. A scan of the United Statement Patent and
Trademark database yields no relevant results.

We should remove the reference to bitnine/agviewer and either remove the
section or construct a docker image under the apache name.




On Thu, Dec 30, 2021 at 7:29 PM Felix Cheung <fe...@hotmail.com>
wrote:

> lots of dependencies - are these licenses reviewed and handled in the
> LICENSE file?
>
> https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
>
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\
>
> this requires a component - again could be a LICENSE check, if it is
> required for execution (at runtime) we should check license of that too.
> Also what is the trademark on the “AgensGraph” name?
>
> https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
> '@bitnine-oss/ag-driver');
>
> The
> https://github.com/apache/incubator-age-viewer/blob/main/README.md
> references  to bitnine/agviewer
> ________________________________
> From: Eya Badal <ey...@apache.org>
> Sent: Thursday, December 30, 2021 6:44:11 AM
> To: dev@age.apache.org <de...@age.apache.org>
> Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
>
> Looks good to me
> +1
>
> I checked the following:
>
> - Signature and hash - check.
> - DISCLAIMER - check.
> - LICENSE and NOTICE - check.
> - No unexpected binary files - check.
> - incubating in name - check.
>
> Best,
> Eya
>
> On 2021/12/23 00:58:26 Alex Kwak wrote:
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc0
> that we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until December 25th at 5:00 PM PST and passes
> if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE 0.6.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> > The git commit hash:
> > commit 2c55b2302875449565674aa039517734cf338031
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Josh Innis <jo...@gmail.com>.
Hi Felix,

I believe that dependencies that are not bundled in the release are not
required. Which would be all the dependencies listed in the two
package.json files.

https://infra.apache.org/licensing-howto.html#bundled-vs-non-bundled

For agensGraphRepository.js, the project AgensGraph is distributed under
the Apache 2.0 license
https://github.com/bitnine-oss/agensgraph/blob/master/LICENSE. No bundled
bits are included in the release. A scan of the United Statement Patent and
Trademark database yields no relevant results.

We should remove the reference to bitnine/agviewer and either remove the
section or construct a docker image under the apache name.




On Thu, Dec 30, 2021 at 7:29 PM Felix Cheung <fe...@hotmail.com>
wrote:

> lots of dependencies - are these licenses reviewed and handled in the
> LICENSE file?
>
> https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
>
> https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\
>
> this requires a component - again could be a LICENSE check, if it is
> required for execution (at runtime) we should check license of that too.
> Also what is the trademark on the “AgensGraph” name?
>
> https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
> '@bitnine-oss/ag-driver');
>
> The
> https://github.com/apache/incubator-age-viewer/blob/main/README.md
> references  to bitnine/agviewer
> ________________________________
> From: Eya Badal <ey...@apache.org>
> Sent: Thursday, December 30, 2021 6:44:11 AM
> To: dev@age.apache.org <de...@age.apache.org>
> Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0
>
> Looks good to me
> +1
>
> I checked the following:
>
> - Signature and hash - check.
> - DISCLAIMER - check.
> - LICENSE and NOTICE - check.
> - No unexpected binary files - check.
> - incubating in name - check.
>
> Best,
> Eya
>
> On 2021/12/23 00:58:26 Alex Kwak wrote:
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc0
> that we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until December 25th at 5:00 PM PST and passes
> if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE 0.6.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> > The git commit hash:
> > commit 2c55b2302875449565674aa039517734cf338031
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Felix Cheung <fe...@hotmail.com>.
lots of dependencies - are these licenses reviewed and handled in the LICENSE file?
https://github.com/apache/incubator-age-viewer/blob/main/backend/package.json
https://github.com/apache/incubator-age-viewer/blob/main/frontend/package.jso\

this requires a component - again could be a LICENSE check, if it is required for execution (at runtime) we should check license of that too. Also what is the trademark on the “AgensGraph” name?
https://github.com/apache/incubator-age-viewer/blob/main/backend/src/models/agensgraph/agensGraphRepository.js
'@bitnine-oss/ag-driver');

The
https://github.com/apache/incubator-age-viewer/blob/main/README.md
references  to bitnine/agviewer
________________________________
From: Eya Badal <ey...@apache.org>
Sent: Thursday, December 30, 2021 6:44:11 AM
To: dev@age.apache.org <de...@age.apache.org>
Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Looks good to me
+1

I checked the following:

- Signature and hash - check.
- DISCLAIMER - check.
- LICENSE and NOTICE - check.
- No unexpected binary files - check.
- incubating in name - check.

Best,
Eya

On 2021/12/23 00:58:26 Alex Kwak wrote:
> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc0 that we have been working toward it.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
>
>
> The vote is open now and until December 25th at 5:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
>
> [ ] +1 Release this package as Apache AGE 0.6.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
>
> The git commit hash:
> commit 2c55b2302875449565674aa039517734cf338031
>
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
>
> The SHA512 Checksum for these artifacts is:
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
>
>
>
> Best regards,
> Alex Kwak
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Eya Badal <ey...@apache.org>.
Looks good to me
+1

I checked the following:

- Signature and hash - check.
- DISCLAIMER - check.
- LICENSE and NOTICE - check.
- No unexpected binary files - check.
- incubating in name - check.

Best,
Eya

On 2021/12/23 00:58:26 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc0 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> 
> 
> The vote is open now and until December 25th at 5:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE 0.6.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> 
> The git commit hash:
> commit 2c55b2302875449565674aa039517734cf338031
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
> 
> The SHA512 Checksum for these artifacts is:
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Alex Kwak <em...@apache.org>.
Hello, Community.

On this issue, I wrote a code that removes AgensGraph and everything related to a specific company.

We are closing this vote to fix the issue and will reopen later.

Thanks.
Alex

On 2022/02/03 21:21:56 Josh Innis wrote:
> Hi Trista,
> 
> [1] When AGE Viewer was donated to Apache, it already supported both
> AgensGraph and AGE as backend database connections. To completely remove
> all references to AgensGraph would mean removing AGE Viewer's ability to
> connect to AgensGraph as a backend database.
> [2] Before AGE was donated to Apache, its name was AgensGraph-Extension. In
> the proposal process, the community determined that the project had to be
> renamed. AgensGraph itself is not a part of Apache.
> 
> Thanks,
> Josh
> 
> On Thu, Feb 3, 2022 at 4:28 AM Juan Pan <pa...@apache.org> wrote:
> 
> > Hi Josh,
> >
> >
> > Actually, our ppmc of AGE more care about AGE project (its brand,
> > community, etc.) rather than AgensGraph.
> > My suggestion is to erase the marks around them as possible as we can for
> > safety, based on
> > 1. Why do our AGE viewer need to be compatible with AgensGraph? Is
> > AgensGraph part of this incubator project?
> > 2. AgensGraph is suggested to be renamed in general@incubator.ml by other
> > IPMCs, I remember?
> >
> >
> > Best,
> > Trista
> >
> > ------------------------------------------------------------------------------
> > Trista Pan, Twitter: @tristaZero
> >
> >
> > On 02/3/2022 01:26,Josh Innis<jo...@gmail.com> wrote:
> > HI Juan,
> >
> > 1. AGE Viewer connects to two databases: Apache AGE and AgensGraph. No code
> > from AgensGraph resides in AGE Viewer. When AGE Viewer is connected to
> > AgensGraph, is it an issue if AGE Viewer gives a context specific language
> > in code or in messages given to the user?
> >
> > For example:
> > backend/src/util/JsonBuilder.js:66
> > if (flavor === 'AGE') {
> > return AGECreateEdge(client, graphPathStr, createQ);
> > } else {
> > return AgensGraphCreateEdge(client, graphPathStr, createQ);
> > }
> >
> > Since AgensGraphCreateEdge is used only when AGE Viewer is connected to
> > AgensGraph, is it necessary to change it?
> >
> > 2. Some of the results are for modules that handles the connection to the
> > database. It looks like this is from when the source code was originally
> > donated to Apache from Bitnine. These modules probably need to be renamed
> > to something generic.
> >
> > 3. Since AGE Viewer originally connected to AgensGraph and extended to
> > support AGE there are some hardcoded values that need to be altered.
> >
> > For example:
> > frontend/src/components/frame/presentations/ServerStatusFrame.jsx:86
> > if (status === 'disconnected') {
> > return (
> > ...
> > <h3>Connection Status</h3>
> > <p>You are currently not connected to AgensGraph</p>
> > ...
> >
> > This code displays a message to the user when there is a connection error.
> > Personally, I think this needs a conditional expression for the type of
> > database the user is connecting to, but if all references to Agensgraph
> > need to be removed it could instead display: <p>You are currently not
> > connected</p> for all database connection types.
> >
> > 4. Many of the results come from the file
> > frontend/src/documents/tutorial/northwind.jsx. This file is a tutorial that
> > shows how to use AGE Viewer with AgensGraph. Should this file be removed?
> >
> > On Wed, Feb 2, 2022 at 3:39 AM Juan Pan <pa...@apache.org> wrote:
> >
> > I also have no idea about this vote.
> >
> >
> > I tracked the whole thread and found others raised some issues, but some
> > have had no feedback so far. Could anyone sync me this vote is still in the
> > process and double check the issue I mentioned?
> >
> >
> > It is the first time for the community to release AGE-view. It is
> > efficient to solve all the potential issues internally and definitely will
> > cost our lots of efforts and patients.
> >
> >
> > My check list,
> >
> >
> > [x] Download links are valid.
> > [x] Checksums and PGP signatures are valid.
> > [ ] LICENSE, NOTICE and DISCLAIMER files are correct. (Need double check)
> > [x] All files have license headers if necessary.
> >
> >
> > Most of the files are fine, but it still has some bits around AgensGraph
> > or bitnine.
> >
> >
> > Run
> > ```
> > grep bitnine . -R -n
> > grep AgensGraph  . -R -n
> > ```
> > It will show you, like
> > ```
> > ./frontend/src/components/frame/presentations/ServerStatusFrame.jsx:92:
> > <p>You are currently not connected to AgensGraph</p>
> > ./frontend/src/components/frame/presentations/ServerDisconnectFrame.jsx:32:
> > disconnectToAgensGraph,
> > ```
> >
> >
> > Please keep in mind Apache AGE totally has nothing to do with AgensGraph
> > or bitnine business currently and in the future. (Maybe AgensGraph is in
> > consideration to rename?)
> >
> >
> >
> >
> >
> > ------------------------------------------------------------------------------
> > Juan Pan(Trista), Twitter: @tristaZero
> >
> >
> > On 02/1/2022 02:10,John Gemignani<jg...@apache.org> wrote:
> > I will give this a +1.
> >
> > However, I haven't seen any traction on this thread for a while. Should
> > this be closed and then reopened? Or, should we continue to try to get
> > enough votes? Or?
> >
> > Mentors, could you please give your input?
> >
> > Thanks!
> >
> > John
> >
> > On 2022/01/10 04:38:32 Alex Kwak wrote:
> > Sorry, All.
> >
> > It was a mistake to close it. We will continue voting.
> >
> > On 2022/01/10 02:37:21 Alex Kwak wrote:
> > Hello Community,
> >
> > We are closing the vote. Results will be sent shortly.
> >
> > On 2022/01/06 02:20:46 Alex Kwak wrote:
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that
> > we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until January 8th at 6:00 PM PST and passes if a
> > majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> > The git commit hash:
> > commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> >
> > https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> >
> > dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
> >
> >
> >
> >
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Josh Innis <jo...@gmail.com>.
Hi Trista,

[1] When AGE Viewer was donated to Apache, it already supported both
AgensGraph and AGE as backend database connections. To completely remove
all references to AgensGraph would mean removing AGE Viewer's ability to
connect to AgensGraph as a backend database.
[2] Before AGE was donated to Apache, its name was AgensGraph-Extension. In
the proposal process, the community determined that the project had to be
renamed. AgensGraph itself is not a part of Apache.

Thanks,
Josh

On Thu, Feb 3, 2022 at 4:28 AM Juan Pan <pa...@apache.org> wrote:

> Hi Josh,
>
>
> Actually, our ppmc of AGE more care about AGE project (its brand,
> community, etc.) rather than AgensGraph.
> My suggestion is to erase the marks around them as possible as we can for
> safety, based on
> 1. Why do our AGE viewer need to be compatible with AgensGraph? Is
> AgensGraph part of this incubator project?
> 2. AgensGraph is suggested to be renamed in general@incubator.ml by other
> IPMCs, I remember?
>
>
> Best,
> Trista
>
> ------------------------------------------------------------------------------
> Trista Pan, Twitter: @tristaZero
>
>
> On 02/3/2022 01:26,Josh Innis<jo...@gmail.com> wrote:
> HI Juan,
>
> 1. AGE Viewer connects to two databases: Apache AGE and AgensGraph. No code
> from AgensGraph resides in AGE Viewer. When AGE Viewer is connected to
> AgensGraph, is it an issue if AGE Viewer gives a context specific language
> in code or in messages given to the user?
>
> For example:
> backend/src/util/JsonBuilder.js:66
> if (flavor === 'AGE') {
> return AGECreateEdge(client, graphPathStr, createQ);
> } else {
> return AgensGraphCreateEdge(client, graphPathStr, createQ);
> }
>
> Since AgensGraphCreateEdge is used only when AGE Viewer is connected to
> AgensGraph, is it necessary to change it?
>
> 2. Some of the results are for modules that handles the connection to the
> database. It looks like this is from when the source code was originally
> donated to Apache from Bitnine. These modules probably need to be renamed
> to something generic.
>
> 3. Since AGE Viewer originally connected to AgensGraph and extended to
> support AGE there are some hardcoded values that need to be altered.
>
> For example:
> frontend/src/components/frame/presentations/ServerStatusFrame.jsx:86
> if (status === 'disconnected') {
> return (
> ...
> <h3>Connection Status</h3>
> <p>You are currently not connected to AgensGraph</p>
> ...
>
> This code displays a message to the user when there is a connection error.
> Personally, I think this needs a conditional expression for the type of
> database the user is connecting to, but if all references to Agensgraph
> need to be removed it could instead display: <p>You are currently not
> connected</p> for all database connection types.
>
> 4. Many of the results come from the file
> frontend/src/documents/tutorial/northwind.jsx. This file is a tutorial that
> shows how to use AGE Viewer with AgensGraph. Should this file be removed?
>
> On Wed, Feb 2, 2022 at 3:39 AM Juan Pan <pa...@apache.org> wrote:
>
> I also have no idea about this vote.
>
>
> I tracked the whole thread and found others raised some issues, but some
> have had no feedback so far. Could anyone sync me this vote is still in the
> process and double check the issue I mentioned?
>
>
> It is the first time for the community to release AGE-view. It is
> efficient to solve all the potential issues internally and definitely will
> cost our lots of efforts and patients.
>
>
> My check list,
>
>
> [x] Download links are valid.
> [x] Checksums and PGP signatures are valid.
> [ ] LICENSE, NOTICE and DISCLAIMER files are correct. (Need double check)
> [x] All files have license headers if necessary.
>
>
> Most of the files are fine, but it still has some bits around AgensGraph
> or bitnine.
>
>
> Run
> ```
> grep bitnine . -R -n
> grep AgensGraph  . -R -n
> ```
> It will show you, like
> ```
> ./frontend/src/components/frame/presentations/ServerStatusFrame.jsx:92:
> <p>You are currently not connected to AgensGraph</p>
> ./frontend/src/components/frame/presentations/ServerDisconnectFrame.jsx:32:
> disconnectToAgensGraph,
> ```
>
>
> Please keep in mind Apache AGE totally has nothing to do with AgensGraph
> or bitnine business currently and in the future. (Maybe AgensGraph is in
> consideration to rename?)
>
>
>
>
>
> ------------------------------------------------------------------------------
> Juan Pan(Trista), Twitter: @tristaZero
>
>
> On 02/1/2022 02:10,John Gemignani<jg...@apache.org> wrote:
> I will give this a +1.
>
> However, I haven't seen any traction on this thread for a while. Should
> this be closed and then reopened? Or, should we continue to try to get
> enough votes? Or?
>
> Mentors, could you please give your input?
>
> Thanks!
>
> John
>
> On 2022/01/10 04:38:32 Alex Kwak wrote:
> Sorry, All.
>
> It was a mistake to close it. We will continue voting.
>
> On 2022/01/10 02:37:21 Alex Kwak wrote:
> Hello Community,
>
> We are closing the vote. Results will be sent shortly.
>
> On 2022/01/06 02:20:46 Alex Kwak wrote:
> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that
> we have been working toward it.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
>
>
> The vote is open now and until January 8th at 6:00 PM PST and passes if a
> majority +1 votes are cast, with a minimum of 3 +1 votes.
>
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
>
> The git commit hash:
> commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
>
> The release files, including signatures, digests, etc. can be found at:
>
>
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
>
> The SHA512 Checksum for these artifacts is:
>
>
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
>
>
>
> Best regards,
> Alex Kwak
>
>
>
>
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Juan Pan <pa...@apache.org>.
Hi Josh,


Actually, our ppmc of AGE more care about AGE project (its brand, community, etc.) rather than AgensGraph. 
My suggestion is to erase the marks around them as possible as we can for safety, based on
1. Why do our AGE viewer need to be compatible with AgensGraph? Is AgensGraph part of this incubator project?
2. AgensGraph is suggested to be renamed in general@incubator.ml by other IPMCs, I remember?


Best,
Trista
------------------------------------------------------------------------------
Trista Pan, Twitter: @tristaZero


On 02/3/2022 01:26,Josh Innis<jo...@gmail.com> wrote:
HI Juan,

1. AGE Viewer connects to two databases: Apache AGE and AgensGraph. No code
from AgensGraph resides in AGE Viewer. When AGE Viewer is connected to
AgensGraph, is it an issue if AGE Viewer gives a context specific language
in code or in messages given to the user?

For example:
backend/src/util/JsonBuilder.js:66
if (flavor === 'AGE') {
return AGECreateEdge(client, graphPathStr, createQ);
} else {
return AgensGraphCreateEdge(client, graphPathStr, createQ);
}

Since AgensGraphCreateEdge is used only when AGE Viewer is connected to
AgensGraph, is it necessary to change it?

2. Some of the results are for modules that handles the connection to the
database. It looks like this is from when the source code was originally
donated to Apache from Bitnine. These modules probably need to be renamed
to something generic.

3. Since AGE Viewer originally connected to AgensGraph and extended to
support AGE there are some hardcoded values that need to be altered.

For example:
frontend/src/components/frame/presentations/ServerStatusFrame.jsx:86
if (status === 'disconnected') {
return (
...
<h3>Connection Status</h3>
<p>You are currently not connected to AgensGraph</p>
...

This code displays a message to the user when there is a connection error.
Personally, I think this needs a conditional expression for the type of
database the user is connecting to, but if all references to Agensgraph
need to be removed it could instead display: <p>You are currently not
connected</p> for all database connection types.

4. Many of the results come from the file
frontend/src/documents/tutorial/northwind.jsx. This file is a tutorial that
shows how to use AGE Viewer with AgensGraph. Should this file be removed?

On Wed, Feb 2, 2022 at 3:39 AM Juan Pan <pa...@apache.org> wrote:

I also have no idea about this vote.


I tracked the whole thread and found others raised some issues, but some
have had no feedback so far. Could anyone sync me this vote is still in the
process and double check the issue I mentioned?


It is the first time for the community to release AGE-view. It is
efficient to solve all the potential issues internally and definitely will
cost our lots of efforts and patients.


My check list,


[x] Download links are valid.
[x] Checksums and PGP signatures are valid.
[ ] LICENSE, NOTICE and DISCLAIMER files are correct. (Need double check)
[x] All files have license headers if necessary.


Most of the files are fine, but it still has some bits around AgensGraph
or bitnine.


Run
```
grep bitnine . -R -n
grep AgensGraph  . -R -n
```
It will show you, like
```
./frontend/src/components/frame/presentations/ServerStatusFrame.jsx:92:
<p>You are currently not connected to AgensGraph</p>
./frontend/src/components/frame/presentations/ServerDisconnectFrame.jsx:32:
disconnectToAgensGraph,
```


Please keep in mind Apache AGE totally has nothing to do with AgensGraph
or bitnine business currently and in the future. (Maybe AgensGraph is in
consideration to rename?)




------------------------------------------------------------------------------
Juan Pan(Trista), Twitter: @tristaZero


On 02/1/2022 02:10,John Gemignani<jg...@apache.org> wrote:
I will give this a +1.

However, I haven't seen any traction on this thread for a while. Should
this be closed and then reopened? Or, should we continue to try to get
enough votes? Or?

Mentors, could you please give your input?

Thanks!

John

On 2022/01/10 04:38:32 Alex Kwak wrote:
Sorry, All.

It was a mistake to close it. We will continue voting.

On 2022/01/10 02:37:21 Alex Kwak wrote:
Hello Community,

We are closing the vote. Results will be sent shortly.

On 2022/01/06 02:20:46 Alex Kwak wrote:
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that
we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.


The vote is open now and until January 8th at 6:00 PM PST and passes if a
majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1

The git commit hash:
commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051

The release files, including signatures, digests, etc. can be found at:

https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/

The SHA512 Checksum for these artifacts is:

dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1



Best regards,
Alex Kwak





Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Josh Innis <jo...@gmail.com>.
HI Juan,

1. AGE Viewer connects to two databases: Apache AGE and AgensGraph. No code
from AgensGraph resides in AGE Viewer. When AGE Viewer is connected to
AgensGraph, is it an issue if AGE Viewer gives a context specific language
in code or in messages given to the user?

For example:
backend/src/util/JsonBuilder.js:66
if (flavor === 'AGE') {
     return AGECreateEdge(client, graphPathStr, createQ);
} else {
     return AgensGraphCreateEdge(client, graphPathStr, createQ);
}

Since AgensGraphCreateEdge is used only when AGE Viewer is connected to
AgensGraph, is it necessary to change it?

2. Some of the results are for modules that handles the connection to the
database. It looks like this is from when the source code was originally
donated to Apache from Bitnine. These modules probably need to be renamed
to something generic.

3. Since AGE Viewer originally connected to AgensGraph and extended to
support AGE there are some hardcoded values that need to be altered.

For example:
frontend/src/components/frame/presentations/ServerStatusFrame.jsx:86
    if (status === 'disconnected') {
      return (
...
              <h3>Connection Status</h3>
              <p>You are currently not connected to AgensGraph</p>
...

This code displays a message to the user when there is a connection error.
Personally, I think this needs a conditional expression for the type of
database the user is connecting to, but if all references to Agensgraph
need to be removed it could instead display: <p>You are currently not
connected</p> for all database connection types.

4. Many of the results come from the file
frontend/src/documents/tutorial/northwind.jsx. This file is a tutorial that
shows how to use AGE Viewer with AgensGraph. Should this file be removed?

On Wed, Feb 2, 2022 at 3:39 AM Juan Pan <pa...@apache.org> wrote:

> I also have no idea about this vote.
>
>
> I tracked the whole thread and found others raised some issues, but some
> have had no feedback so far. Could anyone sync me this vote is still in the
> process and double check the issue I mentioned?
>
>
> It is the first time for the community to release AGE-view. It is
> efficient to solve all the potential issues internally and definitely will
> cost our lots of efforts and patients.
>
>
> My check list,
>
>
> [x] Download links are valid.
> [x] Checksums and PGP signatures are valid.
> [ ] LICENSE, NOTICE and DISCLAIMER files are correct. (Need double check)
> [x] All files have license headers if necessary.
>
>
> Most of the files are fine, but it still has some bits around AgensGraph
> or bitnine.
>
>
> Run
> ```
> grep bitnine . -R -n
> grep AgensGraph  . -R -n
> ```
> It will show you, like
> ```
> ./frontend/src/components/frame/presentations/ServerStatusFrame.jsx:92:
>           <p>You are currently not connected to AgensGraph</p>
> ./frontend/src/components/frame/presentations/ServerDisconnectFrame.jsx:32:
> disconnectToAgensGraph,
> ```
>
>
> Please keep in mind Apache AGE totally has nothing to do with AgensGraph
> or bitnine business currently and in the future. (Maybe AgensGraph is in
> consideration to rename?)
>
>
>
>
> ------------------------------------------------------------------------------
> Juan Pan(Trista), Twitter: @tristaZero
>
>
> On 02/1/2022 02:10,John Gemignani<jg...@apache.org> wrote:
> I will give this a +1.
>
> However, I haven't seen any traction on this thread for a while. Should
> this be closed and then reopened? Or, should we continue to try to get
> enough votes? Or?
>
> Mentors, could you please give your input?
>
> Thanks!
>
> John
>
> On 2022/01/10 04:38:32 Alex Kwak wrote:
> Sorry, All.
>
> It was a mistake to close it. We will continue voting.
>
> On 2022/01/10 02:37:21 Alex Kwak wrote:
> Hello Community,
>
> We are closing the vote. Results will be sent shortly.
>
> On 2022/01/06 02:20:46 Alex Kwak wrote:
> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that
> we have been working toward it.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
>
>
> The vote is open now and until January 8th at 6:00 PM PST and passes if a
> majority +1 votes are cast, with a minimum of 3 +1 votes.
>
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
>
> The git commit hash:
> commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
>
> The release files, including signatures, digests, etc. can be found at:
>
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
>
> The SHA512 Checksum for these artifacts is:
>
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
>
>
>
> Best regards,
> Alex Kwak
>
>
>
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Juan Pan <pa...@apache.org>.
I also have no idea about this vote. 


I tracked the whole thread and found others raised some issues, but some have had no feedback so far. Could anyone sync me this vote is still in the process and double check the issue I mentioned?


It is the first time for the community to release AGE-view. It is efficient to solve all the potential issues internally and definitely will cost our lots of efforts and patients.


My check list,


[x] Download links are valid.
[x] Checksums and PGP signatures are valid.
[ ] LICENSE, NOTICE and DISCLAIMER files are correct. (Need double check)
[x] All files have license headers if necessary.


Most of the files are fine, but it still has some bits around AgensGraph or bitnine. 


Run
```
grep bitnine . -R -n
grep AgensGraph  . -R -n
```
It will show you, like
```
./frontend/src/components/frame/presentations/ServerStatusFrame.jsx:92:              <p>You are currently not connected to AgensGraph</p>
./frontend/src/components/frame/presentations/ServerDisconnectFrame.jsx:32:  disconnectToAgensGraph,
```


Please keep in mind Apache AGE totally has nothing to do with AgensGraph or bitnine business currently and in the future. (Maybe AgensGraph is in consideration to rename?)



------------------------------------------------------------------------------
Juan Pan(Trista), Twitter: @tristaZero


On 02/1/2022 02:10,John Gemignani<jg...@apache.org> wrote:
I will give this a +1.

However, I haven't seen any traction on this thread for a while. Should this be closed and then reopened? Or, should we continue to try to get enough votes? Or?

Mentors, could you please give your input?

Thanks!

John

On 2022/01/10 04:38:32 Alex Kwak wrote:
Sorry, All.

It was a mistake to close it. We will continue voting.

On 2022/01/10 02:37:21 Alex Kwak wrote:
Hello Community,

We are closing the vote. Results will be sent shortly.

On 2022/01/06 02:20:46 Alex Kwak wrote:
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.


The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1

The git commit hash:
commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/

The SHA512 Checksum for these artifacts is:
dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1



Best regards,
Alex Kwak




Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by John Gemignani <jg...@apache.org>.
I will give this a +1.

However, I haven't seen any traction on this thread for a while. Should this be closed and then reopened? Or, should we continue to try to get enough votes? Or?

Mentors, could you please give your input?

Thanks!

John

On 2022/01/10 04:38:32 Alex Kwak wrote:
> Sorry, All.
> 
> It was a mistake to close it. We will continue voting.
> 
> On 2022/01/10 02:37:21 Alex Kwak wrote:
> > Hello Community,
> > 
> > We are closing the vote. Results will be sent shortly.
> > 
> > On 2022/01/06 02:20:46 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > > 
> > > This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.
> > > 
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > > 
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > 
> > > 
> > > The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> > > 
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > > 
> > > 
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> > > 
> > > The git commit hash:
> > > commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> > > 
> > > The release files, including signatures, digests, etc. can be found at:
> > > https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> > > 
> > > The SHA512 Checksum for these artifacts is:
> > > dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> > > 
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > > 
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > > 
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> > > 
> > > 
> > > 
> > > Best regards,
> > > Alex Kwak
> > > 
> > 
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Alex Kwak <em...@apache.org>.
Sorry, All.

It was a mistake to close it. We will continue voting.

On 2022/01/10 02:37:21 Alex Kwak wrote:
> Hello Community,
> 
> We are closing the vote. Results will be sent shortly.
> 
> On 2022/01/06 02:20:46 Alex Kwak wrote:
> > Dear Apache AGE Community,
> > 
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.
> > 
> > To learn more about Apache AGE, please see http://age.apache.org/
> > 
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> > 
> > 
> > The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> > 
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> > 
> > 
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> > 
> > The git commit hash:
> > commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> > 
> > The release files, including signatures, digests, etc. can be found at:
> > https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> > 
> > The SHA512 Checksum for these artifacts is:
> > dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> > 
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> > 
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > 
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> > 
> > 
> > 
> > Best regards,
> > Alex Kwak
> > 
> 

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Alex Kwak <em...@apache.org>.
Thanks. I will now close this vote and results will be sent shortly.

Best regards,

Alex

On 2022/02/26 03:57:26 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we have been working toward.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Removed AgensGraph trademarks (as discussed in the previous vote email thread)
> 
> The vote will be open for 72 hours and pass if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> Please vote
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> 
> The SHA512 Checksum for these artifacts is:
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by VUONG QUOC Viet <vq...@bitnine.net>.
+1

On Mon, Feb 28, 2022 at 11:35 PM Josh Innis <jo...@bitnine.net> wrote:

> +1
>
> On Sat, Feb 26, 2022 at 9:20 AM Eya Badal <ey...@apache.org> wrote:
>
> > Looks good to me.
> > +1
> >
> > Checked the following:
> > *Download links valid.
> > *Checksums, PGP signatures valid.
> > *LICENSE, NOTICE, and DISCLAIMER files exist.
> > *All files have license headers if necessary.
> >
> > Best regards,
> > Eya
> >
> > On 2022/02/26 03:57:26 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we
> > have been working toward.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > - Removed AgensGraph trademarks (as discussed in the previous vote
> email
> > thread)
> > >
> > > The vote will be open for 72 hours and pass if a majority +1 votes are
> > cast, with a minimum of 3 +1 votes.
> > >
> > > Please vote
> > >
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > > The git commit hash:
> > > commit 63ed1882e372ef8cdf6677e9850237650e586848
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> >
>

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Nicholas Sorrell <ni...@cint.io>.
+1
________________________________
From: John Gemignani <jr...@gmail.com>
Sent: Monday, February 28, 2022 12:13:36 PM
To: dev@age.apache.org <de...@age.apache.org>
Subject: Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

+1

On Mon, Feb 28, 2022 at 8:35 AM Josh Innis <jo...@bitnine.net> wrote:

> +1
>
> On Sat, Feb 26, 2022 at 9:20 AM Eya Badal <ey...@apache.org> wrote:
>
> > Looks good to me.
> > +1
> >
> > Checked the following:
> > *Download links valid.
> > *Checksums, PGP signatures valid.
> > *LICENSE, NOTICE, and DISCLAIMER files exist.
> > *All files have license headers if necessary.
> >
> > Best regards,
> > Eya
> >
> > On 2022/02/26 03:57:26 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we
> > have been working toward.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > - Removed AgensGraph trademarks (as discussed in the previous vote
> email
> > thread)
> > >
> > > The vote will be open for 72 hours and pass if a majority +1 votes are
> > cast, with a minimum of 3 +1 votes.
> > >
> > > Please vote
> > >
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > > The git commit hash:
> > > commit 63ed1882e372ef8cdf6677e9850237650e586848
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> >
>

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by John Gemignani <jr...@gmail.com>.
+1

On Mon, Feb 28, 2022 at 8:35 AM Josh Innis <jo...@bitnine.net> wrote:

> +1
>
> On Sat, Feb 26, 2022 at 9:20 AM Eya Badal <ey...@apache.org> wrote:
>
> > Looks good to me.
> > +1
> >
> > Checked the following:
> > *Download links valid.
> > *Checksums, PGP signatures valid.
> > *LICENSE, NOTICE, and DISCLAIMER files exist.
> > *All files have license headers if necessary.
> >
> > Best regards,
> > Eya
> >
> > On 2022/02/26 03:57:26 Alex Kwak wrote:
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we
> > have been working toward.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > - Removed AgensGraph trademarks (as discussed in the previous vote
> email
> > thread)
> > >
> > > The vote will be open for 72 hours and pass if a majority +1 votes are
> > cast, with a minimum of 3 +1 votes.
> > >
> > > Please vote
> > >
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > > The git commit hash:
> > > commit 63ed1882e372ef8cdf6677e9850237650e586848
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> >
>

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Josh Innis <jo...@bitnine.net>.
+1

On Sat, Feb 26, 2022 at 9:20 AM Eya Badal <ey...@apache.org> wrote:

> Looks good to me.
> +1
>
> Checked the following:
> *Download links valid.
> *Checksums, PGP signatures valid.
> *LICENSE, NOTICE, and DISCLAIMER files exist.
> *All files have license headers if necessary.
>
> Best regards,
> Eya
>
> On 2022/02/26 03:57:26 Alex Kwak wrote:
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we
> have been working toward.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> > - Removed AgensGraph trademarks (as discussed in the previous vote email
> thread)
> >
> > The vote will be open for 72 hours and pass if a majority +1 votes are
> cast, with a minimum of 3 +1 votes.
> >
> > Please vote
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> > The git commit hash:
> > commit 63ed1882e372ef8cdf6677e9850237650e586848
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
>

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Eya Badal <ey...@apache.org>.
Looks good to me.
+1

Checked the following:
*Download links valid.
*Checksums, PGP signatures valid.
*LICENSE, NOTICE, and DISCLAIMER files exist.
*All files have license headers if necessary.

Best regards,
Eya

On 2022/02/26 03:57:26 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we have been working toward.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Removed AgensGraph trademarks (as discussed in the previous vote email thread)
> 
> The vote will be open for 72 hours and pass if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> Please vote
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> 
> The SHA512 Checksum for these artifacts is:
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Joe Fagan <jo...@bitnine.net>.
+1

On Sat, 26 Feb 2022 at 05:07, Young Seung Andrew Ko <
youngseung.andrew@gmail.com> wrote:

> +1 (not binding)
>
> Thanks Alex, looks good
>
> 2022년 2월 26일 (토) 오후 12:57, Alex Kwak <em...@apache.org>님이 작성:
>
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we
> have
> > been working toward.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> > - Removed AgensGraph trademarks (as discussed in the previous vote email
> > thread)
> >
> > The vote will be open for 72 hours and pass if a majority +1 votes are
> > cast, with a minimum of 3 +1 votes.
> >
> > Please vote
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> > The git commit hash:
> > commit 63ed1882e372ef8cdf6677e9850237650e586848
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
>
-- 

<http://bitnine.net>

Joe Fagan

Community Advocate Director



 M : +44 7788 148772



<https://www.facebook.com/search/top?q=bitnine%20agens>
<http://linkedin.com/company/bitnineglobal> <http://bitnine.net>
<http://age.apache.org>
A Graph Extension for PostgreSQL <http://age.apache.org>In the news: Bitnine
Promoting a First IPO in the Graph Database <https://bwnews.pr/3ds2mUc>

Re: [VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Young Seung Andrew Ko <yo...@gmail.com>.
+1 (not binding)

Thanks Alex, looks good

2022년 2월 26일 (토) 오후 12:57, Alex Kwak <em...@apache.org>님이 작성:

> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we have
> been working toward.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Removed AgensGraph trademarks (as discussed in the previous vote email
> thread)
>
> The vote will be open for 72 hours and pass if a majority +1 votes are
> cast, with a minimum of 3 +1 votes.
>
> Please vote
>
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
>
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
>
> The release files, including signatures, digests, etc. can be found at:
>
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
>
> The SHA512 Checksum for these artifacts is:
>
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
>
>
>
> Best regards,
> Alex Kwak
>

[VOTE] Apache AGE Viewer 1.0.0 (rc2) Release

Posted by Alex Kwak <em...@apache.org>.
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer v1.0.0-rc2 that we have been working toward.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.
- Removed AgensGraph trademarks (as discussed in the previous vote email thread)

The vote will be open for 72 hours and pass if a majority +1 votes are cast, with a minimum of 3 +1 votes.

Please vote

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2

The git commit hash:
commit 63ed1882e372ef8cdf6677e9850237650e586848

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/

The SHA512 Checksum for these artifacts is:
683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2



Best regards,
Alex Kwak

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Eya Badal <ey...@apache.org>.
Looks good to me. 
+1 

Checked the following: 
*Download links valid.
*Checksums, PGP signatures valid.
*LICENSE, NOTICE, and DISCLAIMER files exist.
*All files have license headers if necessary.

Best regards, 
Eya

On 2022/02/07 11:21:16 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Remove trademarks.
> 
> The vote has been reopened now and will pass if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> 
> The SHA512 Checksum for these artifacts is:
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> 
> 
> Best regards,
> Alex Kwak
> 

[VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Alex Kwak <em...@apache.org>.
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.
- Remove trademarks.

The vote has been reopened now and will pass if a majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2

The git commit hash:
commit 63ed1882e372ef8cdf6677e9850237650e586848

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/

The SHA512 Checksum for these artifacts is:
683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2



Best regards,
Alex Kwak

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Alex Kwak <em...@apache.org>.
I am closing this vote now since it may have created some confusion when it was reopened (with the same email title) and after making some improvements in the release  such as the removal of the AgensGraph trademarks.

I will shortly reopen this vote with a different email title.
My apology for the confusion caused and to those who have already casted their vote. 

On 2022/02/07 08:33:11 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Remove trademarks.
> 
> 
> The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> 
> The SHA512 Checksum for these artifacts is:
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Alex Kwak <em...@apache.org>.
I am closing this vote due to incorrect info and will reopen it again soon

On 2022/02/07 08:33:11 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Remove trademarks.
> 
> 
> The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> 
> The SHA512 Checksum for these artifacts is:
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Nicholas Sorrell <ni...@cint.io>.
+1

--
Nick Sorrell
513.288.1084
https://cint.io


________________________________
From: Joe Fagan <jo...@bitnine.net>
Sent: Tuesday, February 8, 2022 4:28 PM
To: dev@age.apache.org <de...@age.apache.org>
Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

+1

On Tue, 8 Feb 2022 at 13:36, Young Seung Andrew Ko <
youngseung.andrew@gmail.com> wrote:

> +1
>
> Looks good
>
> 2022년 2월 8일 (화) 오후 6:12, Muhammad Shoaib <Sh...@bitnine.net>님이 작성:
>
> > +1
> >
> > On Mon, 7 Feb 2022 at 09:33, Alex Kwak <em...@apache.org> wrote:
> >
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer release v1.0.0-rc2
> > that
> > > we have been working toward it.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > - Remove trademarks.
> > >
> > >
> > > The vote is open now and until January 8th at 6:00 PM PST and passes
> if a
> > > majority +1 votes are cast, with a minimum of 3 +1 votes.
> > >
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > > The git commit hash:
> > > commit 63ed1882e372ef8cdf6677e9850237650e586848
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> > >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> > --
> >
> > * Muhammad Shoaib, PhD*
> >
> > * Senior Research Engineer *
> >
> > *P* : +82-70-4800-3517       *F* : +82-70-8677-2552
> > 401 Yangcheon-ro A/1201, Gangseo-gu, Seoul, 07528, Korea
> >
>
--

<http://bitnine.net>

Joe Fagan

Community Advocate Director



 M : +44 7788 148772



<https://www.facebook.com/search/top?q=bitnine%20agens>
<http://linkedin.com/company/bitnineglobal> <http://bitnine.net>
<http://age.apache.org>
A Graph Extension for PostgreSQL <http://age.apache.org>In the news: Bitnine
Promoting a First IPO in the Graph Database <https://bwnews.pr/3ds2mUc>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Joe Fagan <jo...@bitnine.net>.
+1

On Tue, 8 Feb 2022 at 13:36, Young Seung Andrew Ko <
youngseung.andrew@gmail.com> wrote:

> +1
>
> Looks good
>
> 2022년 2월 8일 (화) 오후 6:12, Muhammad Shoaib <Sh...@bitnine.net>님이 작성:
>
> > +1
> >
> > On Mon, 7 Feb 2022 at 09:33, Alex Kwak <em...@apache.org> wrote:
> >
> > > Dear Apache AGE Community,
> > >
> > > This is an official vote for the Apache AGE Viewer release v1.0.0-rc2
> > that
> > > we have been working toward it.
> > >
> > > To learn more about Apache AGE, please see http://age.apache.org/
> > >
> > > Functionalities included and addressed in this release:
> > > - Graph visualization for AGE.
> > > - Extends edge and vertex point by point.
> > > - Remove trademarks.
> > >
> > >
> > > The vote is open now and until January 8th at 6:00 PM PST and passes
> if a
> > > majority +1 votes are cast, with a minimum of 3 +1 votes.
> > >
> > > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > > [ ] 0 I won't get in the way
> > > [ ] -1 Do not release this package because ...
> > >
> > >
> > > The git tag to be discussed and voted upon
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > > The git commit hash:
> > > commit 63ed1882e372ef8cdf6677e9850237650e586848
> > >
> > > The release files, including signatures, digests, etc. can be found at:
> > >
> > >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> > >
> > > The SHA512 Checksum for these artifacts is:
> > >
> > >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> > >
> > > Release artifacts are signed with the following key:
> > > https://downloads.apache.org/incubator/age/KEYS
> > >
> > > The fingerprint of key to sign release artifacts:
> > > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> > >
> > > For more information about the contents of this release, see:
> > > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> > >
> > >
> > >
> > > Best regards,
> > > Alex Kwak
> > >
> > --
> >
> > * Muhammad Shoaib, PhD*
> >
> > * Senior Research Engineer *
> >
> > *P* : +82-70-4800-3517       *F* : +82-70-8677-2552
> > 401 Yangcheon-ro A/1201, Gangseo-gu, Seoul, 07528, Korea
> >
>
-- 

<http://bitnine.net>

Joe Fagan

Community Advocate Director



 M : +44 7788 148772



<https://www.facebook.com/search/top?q=bitnine%20agens>
<http://linkedin.com/company/bitnineglobal> <http://bitnine.net>
<http://age.apache.org>
A Graph Extension for PostgreSQL <http://age.apache.org>In the news: Bitnine
Promoting a First IPO in the Graph Database <https://bwnews.pr/3ds2mUc>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Young Seung Andrew Ko <yo...@gmail.com>.
+1

Looks good

2022년 2월 8일 (화) 오후 6:12, Muhammad Shoaib <Sh...@bitnine.net>님이 작성:

> +1
>
> On Mon, 7 Feb 2022 at 09:33, Alex Kwak <em...@apache.org> wrote:
>
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc2
> that
> > we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> > - Remove trademarks.
> >
> >
> > The vote is open now and until January 8th at 6:00 PM PST and passes if a
> > majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> > The git commit hash:
> > commit 63ed1882e372ef8cdf6677e9850237650e586848
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> >
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
> >
> >
> >
> > Best regards,
> > Alex Kwak
> >
> --
>
> * Muhammad Shoaib, PhD*
>
> * Senior Research Engineer *
>
> *P* : +82-70-4800-3517       *F* : +82-70-8677-2552
> 401 Yangcheon-ro A/1201, Gangseo-gu, Seoul, 07528, Korea
>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Muhammad Shoaib <Sh...@bitnine.net>.
+1

On Mon, 7 Feb 2022 at 09:33, Alex Kwak <em...@apache.org> wrote:

> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that
> we have been working toward it.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> - Remove trademarks.
>
>
> The vote is open now and until January 8th at 6:00 PM PST and passes if a
> majority +1 votes are cast, with a minimum of 3 +1 votes.
>
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
>
> The git commit hash:
> commit 63ed1882e372ef8cdf6677e9850237650e586848
>
> The release files, including signatures, digests, etc. can be found at:
>
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/
>
> The SHA512 Checksum for these artifacts is:
>
> 683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2
>
>
>
> Best regards,
> Alex Kwak
>
-- 

* Muhammad Shoaib, PhD*

* Senior Research Engineer *

*P* : +82-70-4800-3517       *F* : +82-70-8677-2552
401 Yangcheon-ro A/1201, Gangseo-gu, Seoul, 07528, Korea

[VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc2

Posted by Alex Kwak <em...@apache.org>.
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc2 that we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.
- Remove trademarks.


The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2

The git commit hash:
commit 63ed1882e372ef8cdf6677e9850237650e586848

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc2/

The SHA512 Checksum for these artifacts is:
683f17b6bfc84d9fd8c88f0856b4dd18fdb24ab429517134880594243601f6810fefe9f7d9da7d5a802e2236622974c4297cee874e0f06685e85a40d5ac90d3d

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc2



Best regards,
Alex Kwak

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Alex Kwak <em...@apache.org>.
Hello Community,

We are closing the vote. Results will be sent shortly.

On 2022/01/06 02:20:46 Alex Kwak wrote:
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> 
> 
> The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> 
> The git commit hash:
> commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> 
> The SHA512 Checksum for these artifacts is:
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> 
> 
> 
> Best regards,
> Alex Kwak
> 

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Nicholas Sorrell <ni...@cint.io>.
+1

And kudos to Josh and Alex for getting those issues resolved so quickly.

--
Nick Sorrell
513.288.1084
https://cint.io


________________________________
From: Joe Fagan <jo...@bitnine.net>
Sent: Wednesday, January 5, 2022 11:54 PM
To: dev@age.apache.org <de...@age.apache.org>
Subject: Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

+1 yes please

On Thu, 6 Jan 2022 at 02:36, Jasper Blues <ja...@liberation-data.com>
wrote:

> [X] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because …
>
> +1 Let’s show the community that progress is being made on all fronts.
>
> > On Jan 6, 2022, at 10:20 AM, Alex Kwak <em...@apache.org> wrote:
> >
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc1
> that we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until January 8th at 6:00 PM PST and passes if
> a majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> > The git commit hash:
> > commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> >
> >
> > Best regards,
> > Alex Kwak
>
> --

<http://bitnine.net>

Joe Fagan

Community Advocate Director



 M : +44 7788 148772



<https://www.facebook.com/search/top?q=bitnine%20agens>
<http://linkedin.com/company/bitnineglobal> <http://bitnine.net>
<http://age.apache.org>
A Graph Extension for PostgreSQL <http://age.apache.org>In the news: Bitnine
Promoting a First IPO in the Graph Database <https://bwnews.pr/3ds2mUc>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Joe Fagan <jo...@bitnine.net>.
+1 yes please

On Thu, 6 Jan 2022 at 02:36, Jasper Blues <ja...@liberation-data.com>
wrote:

> [X] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because …
>
> +1 Let’s show the community that progress is being made on all fronts.
>
> > On Jan 6, 2022, at 10:20 AM, Alex Kwak <em...@apache.org> wrote:
> >
> > Dear Apache AGE Community,
> >
> > This is an official vote for the Apache AGE Viewer release v1.0.0-rc1
> that we have been working toward it.
> >
> > To learn more about Apache AGE, please see http://age.apache.org/
> >
> > Functionalities included and addressed in this release:
> > - Graph visualization for AGE.
> > - Extends edge and vertex point by point.
> >
> >
> > The vote is open now and until January 8th at 6:00 PM PST and passes if
> a majority +1 votes are cast, with a minimum of 3 +1 votes.
> >
> > [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> > [ ] 0 I won't get in the way
> > [ ] -1 Do not release this package because ...
> >
> >
> > The git tag to be discussed and voted upon
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> > The git commit hash:
> > commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> >
> > The release files, including signatures, digests, etc. can be found at:
> >
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> >
> > The SHA512 Checksum for these artifacts is:
> >
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> >
> > Release artifacts are signed with the following key:
> > https://downloads.apache.org/incubator/age/KEYS
> >
> > The fingerprint of key to sign release artifacts:
> > 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> >
> > For more information about the contents of this release, see:
> > https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> >
> >
> >
> > Best regards,
> > Alex Kwak
>
> --

<http://bitnine.net>

Joe Fagan

Community Advocate Director



 M : +44 7788 148772



<https://www.facebook.com/search/top?q=bitnine%20agens>
<http://linkedin.com/company/bitnineglobal> <http://bitnine.net>
<http://age.apache.org>
A Graph Extension for PostgreSQL <http://age.apache.org>In the news: Bitnine
Promoting a First IPO in the Graph Database <https://bwnews.pr/3ds2mUc>

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Jasper Blues <ja...@liberation-data.com>.
[X] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because …

+1 Let’s show the community that progress is being made on all fronts. 

> On Jan 6, 2022, at 10:20 AM, Alex Kwak <em...@apache.org> wrote:
> 
> Dear Apache AGE Community,
> 
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.
> 
> To learn more about Apache AGE, please see http://age.apache.org/
> 
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
> 
> 
> The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.
> 
> [ ] +1 Release this package as Apache AGE Viewer v1.0.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
> 
> 
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> 
> The git commit hash:
> commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051
> 
> The release files, including signatures, digests, etc. can be found at:
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/
> 
> The SHA512 Checksum for these artifacts is:
> dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009
> 
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
> 
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
> 
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1
> 
> 
> 
> Best regards,
> Alex Kwak


[VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc1

Posted by Alex Kwak <em...@apache.org>.
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc1 that we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.


The vote is open now and until January 8th at 6:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE Viewer v1.0.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1

The git commit hash:
commit 2b7fe6018d9da5ce10cf206cc6e879577a3d8051

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc1/

The SHA512 Checksum for these artifacts is:
dce65e48c222d4bd0b1be8f571495b50217fcf60d82599702f3e42b36cc5afb0045b798099f981c0db13ed76a94157f9f6dadeb5940a20756bb5c2f6fb6b8009

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0-rc1



Best regards,
Alex Kwak

Re: [VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by John Gemignani <jr...@gmail.com>.
+1

john

On Wed, Dec 22, 2021 at 4:58 PM Alex Kwak <em...@apache.org> wrote:

> Dear Apache AGE Community,
>
> This is an official vote for the Apache AGE Viewer release v1.0.0-rc0 that
> we have been working toward it.
>
> To learn more about Apache AGE, please see http://age.apache.org/
>
> Functionalities included and addressed in this release:
> - Graph visualization for AGE.
> - Extends edge and vertex point by point.
>
>
> The vote is open now and until December 25th at 5:00 PM PST and passes if
> a majority +1 votes are cast, with a minimum of 3 +1 votes.
>
> [ ] +1 Release this package as Apache AGE 0.6.0
> [ ] 0 I won't get in the way
> [ ] -1 Do not release this package because ...
>
>
> The git tag to be discussed and voted upon
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
>
> The git commit hash:
> commit 2c55b2302875449565674aa039517734cf338031
>
> The release files, including signatures, digests, etc. can be found at:
>
> https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/
>
> The SHA512 Checksum for these artifacts is:
>
> 8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0
>
> Release artifacts are signed with the following key:
> https://downloads.apache.org/incubator/age/KEYS
>
> The fingerprint of key to sign release artifacts:
> 0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82
>
> For more information about the contents of this release, see:
> https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0
>
>
>
> Best regards,
> Alex Kwak
>

[VOTE] Release Apache AGE Viewer (incubating) 1.0.0-rc0

Posted by Alex Kwak <em...@apache.org>.
Dear Apache AGE Community,

This is an official vote for the Apache AGE Viewer release v1.0.0-rc0 that we have been working toward it.

To learn more about Apache AGE, please see http://age.apache.org/

Functionalities included and addressed in this release:
- Graph visualization for AGE.
- Extends edge and vertex point by point.


The vote is open now and until December 25th at 5:00 PM PST and passes if a majority +1 votes are cast, with a minimum of 3 +1 votes.

[ ] +1 Release this package as Apache AGE 0.6.0
[ ] 0 I won't get in the way
[ ] -1 Do not release this package because ...


The git tag to be discussed and voted upon
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0

The git commit hash:
commit 2c55b2302875449565674aa039517734cf338031

The release files, including signatures, digests, etc. can be found at:
https://dist.apache.org/repos/dist/dev/incubator/age/viewer/apache-age-viewer-1.0.0-incubating-rc0/

The SHA512 Checksum for these artifacts is:
8fa45254bba973678243a78321869aaf88c746b55168d4401931c5d6e87192c80d581d97e927c8b87098aaacba8d6f77bf1ca225e864c49117f5cb1887c699d0

Release artifacts are signed with the following key:
https://downloads.apache.org/incubator/age/KEYS

The fingerprint of key to sign release artifacts:
0E7F 408D 8C6A 1952 329C B379 D471 FDCE 5F5C 5B82

For more information about the contents of this release, see:
https://github.com/apache/incubator-age-viewer/releases/tag/v1.0.0



Best regards,
Alex Kwak

[GitHub] [incubator-age] deem0n commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
deem0n commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-986042405


   I had the same experience, but I have found a solution for safe dump/restore and upgrades. Will send Merge Request soon


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] simonowy commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
simonowy commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-968356285


   This is becoming a big problem as we have to drop (lose) all data to upgrade to the latest version of AGE. Is there a way to avoid this?


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] pdpotter commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
pdpotter commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-968636071


   :warning: I haven't tested is.
   
   I don't think the way the data is stored has changed between 0.5 and 0.6 (please correct me if I'm wrong), so you could try:
   
   ```
   sudo -u postgres pg_dump DATABASE_NAME > backup.sql
   sudo -u postgres dropdb DATABASE_NAME
   sudo -u postgres createdb -O DATABASE_USER DATABASE_NAME
   sudo -u postgres psql DATABASE_NAME < backup.sql
   ```


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] deem0n commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
deem0n commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-999408997


   #166 is first step to allow smooth upgrades and dump&restore


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-age] simonowy commented on issue #132: ERROR: extension "age" has no update path from version "0.5.0" to version "0.6.0"

Posted by GitBox <gi...@apache.org>.
simonowy commented on issue #132:
URL: https://github.com/apache/incubator-age/issues/132#issuecomment-985974559


   I tested what @pdpotter suggested. Lost the graph - that is select * from cypher ('graph_name', ...) ... doesn't work after restore the db.


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org