Summary:
The most up-to-date copyright format is "... YugabyteDB, Inc." The old
ones look like
- "... YugaByte Inc."
- "... YugaByte, Inc."
- "... Yugabyte Inc."
- "... Yugabyte, Inc."
- "... Yugabytedb, Inc."
Fix all files to have this new copyright over the old ones by running
this command:
git grep -El 'Yuga[Bb]yte([Dd]b)?,? Inc' \
| xargs sed -iE 's/Yuga[Bb]yte\([Dd]b\)\?,\? Inc/YugabyteDB, Inc/'
Also fix related lines
The following only applies to changes made to this file as part of YugaByte development.
to look like
The following only applies to changes made to this file as part of YugabyteDB development.
by running this command:
git grep -El 'Yuga[Bb]yte([Dd]b)? development' \
| xargs sed -iE 's/Yuga[Bb]yte\([Dd]b\)\? development/YugabyteDB development/'
Lint rules to enforce this can be added separately. For example, C++
files (src/yb) have https://github.com/yugabyte/yb-cpplint/pull/23.
**Upgrade/Rollback safety:**
Proto files only change comments, so no issues here.
Jira: DB-18285
Test Plan:
jenkins
Close: #28591
Reviewers: hsunder, anijhawan, nbhatia, nsingh, esheng
Reviewed By: nsingh, esheng
Subscribers: nikhil, devops, ybase, yql
Differential Revision: https://phorge.dev.yugabyte.com/D46750