Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased](https://github.com/Kampfkarren/selene/compare/0.29.0...HEAD)

- Added `buffer.readbits` and `buffer.writebits` to the Luau standard library

## [0.29.0](https://github.com/Kampfkarren/selene/releases/tag/0.29.0) - 2025-07-23
- Added `Instance.fromExisting` to the Roblox standard library
- Added new [`roblox_manual_fromscale_or_fromoffset` lint](https://kampfkarren.github.io/selene/lints/roblox_manual_fromscale_or_fromoffset.html), which will warn when the arguments could be simplified to `UDim2.fromScale` or `UDim2.fromOffset`.
Expand Down
12 changes: 12 additions & 0 deletions selene-lib/default_std/luau.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ globals:
- type:
display: buffer
must_use: true
buffer.readbits:
args:
- type:
display: buffer
- type: number
must_use: true
buffer.readf32:
args:
- type:
Expand Down Expand Up @@ -170,6 +176,12 @@ globals:
- type:
display: buffer
must_use: true
buffer.writebits:
args:
- type:
display: buffer
- type: number
- type: number
buffer.writef32:
args:
- type:
Expand Down