rez_core 5.0.9 → 5.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.9",
3
+ "version": "5.0.10",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -288,7 +288,7 @@ export class TaskService extends EntityServiceImpl {
288
288
  params.push(mapped_entity_type);
289
289
 
290
290
  whereClauses.push(`t.mapped_entity_id = $${idx++}`);
291
- params.push(Number(mapped_entity_id));
291
+ params.push(String(mapped_entity_id));
292
292
 
293
293
  // Optional filters
294
294
  if (status) {