We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30bba10 commit 222dfa1Copy full SHA for 222dfa1
1 file changed
src/vs/workbench/contrib/update/browser/update.ts
@@ -136,7 +136,7 @@ export class ProductContribution implements IWorkbenchContribution {
136
137
// was there an update? if so, open release notes
138
const releaseNotesUrl = productService.releaseNotesUrl;
139
- if (shouldShowReleaseNotes && releaseNotesUrl && lastVersion && productService.version !== lastVersion) {
+ if (shouldShowReleaseNotes && !environmentService.skipReleaseNotes && releaseNotesUrl && lastVersion && productService.version !== lastVersion) {
140
showReleaseNotes(instantiationService, productService.version)
141
.then(undefined, () => {
142
notificationService.prompt(
0 commit comments