Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Go module to github.com/getsops/sops/v3 #1247

Merged
merged 2 commits into from
Aug 9, 2023
Merged

Commits on Jul 31, 2023

  1. Rename Go module to github.com/getsops/sops/v3

    This commit renames the Go module from `go.mozilla.org/sops/v3` to
    `github.com/getsops/sops/v3` without a major version bump, to align
    with new stewardship.
    
    For more information around this change, refer to
    #1246.
    
    For a one-liner to change the `go.mod` and any import paths in your
    Go project making use of this module, run:
    
    ```
    find /path/to/repo -type f \( -name "*.go" -o -name "go.mod" \) -exec sed -i 's|go.mozilla.org/sops/v3|github.com/getsops/sops/v3|g' {} \;
    find /path/to/repo -type f \( -name "*.go" -o -name "go.mod" \) -exec sed -i '' 's|go.mozilla.org/sops/v3|github.com/getsops/sops/v3|g' {} \;
    ```
    
    Signed-off-by: Hidde Beydals <hidde@hhh.computer>
    hiddeco committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    f2a1d4c View commit details
    Browse the repository at this point in the history
  2. Remove "download page" generator

    This was historically used to generate https://go.mozilla.org/sops/,
    which is not under our control.
    
    Signed-off-by: Hidde Beydals <hidde@hhh.computer>
    hiddeco committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    d6367c1 View commit details
    Browse the repository at this point in the history