@quenty/blend 6.11.0 → 6.12.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 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.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@6.11.0...@quenty/blend@6.12.0) (2023-03-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Clean up promise effectively in spring object finish ([6327d48](https://github.com/Quenty/NevermoreEngine/commit/6327d485d625554488be58efdf84d0baf406a6a1))
12
+
13
+
14
+
15
+
16
+
6
17
  # [6.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@6.10.0...@quenty/blend@6.11.0) (2023-03-06)
7
18
 
8
19
 
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2022 Quenty
3
+ Copyright (c) 2014-2023 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "6.11.0",
3
+ "version": "6.12.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -39,11 +39,11 @@
39
39
  "@quenty/steputils": "^3.2.0",
40
40
  "@quenty/string": "^3.1.0",
41
41
  "@quenty/valuebaseutils": "^7.8.0",
42
- "@quenty/valueobject": "^7.7.0"
42
+ "@quenty/valueobject": "^7.8.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@quenty/contentproviderutils": "^6.4.0",
46
46
  "@quenty/playerthumbnailutils": "^6.3.0"
47
47
  },
48
- "gitHead": "ce54e6f72519719e6155643418f2496f30a55f8e"
48
+ "gitHead": "cf537ed1fe265276971486129beb372cbaaca4a6"
49
49
  }
@@ -108,6 +108,10 @@ function SpringObject:PromiseFinished(signal)
108
108
 
109
109
  self._maid[promise] = maid
110
110
 
111
+ promise:Finally(function()
112
+ self._maid[promise] = nil
113
+ end)
114
+
111
115
  maid:GiveTask(function()
112
116
  self._maid[promise] = nil
113
117
  end)