Skip to content

chore: update arimxyer references after org transfer to reyamira#92

Closed
arimxyer wants to merge 1 commit into
mainfrom
chore/reyamira-org-transfer
Closed

chore: update arimxyer references after org transfer to reyamira#92
arimxyer wants to merge 1 commit into
mainfrom
chore/reyamira-org-transfer

Conversation

@arimxyer

@arimxyer arimxyer commented May 9, 2026

Copy link
Copy Markdown
Collaborator

Summary

Repo moved to the reyamira org. This sweep rewrites repo-URL references across the codebase to match the new ownership.

What changed

  • READMEs / docs / CHANGELOG / SECURITY / CONTRIBUTING — all https://github.com/arimxyer/pass-cli…/reyamira/pass-cli, brew tap/scoop bucket install commands, badge URLs (shields.io, codecov, Go Report Card), Pages URLs (arimxyer.github.io/pass-cli/reyamira.github.io/pass-cli/).
  • .goreleaser.ymlrepository.owner for brews + scoops + release.github.owner, all homepage: fields, header/footer release-note URLs.
  • cmd/doctor.goGitHubRepo: "arimxyer/pass-cli""reyamira/pass-cli" (used at runtime for update checks).
  • .github/workflows/docs-validation.yml — grep-pattern updated to match the new canonical URL.
  • manifests/winget/ — repo URLs (PublisherSupportUrl, PackageUrl, LicenseUrl, InstallerUrl).
  • homebrew/pass-cli.rb and scoop/pass-cli.json — local formula/manifest copies updated.

What didn't change (deliberate)

  • Go module pathgo.mod still declares module github.com/arimxyer/pass-cli; all imports and goreleaser ldflags still match. Changing it is a breaking change for go install users and is its own decision.
  • assignees: ['arimxyer'] in issue-management workflow — that's the user's GitHub login, not a repo path.
  • CHANGELOG.md historical entry mentioning the prior ari1110arimxyer rename — historical text, preserved.
  • winget Publisher: arimxyer / Author: arimxyer / Copyright (c) 2025 arimxyer — publisher-identity decision, not a repo-path rewrite.

Test plan

Repo moved to reyamira org. Rewrites repo URLs across READMEs, docs,
goreleaser config, badges, formula/manifest copies, winget URLs, and
the doctor command's GitHubRepo field. Leaves Go module path
(go.mod, all imports, ldflags) and winget Publisher/Author/Copyright
identity unchanged — those are separate decisions.
arimxyer added a commit that referenced this pull request Jun 27, 2026
The repo transferred from the `arimxyer` org to `reyamira` (the old URLs now
redirect). This rewrites every repository/web/publish reference to reyamira so
0.18.0 — the first release since the transfer — publishes to the right place.

Changed:
- .goreleaser.yml: release.github.owner + brews/scoops repository.owner ->
  reyamira; homepage/install snippets/changelog URLs -> reyamira.
- homebrew/pass-cli.rb, scoop/pass-cli.json: homepage, release download URLs,
  autoupdate/checkver -> reyamira.
- cmd/doctor.go: runtime GitHubRepo update-check slug -> reyamira/pass-cli.
- cmd/root.go, cmd/keychain_status.go, internal/config/config.go: runtime
  help/doc URL strings -> reyamira (string literals/comments only).
- README, SECURITY, CONTRIBUTING, all docs/**, docsite/hugo.yaml, issue
  templates, docs-validation workflow, winget/brew/scoop manifests,
  .doc-manager: badges, Pages URLs, repo links -> reyamira.

Deliberately kept as arimxyer (identity / module path, not repo references):
- Go module path `github.com/arimxyer/pass-cli` in go.mod + docsite/go.mod, all
  .go import statements, and the .goreleaser.yml ldflags that inject into it.
- CHANGELOG history of the prior ari1110 -> arimxyer rename.
- winget Publisher / Author / Copyright / PackageIdentifier (arimxyer.pass-cli)
  and PublisherUrl (publisher's GitHub profile).
- issue-management.yml `assignees: ['arimxyer']` (GitHub username).

Supersedes #92 (the long-open sweep, now stale). Verified: go build, go vet,
valid .goreleaser.yml, residual-grep clean (only intentional keeps remain).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019sxsM218vNzDbuMZ2nhMzx
arimxyer added a commit that referenced this pull request Jun 27, 2026
* chore(org): complete arimxyer -> reyamira repo reference sweep

The repo transferred from the `arimxyer` org to `reyamira` (the old URLs now
redirect). This rewrites every repository/web/publish reference to reyamira so
0.18.0 — the first release since the transfer — publishes to the right place.

Changed:
- .goreleaser.yml: release.github.owner + brews/scoops repository.owner ->
  reyamira; homepage/install snippets/changelog URLs -> reyamira.
- homebrew/pass-cli.rb, scoop/pass-cli.json: homepage, release download URLs,
  autoupdate/checkver -> reyamira.
- cmd/doctor.go: runtime GitHubRepo update-check slug -> reyamira/pass-cli.
- cmd/root.go, cmd/keychain_status.go, internal/config/config.go: runtime
  help/doc URL strings -> reyamira (string literals/comments only).
- README, SECURITY, CONTRIBUTING, all docs/**, docsite/hugo.yaml, issue
  templates, docs-validation workflow, winget/brew/scoop manifests,
  .doc-manager: badges, Pages URLs, repo links -> reyamira.

Deliberately kept as arimxyer (identity / module path, not repo references):
- Go module path `github.com/arimxyer/pass-cli` in go.mod + docsite/go.mod, all
  .go import statements, and the .goreleaser.yml ldflags that inject into it.
- CHANGELOG history of the prior ari1110 -> arimxyer rename.
- winget Publisher / Author / Copyright / PackageIdentifier (arimxyer.pass-cli)
  and PublisherUrl (publisher's GitHub profile).
- issue-management.yml `assignees: ['arimxyer']` (GitHub username).

Supersedes #92 (the long-open sweep, now stale). Verified: go build, go vet,
valid .goreleaser.yml, residual-grep clean (only intentional keeps remain).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019sxsM218vNzDbuMZ2nhMzx

* docs: correct #104 changelog entry and a dead anchor (verification findings)

The blank-check verification caught two doc bugs shipped in #111:

- CHANGELOG #104 entry was inverted (the misleading squash subject "drop dead
  --hash, feedback, --offline" drove it). Verified against the #104 diff
  (67ca1d1): it removed the dead `rclone lsjson --hash` flag, ADDED pull-side
  sync feedback (not removed; still live at cmd/helpers.go:584), and ADDED a new
  global `--offline` flag. Corrected the entry and moved `--offline` to Added.
  Also added a [0.18.0] note for the arimxyer->reyamira install-source change.
- scripting-guide.md: fixed a dead `#configuration` anchor -> the configuration
  reference doc.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019sxsM218vNzDbuMZ2nhMzx

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@arimxyer

Copy link
Copy Markdown
Collaborator Author

Superseded by #112, which completed the arimxyer→reyamira sweep (preserving the Go module path / CHANGELOG history / winget identity that this PR's notes called out) and shipped with the v0.18.0 release.

@arimxyer arimxyer closed this Jun 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant