Releases: danieljoos/wincred
Releases · danieljoos/wincred
v1.2.3
What's Changed
- Test newer Go versions by @danieljoos in #63
- gha: update go matrix; add go1.23, stable and oldstable by @thaJeztah in #77
- Bump github.com/stretchr/testify from 1.9.0 to 1.11.1 by @dependabot[bot] in #74
- Bump actions/checkout from 4 to 5 by @dependabot[bot] in #71
- fix unsafe uintptr usage to be GC-safe on go1.25 by @thaJeztah in #78
- Bump actions/setup-go from 5 to 6 by @dependabot[bot] in #75
- Bump codecov/codecov-action from 4 to 5 by @dependabot[bot] in #69
New Contributors
- @thaJeztah made their first contribution in #77
Full Changelog: v1.2.2...v1.2.3
v1.2.2
What's Changed
- Bump golang.org/x/sys from 0.17.0 to 0.20.0 by @dependabot in #62
- Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #59
- Added missing constant to
sys_unsupported.goto avoid breaking builds on non-Windows platforms.
Full Changelog: v1.2.1...v1.2.2
v1.2.1
- Updated dependency
golang.org/x/systo version0.15.0 - Updated dependency
github.com/stretchr/testifyto version1.8.4 - Added error constant
ErrBadUsernamethat can be used when dealing with domain password credentials.
v1.2.0
Use golang.org/x/sys
- Removes the
syscallpackage to use thegolang.org/x/sysone. - See #22 for details
Updates test module dependencies
- This updates the dependency to github.com/stretchr/testify
Fixes error handling on non-english Windows installations
- Using error codes instead of english error strings
- Exposing two error codes as constants
- Adds go module
- Requires at least go1.13
Fixed test to work with go1.14
v1.0.3 Update go.yml
Build on non-Windows platforms
The library can also be build on non-Windows platforms.
All operations will return a Operation not supported error on those platforms.
Fixed wrong usage of unsafe.Pointer
Corrected some usages of unsafe.Pointer according to the golang
documentation. Used go vet to verify.
This also adds and updates the package documentation.
Some examples have been added to the documentation.