You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This updates `Byron/gitoxide` URLs to `GitoxideLabs/gitoxide` in:
- Markdown documentation, except changelogs and other such files
where such changes should not be made.
- Documentation comments (in .rs files).
- Manifest (.toml) files, for the value of the `repository` key.
- The comments appearing at the top of a sample hook that contains
a repository URL as an example.
When making these changes, I also allowed my editor to remove
trailing whitespace in any lines in files already being edited
(since, in this case, there was no disadvantage to allowing this).
The gitoxide repository URL changed when the repository was moved
into the recently created GitHub organization `GitoxideLabs`, as
detailed in #1406. Please note that, although I believe updating
the URLs to their new canonical values is useful, this is not
needed to fix any broken links, since `Byron/gitoxide` URLs
redirect (and hopefully will always redirect) to the coresponding
`GitoxideLabs/gitoxide` URLs.
While this change should not break any URLs, some affected URLs
were already broken. This updates them, but they are still broken.
They will be fixed in a subsequent commit.
This also does not update `Byron/gitoxide` URLs in test fixtures
or test cases, nor in the `Makefile`. (It may make sense to change
some of those too, but it is not really a documentation change.)
Copy file name to clipboardExpand all lines: DEVELOPMENT.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
* handle all errors, never `unwrap()`. If needed, `expect("why")`.
17
17
* provide an error chain and make it easy to understand what went wrong.
18
18
* We `thiserror` generally.
19
-
* Adhere to the [stability guide](https://github.com/Byron/gitoxide/blob/main/STABILITY.md)
19
+
* Adhere to the [stability guide](https://github.com/GitoxideLabs/gitoxide/blob/main/STABILITY.md)
20
20
21
21
## Commit Messages
22
22
@@ -196,7 +196,7 @@ In _porcelain_ crates, like `gix`, we have `Platforms` which are typically cheap
196
196
should keep a reference to the `Repository` instance that created them as the user is expected to clone the `Repository` if there is the need.
197
197
However, if these structures are more expensive, call them `Cache` or `<NotPlatform>` and prefer to clone the `Repository` into them or otherwise keep them free of lifetimes
198
198
to allow the user to keep this structure around for repeated calls. References for this paragraph are [this PR](https://github.com/Canop/bacon/pull/98) and
Copy file name to clipboardExpand all lines: SECURITY.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
## Reporting a Vulnerability
4
4
5
-
Please feel free to [draft a GitHub advisory](https://github.com/Byron/gitoxide/security/advisories/new), and I will work with you to disclose and or resolve the issue
5
+
Please feel free to [draft a GitHub advisory](https://github.com/GitoxideLabs/gitoxide/security/advisories/new), and I will work with you to disclose and or resolve the issue
6
6
responsibly.
7
7
8
-
If this doesn't seem like the right approach or there are questions, please feel free to reach out to the @icloud.com email used in my commits.
8
+
If this doesn't seem like the right approach or there are questions, please feel free to reach out to the @icloud.com email used in my commits.
Copy file name to clipboardExpand all lines: SHORTCOMINGS.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ This file is for tracking features that are less well implemented or less powerf
25
25
***Objects larger than 32 bits cannot be loaded on 32 bit systems**
26
26
* in-memory representations objects cannot handle objects greater than the amount of addressable memory.
27
27
* This will not affect git LFS though.
28
-
28
+
29
29
### `gix`
30
30
31
31
* object replacements are read once upon opening the repository from their refs and changes to these won't be picked up.
@@ -38,5 +38,5 @@ This file is for tracking features that are less well implemented or less powerf
38
38
39
39
### `gix-features`
40
40
41
-
***sha1** isn't hardened (i.e. doesn't have collision detection). Needs [to be contributed](https://github.com/Byron/gitoxide/issues/585).
41
+
***sha1** isn't hardened (i.e. doesn't have collision detection). Needs [to be contributed](https://github.com/GitoxideLabs/gitoxide/issues/585).
42
42
***local time** is currently impeded by [this issue](https://github.com/time-rs/time/issues/293#issuecomment-909158529) but it's planned to resolve it eventually.
0 commit comments