@quenty/marketplaceutils 11.6.0 → 11.7.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
+ # [11.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/marketplaceutils@11.6.0...@quenty/marketplaceutils@11.7.0) (2024-10-04)
7
+
8
+
9
+ ### Performance Improvements
10
+
11
+ * Increase cache size for tuple lookup ([5817760](https://github.com/Quenty/NevermoreEngine/commit/5817760b869500376f5654dfd312c2fdca2cef36))
12
+
13
+
14
+
15
+
16
+
6
17
  # [11.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/marketplaceutils@11.5.0...@quenty/marketplaceutils@11.6.0) (2024-09-25)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/marketplaceutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/marketplaceutils",
3
- "version": "11.6.0",
3
+ "version": "11.7.0",
4
4
  "description": "Provides utility methods for MarketplaceService",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,12 +26,12 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/loader": "^10.5.0",
30
- "@quenty/memoize": "^1.3.0",
31
- "@quenty/promise": "^10.5.0"
29
+ "@quenty/loader": "^10.6.0",
30
+ "@quenty/memoize": "^1.4.0",
31
+ "@quenty/promise": "^10.6.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
36
+ "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
37
37
  }
@@ -30,7 +30,9 @@ function MarketplaceServiceCache:_ensureInit()
30
30
  return
31
31
  end
32
32
 
33
- self._promiseProductInfo = MemorizeUtils.memoize(MarketplaceUtils.promiseProductInfo)
33
+ self._promiseProductInfo = MemorizeUtils.memoize(MarketplaceUtils.promiseProductInfo, {
34
+ maxSize = 2048;
35
+ })
34
36
  end
35
37
 
36
38
  return MarketplaceServiceCache