@quenty/avatareditorutils 7.16.0 → 7.17.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
+ # [7.17.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.16.0...@quenty/avatareditorutils@7.17.0) (2024-12-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Limit batch request size ([0a48559](https://github.com/Quenty/NevermoreEngine/commit/0a485593478e3a4696d1433219233323cb30fbeb))
12
+
13
+
14
+
15
+
16
+
6
17
  # [7.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/avatareditorutils@7.15.0...@quenty/avatareditorutils@7.16.0) (2024-12-03)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/avatareditorutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/avatareditorutils",
3
- "version": "7.16.0",
3
+ "version": "7.17.0",
4
4
  "description": "Provides utility functions to work with the Roblox AvatarEditorService",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,22 +25,22 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/aggregator": "^1.1.0",
29
- "@quenty/brio": "^14.14.0",
28
+ "@quenty/aggregator": "^1.2.0",
29
+ "@quenty/brio": "^14.15.0",
30
30
  "@quenty/enumutils": "^3.4.0",
31
31
  "@quenty/loader": "^10.7.1",
32
32
  "@quenty/maid": "^3.4.0",
33
33
  "@quenty/memoize": "^1.5.1",
34
- "@quenty/observablecollection": "^12.16.0",
35
- "@quenty/pagesutils": "^5.9.0",
36
- "@quenty/promise": "^10.8.0",
37
- "@quenty/rx": "^13.14.0",
34
+ "@quenty/observablecollection": "^12.17.0",
35
+ "@quenty/pagesutils": "^5.10.0",
36
+ "@quenty/promise": "^10.9.0",
37
+ "@quenty/rx": "^13.15.0",
38
38
  "@quenty/servicebag": "^11.10.0",
39
39
  "@quenty/symbol": "^3.4.0",
40
- "@quenty/valueobject": "^13.14.0"
40
+ "@quenty/valueobject": "^13.15.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "bc1bdf404d38ffcdcc8aa97df305a8ec5a40b990"
45
+ "gitHead": "0a20ace4dc7d38f8c889bf73b716b33e8a767c54"
46
46
  }
@@ -29,9 +29,12 @@ function CatalogSearchServiceCache:Init(serviceBag)
29
29
  self._assetAggregator = self._maid:Add(Aggregator.new("AvatarEditorUtils.promiseBatchItemDetails", function(itemIds)
30
30
  return AvatarEditorUtils.promiseBatchItemDetails(itemIds, Enum.AvatarItemType.Asset)
31
31
  end))
32
+ self._assetAggregator:SetMaxBatchSize(100)
33
+
32
34
  self._bundleAggregator = self._maid:Add(Aggregator.new("AvatarEditorUtils.promiseBatchItemDetails", function(itemIds)
33
35
  return AvatarEditorUtils.promiseBatchItemDetails(itemIds, Enum.AvatarItemType.Bundle)
34
36
  end))
37
+ self._bundleAggregator:SetMaxBatchSize(100)
35
38
  end
36
39
 
37
40
  function CatalogSearchServiceCache:PromiseAvatarRules()