Skip to content

Commit 8c2875f

Browse files
chore: update module path and copyright disclaimers (#9533)
**Description** This PR remaps the top level module to dgraph-io and updates the copyright information to reflect the correct ownership. In addition, several reported code quality repairs were made including integer overflow issues and potential logging of sensitive information. **Checklist** - [x] Code compiles correctly and linting passes locally
1 parent e163eba commit 8c2875f

File tree

578 files changed

+3381
-3310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

578 files changed

+3381
-3310
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# CODEOWNERS info: https://help.github.com/en/articles/about-code-owners
22
# Owners are automatically requested for review for PRs that changes code
33
# that they own.
4-
* @hypermodeinc/database
4+
* @dgraph-io/database

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Dgraph Community Support
4-
url: https://discord.hypermode.com
3+
- name: Dgraph Community
4+
url: https://github.com/dgraph-io/dgraph/discussions
55
about: Please ask and answer questions here

.github/workflows/cd-dgraph-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
with:
2828
push: true
2929
platforms: linux/amd64,linux/arm64
30-
tags: ghcr.io/hypermodeinc/dgraph-standalone:nightly
30+
tags: ghcr.io/dgraph-io/dgraph-standalone:nightly

.github/workflows/ci-dgraph-core-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ jobs:
7878
uses: trunk-io/analytics-uploader@v2
7979
with:
8080
junit-paths: ./test-results.xml
81-
org-slug: hypermode
81+
org-slug: dgraph-io
8282
token: ${{ secrets.TRUNK_TOKEN }}

.github/workflows/ci-dgraph-jepsen-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Checkout jepsen repo
2121
uses: actions/checkout@v5
2222
with:
23-
repository: hypermodeinc/jepsen
23+
repository: dgraph-io/jepsen
2424
path: jepsen
2525
ref: master
2626
- name: Set jepsen root

.github/workflows/ci-dgraph-systest-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ jobs:
7979
uses: trunk-io/analytics-uploader@v2
8080
with:
8181
junit-paths: ./test-results.xml
82-
org-slug: hypermode
82+
org-slug: dgraph-io
8383
token: ${{ secrets.TRUNK_TOKEN }}

.github/workflows/ci-dgraph-vector-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ permissions:
2727
jobs:
2828
dgraph-vector-tests:
2929
if: github.event.pull_request.draft == false
30-
runs-on: blacksmith-8vcpu-ubuntu-2404
30+
runs-on: blacksmith-16vcpu-ubuntu-2404
3131
timeout-minutes: 60
3232
steps:
3333
- uses: actions/checkout@v5
@@ -78,5 +78,5 @@ jobs:
7878
uses: trunk-io/analytics-uploader@v2
7979
with:
8080
junit-paths: ./test-results.xml
81-
org-slug: hypermode
81+
org-slug: dgraph-io
8282
token: ${{ secrets.TRUNK_TOKEN }}

.github/workflows/ci-dgraph-weekly-upgrade-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cp dgraph/dgraph ~/go/bin/dgraph
3737
# run the sytem upgrade tests
3838
go test -v -timeout=120m -failfast -tags=upgrade \
39-
github.com/hypermodeinc/dgraph/v25/systest/mutations-and-queries
39+
github.com/dgraph-io/dgraph/v25/systest/mutations-and-queries
4040
# clean up docker containers after test execution
4141
go clean -testcache
4242
# sleep
@@ -69,7 +69,7 @@ jobs:
6969
cp dgraph/dgraph ~/go/bin/dgraph
7070
# run the sytem upgrade tests
7171
go test -v -timeout=120m -failfast -tags=upgrade \
72-
github.com/hypermodeinc/dgraph/v25/systest/multi-tenancy
72+
github.com/dgraph-io/dgraph/v25/systest/multi-tenancy
7373
# clean up docker containers after test execution
7474
go clean -testcache
7575
# sleep
@@ -102,7 +102,7 @@ jobs:
102102
cp dgraph/dgraph ~/go/bin/dgraph
103103
# run the sytem upgrade tests
104104
go test -v -timeout=120m -failfast -tags=upgrade \
105-
github.com/hypermodeinc/dgraph/v25/systest/plugin
105+
github.com/dgraph-io/dgraph/v25/systest/plugin
106106
# clean up docker containers after test execution
107107
go clean -testcache
108108
# sleep
@@ -135,9 +135,9 @@ jobs:
135135
cp dgraph/dgraph ~/go/bin/dgraph
136136
# run the core upgrade tests
137137
go test -v -timeout=120m -failfast -tags=upgrade \
138-
github.com/hypermodeinc/dgraph/v25/acl \
139-
github.com/hypermodeinc/dgraph/v25/worker \
140-
github.com/hypermodeinc/dgraph/v25/query
138+
github.com/dgraph-io/dgraph/v25/acl \
139+
github.com/dgraph-io/dgraph/v25/worker \
140+
github.com/dgraph-io/dgraph/v25/query
141141
# clean up docker containers after test execution
142142
go clean -testcache
143143
# sleep

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
steps:
3535
- name: Checkout repository
3636
uses: actions/checkout@v5
37+
with:
38+
fetch-depth: 0
3739

3840
- name: Initialize CodeQL
3941
uses: github/codeql-action/init@v3

.github/workflows/trunk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ permissions:
1111
jobs:
1212
trunk-code-quality:
1313
name: Trunk Code Quality
14-
uses: hypermodeinc/.github/.github/workflows/trunk.yml@main
14+
uses: dgraph-io/.github/.github/workflows/trunk.yml@main

0 commit comments

Comments
 (0)