imdone-cli 0.67.0 → 0.67.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.
- package/CHANGELOG.md +4 -0
- package/dist/CHANGELOG.md +4 -0
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.cjs.map +2 -2
- package/dist/preinstall.cjs +1 -1
- package/dist/preinstall.cjs.map +1 -1
- package/dist/preinstall.min.cjs +1 -1
- package/dist/preinstall.min.cjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog 📝
|
|
2
2
|
|
|
3
|
+
## 0.67.1
|
|
4
|
+
|
|
5
|
+
- Fix GitHub-only `imdone pull` runs so newly discovered issues sync into the backlog reliably instead of failing before local issue folders are created, letting teams pull a fresh repo or a new slice of GitHub work without manual recovery
|
|
6
|
+
|
|
3
7
|
## 0.67.0
|
|
4
8
|
|
|
5
9
|
- Archive provider-backed work automatically when it is no longer active, including Jira issues completed through `imdone push`, GitHub issues or pull requests that come back done on refresh, and local provider-backed issues that disappear after a confirmed refresh, so `current-sprint/` stays aligned with what is actually still in progress
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog 📝
|
|
2
2
|
|
|
3
|
+
## 0.67.1
|
|
4
|
+
|
|
5
|
+
- Fix GitHub-only `imdone pull` runs so newly discovered issues sync into the backlog reliably instead of failing before local issue folders are created, letting teams pull a fresh repo or a new slice of GitHub work without manual recovery
|
|
6
|
+
|
|
3
7
|
## 0.67.0
|
|
4
8
|
|
|
5
9
|
- Archive provider-backed work automatically when it is no longer active, including Jira issues completed through `imdone push`, GitHub issues or pull requests that come back done on refresh, and local provider-backed issues that disappear after a confirmed refresh, so `current-sprint/` stays aligned with what is actually still in progress
|
package/dist/index.cjs
CHANGED
|
@@ -154,7 +154,7 @@ var init_package = __esm({
|
|
|
154
154
|
"package.json"() {
|
|
155
155
|
package_default = {
|
|
156
156
|
name: "imdone-cli",
|
|
157
|
-
version: "0.67.
|
|
157
|
+
version: "0.67.1",
|
|
158
158
|
author: "Jesse Piascik",
|
|
159
159
|
description: "Turn Jira or GitHub issues into a shared context repo for AI and humans, synced locally as Markdown.",
|
|
160
160
|
license: "Proprietary",
|
|
@@ -93795,7 +93795,14 @@ function buildPullProviderPlugins(plugin, providerOverrides = {}) {
|
|
|
93795
93795
|
const provider = proxy.provider || proxy.providerAdapter?.providerName || proxy.jiraAdapter?.providerName;
|
|
93796
93796
|
return {
|
|
93797
93797
|
...proxy,
|
|
93798
|
+
defaultDirectory: proxy.defaultDirectory ?? plugin.defaultDirectory,
|
|
93799
|
+
defaultList: proxy.defaultList ?? plugin.defaultList,
|
|
93800
|
+
statuses: proxy.statuses ?? plugin.statuses,
|
|
93801
|
+
jql: proxy.jql ?? plugin.jql,
|
|
93802
|
+
gql: proxy.gql ?? plugin.gql,
|
|
93803
|
+
allAdapters: proxy.allAdapters ?? plugin.allAdapters,
|
|
93798
93804
|
provider,
|
|
93805
|
+
query: proxy.query ?? (provider === "github" ? proxy.gql ?? plugin.gql : proxy.jql ?? plugin.jql),
|
|
93799
93806
|
queryOverride: provider ? providerOverrides[provider] ?? providerOverrides["*"] : providerOverrides["*"]
|
|
93800
93807
|
};
|
|
93801
93808
|
});
|