• Home
  • Raw
  • Download

Lines Matching +full:node +full:- +full:releases

7 #     http://www.apache.org/licenses/LICENSE-2.0
16 You'll need a github API token to avoid being rate-limited. See
17 https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/
20 tags or release branch names of previous and current releases respectively.
40 --
41 … generated release notes. Previous release notes are [here](https://github.com/grpc/grpc/releases).
46 --
49 -
53 -
57 -
60 Objective-C
61 -
65 -
69 -
73 -
80 …ee [grpc.io](https://grpc.io/). For previous releases, see [Releases](https://github.com/grpc/grpc…
92 …"""Print commit and CL info for the commits that are submitted with CL-first workflow and warn the…
96 "-n 1",
99 output = subprocess.check_output(glg_command).decode("utf-8", "ignore")
102 detail = "- " + author + " "
104 detail += "- " + title
107 matches = re.search("PiperOrigin-RevId: ([0-9]+)$", output)
127 "--pretty=oneline",
131 return subprocess.check_output(glg_command).decode("utf-8", "ignore")
147 return json.loads(response.data.decode("utf-8"))
154 match_commit = "^([a-fA-F0-9]+) "
159 match_merge_pr = "^([a-fA-F0-9]+) .*Merge pull request #(\d+)"
171 match_sq = "^([a-fA-F0-9]+) .*\(#(\d+)\)$"
183 print(("---------- getting data for PR " + pr_num))
208 "- " + body + " ([#" + pr_num + "](" + HTML_URL + pr_num + "))"
210 detail = "- " + pr["user"]["login"] + "@ " + prline
233 commits_wo_pr = all_commits_set - merge_commits_set - sq_commits_set
243 …"Commits with missing PR number - please lookup the PR info in the corresponding CL and add to the…
245 file.write("---\n")
250 file.write("- None")
253 file.write("PRs with missing release notes label - please fix in Github\n")
254 file.write("---\n")
260 file.write("- None")
263 file.write("PRs with missing lang label - please fix in Github\n")
264 file.write("---\n")
270 file.write("- None")
274 "PRs going into release notes - please check title and fix in Github."
277 file.write("---\n")
283 file.write("- None")
287 file.write("---\n")
293 file.write("- None")
301 file.write("Core\n---\n\n")
306 file.write("C++\n---\n\n")
311 file.write("C#\n---\n\n")
316 file.write("Go\n---\n\n")
321 file.write("Java\n---\n\n")
325 if langs_pr["node"]:
326 file.write("Node\n---\n\n")
327 file.write("\n".join(langs_pr["node"]))
331 file.write("Objective-C\n---\n\n")
336 file.write("PHP\n---\n\n")
341 file.write("Python\n---\n\n")
346 file.write("Ruby\n---\n\n")
351 file.write("Other\n---\n\n")
389 "--token",
420 " --token=<your github token> or set environment variable"