Releases: danieljoos/wincred
Releases · danieljoos/wincred
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.go
to avoid breaking builds on non-Windows platforms.
Full Changelog: v1.2.1...v1.2.2
v1.2.1
- Updated dependency
golang.org/x/sys
to version0.15.0
- Updated dependency
github.com/stretchr/testify
to version1.8.4
- Added error constant
ErrBadUsername
that can be used when dealing with domain password credentials.
v1.2.0
Use golang.org/x/sys
- Removes the
syscall
package to use thegolang.org/x/sys
one. - 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.
First major release
v1.0.0 Fixed `wincred_test.go`: Replaced wrong assertion