Add config and data for 4.1-dev4

This commit is contained in:
Yuri Sizov
2023-06-01 12:10:22 +02:00
parent ab9eced772
commit 75ae068fc0
3 changed files with 14 additions and 8 deletions

View File

@@ -379,18 +379,18 @@ class DataProcessor {
}
consumeOldLog() {
this.log = this.oldData.log;
this.releaseLogs = this.oldData.releaseLogs;
this.commits = this.oldData.commits;
this.log = this.oldData.log || [];
this.releaseLogs = this.oldData.releaseLogs || {};
this.commits = this.oldData.commits || {};
}
consumeOldCommits() {
this.authors = this.oldData.authors;
this.pulls = this.oldData.pulls;
this.authors = this.oldData.authors || {};
this.pulls = this.oldData.pulls || {};
}
_getCommitObject(commitHash) {
if (typeof this.oldData.commits[commitHash] !== "undefined") {
if (typeof this.oldData.commits !== "undefined" && typeof this.oldData.commits[commitHash] !== "undefined") {
return this.oldData.commits[commitHash];
}

View File

@@ -1,7 +1,7 @@
{
"name": "4.1",
"git_tag": "master",
"ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
"ref": "5c2295ff538312884115c2b7a3aec1e301b8b954",
"from_ref": "4.0-stable",
"article": "",
@@ -23,6 +23,12 @@
"ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
"from_ref": "668cf3c66f42989949399f36e9faa29426e37416",
"article": "https://godotengine.org/article/dev-snapshot-godot-4-1-dev-3/"
},
{
"name": "dev4",
"ref": "5c2295ff538312884115c2b7a3aec1e301b8b954",
"from_ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
"article": "https://godotengine.org/article/dev-snapshot-godot-4-1-dev-4/"
}
]
}

File diff suppressed because one or more lines are too long