mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Update changelog, some other minor fixes
This commit is contained in:
parent
d3b9a4b9e8
commit
c94ab0cde1
3 changed files with 18 additions and 3 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- Added a builtin API for hashing and calculating HMACs as part of the `serde` library
|
- Added a builtin API for hashing and calculating HMACs as part of the `serde` library
|
||||||
|
|
||||||
Basic usage:
|
Basic usage:
|
||||||
|
@ -26,6 +28,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
The returned hashes are sequences of lowercase hexadecimal digits. The following algorithms are supported:
|
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`
|
`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 passed `environment`.
|
||||||
|
|
||||||
|
By default, globals are injected and codegen is disabled.
|
||||||
|
Check the documentation for the `luau` standard library for more information.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Sandboxing and codegen in the Luau VM is now fully enabled, resulting in up to 2x or faster code execution.
|
||||||
|
This should not result in any behavior differences in Lune, but if it does, please open an issue.
|
||||||
|
|
||||||
## `0.8.5` - June 1st, 2024
|
## `0.8.5` - June 1st, 2024
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -24,9 +24,9 @@ local safeCodegenFunction = luau.load(TEST_BYTECODE, {
|
||||||
})
|
})
|
||||||
local unsafeCodegenFunction = luau.load(TEST_BYTECODE, {
|
local unsafeCodegenFunction = luau.load(TEST_BYTECODE, {
|
||||||
debugName = "unsafeCodegenFunction",
|
debugName = "unsafeCodegenFunction",
|
||||||
codegenEnabled = true,
|
|
||||||
environment = {},
|
environment = {},
|
||||||
injectGlobals = true,
|
injectGlobals = true,
|
||||||
|
codegenEnabled = true,
|
||||||
})
|
})
|
||||||
local safeFunction = luau.load(TEST_BYTECODE, {
|
local safeFunction = luau.load(TEST_BYTECODE, {
|
||||||
debugName = "safeFunction",
|
debugName = "safeFunction",
|
||||||
|
@ -34,9 +34,9 @@ local safeFunction = luau.load(TEST_BYTECODE, {
|
||||||
})
|
})
|
||||||
local unsafeFunction = luau.load(TEST_BYTECODE, {
|
local unsafeFunction = luau.load(TEST_BYTECODE, {
|
||||||
debugName = "unsafeFunction",
|
debugName = "unsafeFunction",
|
||||||
codegenEnabled = false,
|
|
||||||
environment = {},
|
environment = {},
|
||||||
injectGlobals = true,
|
injectGlobals = true,
|
||||||
|
codegenEnabled = false,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Run the functions to get the timings
|
-- Run the functions to get the timings
|
||||||
|
|
|
@ -29,7 +29,7 @@ export type CompileOptions = {
|
||||||
* `debugName` - The debug name of the closure. Defaults to `luau.load(...)`.
|
* `debugName` - The debug name of the closure. Defaults to `luau.load(...)`.
|
||||||
* `environment` - A custom environment to load the chunk in. Setting a custom environment will deoptimize the chunk and forcefully disable codegen. Defaults to the global environment.
|
* `environment` - A custom environment to load the chunk in. Setting a custom environment will deoptimize the chunk and forcefully disable codegen. Defaults to the global environment.
|
||||||
* `injectGlobals` - Whether or not to inject globals in the custom environment. Has no effect if no custom environment is provided. Defaults to `true`.
|
* `injectGlobals` - Whether or not to inject globals in the custom environment. Has no effect if no custom environment is provided. Defaults to `true`.
|
||||||
* `codegenEnabled` - Whether or not to enable codegen. Defaults to `true`.
|
* `codegenEnabled` - Whether or not to enable codegen. Defaults to `false`.
|
||||||
]=]
|
]=]
|
||||||
export type LoadOptions = {
|
export type LoadOptions = {
|
||||||
debugName: string?,
|
debugName: string?,
|
||||||
|
|
Loading…
Reference in a new issue