Skip to content

Releases: whywaita/myshoes

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

v1.9.4

24 Aug 02:34
dcafa8c
Compare
Choose a tag to compare

Changelog

dcafa8c Merge pull request #90 from whywaita/fix/89
7bb4629 🚮

v1.9.3

23 Aug 04:11
736c028
Compare
Choose a tag to compare

DO NOT USE THIS RELEASE!!

v1.9.3 has a huge bug, please do not use this release.
Please use the newest release.

Changelog

736c028 Merge pull request #88 from whywaita/fix/expand-timeout
c87c859 fix check
6f9d37e add debug log
22e4a23 Expand timeout of creating runner

v1.9.2

23 Aug 03:21
72f472f
Compare
Choose a tag to compare

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

02 Aug 08:53
9a63a24
Compare
Choose a tag to compare

Gotcha! myshoes got a new logo! 😻

myshoes_logo_yoko_colorA

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

v1.9.0

21 Jul 03:25
98029fd
Compare
Choose a tag to compare

Changelog

98029fd Merge pull request #77 from whywaita/feat/change-resource-type
c92d4bd implement UPDATE /target
e0bd31f update resource type when recreate target
d4043aa implement update resource type

v1.8.6

13 Jul 09:32
8edab30
Compare
Choose a tag to compare

Changelog

8edab30 Merge pull request #75 from whywaita/fix/errgroup
8ac6ced add logging when end of error
24bce54 Merge pull request #74 from whywaita/fix/forget-return
b295730 return error msg when failure generate token

v1.8.5

09 Jul 02:50
4e869fe
Compare
Choose a tag to compare

Changelog

4e869fe Merge pull request #73 from whywaita/refactor/export-struct
1804dea add comment
003080b myshoes recommend timezone is UTC
9e1d77a export TargetCreateParam

v1.8.4

24 Jun 06:28
995257c
Compare
Choose a tag to compare

Changelog

995257c Merge pull request #71 from whywaita/feat/mysql-loc
54a5d26 fix MySQL timezone to UTC

v1.8.3

16 Jun 07:33
28f61d7
Compare
Choose a tag to compare

Changelog

28f61d7 Merge pull request #70 from whywaita/fix/format-slash
1266ed7 RepoURL return only one slash