Skip to content

Releases: adrianbrad/queue

v1.4.0

13 May 08:26
Compare
Choose a tag to compare

What's Changed

  • build(deps): bump github/codeql-action from 2 to 3 by @dependabot in #9
  • build(deps): bump actions/setup-go from 4 to 5 by @dependabot in #8
  • build(deps): bump golangci/golangci-lint-action from 3 to 4 by @dependabot in #11
  • build(deps): bump codecov/codecov-action from 3 to 4 by @dependabot in #10
  • build(deps): bump golangci/golangci-lint-action from 4 to 5 by @dependabot in #12
  • build(deps): bump anchore/scan-action from 3 to 4 by @dependabot in #16
  • build(deps): bump golangci/golangci-lint-action from 5 to 6 by @dependabot in #13
  • build(deps): bump codecov/codecov-action from 4 to 5 by @dependabot in #19
  • build(deps): bump anchore/scan-action from 4 to 6 by @dependabot in #18
  • feat: implement MarshalJSON for all queues by @adrianbrad in #20
  • style(golangci-lint): migrate config to v2 by @adrianbrad in #24
  • build(deps): bump golangci/golangci-lint-action from 6 to 8 by @dependabot in #22
  • feat(blocking): fix Reset() unbound memory growth potential by @adrianbrad in #25

Full Changelog: v1.3.0...v1.4.0

v1.3.0

24 Oct 20:29
Compare
Choose a tag to compare

This release adds a Linked Queue, implemented as a singly linked list.

v1.2.1

08 May 07:52
Compare
Choose a tag to compare

This release merges @haoheipi pull request #5 which fixes a bug caused by not calling the (*sync.Cond).Wait() method in a loop.

v1.2.0

15 Apr 14:03
Compare
Choose a tag to compare

This release adds a Circular Queue implementation.