-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pacts for verification): support released:true selector (#451)
* feat: add support for selecting currently released and supported pacts for verification * feat: support specifying an environment in a consumer version selector without a deployed/released property * chore: add warning when pact selector invalid keys used * chore: rename currentlyDeployed:true selector to deployed:true, and currentlySuportedReleases to released:true * refactor: rename pact selector environment to environment name, and add separate environment property when resolving * chore: update verifiable pact description for pacts for currently supported versions * feat: show released versions in matrix * feat: show environments on index page with tags * feat: update colours and add text to badges on index and matrix * chore: drop unused columns from deployed_versions * feat: add environment query box to matrix UI * chore: update paths and relations for currently deployed version and currently supported released versions * chore: sort selected pacts deterministically
- Loading branch information
Showing
41 changed files
with
815 additions
and
176 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
db/migrations/20210702_drop_unused_columns_from_deployed_versions.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Sequel.migration do | ||
up do | ||
alter_table(:deployed_versions) do | ||
drop_column(:replaced_previous_deployed_version) | ||
drop_column(:currently_deployed) | ||
end | ||
end | ||
|
||
down do | ||
alter_table(:deployed_versions) do | ||
add_column(:replaced_previous_deployed_version, TrueClass) | ||
add_column(:currently_deployed, TrueClass) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.