Skip to content

Commit bc92f26

Browse files
authored
Merge pull request #82 from Scalingo/feat/SRE-570/bump_to_v4.4.6
chore(release): Bump to v4.4.6
2 parents c3f35c3 + e798e05 commit bc92f26

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## To Be Released
44

5+
## v4.4.6
6+
57
* feat(mysqlprobe): implement MySQL probe
68

79
## v4.4.5

README.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Go Philae v4.4.5
1+
# Go Philae v4.4.6
22

33
Go Philae is the go implementation of our Philae health check protocol.
44

@@ -214,7 +214,29 @@ pgsqlprobe.NewPostgreSQLProbeFromURL(name, url string)
214214
```
215215

216216
* name: The name of the probe
217-
* url: The URL of the Redis server (e.g.: `postgres://username:[email protected]`)
217+
* url: The URL of the PostgreSQL server (e.g.: `postgres://username:[email protected]`)
218+
219+
### MySQLProbe
220+
221+
Check that a MySQL server is up and running
222+
223+
#### Usage
224+
225+
```
226+
mysqlprobe.NewMySQLProbe(name, host, password) string
227+
```
228+
229+
* name: The name of the probe
230+
* host: The MySQL host
231+
* password: The password needed to access the database
232+
233+
234+
```
235+
mysqlprobe.NewMySQLProbeFromURL(name, url string)
236+
```
237+
238+
* name: The name of the probe
239+
* url: The URL of the MySQL server (e.g.: `mysql://username:[email protected]`)
218240

219241
### SampleProbe
220242

@@ -295,9 +317,9 @@ Commit, tag and create a new release:
295317

296318
```sh
297319
git add CHANGELOG.md README.md
298-
git commit -m "Bump v4.4.5"
320+
git commit -m "Bump v4.4.6"
299321
git push origin master
300-
gh release create v4.4.5
322+
gh release create v4.4.6
301323
```
302324

303325
The title of the release should be the version number and the text of the

0 commit comments

Comments
 (0)