@quenty/attributeutils 4.2.2-canary.4c04014.0 → 5.0.0
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 +12 -1
- package/package.json +5 -5
- package/src/Shared/AttributeValue.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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
|
+
# [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@4.3.0...@quenty/attributeutils@5.0.0) (2022-03-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* AttributeValue does not error when _defaultValue is nil ([a55308b](https://github.com/Quenty/NevermoreEngine/commit/a55308b8a4b4eb7fc72efdc5a73e4a1790befd98))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [4.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@4.2.1...@quenty/attributeutils@4.3.0) (2022-01-17)
|
|
7
18
|
|
|
8
19
|
|
|
9
20
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/attributeutils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Provides utility functions to work with attributes in Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/loader": "
|
|
29
|
-
"@quenty/maid": "2.
|
|
30
|
-
"@quenty/rx": "
|
|
28
|
+
"@quenty/loader": "^4.0.0",
|
|
29
|
+
"@quenty/maid": "^2.1.0",
|
|
30
|
+
"@quenty/rx": "^4.0.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
|
|
36
36
|
}
|
|
@@ -56,7 +56,7 @@ end
|
|
|
56
56
|
@return Observable<any>
|
|
57
57
|
]=]
|
|
58
58
|
function AttributeValue:Observe()
|
|
59
|
-
return RxAttributeUtils.observeAttribute(self._object, self._attributeName, self
|
|
59
|
+
return RxAttributeUtils.observeAttribute(self._object, self._attributeName, rawget(self, "_defaultValue"))
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
--[=[
|