forked from louislam/uptime-kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into background-jobs
# Conflicts: # package-lock.json # package.json # src/languages/en.js
- Loading branch information
Showing
58 changed files
with
2,215 additions
and
560 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,27 @@ | |
Use this section to tell people about which versions of your project are | ||
currently being supported with security updates. | ||
|
||
### Uptime Kuma Versions | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 1.7.X | :white_check_mark: | | ||
| < 1.7 | ❌ | | ||
| 1.8.X | :white_check_mark: | | ||
| <= 1.7.X | ❌ | | ||
|
||
### Upgradable Docker Tags | ||
|
||
| Tag | Supported | | ||
| ------- | ------------------ | | ||
| 1 | :white_check_mark: | | ||
| 1-debian | :white_check_mark: | | ||
| 1-alpine | :white_check_mark: | | ||
| latest | :white_check_mark: | | ||
| debian | :white_check_mark: | | ||
| alpine | :white_check_mark: | | ||
| All other tags | ❌ | | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please report security issues to [email protected]. | ||
|
||
Do not use the issue tracker or discuss it in the public as it will cause more damage. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
"rootDir": "..", | ||
"testRegex": "./test/backend.spec.js", | ||
}; | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module.exports = { | ||
"rootDir": ".", | ||
"rootDir": "..", | ||
"testRegex": "./test/frontend.spec.js", | ||
}; | ||
|
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. | ||
BEGIN TRANSACTION; | ||
|
||
ALTER TABLE monitor | ||
ADD method TEXT default 'GET' not null; | ||
|
||
ALTER TABLE monitor | ||
ADD body TEXT default null; | ||
|
||
ALTER TABLE monitor | ||
ADD headers TEXT default null; | ||
|
||
COMMIT; |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
apps: [{ | ||
name: "uptime-kuma", | ||
script: "./server/server.js", | ||
}] | ||
} |
Oops, something went wrong.