[PR #1694] [MERGED] fix(deps): update module github.com/cweill/gotests to v1.8.0 #1683

Closed
opened 2025-11-01 21:25:23 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/1694
Author: @renovate[bot]
Created: 10/21/2025
Status: Merged
Merged: 10/21/2025
Merged by: @kolaente

Base: mainHead: renovate/github.com-cweill-gotests-1.x


📝 Commits (1)

  • 1d69c12 fix(deps): update module github.com/cweill/gotests to v1.8.0

📊 Changes

2 files changed (+12 additions, -4 deletions)

View changed files

📝 go.mod (+4 -4)
📝 go.sum (+8 -0)

📄 Description

This PR contains the following updates:

Package Change Age Confidence
github.com/cweill/gotests v1.6.0 -> v1.8.0 age confidence

Release Notes

cweill/gotests (github.com/cweill/gotests)

v1.8.0: - Full Go Generics Support

Compare Source

🎉 Full Go Generics Support

This release adds complete support for Go generics (type parameters), enabling gotests to generate tests for generic functions and methods on generic types.

Key Features
  • 🔧 Generic Functions: Generate tests for functions with type parameters

    func FindFirst[T comparable](slice []T, target T) (int, error)
    
  • 🏗️ Generic Types: Support for methods on generic types

    type Set[T comparable] struct { ... }
    func (s *Set[T]) Add(v T)
    
  • 🎯 All Constraint Types: any, comparable, union types (int64 | float64), approximation (~int)

  • 🧠 Smart Type Mapping: Intelligent defaults for type instantiation

    • anyint
    • comparablestring
    • Union types → first option
    • Approximation → underlying type
  • 🔄 Multiple Type Parameters: Handles functions like Pair[T, U any]

📊 Test Coverage
  • 97.5% main package coverage
  • 83.5% overall project coverage
  • 100% coverage on all new parser functions
  • 8 comprehensive generic test patterns
🔧 Technical Improvements

Parser Enhancements:

  • New parseTypeDecls() extracts type parameters from type declarations
  • New parseTypeParams() parses AST field lists
  • New extractBaseTypeName() handles receiver types

Template Functions:

  • TypeArgs - generates concrete type arguments for calls
  • FieldType - substitutes type parameters in field declarations
  • ReceiverType - substitutes type parameters in receiver instantiations

Model Updates:

  • New TypeParam struct
  • Added TypeParams field to Function
  • Helper methods: IsGeneric(), HasGenericReceiver()
📚 Documentation

Added comprehensive "Go Generics Support" section to README with:

  • Example: Generic function test generation
  • Example: Methods on generic types
  • Type constraint mapping reference
🐛 Fixes

Closes #​165

📦 Installation
go install github.com/cweill/gotests/gotests@v1.8.0
🙏 Credits

🤖 Developed with assistance from Claude Code


Full Changelog: https://github.com/cweill/gotests/compare/v1.7.0...v1.8.0

v1.7.4

Compare Source

What's New in v1.7.4

This release fixes two important bugs that improve test correctness and restore broken functionality.

Bug Fixes
🐛 Fixed wantErr Test Logic (PR #​169)

When a test expects an error (tt.wantErr == true), gotests now correctly skips result validation instead of checking potentially undefined return values.

Before:

if (err != nil) != tt.wantErr {
    t.Errorf("Foo() error = %v, wantErr %v", err, tt.wantErr)
    continue
}
// Bug: Still checks results even when error is expected!
if got != tt.want {
    t.Errorf("Foo() = %v, want %v", got, tt.want)
}

After:

if (err != nil) != tt.wantErr {
    t.Errorf("Foo() error = %v, wantErr %v", err, tt.wantErr)
    continue
}
if tt.wantErr {
    return  // ← Fixed: Skip result checks when error expected
}
if got != tt.want {
    t.Errorf("Foo() = %v, want %v", got, tt.want)
}

This prevents false test failures and ensures tests behave correctly when expecting errors.

Thanks to @​arifmahmudrana for identifying this issue!

🐛 Fixed -template_params Flag (Issue #​149)

The -template_params flag was defined but never actually used due to a bug from PR #​90. This flag now works correctly!

Usage:


### Pass template parameters as JSON string
$ gotests -template_params '{"key":"value"}' -all file.go

### Or use a file (takes precedence)
$ gotests -template_params_file params.json -all file.go

This is useful when calling gotests from other tools with custom templates.

Thanks to @​butuzov for identifying this bug and @​cweill for the fix suggestion!

Installation
go install github.com/cweill/gotests/gotests@v1.7.4

Full Changelog: https://github.com/cweill/gotests/compare/v1.7.3...v1.7.4

v1.7.3

Compare Source

What's New in v1.7.3

This is a security update that addresses multiple CVEs by updating dependencies.

Security Fixes
🔒 Updated golang.org/x/tools to fix CVEs

Updated golang.org/x/tools from v0.0.0-20191109212701 (November 2019) to v0.38.0 (latest) to address multiple security vulnerabilities:

  • CVE-2021-38561 - Fixed
  • CVE-2019-9512 - Fixed
  • CVE-2020-29652 - Fixed
Changes
  • Updated golang.org/x/tools from 2019 version to v0.38.0
  • Updated Go directive to 1.24.0 (with toolchain go1.24.5)
  • Added indirect dependencies: golang.org/x/mod v0.29.0, golang.org/x/sync v0.17.0
  • Fixed test code compatibility with stricter format string checking in newer x/tools

All tests pass with the updated dependencies.

Installation
go install github.com/cweill/gotests/gotests@v1.7.3
Important Note

We recommend all users update to this version to ensure you have the latest security fixes.

Full Changelog: https://github.com/cweill/gotests/compare/v1.7.2...v1.7.3


Thanks to @​testwill for identifying these security vulnerabilities!

v1.7.2

Compare Source

What's New in v1.7.2

This is a small cleanup release with code quality improvements and documentation updates.

Improvements
🧹 Code Cleanup
  • Remove unnecessary type conversion (#​170) - Simplified code in generateTest() by removing redundant type conversion. Thanks to @​fengxuway!
📚 Documentation
  • Update VS Code link (#​167) - Changed Visual Studio Code link to point directly to gotests-specific configuration documentation for easier setup. Thanks to @​davidhsingyuchen!
Installation
go install github.com/cweill/gotests/gotests@v1.7.2

Full Changelog: https://github.com/cweill/gotests/compare/v1.7.1...v1.7.2

v1.7.1

Compare Source

What's New in v1.7.1

This release adds two highly-requested features to improve the gotests experience.

New Features
🧪 go-cmp Support (-use_go_cmp)

Generate tests using google/go-cmp instead of reflect.DeepEqual for better test assertions and diff output.

$ gotests -use_go_cmp -all -w example.go

Generated tests will use cmp.Equal() for comparisons and cmp.Diff() in error messages, providing much clearer output when tests fail.

Example output:

if !cmp.Equal(tt.want, got) {
    t.Errorf("Foo() = %v, want %v\ndiff=%s", got, tt.want, cmp.Diff(tt.want, got))
}

Resolves #​155 (thanks to @​butuzov for the original PR!)

📋 Version Information (-version)

Check which version of gotests you're running:

$ gotests -version
gotests v1.7.1
Go version: go1.22.0
Git commit: 5252e0b...
Build time: 2025-10-21T02:15:00Z

This helps with troubleshooting and verifying you have the latest release.

Resolves #​133

Housekeeping
  • Closed superseded README PRs (#​172, #​166) that were already addressed in v1.7.0
Installation
go install github.com/cweill/gotests/gotests@v1.7.1

Full Changelog: https://github.com/cweill/gotests/compare/v1.7.0...v1.7.1

v1.7.0: - Major Modernization Release

Compare Source

v1.7.0 - Major Modernization Release

After 5 years since v1.6.0, we're excited to release v1.7.0 with major improvements and modernizations! 🎉

New Features

Recursive Directory Support

You can now generate tests for entire directory trees using the ... pattern:

gotests -all pkg/...

This will recursively generate tests for all Go files in the pkg directory and its subdirectories. Fixes #​186.

Cleaner Generated Code

Generated tests now use Go 1.22+ loop variable scoping, eliminating the need for the tt := tt shadowing pattern. Tests are now cleaner and more readable.

Better Error Handling

Subtests with return values now use t.Fatalf() instead of t.Errorf() + return, providing clearer test failure semantics and preventing misleading output. Thanks to PR #​184.

🔧 Improvements

BREAKING: Minimum Go Version
  • Minimum Go version increased from 1.6 to 1.22
  • Leverages modern Go features for cleaner generated code
  • Aligns with Go's official support policy
Dependency Reduction
  • Replaced third-party bindata tools with stdlib embed package (PR #​181)
  • Removed 834+ lines of generated code
  • Simplified build process - no more go generate needed
  • Better maintainability and reduced external dependencies
Bug Fixes
  • Fixed import path bug when receiver types and methods are in different files (PR #​179)
  • Now correctly collects imports from all files in the package
  • Prevents compilation errors in generated test files
Template Improvements
  • Proper t.Parallel() placement at top-level test functions (fixes #​188)
  • Satisfies tparallel linter requirements
  • Better parallel test execution
Documentation & Installation
  • Updated README to use go install instead of deprecated go get (PR #​180)
  • Documented the -named flag for map-based table tests (PR #​185)
  • Added CHANGELOG.md for tracking changes
  • Added CLAUDE.md for AI-assisted development

📦 CI/CD Updates

  • Updated GitHub Actions to test Go 1.22.x, 1.23.x, 1.24.x, and 1.25.x
  • Modernized actions: setup-go v2→v5, checkout v2→v4
  • Simplified coverage reporting with coverallsapp/github-action@​v2
  • Fixed bot commit support for automated workflows

📊 Statistics

  • 834+ lines of generated bindata code removed
  • 5 PRs integrated
  • 2 issues fixed
  • 4 Go versions tested in CI (was 8, now focused on recent versions)

🙏 Thanks

Special thanks to the contributors whose PRs were integrated in this release:

And to everyone who reported issues and helped maintain this project!

📝 Installation

go install github.com/cweill/gotests/gotests@latest

🔗 Full Changelog

See CHANGELOG.md for complete details.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/1694 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 10/21/2025 **Status:** ✅ Merged **Merged:** 10/21/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/github.com-cweill-gotests-1.x` --- ### 📝 Commits (1) - [`1d69c12`](https://github.com/go-vikunja/vikunja/commit/1d69c12cbd9f311310a6ae27e31af75ce9d5c4bc) fix(deps): update module github.com/cweill/gotests to v1.8.0 ### 📊 Changes **2 files changed** (+12 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+4 -4) 📝 `go.sum` (+8 -0) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/cweill/gotests](https://redirect.github.com/cweill/gotests) | `v1.6.0` -> `v1.8.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcweill%2fgotests/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcweill%2fgotests/v1.6.0/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>cweill/gotests (github.com/cweill/gotests)</summary> ### [`v1.8.0`](https://redirect.github.com/cweill/gotests/releases/tag/v1.8.0): - Full Go Generics Support [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.7.4...v1.8.0) #### 🎉 Full Go Generics Support This release adds **complete support for Go generics (type parameters)**, enabling `gotests` to generate tests for generic functions and methods on generic types. ##### ✨ Key Features - 🔧 **Generic Functions**: Generate tests for functions with type parameters ```go func FindFirst[T comparable](slice []T, target T) (int, error) ``` - 🏗️ **Generic Types**: Support for methods on generic types ```go type Set[T comparable] struct { ... } func (s *Set[T]) Add(v T) ``` - 🎯 **All Constraint Types**: `any`, `comparable`, union types (`int64 | float64`), approximation (`~int`) - 🧠 **Smart Type Mapping**: Intelligent defaults for type instantiation - `any` → `int` - `comparable` → `string` - Union types → first option - Approximation → underlying type - 🔄 **Multiple Type Parameters**: Handles functions like `Pair[T, U any]` ##### 📊 Test Coverage - ✅ **97.5%** main package coverage - ✅ **83.5%** overall project coverage - ✅ **100%** coverage on all new parser functions - ✅ 8 comprehensive generic test patterns ##### 🔧 Technical Improvements **Parser Enhancements:** - New `parseTypeDecls()` extracts type parameters from type declarations - New `parseTypeParams()` parses AST field lists - New `extractBaseTypeName()` handles receiver types **Template Functions:** - `TypeArgs` - generates concrete type arguments for calls - `FieldType` - substitutes type parameters in field declarations - `ReceiverType` - substitutes type parameters in receiver instantiations **Model Updates:** - New `TypeParam` struct - Added `TypeParams` field to `Function` - Helper methods: `IsGeneric()`, `HasGenericReceiver()` ##### 📚 Documentation Added comprehensive "Go Generics Support" section to README with: - Example: Generic function test generation - Example: Methods on generic types - Type constraint mapping reference ##### 🐛 Fixes Closes [#&#8203;165](https://redirect.github.com/cweill/gotests/issues/165) ##### 📦 Installation ```bash go install github.com/cweill/gotests/gotests@v1.8.0 ``` ##### 🙏 Credits 🤖 Developed with assistance from [Claude Code](https://claude.com/claude-code) *** **Full Changelog**: <https://github.com/cweill/gotests/compare/v1.7.0...v1.8.0> ### [`v1.7.4`](https://redirect.github.com/cweill/gotests/releases/tag/v1.7.4) [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.7.3...v1.7.4) #### What's New in v1.7.4 This release fixes two important bugs that improve test correctness and restore broken functionality. ##### Bug Fixes ##### 🐛 Fixed wantErr Test Logic (PR [#&#8203;169](https://redirect.github.com/cweill/gotests/issues/169)) When a test expects an error (`tt.wantErr == true`), gotests now correctly skips result validation instead of checking potentially undefined return values. **Before:** ```go if (err != nil) != tt.wantErr { t.Errorf("Foo() error = %v, wantErr %v", err, tt.wantErr) continue } // Bug: Still checks results even when error is expected! if got != tt.want { t.Errorf("Foo() = %v, want %v", got, tt.want) } ``` **After:** ```go if (err != nil) != tt.wantErr { t.Errorf("Foo() error = %v, wantErr %v", err, tt.wantErr) continue } if tt.wantErr { return // ← Fixed: Skip result checks when error expected } if got != tt.want { t.Errorf("Foo() = %v, want %v", got, tt.want) } ``` This prevents false test failures and ensures tests behave correctly when expecting errors. Thanks to [@&#8203;arifmahmudrana](https://redirect.github.com/arifmahmudrana) for identifying this issue! ##### 🐛 Fixed -template\_params Flag (Issue [#&#8203;149](https://redirect.github.com/cweill/gotests/issues/149)) The `-template_params` flag was defined but never actually used due to a bug from PR [#&#8203;90](https://redirect.github.com/cweill/gotests/issues/90). This flag now works correctly! **Usage:** ```bash ### Pass template parameters as JSON string $ gotests -template_params '{"key":"value"}' -all file.go ### Or use a file (takes precedence) $ gotests -template_params_file params.json -all file.go ``` This is useful when calling gotests from other tools with custom templates. Thanks to [@&#8203;butuzov](https://redirect.github.com/butuzov) for identifying this bug and [@&#8203;cweill](https://redirect.github.com/cweill) for the fix suggestion! ##### Installation ```bash go install github.com/cweill/gotests/gotests@v1.7.4 ``` **Full Changelog**: <https://github.com/cweill/gotests/compare/v1.7.3...v1.7.4> ### [`v1.7.3`](https://redirect.github.com/cweill/gotests/releases/tag/v1.7.3) [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.7.2...v1.7.3) #### What's New in v1.7.3 This is a **security update** that addresses multiple CVEs by updating dependencies. ##### Security Fixes ##### 🔒 Updated golang.org/x/tools to fix CVEs Updated `golang.org/x/tools` from v0.0.0-20191109212701 (November 2019) to **v0.38.0** (latest) to address multiple security vulnerabilities: - **CVE-2021-38561** - Fixed - **CVE-2019-9512** - Fixed - **CVE-2020-29652** - Fixed ##### Changes - Updated `golang.org/x/tools` from 2019 version to v0.38.0 - Updated Go directive to 1.24.0 (with toolchain go1.24.5) - Added indirect dependencies: `golang.org/x/mod` v0.29.0, `golang.org/x/sync` v0.17.0 - Fixed test code compatibility with stricter format string checking in newer x/tools All tests pass with the updated dependencies. ##### Installation ```bash go install github.com/cweill/gotests/gotests@v1.7.3 ``` ##### Important Note **We recommend all users update to this version** to ensure you have the latest security fixes. **Full Changelog**: <https://github.com/cweill/gotests/compare/v1.7.2...v1.7.3> *** Thanks to [@&#8203;testwill](https://redirect.github.com/testwill) for identifying these security vulnerabilities! ### [`v1.7.2`](https://redirect.github.com/cweill/gotests/releases/tag/v1.7.2) [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.7.1...v1.7.2) #### What's New in v1.7.2 This is a small cleanup release with code quality improvements and documentation updates. ##### Improvements ##### 🧹 Code Cleanup - **Remove unnecessary type conversion** ([#&#8203;170](https://redirect.github.com/cweill/gotests/issues/170)) - Simplified code in `generateTest()` by removing redundant type conversion. Thanks to [@&#8203;fengxuway](https://redirect.github.com/fengxuway)! ##### 📚 Documentation - **Update VS Code link** ([#&#8203;167](https://redirect.github.com/cweill/gotests/issues/167)) - Changed Visual Studio Code link to point directly to gotests-specific configuration documentation for easier setup. Thanks to [@&#8203;davidhsingyuchen](https://redirect.github.com/davidhsingyuchen)! ##### Installation ```bash go install github.com/cweill/gotests/gotests@v1.7.2 ``` **Full Changelog**: <https://github.com/cweill/gotests/compare/v1.7.1...v1.7.2> ### [`v1.7.1`](https://redirect.github.com/cweill/gotests/releases/tag/v1.7.1) [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.7.0...v1.7.1) #### What's New in v1.7.1 This release adds two highly-requested features to improve the gotests experience. ##### New Features ##### 🧪 go-cmp Support (`-use_go_cmp`) Generate tests using [google/go-cmp](https://redirect.github.com/google/go-cmp) instead of `reflect.DeepEqual` for better test assertions and diff output. ```bash $ gotests -use_go_cmp -all -w example.go ``` Generated tests will use `cmp.Equal()` for comparisons and `cmp.Diff()` in error messages, providing much clearer output when tests fail. **Example output:** ```go if !cmp.Equal(tt.want, got) { t.Errorf("Foo() = %v, want %v\ndiff=%s", got, tt.want, cmp.Diff(tt.want, got)) } ``` Resolves [#&#8203;155](https://redirect.github.com/cweill/gotests/issues/155) (thanks to [@&#8203;butuzov](https://redirect.github.com/butuzov) for the original PR!) ##### 📋 Version Information (`-version`) Check which version of gotests you're running: ```bash $ gotests -version gotests v1.7.1 Go version: go1.22.0 Git commit: 5252e0b... Build time: 2025-10-21T02:15:00Z ``` This helps with troubleshooting and verifying you have the latest release. Resolves [#&#8203;133](https://redirect.github.com/cweill/gotests/issues/133) ##### Housekeeping - Closed superseded README PRs ([#&#8203;172](https://redirect.github.com/cweill/gotests/issues/172), [#&#8203;166](https://redirect.github.com/cweill/gotests/issues/166)) that were already addressed in v1.7.0 ##### Installation ```bash go install github.com/cweill/gotests/gotests@v1.7.1 ``` **Full Changelog**: <https://github.com/cweill/gotests/compare/v1.7.0...v1.7.1> ### [`v1.7.0`](https://redirect.github.com/cweill/gotests/releases/tag/v1.7.0): - Major Modernization Release [Compare Source](https://redirect.github.com/cweill/gotests/compare/v1.6.0...v1.7.0) ### v1.7.0 - Major Modernization Release After 5 years since v1.6.0, we're excited to release v1.7.0 with major improvements and modernizations! 🎉 #### ✨ New Features ##### Recursive Directory Support You can now generate tests for entire directory trees using the `...` pattern: ```bash gotests -all pkg/... ``` This will recursively generate tests for all Go files in the `pkg` directory and its subdirectories. Fixes [#&#8203;186](https://redirect.github.com/cweill/gotests/issues/186). ##### Cleaner Generated Code Generated tests now use Go 1.22+ loop variable scoping, eliminating the need for the `tt := tt` shadowing pattern. Tests are now cleaner and more readable. ##### Better Error Handling Subtests with return values now use `t.Fatalf()` instead of `t.Errorf() + return`, providing clearer test failure semantics and preventing misleading output. Thanks to PR [#&#8203;184](https://redirect.github.com/cweill/gotests/issues/184). #### 🔧 Improvements ##### **BREAKING:** Minimum Go Version - **Minimum Go version increased from 1.6 to 1.22** - Leverages modern Go features for cleaner generated code - Aligns with Go's official support policy ##### Dependency Reduction - Replaced third-party bindata tools with stdlib `embed` package (PR [#&#8203;181](https://redirect.github.com/cweill/gotests/issues/181)) - **Removed 834+ lines of generated code** - Simplified build process - no more `go generate` needed - Better maintainability and reduced external dependencies ##### Bug Fixes - **Fixed import path bug** when receiver types and methods are in different files (PR [#&#8203;179](https://redirect.github.com/cweill/gotests/issues/179)) - Now correctly collects imports from all files in the package - Prevents compilation errors in generated test files ##### Template Improvements - Proper `t.Parallel()` placement at top-level test functions (fixes [#&#8203;188](https://redirect.github.com/cweill/gotests/issues/188)) - Satisfies `tparallel` linter requirements - Better parallel test execution ##### Documentation & Installation - Updated README to use `go install` instead of deprecated `go get` (PR [#&#8203;180](https://redirect.github.com/cweill/gotests/issues/180)) - Documented the `-named` flag for map-based table tests (PR [#&#8203;185](https://redirect.github.com/cweill/gotests/issues/185)) - Added CHANGELOG.md for tracking changes - Added CLAUDE.md for AI-assisted development #### 📦 CI/CD Updates - Updated GitHub Actions to test Go 1.22.x, 1.23.x, 1.24.x, and 1.25.x - Modernized actions: setup-go v2→v5, checkout v2→v4 - Simplified coverage reporting with coverallsapp/github-action\@&#8203;v2 - Fixed bot commit support for automated workflows #### 📊 Statistics - **834+ lines** of generated bindata code removed - **5 PRs** integrated - **2 issues** fixed - **4 Go versions** tested in CI (was 8, now focused on recent versions) #### 🙏 Thanks Special thanks to the contributors whose PRs were integrated in this release: - PR [#&#8203;184](https://redirect.github.com/cweill/gotests/issues/184) (t.Fatalf improvement) - PR [#&#8203;185](https://redirect.github.com/cweill/gotests/issues/185) (documentation) - PR [#&#8203;180](https://redirect.github.com/cweill/gotests/issues/180) (go install) - PR [#&#8203;181](https://redirect.github.com/cweill/gotests/issues/181) (embed package) - PR [#&#8203;179](https://redirect.github.com/cweill/gotests/issues/179) (import fix) And to everyone who reported issues and helped maintain this project! #### 📝 Installation ```bash go install github.com/cweill/gotests/gotests@latest ``` #### 🔗 Full Changelog See [CHANGELOG.md](https://redirect.github.com/cweill/gotests/blob/master/CHANGELOG.md) for complete details. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-01 21:25:23 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#1683