Skip to content

Releases: whywaita/myshoes

v1.10.2

10 Nov 07:27
de869db
Compare
Choose a tag to compare

Changelog

de869db Merge pull request #119 from whywaita/fix/118
b8933df Use conditional GET by httpcache
0933df7 Merge pull request #117 from whywaita/refactor/security-update-202111
551d9b1 Update libary version

v1.10.1

01 Nov 07:02
1212edd
Compare
Choose a tag to compare

Changelog

1212edd Merge pull request #116 from whywaita/fix/114
8c920d4 Use value (2)
873087e Check only target
2f01852 Use value
cb85bf5 Use same delete logic in mode once as a mode epehemeral
bc506fd Merge pull request #115 from whywaita/fix/113
af65f6d call getSetupScript before shoes.GetClient(). GetClient launch shoes-provider, but it's not need if failure getSetupScript. e.g.) uninstall GitHub Apps

v1.10.0

15 Oct 03:29
ab232b1
Compare
Choose a tag to compare

Upgrade

v1.10.0 needs to update MySQL columns before previous releases.

ALTER TABLE `runner_detail` ADD COLUMN `runner_user` varchar(255) AFTER `resource_type`;
ALTER TABLE `runner_detail` ADD COLUMN `runner_version` varchar(255) AFTER `runner_user`;
ALTER TABLE `runner_detail` ADD COLUMN `provider_url` varchar(255) AFTER `runner_version`;

Changelog

ab232b1 Merge pull request #112 from whywaita/fix/109
f64f4cf Support blank values
3db2b75 Implement UpdateParam in web
4b8c15f Fix lint
af2b56a Implement to remove ephemeral runner
974b7fd Enable --ephemeral if support runner version

v1.9.11

14 Oct 06:13
25fb1d7
Compare
Choose a tag to compare

Changelog

25fb1d7 Merge pull request #111 from whywaita/fix/28
0a64b60 Expose config value
5ff0197 Add expired_at
39424fd disable --ephemeral
e6a74ff Fix lint
4552e4f Support --ephemeral newer v2.282.0
34e91de use extracted cache
ea6508f getting register token in myshoes
90f9708 Switch to text/template
5d22108 Merge pull request #110 from whywaita/refactor/err-msg
00391c0 more information in err response

v1.9.10

30 Sep 06:19
9e3ca6d
Compare
Choose a tag to compare

Changelog

9e3ca6d Merge pull request #108 from whywaita/fix/106
de6e82c Fix typo
a8d2a82 more slowly
f835f77 Separate metrics
30351cf Add metrics semaphore value
1ad97a1 Add MAX_CONNECTIONS_TO_BACKEND
dfd21fc use errgroup
eb3b1eb check duplicate job
01890b8 Switch to dispatcher-worker method

v1.9.9

28 Sep 05:30
01a1029
Compare
Choose a tag to compare

Changelog

01a1029 Merge pull request #105 from jonico/patch-2
97f8192 Adding awesome-runners badge
4f92dd0 Merge pull request #104 from whywaita/fix/102
41274d1 Token updator need to run always, but a same loop block other logic

v1.9.8

22 Sep 01:23
9e3f92e
Compare
Choose a tag to compare

Changelog

9e3f92e Merge pull request #103 from whywaita/fix/gh-enterprise-endpoint
dc29ad7 change to using function
34b1b04 GenerateGitHubAppsToken needs a GitHub Apps client

v1.9.7

10 Sep 05:49
4f4b419
Compare
Choose a tag to compare

Warning

This release has a bug in the GHES environment. Please use the newest version.

Changelog

4f4b419 Merge pull request #101 from whywaita/fix/gh-enterprise
ea1aa04 access_tokens needs JWT header
949ccfe transport need API endpoint
d44dadf transport set GitHub Enterprise URL
2786ba3 Merge pull request #100 from whywaita/fix/99
ea7fd49 delete callAPIPrivateKey, using go-github

v1.9.6

08 Sep 12:29
eb46232
Compare
Choose a tag to compare

Changelog

eb46232 Merge pull request #98 from whywaita/fix/97
0c8066b fix parameter
20e3966 go mod tidy
ed530bd job can zero
a69c52a fix metrics
ec51222 fix to wait group
ee5ffe3 fix lint
07c0078 Add GET /metrics
a405409 Set timeout in create instance
1f7b64e Merge pull request #96 from whywaita/feature/docs
1a91145 separate documents, for admin and for user

v1.9.5

26 Aug 10:27
4d7c105
Compare
Choose a tag to compare

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