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 88be515 commit c5f192cCopy full SHA for c5f192c
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## v0.10.2
4
+
5
+* Remove secret DSN part check for prompt
6
7
## v0.10.1
8
9
* Use opn in favor of open
lib/Steps/PromptForParameters.ts
@@ -126,9 +126,6 @@ export class PromptForParameters extends BaseStep {
126
if (match[1] !== 'http' && match[1] !== 'https') {
127
return 'Unsupported protocol for DSN: ' + match[1];
128
}
129
- if (!match[3]) {
130
- return 'Missing secret in DSN';
131
- }
132
return true;
133
134
0 commit comments