Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.62 KB

CHANGELOG.md

File metadata and controls

50 lines (35 loc) · 1.62 KB

Changelog

This file documents all notable changes made to this project since the initial fork.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.1.1 - 2024-08-01

This is a maintenance release, fixing a few minor issues.

Fixed

  • Fixed future kernel compatibility, for real this time. (#11)
  • Fixed LastCap to be a function. (#12)

0.1.0 - 2024-07-31

This is an initial release since the fork.

Breaking changes

  • The CAP_LAST_CAP variable is removed; users need to modify the code to use LastCap to get the value. (#6)
  • The code now requires Go >= 1.20.

Added

  • go.mod and go.sum files. (#2)
  • New LastCap function. (#6)
  • Basic CI using GHA infra. (#8, #9)
  • README and CHANGELOG. (#10)

Fixed

  • Fixed ambient capabilities error handling in Apply. (#3)
  • Fixed future kernel compatibility. (#1)
  • Fixed various linter warnings. (#4, #7)

Changed

  • Go build tags changed from old-style (+build) to new Go 1.17+ style (go:build). (#2)

Removed

  • Removed support for capabilities v1 and v2. (#1)
  • Removed init function so programs that use this package start faster. (#6)
  • Removed CAP_LAST_CAP (use LastCap instead). (#6)