pm-jira 2026.6.8 → 2026.6.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.
- package/CHANGELOG.md +1 -1
- package/dist/index.js +1 -1
- package/manifest.json +1 -1
- package/package.json +8 -4
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1013,7 +1013,7 @@ const VALIDATE_FLAGS = [
|
|
|
1013
1013
|
];
|
|
1014
1014
|
export default defineExtension({
|
|
1015
1015
|
name: "pm-jira",
|
|
1016
|
-
version: "2026.6.
|
|
1016
|
+
version: "2026.6.9",
|
|
1017
1017
|
activate(api) {
|
|
1018
1018
|
// -----------------------------------------------------------------------
|
|
1019
1019
|
// schema — declare Jira provenance fields so the workspace knows them
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-jira",
|
|
3
|
-
"version": "2026.6.
|
|
3
|
+
"version": "2026.6.9",
|
|
4
4
|
"description": "Jira issue sync for pm-cli",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,15 +32,16 @@
|
|
|
32
32
|
"changelog": "pm-changelog --pm-root .agents/pm --mode prepend --output CHANGELOG.md --release-version-from-package --since-previous-tag --until-release-tag --item-url-base https://github.com/unbraind/pm-jira/blob/main/.agents/pm",
|
|
33
33
|
"changelog:full": "pm-changelog --pm-root .agents/pm --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --item-url-base https://github.com/unbraind/pm-jira/blob/main/.agents/pm",
|
|
34
34
|
"changelog:check": "pm-changelog --pm-root .agents/pm --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --item-url-base https://github.com/unbraind/pm-jira/blob/main/.agents/pm --check",
|
|
35
|
-
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check"
|
|
35
|
+
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check",
|
|
36
|
+
"prepublishOnly": "npm run release:check"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"@unbrained/pm-cli": ">=2026.6.7"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@types/node": "^25.9.2",
|
|
42
|
-
"@unbrained/pm-cli": "^2026.6.
|
|
43
|
-
"pm-changelog": "^2026.6.
|
|
43
|
+
"@unbrained/pm-cli": "^2026.6.9",
|
|
44
|
+
"pm-changelog": "^2026.6.8",
|
|
44
45
|
"typescript": "^6.0.3"
|
|
45
46
|
},
|
|
46
47
|
"keywords": [
|
|
@@ -86,5 +87,8 @@
|
|
|
86
87
|
"examples": [
|
|
87
88
|
"README.md"
|
|
88
89
|
]
|
|
90
|
+
},
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
89
93
|
}
|
|
90
94
|
}
|