You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by fl...@apache.org on 2021/06/04 10:35:24 UTC

[tinkerpop] branch TINKERPOP-2576 updated (9285d3e -> daebed0)

This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a change to branch TINKERPOP-2576
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


 discard 9285d3e  TINKERPOP-2576 Move to GitHub's Dependabot for Gremlin.NET
     add bd3dbba  TINKERPOP-2551 Configure gremlint build into maven
     add e232445  Removed gremlin-python from coverage test
     add 68b2f09  Extra line removed after build for some reason CTR
     add 0d1d86a  Merge branch '3.4-dev' into 3.5-dev
     new daebed0  TINKERPOP-2576 Enable GitHub's Dependabot for .NET

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9285d3e)
            \
             N -- N -- N   refs/heads/TINKERPOP-2576 (daebed0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |    2 +-
 gremlin-dotnet/NOTICE                              |    2 +-
 .../src/main/javascript/gremlin-javascript/NOTICE  |    2 +-
 .../gremlin-javascript/package-lock.json           | 3501 ++---------
 .../javascript/gremlin-javascript/package.json     |    2 +-
 gremlin-python/src/main/python/NOTICE              |    2 +-
 gremlin-tools/gremlin-coverage/pom.xml             |   16 -
 gremlint/.gitignore                                |   25 +-
 gremlint/NOTICE                                    |    5 +
 gremlint/README.md                                 |   32 +-
 gremlint/package-lock.json                         | 6105 +-------------------
 gremlint/package.json                              |    9 +-
 {gremlin-javascript => gremlint}/pom.xml           |  136 +-
 pom.xml                                            |   26 +-
 14 files changed, 577 insertions(+), 9288 deletions(-)
 create mode 100644 gremlint/NOTICE
 copy {gremlin-javascript => gremlint}/pom.xml (56%)

[tinkerpop] 01/01: TINKERPOP-2576 Enable GitHub's Dependabot for .NET

Posted by fl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

florianhockmann pushed a commit to branch TINKERPOP-2576
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit daebed0e1b2fbf8259fc848a67c73b48738cce8a
Author: Florian Hockmann <fh...@florian-hockmann.de>
AuthorDate: Fri Jun 4 11:43:13 2021 +0200

    TINKERPOP-2576 Enable GitHub's Dependabot for .NET
    
    Dependabot is now part of GitHub which comes with a new config file.
    This commit configures Dependabot only for Gremlin.NET so we can try it
    out there first.
    
    We don't need the old Dependabot config file any more that was for the
    pre-GitHub version as soon as we enable Dependabot via GitHub by merging
    this PR.
---
 .dependabot/config.yml | 10 ----------
 .github/dependabot.yml | 10 ++++++++++
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.dependabot/config.yml b/.dependabot/config.yml
deleted file mode 100644
index 0871a00..0000000
--- a/.dependabot/config.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-version: 1
-update_configs:
-  - package_manager: "java:maven"
-    directory: "/"
-    update_schedule: "monthly"
-    allowed_updates:
-      - match:
-          update_type: "security"
-      - match:
-          dependency_name: "org.apache.tinkerpop:die-dependabot"
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..6435b9d
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+version: 2
+updates:
+  - package-ecosystem: "nuget"
+    directory: "/gremlin-dotnet"
+    schedule:
+      interval: "daily"
+    target-branch: "3.5-dev"
+    labels:
+      - ".NET"
+      - "dependencies"