@shopify/oxygen-cli 1.9.0 → 1.10.1

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.
@@ -61,6 +61,7 @@ function createLabels(metadata) {
61
61
  }
62
62
  const keyMapping = {
63
63
  actor: "user",
64
+ branch: "branch",
64
65
  commitSha: "version",
65
66
  url: "url"
66
67
  };
@@ -101,11 +101,13 @@ describe("createLabels", () => {
101
101
  run: "circle_1234",
102
102
  url: "http://circleci.com/workflow/123",
103
103
  actor: "circle_actor",
104
- commitSha: "circle_sha"
104
+ commitSha: "circle_sha",
105
+ branch: "main"
105
106
  };
106
107
  const labels = [
107
108
  'circle-runId="circle_1234"',
108
109
  'user="circle_actor"',
110
+ 'branch="main"',
109
111
  'version="circle_sha"',
110
112
  'url="http://circleci.com/workflow/123"'
111
113
  ];
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.9.0",
2
+ "version": "1.10.1",
3
3
  "commands": {
4
4
  "oxygen:deploy": {
5
5
  "id": "oxygen:deploy",
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "@shopify:registry": "https://registry.npmjs.org"
6
6
  },
7
7
  "license": "MIT",
8
- "version": "1.9.0",
8
+ "version": "1.10.1",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "build": "tsup --clean --config ./tsup.config.ts && oclif manifest",
@@ -43,7 +43,7 @@
43
43
  "@shopify/eslint-plugin": "^43.0.0",
44
44
  "@shopify/prettier-config": "^1.1.2",
45
45
  "@types/async": "^3.2.18",
46
- "@types/node": "^20.5.0",
46
+ "@types/node": "^20.5.3",
47
47
  "eslint": "^8.47.0",
48
48
  "eslint-plugin-prettier": "^5.0.0",
49
49
  "node-fetch": "^3.3.2",
@@ -51,7 +51,7 @@
51
51
  "tsup": "^7.2.0",
52
52
  "typescript": "^5.1.3",
53
53
  "vite": "^4.4.9",
54
- "vitest": "^0.34.1"
54
+ "vitest": "^0.34.2"
55
55
  },
56
56
  "prettier": "@shopify/prettier-config",
57
57
  "oclif": {