Skip to content

chore(deps): bump go directive in samples/go.mod and e2e/go.mod, fix module path typo #424

Description

@54m

概要

`v2.14.0` ではルート `go.mod` を `go 1.18` → `go 1.25` に上げたが、サブモジュールは古いまま:

  • `samples/go.mod`: `go 1.17`
  • `e2e/go.mod`: `go 1.18`

加えて `e2e/go.mod` の module path には既知のタイポがある:

```go
module github.com/go-gneralize/api_gen/v2/e2e // ← 'gneralize' (typo)
```

正しくは `github.com/go-generalize/api_gen/v2/e2e`。

やること

  • `samples/go.mod` の `go` directive を 1.25 に更新
  • `samples/go.mod` で参照している依存も最新化(`go mod tidy`)
  • `e2e/go.mod` の `go` directive を 1.25 に更新
  • `e2e/go.mod` の module path を `go-gneralize` → `go-generalize` に修正
  • e2e 内部 import(`github.com/go-gneralize/...`)を全て `go-generalize` に書き換え
  • `make e2e` がローカル + CI で green
  • `make gen_samples` で samples が正常生成

注意

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions