{"id":39208585,"url":"https://github.com/jakoblorz/go-changesets","last_synced_at":"2026-02-09T01:06:21.388Z","repository":{"id":332451474,"uuid":"1132379204","full_name":"jakoblorz/go-changesets","owner":"jakoblorz","description":"Simple and pluggable changesets for go workspaces","archived":false,"fork":false,"pushed_at":"2026-01-13T22:12:45.000Z","size":133,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T00:41:51.371Z","etag":null,"topics":["build","changeset","changesets","cicd","golang","monorepo","release"],"latest_commit_sha":null,"homepage":"https://jakoblorz.de/posts/versioning-in-go-workspaces","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jakoblorz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-11T21:10:52.000Z","updated_at":"2026-01-13T22:12:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jakoblorz/go-changesets","commit_stats":null,"previous_names":["jakoblorz/go-changesets"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jakoblorz/go-changesets","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakoblorz%2Fgo-changesets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakoblorz%2Fgo-changesets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakoblorz%2Fgo-changesets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakoblorz%2Fgo-changesets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakoblorz","download_url":"https://codeload.github.com/jakoblorz/go-changesets/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakoblorz%2Fgo-changesets/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28521301,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T22:11:28.393Z","status":"ssl_error","status_checked_at":"2026-01-17T22:11:27.841Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build","changeset","changesets","cicd","golang","monorepo","release"],"created_at":"2026-01-17T23:01:37.929Z","updated_at":"2026-02-05T14:17:58.597Z","avatar_url":"https://github.com/jakoblorz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-changeset\n\nA CLI for managing changesets, versions, changelogs, and GitHub releases in **Go workspaces** (monorepos). Inspired by `@changesets/cli`.\n\n## Quick start\n\n### Install\n\n```bash\ngo install github.com/jakoblorz/go-changesets/cmd/changeset@latest\n```\n\n### Prerequisites\n\n- A Go workspace with a `go.work` at the repo root\n- One or more Go modules referenced via `go.work use`\n\n`go-changeset` also supports Node workspace projects via `package.json`, but Go workspaces are the primary workflow.\n\n\n### Typical workflow\n\n1) Add a changeset\n\n```bash\nchangeset\n# or\nchangeset add\n```\n\n2) Apply changesets to a project (bumps version + updates changelog)\n\n```bash\nchangeset version --project \u003cproject\u003e\n```\n\n3) Publish a GitHub release (creates git tag + GitHub release)\n\n```bash\nexport GITHUB_TOKEN=...\nchangeset publish --project \u003cproject\u003e --owner \u003corg\u003e --repo \u003crepo\u003e\n```\n\n### Batch operations\n\nRun commands per project with filters:\n\n```bash\n# Version all projects that have pending changesets\nchangeset each --filter=open-changesets -- changeset version\n\n# Publish all projects where the local version is newer than the latest tag\nchangeset each --filter=outdated-versions -- \\\n  changeset publish --owner \u003corg\u003e --repo \u003crepo\u003e\n```\n\n## Documentation\n\nExtended guides live in `docs/`:\n\n- `docs/01_intro-to-using-changesets.mdx`\n- `docs/02_adding-a-changeset.mdx`\n- `docs/03_changeset-groups.mdx`\n- `docs/04_snapshotting.mdx`\n- `docs/05_github-integration.mdx`\n- `docs/06_concepts.mdx`\n- `docs/07_cli-reference.mdx`\n\n## Architecture (high level)\n\n- Business logic is separated from IO via mockable interfaces:\n  - `internal/filesystem.FileSystem`\n  - `internal/git.GitClient`\n  - `internal/github.GitHubClient`\n- Core domain types live in `internal/models`.\n- CLI is handling imperative flow: `internal/cli`\n\n## Testing\n\n```bash\ngo test ./...\n```\n\nE2E tests:\n\n```bash\ngo test ./test/e2e/... -v\n```\n\n## Kitchen sink example\n\nA complete demo monorepo lives in `kitchensink/`.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakoblorz%2Fgo-changesets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakoblorz%2Fgo-changesets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakoblorz%2Fgo-changesets/lists"}