Skip to content

Releases: openly-engineering/pointy

Update package to reflect new Openly vanity URL go.openly.dev Latest

10 Aug 17:59
ff63ee3

Choose a tag to compare

🚨 This includes a breaking change. Please update your require paths to "go.openly.dev/pointy"

#12

Also updates https://github.com/stretchr/testify package to latest release 1.8.4

Tidy go.mod per go 1.17 dependency management rules

10 Aug 15:09
4ce74d3

Choose a tag to compare

Adds support for generics, adds pointer comparison utility functions

21 Oct 13:35
30c3a18

Choose a tag to compare

Fixes reference to old GitHub repo in test

27 Aug 13:48
945de57

Choose a tag to compare

Ownership transfer

10 Aug 14:27
b2d5a44

Choose a tag to compare

Pointy was moved from mwielbut to openlyinc.

Add safe pointer dereferencing functions

20 May 11:41
9fe933c

Choose a tag to compare

This release adds addition pointer sugar to safely dereference a pointer or return a provided fallback value.

Example:

// assuming foo is a pointer to an int
bar := pointy.IntValue(foo, 99) // bar now contains the value in foo (or 99 if foo was nil)

Thanks @icholy for the PR!

Update go docs

24 Dec 16:30
a8bd7b3

Choose a tag to compare

Clean up examples and go doc.

Initial release

23 Dec 23:22
078e7ec

Choose a tag to compare

Merge pull request #1 from mwielbut/seed

Initial code commit