Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a decode error with BitBucket server #553

Merged
merged 14 commits into from
Mar 2, 2023
Merged
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
## Master

- Gitlab Error in merge request with estimate or spent time [@oscarcv][] - [#548](https://github.com/danger/swift/pull/548)
- Fix a decode error with BitBucket server [@pepix][] - [#553](https://github.com/danger/swift/pull/553)

## 3.15.0

Expand Down
2 changes: 1 addition & 1 deletion Sources/Danger/BitBucketServerDSL.swift
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public extension BitBucketServer {
public let name: String

/// Is the project publicly available
public let isPublic: Bool
public let isPublic: Bool?

// The project's type
public let type: String
Expand Down