Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
Added a builtin API for hashing and calculating HMACs as part of the
serde
library (#193)Basic usage:
The returned hashes are sequences of lowercase hexadecimal digits. The following algorithms are supported:
md5
,sha1
,sha224
,sha256
,sha384
,sha512
,sha3-224
,sha3-256
,sha3-384
,sha3-512
,blake3
Added two new options to
luau.load
:codegenEnabled
- whether or not codegen should be enabled for the loaded chunk.injectGlobals
- whether or not to inject globals into a passedenvironment
.By default, globals are injected and codegen is disabled.
Check the documentation for the
luau
standard library for more information.Implemented support for floor division operator /
__idiv
for theVector2
andVector3
types in theroblox
standard library (#196)Changed
This should not result in any behavior differences in Lune, but if it does, please open an issue.
fs.readFile
returns an error) when printed or formatted usingstdio.format
.Fixed
__type
and__tostring
metamethods on userdatas and tables not being respected when printed or formatted usingstdio.format
._VERSION
global containing an incorrect Lune version string