Skip to content

Releases: danieljoos/wincred

v1.2.3

02 Oct 18:26

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.2...v1.2.3

v1.2.2

14 Jul 14:45

Choose a tag to compare

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

15 Dec 09:53

Choose a tag to compare

  • Updated dependency golang.org/x/sys to version 0.15.0
  • Updated dependency github.com/stretchr/testify to version 1.8.4
  • Added error constant ErrBadUsername that can be used when dealing with domain password credentials.

v1.2.0

15 May 11:55

Choose a tag to compare

  • Calling SyscallN directly when dealing with pointer-pointers (#42) to try to address issue #32.
  • Bumped required Go version to 1.18.
  • Bumped dependency to golang.org/x/sys to version 0.8.0.

Use golang.org/x/sys

20 Aug 10:42

Choose a tag to compare

  • Removes the syscall package to use the golang.org/x/sys one.
  • See #22 for details

Updates test module dependencies

12 Jul 18:28

Choose a tag to compare

  • This updates the dependency to github.com/stretchr/testify

Fixes error handling on non-english Windows installations

13 May 20:41

Choose a tag to compare

  • 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

03 May 20:47
0451b1e

Choose a tag to compare

v1.0.3

Update go.yml

Build on non-Windows platforms

05 May 19:26

Choose a tag to compare

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

09 Apr 19:10

Choose a tag to compare

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.