Releases: whywaita/myshoes
v1.9.5
Upgrade
v1.9.5 needs to update MySQL columns before previous releases.
ALTER TABLE `runner_detail` ADD COLUMN `resource_type` enum('nano', 'micro', 'small', 'medium', 'large', 'xlarge', '2xlarge', '3xlarge', '4xlarge') NOT NULL AFTER `cloud_id`;
UPDATE `runner_detail` SET `resource_type` = (SELECT `resource_type` FROM `targets` WHERE targets.uuid = runner_detail.target_id) WHERE runner_detail.resource_type = "nano";
ALTER TABLE `runner_detail` ADD COLUMN `repository_url` varchar(255) NOT NULL AFTER `resource_type`;
ALTER TABLE `runner_detail` ADD COLUMN `request_webhook` text NOT NULL AFTER `repository_url`;
Changelog
4d7c105 Merge pull request #95 from whywaita/feat/94
cfa1453 strict mode is true in default
53d5b3d cache API response
9209601 add strict parameter, using #84 mode if strict is true
08917d6 Merge pull request #93 from whywaita/fix/92
6b29fd3 fix to validate parameter
76d325f Add column to runner_detail, resource_type
5872383 Add column to runner_detail, repository_url and request_webhook
v1.9.4
v1.9.3
v1.9.2
Changelog
72f472f Merge pull request #87 from whywaita/fix/72
4700df3 add comments for golint
6353c8c check to register in GitHub before deleting job
1764adc Merge pull request #86 from whywaita/fix/prepare-function-in-test
0132e71 add test pattern
3a9bf2d refactoring test using prepare function
2d22bc5 Merge pull request #84 from whywaita/feat/readme-badge
b95972f fix to error check
56a6edb fix typo
ef87e9c add badges
v1.9.1
Gotcha! myshoes got a new logo! 😻
Changelog
9a63a24 Merge pull request #83 from whywaita/fix/81
a36a6ba return err if already deleted target in repository
da1f4df Merge pull request #82 from whywaita/feat/build-docker-sha
02fcb92 add build-docker-sha.yaml
5ccdf2c Merge pull request #80 from whywaita/refactor/doc
0a865c9 Update docs