We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d772d commit 2eddd49Copy full SHA for 2eddd49
client/src/addon_manager/models/addon.ts
@@ -60,7 +60,13 @@ export class Addon {
60
await this.getEnabled();
61
62
if (this.#installed) {
63
- tags = (await moduleGit.tags(["--sort=-taggerdate"])).all;
+ tags = (
64
+ await moduleGit.tags([
65
+ "--sort=-taggerdate",
66
+ "--merged",
67
+ `origin/${await this.getDefaultBranch()}`,
68
+ ])
69
+ ).all;
70
71
const currentTag = await moduleGit
72
.raw(["describe", "--tags", "--exact-match"])
0 commit comments