@atolis-hq/wake 0.3.8 → 0.3.9

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.
@@ -108,4 +108,4 @@ export function resolveWakeVersion(options = {}) {
108
108
  return `g${headHash.slice(0, 7)}`;
109
109
  return '0.1.0-dev';
110
110
  }
111
- export const wakeVersion = "g42cf498";
111
+ export const wakeVersion = "gb753eb6";
@@ -104,5 +104,8 @@ function parseGitHubIssueKey(key) {
104
104
  };
105
105
  }
106
106
  function sameLabels(left, right) {
107
- return left.length === right.length && left.every((label, index) => label === right[index]);
107
+ const normalizedLeft = [...left].sort();
108
+ const normalizedRight = [...right].sort();
109
+ return (normalizedLeft.length === normalizedRight.length &&
110
+ normalizedLeft.every((label, index) => label === normalizedRight[index]));
108
111
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {