@quenty/remoting 6.8.0 → 6.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
- package/src/Shared/Interface/Remoting.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.8.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.8.0...@quenty/remoting@6.8.1) (2023-07-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Return results from non-promisified Remoting callbacks ([#392](https://github.com/Quenty/NevermoreEngine/issues/392)) ([26b4eee](https://github.com/Quenty/NevermoreEngine/commit/26b4eeedd0ebf34dc3992a738bffe9aa4563a528))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [6.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/remoting@6.7.1...@quenty/remoting@6.8.0) (2023-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/remoting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/remoting",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.1",
|
|
4
4
|
"description": "Global remoting retrieval system for Roblox (RemoteFunctions/RemoteEvents)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "f9a3b5a8cd5311fed603b8b622879619c9af21e7"
|
|
42
42
|
}
|
|
@@ -219,7 +219,7 @@ function Remoting:_translateCallback(maid, memberName, callback)
|
|
|
219
219
|
local yielded = table.pack(promise:Wait())
|
|
220
220
|
return table.unpack(yielded, 1, yielded.n)
|
|
221
221
|
else
|
|
222
|
-
return
|
|
222
|
+
return table.unpack(results)
|
|
223
223
|
end
|
|
224
224
|
end
|
|
225
225
|
end
|
|
@@ -529,4 +529,4 @@ function Remoting:Destroy()
|
|
|
529
529
|
setmetatable(self, nil)
|
|
530
530
|
end
|
|
531
531
|
|
|
532
|
-
return Remoting
|
|
532
|
+
return Remoting
|