diff --git a/check_missing_specs.rb b/check_missing_specs.rb new file mode 100755 index 0000000000000000000000000000000000000000..d8ca43d86b5bc3ccd7ea545077b867f2812b0bd9 --- /dev/null +++ b/check_missing_specs.rb @@ -0,0 +1,48 @@ +#!/usr/bin/ruby + +require 'yaml' +require 'set' +require 'optparse' + +require './helper/download_spec' +require './gitee/advisor' + +options = {} +OptionParser.new do |opts| + opts.banner = "Usage: check_missing_spec.rb [options]" + opts.on("-p", "--push", "Push the advise to gitee.com/src-openeuler") do |v| + options[:push] = v + end + opts.on("-r", "--repo REPO_NAME", "Repo to check upstream info") do |n| + puts "Checking #{n}" + options[:repo] = n + end + opts.on("-h", "--help", "Prints this help") do + puts opts + exit + end +end.parse! + +if not options[:repo] then + puts "Missing repo name\n" + exit 1 +end + +specfile = download_spec(options[:repo]) + +if specfile == "" then + puts "no spec file found for #{options[:repo]} project\n" + if options[:push] then + puts "Push this advise to gitee\n" + ad = Advisor.new + ad.new_issue("src-openeuler", options[:repo], + "Submit spec file into this repository", + "Dear #{options[:repo]} maintainer:\n亲爱的 #{options[:repo]} 维护者:\n\n We found there is no spec file in this repository yet.\n我们发现这个代码仓中没有 spec 文件。\n\n Missing spec file implies that this components will not be integtaed into openEuler release, and your hardworking cannot help others.\n缺少 spec 文件意味着这个项目还不能被集成到 openEuler 项目中,而您的贡献还不能帮助到社区中的其他人。\n\n We courage you submit your spec file into this repository as soon as possible.\n我们鼓励您尽快提交 spec 文件到这个代码仓中\n\n This is a automatic advise from openEuler-Advisor. If you think the advise is not correct, please fill an issue at https\:\/\/gitee.com\/openeuler\/openEuler-Advisor to help us improve.\n这是一条由 openEuler-Advisor 自动生成的建议。如果您认为这个建议不对,请访问 https\:\/\/gitee.com\/openeuler\/openEuler-Advisor 来帮助我们改进。\n\n Yours openEuler Advisor.") + else + puts "Keep it between us\n" + end +else + puts "Everything's fine\n" +end + +File.delete(specfile) if specfile != "" diff --git a/check_upstream.rb b/check_upgradable.rb similarity index 71% rename from check_upstream.rb rename to check_upgradable.rb index 707a739eaf421abec00bc0c0f31c66c2eaf69795..0c87a07a44edfcf86aa1f156048cf38ea304543c 100755 --- a/check_upstream.rb +++ b/check_upgradable.rb @@ -3,6 +3,7 @@ require 'yaml' require 'json' require 'date' +require 'optparse' require './check_upstream/github' require './check_upstream/git' @@ -11,9 +12,40 @@ require './check_upstream/svn' require './check_upstream/metacpan' require './check_upstream/gnome' require './check_upstream/pypi' +require './helper/download_spec' +require './helper/rpmparser' +require './gitee/advisor' -Prj_name = ARGV[0] -Cur_ver = ARGV[1] +options = {} + +OptionParser.new do |opts| + opts.banner = "Usage: check_upgradable.rb [options]" + opts.on("-p", "--push", "Push the advise to gitee.com/src-openeuler") do |v| + options[:push] = v + end + opts.on("-r", "--repo REPO_NAME", "Repo to check upstream info") do |n| + puts "Checking #{n}" + options[:repo] = n + end + opts.on("-h", "--help", "Prints this help") do + puts opts + exit + end +end.parse! + +if not options[:repo] then + puts "Missing repo name\n" + exit 1 +end + +Prj_name = options[:repo] +specfile=download_spec(Prj_name) +if specfile == "" then + puts "no specfile found for project\n" + exit 1 +end +spec_struct = Specfile.new(specfile) +Cur_ver = spec_struct.get_version Prj_info = YAML.load(File.read "upstream-info/"+Prj_name+".yaml") @@ -123,7 +155,7 @@ end tags = sort_tags(tags) print "Latest upstream is ", tags[-1], "\n" -print "Recommended is ", upgrade_recommend(tags, Cur_ver, "latest-stable"), "\n" +#print "Recommended is ", upgrade_recommend(tags, Cur_ver, "latest-stable"), "\n" print "Current version is ", Cur_ver, "\n" if tags.length == 0 or compare_tags(tags[-1], Cur_ver) < 0 then @@ -133,3 +165,12 @@ if tags.length == 0 or compare_tags(tags[-1], Cur_ver) < 0 then else File.open("upstream-info/"+Prj_name+".yaml", "w") { |file| file.write(Prj_info.to_yaml) } end +File.delete(specfile) if specfile != "" + +if options[:push] then + puts "Push to gitee\n" + ad = Advisor.new + ad.new_issue("src-openeuler", Prj_name, "Upgrade to Latest Release", "Dear #{Prj_name} maintainer:\n\n We found the latst version of #{Prj_name} is #{tags[-1]}, while the current version in openEuler is #{Cur_ver}.\n\n Please consider upgrading.\n\n\nYours openEuler Advisor.") +else + puts "keep it to us\n" +end diff --git a/check_upstream/common.rb b/check_upstream/common.rb index d0f5e1183b64c4ba0b7190eb0c9ff15a28f789d3..4ff8752d7b0e09652c105654ee2d6e5dffb607bd 100755 --- a/check_upstream/common.rb +++ b/check_upstream/common.rb @@ -98,7 +98,7 @@ def load_last_query_result(prj_info, force_reload=false) return last_query["raw_data"].dup else prj_info.delete("last_query") - STDERR.puts "DEBUG: #{prj_info["src_repo"].gusb("\n", "")} > Last Query Too Old.\n" + STDERR.puts "DEBUG: #{prj_info["src_repo"].gsub("\n", "")} > Last Query Too Old.\n" return "" end else diff --git a/gitee/advisor.rb b/gitee/advisor.rb new file mode 100755 index 0000000000000000000000000000000000000000..988db42af69ccb78d69b5778378aa69b52794c76 --- /dev/null +++ b/gitee/advisor.rb @@ -0,0 +1,26 @@ +#!/usr/bin/ruby + +require 'json' + +class Advisor + def initialize + @token = JSON.parse(File.read (File.expand_path "~/.gitee_token.json")) + @cmd = "curl -X POST --header 'Content-Type: application/json;charset=UTF-8'" + @param = {} + end + + def new_issue(owner, repo, title, body) + @param["access_token"] = @token["access_token"] + @param["repo"] = repo + @param["title"] = title + @param["body"] = body + @cmd += " 'https://gitee.com/api/v5/repos/#{owner}/issues'" + @cmd += " -d '" + @param.to_json + "'" + #puts @cmd + resp = %x[#{@cmd}] + #puts resp + end +end + +#ad = Advisor.new +#ad.new_issue("Shinwell_Hu", "openEuler-Toolbox") diff --git a/helper/download_spec.rb b/helper/download_spec.rb new file mode 100755 index 0000000000000000000000000000000000000000..0c3403d9598de441183f4db836c91335c78948ab --- /dev/null +++ b/helper/download_spec.rb @@ -0,0 +1,25 @@ +#!/usr/bin/ruby + +require 'yaml' + +def download_spec(name) + output_dir = "." + exception_load = YAML.load(File.read(File.dirname(__FILE__)+"/specfile_exceptions.yaml")) + if exception_load.has_key?(name) then + output_file = "#{output_dir}/#{exception_load[name]["file"]}" + cmd = "curl -s https://gitee.com/src-openeuler/#{name}/raw/master/#{exception_load[name]["dir"]}/#{exception_load[name]["file"]} -o #{output_file}" + else + output_file = "#{output_dir}/#{name}.spec" + cmd = "curl -s https://gitee.com/src-openeuler/#{name}/raw/master/#{name}.spec -o #{output_file}" + + end + %x[#{cmd}] if ! File.exists?(output_file) + s = File.size(output_file) + if s == 52 then + STDERR.puts "> No SPEC file found for #{name}" + File.delete output_file + return "" + end + return output_file +end + diff --git a/helper/rpmparser.rb b/helper/rpmparser.rb new file mode 100755 index 0000000000000000000000000000000000000000..68ee86735d2fdbdae973fe3f54fc45fdbbf90b4e --- /dev/null +++ b/helper/rpmparser.rb @@ -0,0 +1,140 @@ +#!/usr/bin/ruby + +require 'yaml' +require 'set' + +def rpmspec_split_tags (line, prefix) + m = line.scan (/#{prefix}\s*(.*)/) + if m != [] then + br = m[0][0] + if br.index(',') then + bra = br.split(',').map(&:strip) + return bra + elsif br =~ /\w\s+\w/ then + bra = br.split(/\s+/) + return bra + end + end + return nil +end + +def rpmspec_clean_tag (oset, mac) + + new_set = Set.new + + oset.each { |br| + if br[0] =~ /[\d<=>!]/ then + oset.delete(br) + elsif br =~ /[<=>!]/ then + bra = br.split("\s").map(&:strip) + oset.delete(br) + new_set << bra[0] + elsif br.match(/%{/) then + m = br.scan(/%{(.*?)}/) + if m != [] then + if mac[m[0][0]] then + nbr = br.gsub(/%{#{m[0][0]}}/, mac[m[0][0]]) + else + # some strange RPM macro needs shell expand, I dont know ohw to handle this + nbr = br + end + oset.delete(br) + new_set << nbr + end + end + } + oset += new_set + return oset +end + +def rpmspec_macro_expand(tag, macro) + if tag.match(/%{/) then + m = tag.scan(/%{(.*)}/) + if m != [] then + if macro[m[0][0]] then + tag = tag.gsub(/%{#{m[0][0]}}/, macro[m[0][0]]) + end + end + end + return tag +end + +class Specfile + def initialize(filepath) + spec = File.open("#{filepath}") + @macros = {} + @macros["epoch"] = "1" + @macros["?_isa"] = "aarch64" + @name = "" + @version = "" + @release = "" + + @build_requires = Set.new + @requires = Set.new + @provides = Set.new + + spec.each_line { |line| + m = line.scan (/^[Nn]ame\s*:\s*([^\s]*)\s*/) + if m != [] then + @name = m[0][0] + end + m = line.scan (/^[Vv]ersion\s*:\s*([^\s]*)\s*/) + if m != [] then + @version = m[0][0] + end + m = line.scan (/^[Rr]elease\s*:\s*([^\s]*)\s*/) + if m != [] then + @release = m[0][0] + end + m = line.scan (/%global\s*([^\s]*)\s*(.*)/) + if m != [] then + @macros[m[0][0]] = m[0][1] + end + m = line.scan (/%define\s*([^\s]*)\s*(.*)/) + if m != [] then + @macros[m[0][0]] = m[0][1] + end + bra = rpmspec_split_tags(line, "BuildRequires:") + if bra != nil then + @build_requires += bra + end + ra = rpmspec_split_tags(line, "Requires:") + if ra != nil then + @requires += ra + end + po = rpmspec_split_tags(line, "Provides:") + if po != nil then + @provides += po + end + } + @name = rpmspec_macro_expand(@name, @macros) + @macros["name"] = @name + + @version = rpmspec_macro_expand(@version, @macros) + @macros["version"] = @version + + @release = rpmspec_macro_expand(@release, @macros) + @macros["release"] = @release + + @build_requires = rpmspec_clean_tag(@build_requires, @macros) + @requires = rpmspec_clean_tag(@requires, @macros) + @provides = rpmspec_clean_tag(@provides, @macros) + end + + def get_name + return @name + end + + def get_version + return @version + end +#newspec = {} +#newspec["name"] = name +#newspec["release"] = release +#newspec["version"] = version +#newspec["build_requires"] = build_requires +#newspec["provides"] = provides +#newspec["requires"] = requires + +end + diff --git a/helper/specfile_exceptions.yaml b/helper/specfile_exceptions.yaml new file mode 100755 index 0000000000000000000000000000000000000000..0e51e5215b5d6e8a5cf2fe0ffee435ad6419aae7 --- /dev/null +++ b/helper/specfile_exceptions.yaml @@ -0,0 +1,55 @@ +--- +libnetwork: + dir: script + file: docker-proxy.spec +authz: + dir: hack + file: authz.spec +lxcfs-tools: + dir: hack + file: lxcfs-tools.spec +libkae: + dir: . + file: kae.spec +autotune: + dir: . + file: atune.spec +dvdplusrw-tools: + dir: . + file: dvd+rw-tools.spec +gtk: + dir: . + file: gtk+.spec +docker: + dir: . + file: docker-engine-openeuler.spec +libsigcpp20: + dir: . + file: libsigc++20.spec +libwd: + dir: . + file: warpdrive.spec +kmod-kvdo: + dir: . + file: kvdo.spec +jboss-el: + dir: . + file: jboss-el-2.2-api.spec +openEuler-rpm-config: + dir: . + file: generic-rpm-config.spec +openEuler-release: + dir: . + file: generic-release.spec +openjdk-1.8.0: + dir: . + file: java-1.8.0-openjdk.spec +openjdk-11: + dir: . + file: java-11-openjdk.spec +A-Tune: + dir: . + file: atune.spec +runc: + dir: . + file: runc-openeuler.spec \ No newline at end of file diff --git a/known-issues/firebird.yaml b/known-issues/firebird.yaml new file mode 100644 index 0000000000000000000000000000000000000000..766149143a004f34d789899ff7e993540c861ebf --- /dev/null +++ b/known-issues/firebird.yaml @@ -0,0 +1,9 @@ +--- +version_control: github +src_repo: FirebirdSQL/firebird +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 07:16:27.839245460 +00:00 + raw_data: "ba0d595ab02e17fa07d6e08bb1f36e35a1b9ec09\trefs/tags/R1_5_0\n1184777d55f65eddb95c2ee6a5d0323562d6fc9f\trefs/tags/R1_5_1\nd1ae2b94cdbc10bef981e4c018621b52abd1700d\trefs/tags/R1_5_2\nccebbb8bcf0eb938aa7312b2abd8a4e94b9ae69d\trefs/tags/R1_5_3\n85a75a1beb453b5ef94a19b92047a7736583217c\trefs/tags/R1_5_4\n820257aff2aba9c9f6c7bafdb9e19e44cfec677b\trefs/tags/R1_5_5\n70f38a30664dbfe0b2a4c32179503c1370d1845c\trefs/tags/R1_5_6\nbf7c362db7d2e4ae9b911128319455f5a5b2c53d\trefs/tags/R2_0_0\n415b79d213e38640b0e827d6c67577b883135514\trefs/tags/R2_0_1\n62162f80ae0404d7c98601fdbed20a2e2a110b67\trefs/tags/R2_0_2\n1d8ffdb2d90bbb392d815c45504adfc42e8e113b\trefs/tags/R2_0_3\nfc9d72c14943a5b7d69cbcd39b39929de4096aab\trefs/tags/R2_0_4\n3e09b86f454a2af8cf07541640e9b0402d72f339\trefs/tags/R2_0_5\n28d2d1c189a5fd28ce7c617f446ac0d8fd9270a4\trefs/tags/R2_0_6\n4fc53a3462e1a1e5fccf439866f559722bc7f928\trefs/tags/R2_0_7\n2c008e5b7dc34ee16b22bfacfa08c0638442d46b\trefs/tags/R2_1_0\nc5b36f15610dcf4d68f469d0e594f4f68d542e38\trefs/tags/R2_1_1\n8aaa0b4f0d81511f6ad4aeeaa31a462abd238d7d\trefs/tags/R2_1_2\n190a8d377aaaed7a65cd94bf883fc1780149e984\trefs/tags/R2_1_3\nd7d30425e00d4d61c2fb5b536b7ed1df3615dac6\trefs/tags/R2_1_4\n69a1c5b816a99b117b4a89034156a8dd8265464b\trefs/tags/R2_1_5\n210f269086ffc18de1c73eab0725c1d5d8945fee\trefs/tags/R2_1_5_Upd_1\nba7dcd05e3379947565dfc5256c0e58d7fa33e5c\trefs/tags/R2_1_6\n1d00b7602e607ab776baf12a28be684d8a69bdb0\trefs/tags/R2_1_7\nb51e0e35512eb01bf3872288b63eb3e18196d71c\trefs/tags/R2_5_0\n4d1010d8c7871e21c6088ee11944ea9988447689\trefs/tags/R2_5_1\n77ea52067e0a0828a17ab65140b4a5bca1e5b7dd\trefs/tags/R2_5_2\n222411587e9fc3069f050a587ce8d2febae256f4\trefs/tags/R2_5_2_Upd_1\nf19e5985d72c1d5979f05967bdc64df6b9e52cb5\trefs/tags/R2_5_3\n7f7455c5c78206ce65529d27f456bd30d61a9fd4\trefs/tags/R2_5_3_Upd_1\n2236a7e46927232d22ccea463b37e18476093d0f\trefs/tags/R2_5_4\n4a59eb0d71cd96ab38cdad157eb743b760e81057\trefs/tags/R2_5_5\n34b48675c0f88441c4e6917007a4a5de47ea53af\trefs/tags/R2_5_6\n684199c72d25f1ec4e01ab03569c3cc1ac7d833a\trefs/tags/R2_5_6^{}\na63a8c59ca7b2d3bef3aa14f75b74dc98b652d79\trefs/tags/R2_5_7\na802126cd501f641f00d6cda12d5d9ee3ecda6f5\trefs/tags/R2_5_7^{}\n19a1024d506c95802c9f7a5dec9007b9244eb333\trefs/tags/R2_5_8\n5a2cdc4bf84724ea3ee26613c6c74ba9eb04d5e8\trefs/tags/R2_5_8^{}\n763e24021cee1d576018d1e0bdcb07ac042ead33\trefs/tags/R2_5_9\nf8c304ac3cdb0138ccdbfbe4cb6c7a08a50dbed0\trefs/tags/R2_5_9^{}\n8bf6e2acea2ac1c5386364493a6cb264bb53ff25\trefs/tags/R3_0_0\n1767a517f9c99ec97160cacb452fdcfd83dca9be\trefs/tags/R3_0_0^{}\n86ffb32ea5985c73e5e47b88edc8fd5499a9996b\trefs/tags/R3_0_1\nd909d06526c439e5855b8584ff0984d43b68a15e\trefs/tags/R3_0_1^{}\n4ba516d28abe3a2d6ffe9678aae47a908e93586f\trefs/tags/R3_0_2\n19b1a66671449091b87a5f8641b93c86f9f79e34\trefs/tags/R3_0_2^{}\n7fd8582e49aaba603c48c81e20df0b77230a0fdf\trefs/tags/R3_0_3\nef6544a3008e914f5b7352d0647628dd9e1c7af0\trefs/tags/R3_0_3^{}\neace323752c22ff74d26af86b4e71a3e652b036c\trefs/tags/R3_0_4\ncff6cf566de44361203416d9a4f0e69b846d55f1\trefs/tags/R3_0_4^{}\n86e691c52acb4026b15e8811829b73288dd01cd5\trefs/tags/R3_0_5\nf90f322d99db4d0e5fdbe3c47a3b0f9420778773\trefs/tags/R3_0_5^{}\nf572ad73eb38a9cfe354918a1f9bb3b1d7b7f8d5\trefs/tags/T2_5_0_Alpha1\n5935dba1e0afd801c28a2ef175ed98528ee32463\trefs/tags/T2_5_0_Beta1\n93c57723221692db1c6cada6ac150c965ce24f47\trefs/tags/T2_5_0_Beta2\ndc01548622dc242648e8c062a06a1cc46c4c5e5e\trefs/tags/T2_5_0_RC1\nba17b817bf3657acabe446e6c5a70ef6c1d7d3ed\trefs/tags/T2_5_0_RC2\ne30dd73f1a7e10f06568f4c4e6a3b733c53b948e\trefs/tags/T2_5_0_RC3\ned0fef46c3fdc71b7ac151038505ff4237eff688\trefs/tags/T3_0_0_Alpha1\n77813f2486245a261dc413736aa8130c0f46ae67\trefs/tags/T3_0_0_Alpha2\n028464eaa0f7f4057e9d803f90377953d2a8be6c\trefs/tags/T3_0_0_Beta1\n0afb98ae68491c47bf39e890c2e3cd922ed5b630\trefs/tags/T3_0_0_Beta2\ne741945af45520fcc8d9984e151f63dc504f2756\trefs/tags/T3_0_0_RC1\n3bf30170268402c3ef65b4d1348bc9cc24728956\trefs/tags/T3_0_0_RC2\n2de86c7bbfde5341184aed5eb07e5ade13d08a9a\trefs/tags/T4_0_0_Alpha1\n025c66c8f9adf4deaf98f3f5fd3e90a06bd09097\trefs/tags/T4_0_0_Alpha1^{}\n651d8be08acc9b296797951b624503013940fae1\trefs/tags/T4_0_0_Beta1\nd31495be14daa8bca46c879bdaf0e30194abd891\trefs/tags/T4_0_0_Beta1^{}\nbe29e3d019d065f6eadfd5a7b5a0187443e4a7cd\trefs/tags/T4_0_0_Beta2\na3bb11e93344d6455b2af3b6f3ebdc1ee36c1204\trefs/tags/T4_0_0_Beta2^{}\n" +query_type: git-ls diff --git a/upstream-info/kvdo.yaml b/known-issues/kvdo.yaml similarity index 100% rename from upstream-info/kvdo.yaml rename to known-issues/kvdo.yaml diff --git a/known-issues/openblas.yaml b/known-issues/openblas.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0f8903bc43f2e309a3ca09e2b8404fa869ec415e --- /dev/null +++ b/known-issues/openblas.yaml @@ -0,0 +1,9 @@ +--- +version_control: github +src_repo: xianyi/OpenBLAS/ +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:40:33.758203360 +00:00 + raw_data: '' +query_type: git-ls diff --git a/known-issues/urlview.yaml b/known-issues/urlview.yaml new file mode 100644 index 0000000000000000000000000000000000000000..95384d0584d37b84631b0407d7046514d45b6947 --- /dev/null +++ b/known-issues/urlview.yaml @@ -0,0 +1,9 @@ +--- +version_control: github +src_repo: sigpipe/urlview +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 10:02:27.346143130 +00:00 + raw_data: '' +query_type: git-ls diff --git a/packager/python-packager.py b/packager/python-packager.py index cb823e84a8b53702b611b3dc69132671ceccfc59..ce131ebfd8b00e3d2fda7beacb820d4f59f2c508 100755 --- a/packager/python-packager.py +++ b/packager/python-packager.py @@ -1,4 +1,7 @@ #!/usr/bin/python3 +""" +This is a packager bot for python modules from pypi.org +""" #****************************************************************************** # Copyright (c) Huawei Technologies Co., Ltd. 2018-2019. All rights reserved. # licensed under the Mulan PSL v2. @@ -14,7 +17,8 @@ # Description: provide a tool to package python module automatically # ******************************************************************************/ -from urllib import request +import urllib +import urllib.request from pprint import pprint from os import path import json @@ -23,6 +27,10 @@ import re import datetime import argparse import subprocess +import os +from pathlib import Path +# python3-wget is not default available on openEuler yet. +# import wget url_template = 'https://pypi.org/pypi/{pkg_name}/json' json_file_template = '{pkg_name}.json' @@ -38,12 +46,26 @@ buildreq_tag_template = 'BuildRequires:\t{req}' build_noarch = True # Usually python modules are arch independent -# TODO List -# 1. Need a reliable way to get description of module .. Partially done -# 2. requires_dist has some dependency restirction, need to present -# 3. dependency outside python (i.e. pycurl depends on libcurl) doesn't exist in pipy +def get_license(j): + """ + By default, the license info can be achieved from json["info"]["license"] + In rare cases it doesn't work. + We fall back to json["info"]["classifiers"], it looks like License :: OSI Approved :: BSD Clause + """ + if j["info"]["license"] != "": + return j["info"]["license"] + for k in j["info"]["classifiers"]: + if k.startswith("License"): + ks = k.split("::") + return ks[2].strip() + return "" + def get_source_url(j): + """ + return URL for source file for the latest version + return "" in errors + """ v = j["info"]["version"] rs = j["releases"][v] for r in rs: @@ -51,30 +73,80 @@ def get_source_url(j): return r["url"] return "" + def transform_module_name(n): + """ + return module name with version restriction. + Any string with '.' or '/' is considered file, and will be ignored + Modules start with python- will be changed to python3- for consistency. + """ # remove () ns = re.split("[()]", n) + ver_constrain = [] + ns[0] = ns[0].strip() if ns[0].startswith("python-"): ns[0] = ns[0].replace("python-", "python3-") - return " ".join(ns) else: - ns[0] = "python3-"+ns[0] + ns[0] = "python3-" + ns[0] if ns[0].find("/") != -1 or ns[0].find(".") != -1: return "" - else: - return " ".join(ns) + if len(ns) > 1: + vers = ns[1].split(",") + for ver in vers: + m = re.match(r"([!<>=]+)( *)(\d.*)", ver.strip()) + ver_constrain.append(ns[0] + " " + m[1] + " " + m[3]) + return ", ".join(ver_constrain) + else: + return ns[0] + def get_requires(j): + """ + return all requires no matter if extra is required. + """ rs = j["info"]["requires_dist"] - if rs == None: + if rs is None: return for r in rs: idx = r.find(";") mod = transform_module_name(r[:idx]) - if mod != "": - print ("Requires:\t"+mod) + print("Requires:\t" + mod) + + +def refine_requires(req): + """ + return only requires without ';' (thus no extra) + """ + ra = req.split(";", 1) + # + # Do not add requires which has ;, which is often has very complicated precondition + # Will need more parsing of the denpency after ; + return transform_module_name(ra[0]) + +def get_build_requires(resp): + req_list=[] + rds = resp["info"]["requires_dist"] + if rds is not None: + for rp in rds: + br = refine_requires(rp) + if (br == ""): + continue + # + # Do not output BuildRequires: + # just collect all build requires and using pip to install + # than can help to build all rpm withoud trap into + # build dependency nightmare + # + #print(buildreq_tag_template.format(req=br)) + name=str.lstrip(br).split(" ") + req_list.append(name[0]) + return req_list def get_buildarch(j): + """ + If this module has a prebuild package for amd64, then it is arch dependent. + print BuildArch tag if needed. + """ v = j["info"]["version"] rs = j["releases"][v] for r in rs: @@ -85,7 +157,14 @@ def get_buildarch(j): return print("BuildArch:\tnoarch") + def get_description(j): + """ + return description. + Usually it's json["info"]["description"] + If it's rst style, then only use the content for the first paragraph, and remove all tag line. + For empty description, use summary instead. + """ desc = j["info"]["description"].splitlines() res = [] paragraph = 0 @@ -104,13 +183,20 @@ def get_description(j): if paragraph >= 2: del res[-1] return "\n".join(res) - if res == []: - return j["info"]["summary"] - else: + if res != []: return "\n".join(res) + elif paragraph == 0: + return j["info"]["description"] + else: + return j["info"]["summary"] + -def store_json(resp, pkg): - json_file = json_file_template.format(pkg_name=pkg) +def store_json(j, pkg, spath): + """ + save json file + """ + fname = json_file_template.format(pkg_name=pkg) + json_file = os.path.join(spath, fname) # if file exist, do nothing if path.exists(json_file) and path.isfile(json_file): @@ -118,46 +204,125 @@ def store_json(resp, pkg): resp = json.load(f) else: with open(json_file, 'w') as f: - json.dump(resp, f) + json.dump(j, f) def get_pkg_json(pkg): + """ + recieve json from pypi.org + """ url = url_template.format(pkg_name=pkg) - u = request.urlopen(url) + u = urllib.request.urlopen(url) resp = json.loads(u.read().decode('utf-8')) return resp +def download_source(j, tgtpath): + """ + download source file from url, and save it to target path + """ + if (os.path.exists(tgtpath) == False): + print("download path %s does not exist\n", tgtpath) + return False + s_url = get_source_url(j) + return subprocess.call(["wget", s_url, "-P", tgtpath]) + -def download_source(resp): - subprocess.run(["wget", get_source_url(resp)]) - return +def prepare_rpm_build_env(buildroot): + """ + prepare environment for rpmbuild + """ + if (os.path.exists(buildroot) == False): + print("Build Root path %s does not exist\n", buildroot) + return False + + for sdir in ['SPECS', 'BUILD', 'SOURCES', 'SRPMS', 'RPMS', 'BUILDROOT']: + bpath = os.path.join(buildroot, sdir) + if (os.path.exists(bpath) == False): + os.mkdir(bpath) -def prepare_rpm_build_env(rootdir): return True -def build_rpm(resp): - if(prepare_rpm_build_env() == False): - return - return +def try_install_package(pkg): + """ + install packages listed in build requires + """ + print(pkg) + ret = subprocess.call(["rpm", "-qi", pkg]) + if ret == 0: + return True + + # try pip installation + pip_name = pkg.split("-") + if len(pip_name) == 2: + ret = subprocess.call(["pip3", "install", "--user", pip_name[1]]) + else: + ret = subprocess.call(["pip3", "install", "--user", pip_name[0]]) + + if ret != 0: + print("%s can not be installed correctly, Fix it later, go ahead to do building..." % pip_name) + + # + # Try to build anyway, fix it later + # + return True + +def prepare_dependencies(req_list): + for req in req_list: + if (try_install_package(req) == False): + return req + return "" + +def build_package(specfile): + """ + build rpm package with rpmbuild + """ + ret = subprocess.call(["rpmbuild", "-ba", specfile]) + return ret + + +def build_rpm(j, buildroot): + """ + full process to build rpm + """ + if(prepare_rpm_build_env(buildroot) == False): + return False + + specfile = os.path.join(buildroot, "SPECS", "python-" + j["info"]["name"] + ".spec") + + req_list = build_spec(j, specfile) + ret = prepare_dependencies(req_list) + if ret != "": + print("%s can not be installed automatically, Please handle it" % ret) + return ret + + download_source(j, os.path.join(buildroot, "SOURCES")) + + build_package(specfile) + + return "" def build_spec(resp, output): + """ + print out the spec file + """ + if os.path.isdir(output): + output = os.path.join(output, "python3-" + resp["info"]["name"]) tmp = sys.stdout if (output == ""): print() else: - sys.stdout = open(output,'w') - + sys.stdout = open(output, 'w+') print(name_tag_template.format(pkg_name=resp["info"]["name"])) print(version_tag_template.format(pkg_ver=resp["info"]["version"])) print(release_tag_template) print(summary_tag_template.format(pkg_sum=resp["info"]["summary"])) - print(license_tag_template.format(pkg_lic=resp["info"]["license"])) + print(license_tag_template.format(pkg_lic=get_license(resp))) print(home_tag_template.format(pkg_home=resp["info"]["project_urls"]["Homepage"])) print(source_tag_template.format(pkg_source=get_source_url(resp))) get_buildarch(resp) @@ -169,7 +334,7 @@ def build_spec(resp, output): print("") print("%package -n python3-{name}".format(name=resp["info"]["name"])) print(summary_tag_template.format(pkg_sum=resp["info"]["summary"])) - print("Provides:\tpython-"+resp["info"]["name"]) + print("Provides:\tpython-" + resp["info"]["name"]) print(buildreq_tag_template.format(req='python3-devel')) print(buildreq_tag_template.format(req='python3-setuptools')) @@ -178,7 +343,10 @@ def build_spec(resp, output): print(buildreq_tag_template.format(req='gcc')) print(buildreq_tag_template.format(req='gdb')) - print("%description -n python3-"+resp["info"]["name"]) + + build_req_list=get_build_requires(resp) + + print("%description -n python3-" + resp["info"]["name"]) print(get_description(resp)) print("") print("%package help") @@ -200,15 +368,30 @@ def build_spec(resp, output): print("if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi") print("if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi") print("if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi") + print("pushd %{buildroot}") + print("if [ -d usr/lib ]; then") + print("\tfind usr/lib -type f -printf \"/%h/%f\\n\" >> filelist.lst") + print("fi") + print("if [ -d usr/lib64 ]; then") + print("\tfind usr/lib64 -type f -printf \"/%h/%f\\n\" >> filelist.lst") + print("fi") + print("if [ -d usr/bin ]; then") + print("\tfind usr/bin -type f -printf \"/%h/%f\\n\" >> filelist.lst") + print("fi") + print("if [ -d usr/sbin ]; then") + print("\tfind usr/sbin -type f -printf \"/%h/%f\\n\" >> filelist.lst") + print("fi") + print("popd") + print("mv %{buildroot}/filelist.lst .") print("") - print("%files -n python3-{name}".format(name=resp["info"]["name"])) -# print("%{python3_sitelib}/*.egg-info/") -# print("%{python3_sitelib}/"+resp["info"]["name"]) + print("%files -n python3-{name} -f filelist.lst".format(name=resp["info"]["name"])) +# print("%{python3_sitelib}/*.egg-info/") +# print("%{python3_sitelib}/" + resp["info"]["name"]) if build_noarch: - print("%{python3_sitelib}/*") + print("%dir %{python3_sitelib}/*") else: - print("%{python3_sitearch}/*") + print("%dir %{python3_sitearch}/*") print("") print("%files help") @@ -221,32 +404,38 @@ def build_spec(resp, output): sys.stdout = tmp + return build_req_list + if __name__ == "__main__": + dft_root_path=os.path.join(str(Path.home()), "rpmbuild") + parser = argparse.ArgumentParser() parser.add_argument("-s", "--spec", help="Create spec file", action="store_true") parser.add_argument("-b", "--build", help="Build rpm package", action="store_true") - parser.add_argument("-d", "--download", help="Download source file", action="store_true") + parser.add_argument("-r", "--rootpath", help="Build rpm package in root path", type=str, default=dft_root_path) + parser.add_argument("-d", "--download", help="Download source file indicated path", action="store_true") + parser.add_argument("-p", "--path", help="indicated path to store files", type=str, default=os.getcwd()) parser.add_argument("-j", "--json", help="Get Package JSON info", action="store_true") parser.add_argument("-o", "--output", help="Output to file", type=str, default="") parser.add_argument("pkg", type=str, help="The Python Module Name") - args=parser.parse_args() - - print(args) + args = parser.parse_args() - resp=get_pkg_json(args.pkg) + response = get_pkg_json(args.pkg) if (args.spec): - build_spec(resp, args.output) + build_spec(response, args.output) if (args.build): - build_rpm(resp) + ret = build_rpm(response, args.rootpath) + if ret != "": + print("BuildRequire : %s" % ret) if (args.download): - download_source(resp) + download_source(response, args.path) if (args.json): - store_json(resp, args.pkg) + store_json(response, args.pkg, args.path) diff --git a/upstream-info/GeoIP.yaml b/upstream-info/GeoIP.yaml index 6e45a9e566f6e1f9f75188fa317d09991fe66716..2608c0bab3b040a4b782ad51ea2dcb4acefe24de 100644 --- a/upstream-info/GeoIP.yaml +++ b/upstream-info/GeoIP.yaml @@ -1,4 +1,889 @@ +--- version_control: github -src_repo: maxmind/geoip-api-c -tag_prefix: ^v -seperator: . +src_repo: maxmind/geoip-api-c +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-18 07:02:06.982270000 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/9275932", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/9275932/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/9275932/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.12", + "id": 9275932, + "node_id": "MDc6UmVsZWFzZTkyNzU5MzI=", + "tag_name": "v1.6.12", + "target_commitish": "master", + "name": "1.6.12", + "draft": false, + "author": { + "login": "rafl", + "id": 25669, + "node_id": "MDQ6VXNlcjI1NjY5", + "avatar_url": "https://avatars2.githubusercontent.com/u/25669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rafl", + "html_url": "https://github.com/rafl", + "followers_url": "https://api.github.com/users/rafl/followers", + "following_url": "https://api.github.com/users/rafl/following{/other_user}", + "gists_url": "https://api.github.com/users/rafl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rafl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rafl/subscriptions", + "organizations_url": "https://api.github.com/users/rafl/orgs", + "repos_url": "https://api.github.com/users/rafl/repos", + "events_url": "https://api.github.com/users/rafl/events{/privacy}", + "received_events_url": "https://api.github.com/users/rafl/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-01-17T19:26:08Z", + "published_at": "2018-01-17T19:38:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/assets/5903717", + "id": 5903717, + "node_id": "MDEyOlJlbGVhc2VBc3NldDU5MDM3MTc=", + "name": "GeoIP-1.6.12.tar.gz", + "label": "", + "uploader": { + "login": "rafl", + "id": 25669, + "node_id": "MDQ6VXNlcjI1NjY5", + "avatar_url": "https://avatars2.githubusercontent.com/u/25669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rafl", + "html_url": "https://github.com/rafl", + "followers_url": "https://api.github.com/users/rafl/followers", + "following_url": "https://api.github.com/users/rafl/following{/other_user}", + "gists_url": "https://api.github.com/users/rafl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rafl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rafl/subscriptions", + "organizations_url": "https://api.github.com/users/rafl/orgs", + "repos_url": "https://api.github.com/users/rafl/repos", + "events_url": "https://api.github.com/users/rafl/events{/privacy}", + "received_events_url": "https://api.github.com/users/rafl/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473914, + "download_count": 51325, + "created_at": "2018-01-17T19:38:18Z", + "updated_at": "2018-01-17T19:38:19Z", + "browser_download_url": "https://github.com/maxmind/geoip-api-c/releases/download/v1.6.12/GeoIP-1.6.12.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.12", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.12", + "body": "* Populate metro and area code when performing lookups in IPv6 City databases.\n Previously this was only done when using IPv4 City databases." + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6392318", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6392318/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6392318/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.11", + "id": 6392318, + "node_id": "MDc6UmVsZWFzZTYzOTIzMTg=", + "tag_name": "v1.6.11", + "target_commitish": "master", + "name": "1.6.11", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-05-15T19:23:39Z", + "published_at": "2017-05-15T19:25:44Z", + "assets": [ + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/assets/3880415", + "id": 3880415, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM4ODA0MTU=", + "name": "GeoIP-1.6.11.tar.gz", + "label": "", + "uploader": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 471777, + "download_count": 21641, + "created_at": "2017-05-15T19:25:45Z", + "updated_at": "2017-05-15T19:25:46Z", + "browser_download_url": "https://github.com/maxmind/geoip-api-c/releases/download/v1.6.11/GeoIP-1.6.11.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.11", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.11", + "body": "* Fix use of a NULL pointer when opening a corrupt database with\n `GeoIP_open`. Reported by Stephan Zeisberg. GitHub #87." + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/5914120", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/5914120/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/5914120/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.10", + "id": 5914120, + "node_id": "MDc6UmVsZWFzZTU5MTQxMjA=", + "tag_name": "v1.6.10", + "target_commitish": "master", + "name": "1.6.10: Fix GeoIP_database_info truncation and Windows issues", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-03-29T19:52:44Z", + "published_at": "2017-03-29T19:54:49Z", + "assets": [ + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/assets/3518477", + "id": 3518477, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg0Nzc=", + "name": "GeoIP-1.6.10.tar.gz", + "label": null, + "uploader": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 471742, + "download_count": 4004, + "created_at": "2017-03-29T19:55:13Z", + "updated_at": "2017-03-29T19:55:14Z", + "browser_download_url": "https://github.com/maxmind/geoip-api-c/releases/download/v1.6.10/GeoIP-1.6.10.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.10", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.10", + "body": "* GeoIP_database_info now returns the full version string rather than\r\n incorrectly truncating it. GitHub #79.\r\n* This API is now distributed with a small test copy of GeoIP.dat rather than\r\n a full copy.\r\n* Fix issue where Visual Studio 2015 was optimizing out initialization code.\r\n Reported and fixed by Scott Godin. GitHub #81.\r\n* Fix test/benchmark on Windows. Gisle Vanem. GitHub #75.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2408289", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2408289/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/2408289/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.9", + "id": 2408289, + "node_id": "MDc6UmVsZWFzZTI0MDgyODk=", + "tag_name": "v1.6.9", + "target_commitish": "master", + "name": "1.6.9: Fix a GeoIP_database_info regression", + "draft": false, + "author": { + "login": "rafl", + "id": 25669, + "node_id": "MDQ6VXNlcjI1NjY5", + "avatar_url": "https://avatars2.githubusercontent.com/u/25669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rafl", + "html_url": "https://github.com/rafl", + "followers_url": "https://api.github.com/users/rafl/followers", + "following_url": "https://api.github.com/users/rafl/following{/other_user}", + "gists_url": "https://api.github.com/users/rafl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rafl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rafl/subscriptions", + "organizations_url": "https://api.github.com/users/rafl/orgs", + "repos_url": "https://api.github.com/users/rafl/repos", + "events_url": "https://api.github.com/users/rafl/events{/privacy}", + "received_events_url": "https://api.github.com/users/rafl/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-01-11T21:29:25Z", + "published_at": "2016-01-11T21:31:01Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.9", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.9", + "body": "- Fix a regression introduced in version 1.6.8, which caused\r\n GeoIP_database_info to erroneously return NULL.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2405854", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2405854/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/2405854/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.8", + "id": 2405854, + "node_id": "MDc6UmVsZWFzZTI0MDU4NTQ=", + "tag_name": "v1.6.8", + "target_commitish": "master", + "name": "1.6.8: Improved thread-safety", + "draft": false, + "author": { + "login": "rafl", + "id": 25669, + "node_id": "MDQ6VXNlcjI1NjY5", + "avatar_url": "https://avatars2.githubusercontent.com/u/25669?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rafl", + "html_url": "https://github.com/rafl", + "followers_url": "https://api.github.com/users/rafl/followers", + "following_url": "https://api.github.com/users/rafl/following{/other_user}", + "gists_url": "https://api.github.com/users/rafl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rafl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rafl/subscriptions", + "organizations_url": "https://api.github.com/users/rafl/orgs", + "repos_url": "https://api.github.com/users/rafl/repos", + "events_url": "https://api.github.com/users/rafl/events{/privacy}", + "received_events_url": "https://api.github.com/users/rafl/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-01-11T15:22:49Z", + "published_at": "2016-01-11T15:26:39Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.8", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.8", + "body": "- Allow compilation on older systems by relaxing the autoconf and automake\r\n minimum versions. Thank you, Jose Rubio!\r\n- Avoid potential problems in multi-threaded environments by consistently using\r\n pread() rather than read().\r\n- Fix various small issues reported by clang's static analyser.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2047681", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/2047681/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/2047681/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.7", + "id": 2047681, + "node_id": "MDc6UmVsZWFzZTIwNDc2ODE=", + "tag_name": "v1.6.7", + "target_commitish": "master", + "name": "1.6.7: Segfault Fix, More Safety Checks, Windows Fixes", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-10-30T16:15:27Z", + "published_at": "2015-10-30T16:18:00Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.7", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.7", + "body": "- Fixed a MSVC parser stack overflow when parsing `regionName.c` and\r\n `timeZone.c`. Fix by elliotlo. GitHub #64.\r\n- Updated region codes and timezones.\r\n- When using `GEOIP_MEMORY_CACHE` with an invalid database file, the search\r\n tree traversal could attempt to read memory outside of the memory allocated\r\n for the memory cache, resulting in a segmentation fault. A check was added\r\n to ensure that the traversal code does not try to read beyond the end of the\r\n file, whether in memory, memory mapped, or on disk.\r\n- Previously the return values from file reads were ignored. We now check\r\n these values to ensure that there were no errors.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/1598117", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/1598117/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/1598117/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.6", + "id": 1598117, + "node_id": "MDc6UmVsZWFzZTE1OTgxMTc=", + "tag_name": "v1.6.6", + "target_commitish": "master", + "name": "1.6.6: Bug Fixes and Improved Windows Support", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-07-28T19:52:57Z", + "published_at": "2015-07-28T19:55:17Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.6", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.6", + "body": "- Replaced usage of deprecated fileno, read, and lseek on Visual Studio 2005+\r\n with their ISO C++ conformant replacements. (Fix by ClaudiuHKS. GitHub #55.)\r\n- A warning about using a double as a float was fixed. (Fix by ClaudiuHKS.\r\n GitHub #56.)\r\n- Fixed segfault when doing a lookup on an empty database. (Fix by NesoK.\r\n GitHub #62.)\r\n- Fixed a memcheck error from valgrind in the `_check_mtime`\r\n function. (Reported by yurivct. GitHub #60.)\r\n- Fixed `_check_mtime` to check the return value of `gettimeofday` rather than\r\n just assuming it worked.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/988941", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/988941/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/988941/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.5", + "id": 988941, + "node_id": "MDc6UmVsZWFzZTk4ODk0MQ==", + "tag_name": "v1.6.5", + "target_commitish": "master", + "name": "1.6.5: Additional data validation", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-02-25T22:37:12Z", + "published_at": "2015-02-25T22:38:52Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.5", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.5", + "body": "- A segmentation fault in `geoiplookup` was fixed when the utility was passed\r\n an invalid database. (Reported in Red Hat bug #1180874.)\r\n- Additional validation was added for validation of the size used in the\r\n creation of the index cache. (Based on discussion in Red Hat bug #832913.)\r\n- Changed the code to only look up country codes by using functions which\r\n ensure that we do not try to look past the end of an array. (Reported by\r\n Ivan Sorokin. GitHub #53)\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/845476", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/845476/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/845476/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.4", + "id": 845476, + "node_id": "MDc6UmVsZWFzZTg0NTQ3Ng==", + "tag_name": "v1.6.4", + "target_commitish": "master", + "name": "1.6.4: Windows and Misc. Updates", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-01-12T21:50:46Z", + "published_at": "2015-01-12T21:53:10Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.4", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.4", + "body": "- Update Fips codes (Boris Zentner)\r\n- Several issues with the MinGW build were fixed. (Thomas Pöchtrager. Github\r\n #46.)\r\n- Use a constructor in pread.c to ensure the critical section is always\r\n initialized. (Thomas Pöchtrager. Github #47.)\r\n- Added missing include of `io.h` on Windows. (Thomas Pöchtrager. Github #49.)\r\n- Fixed `configure` warning that `'missing' script is too old or missing`.\r\n (Reported by Floren Munteanu. Github #33.)\r\n- Previously `nmake /f Makefile.vc clean` would fail on Windows. This was\r\n fixed.\r\n- Obsolete win32 and NetWare make files were removed.\r\n- Numerous documentation updates. (Reported by Thomas Pöchtrager. GitHub #48.)\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/663520", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/663520/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/663520/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.3", + "id": 663520, + "node_id": "MDc6UmVsZWFzZTY2MzUyMA==", + "tag_name": "v1.6.3", + "target_commitish": "master", + "name": "1.6.3: Option to disable stderr output; bug fixes", + "draft": false, + "author": { + "login": "autarch", + "id": 50729, + "node_id": "MDQ6VXNlcjUwNzI5", + "avatar_url": "https://avatars1.githubusercontent.com/u/50729?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/autarch", + "html_url": "https://github.com/autarch", + "followers_url": "https://api.github.com/users/autarch/followers", + "following_url": "https://api.github.com/users/autarch/following{/other_user}", + "gists_url": "https://api.github.com/users/autarch/gists{/gist_id}", + "starred_url": "https://api.github.com/users/autarch/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/autarch/subscriptions", + "organizations_url": "https://api.github.com/users/autarch/orgs", + "repos_url": "https://api.github.com/users/autarch/repos", + "events_url": "https://api.github.com/users/autarch/events{/privacy}", + "received_events_url": "https://api.github.com/users/autarch/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-10-29T19:34:11Z", + "published_at": "2014-10-29T19:39:09Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.3", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.3", + "body": "- Added a GEOIP_SILENCE flag. Include this flag when calling GeoIP_open to\r\n prevent any messages from being written to stderr. ( Philip Prindeville\r\n and Boris Zentner )\r\n- Mitigate a possible race condition when running under threads in the\r\n GeoIP_cleanup function. ( Anthon Pang )\r\n- Added some recommendations to the docs on using this library in a\r\n threaded application. ( Boriz Zentner )\r\n- Fixed some bugs discovered by coverity, including failure to check some\r\n system call return values and making sure all strings are\r\n null-terminated. ( Boris Zentner )\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/417540", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/417540/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/417540/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.2", + "id": 417540, + "node_id": "MDc6UmVsZWFzZTQxNzU0MA==", + "tag_name": "v1.6.2", + "target_commitish": "master", + "name": "1.6.2", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-07-08T16:43:31Z", + "published_at": "2014-07-08T16:44:38Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.2", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.2", + "body": "- Two files required for building on Win32 were missing from the 1.6.1\r\n release. These files were added. There are no changes affecting other\r\n platforms. ( Boris Zentner )\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/397092", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/397092/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/397092/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.1", + "id": 397092, + "node_id": "MDc6UmVsZWFzZTM5NzA5Mg==", + "tag_name": "v1.6.1", + "target_commitish": "master", + "name": "1.6.1", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-06-26T18:14:54Z", + "published_at": "2014-06-26T18:17:26Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.1", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.1", + "body": "- Improve Win32 support ( Evan Hunt )\r\n- Update FIPS codes ( Boris Zentner )\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/79218", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/79218/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/79218/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.6.0", + "id": 79218, + "node_id": "MDc6UmVsZWFzZTc5MjE4", + "tag_name": "v1.6.0", + "target_commitish": "master", + "name": "1.6.0: Removed geoipupdate", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-10-29T17:24:34Z", + "published_at": "2013-10-29T17:26:30Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.6.0", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.6.0", + "body": "- The GeoIP Update program was move to its [own repo](https://github.com/maxmind/geoipupdate) and source distribution.\r\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/79193", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/79193/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/79193/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.5.2", + "id": 79193, + "node_id": "MDc6UmVsZWFzZTc5MTkz", + "tag_name": "v1.5.2", + "target_commitish": "master", + "name": "v1.5.2", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-10-29T16:55:31Z", + "published_at": "2013-10-29T16:57:42Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.5.2", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.5.2", + "body": "- Update region and time zones ( Bors Zentner )\n- Fix benchmark script ( Boris Zentner )\n- Remove autogenerated files ltmain.sh, man/geoip*.1 ( Boris Zentner )\n- Explain how to download free geolite databases in the README.md and\n GeoIP.conf.default ( Boris Zentner )\n- geoipupdate returns 1 on error 0 on success instead of the error code\n ( Boris Zentner )\n- README is replaced by README.md ( Gregory Oschwald )\n- Add support for OS X Mavericks ( Boris Zentner )\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6154", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6154/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6154/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.4.6", + "id": 6154, + "node_id": "MDc6UmVsZWFzZTYxNTQ=", + "tag_name": "v1.4.6", + "target_commitish": "master", + "name": "Release v1.4.6", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2011-12-19T14:09:12Z", + "published_at": "2013-07-08T16:34:06Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.4.6", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.4.6", + "body": "- Fix geoipupdate's my_printf function ( Boris Zentner )\n- Fix typo in apps/geoipupdate-pureperl.pl replace PerlIO::Gzip with PerlIO::gzip ( Boris Zentner ) \n- Update region codes in libGeoIP/regionName.c ( Boris Zentner )\n- Fix regioncode/generate_regionName.pl to handle regioncodes with ',' correct ( Boris Zentner )\n- Update fips codes 20090201 ( Boris Zentner )\n- Fix unicode builds on WIN32 and eliminate some warnings ( Stu Redman )\n- Fix sign error in _iso_8859_1__utf8 for PPC64 ( Boris Zentner )\n- Change WIN32 to _WIN32, since _WIN32 is defined by default. _WIN32 is also defined for WIN64 machines ( Boris Zentner )\n ! Remove the WSAStartup call from GeoIP_open. All Applications need to call WSAStartup and WSACleanup to initialize the Windows Socket library. Before they use any of the GeoIP_*_by_name functions. ( Boris Zentner )\n- geoiplookup and test-geoip-\\* output N/A instead of (null) ( Boris Zentner )\n- Silence various warnings. ( Boris Zentner )\n- Add more timezone region's for Australia\n- Fix possible segfault in apps/geoiplookup with null pointers in non gnu printf implementations for example solaris ( Boris Zentner )\n- Add README.OSX to build fat binaries easy ( Boris Zentner )\n- Silence vasprintf warning via AC_GNU_SOURCE ( Boris Zentner )\n- Add several Makefiles to build a static GeoIP.lib for w32 ( Stanislaw Pusep and Randy Kobes )\n- Silence signedness warnings ( Peter Volkov )\n- Remove --with-city configure option. ( Boris Zentner )\n- Remove configure's --with-dbdir option. Use the similar --datadir instead ( Peter Volkov )\n- Various autotools improvements and cleanups. Including parallel\n build fix ( Peter Volkov )\n- Fix libGeoIP/timeZone.c ( Martin Haller )\n- Fix timezone/generate_timeZone.pl ( Boris Zenter )\n- Sync FIPS codes again Jan 14th, 2009 ( Boris Zentner )\n- Fix CA,NL regioncode. ( Boris Zentner )\n- Change logic in generate_regionName.pl and GeoIP_region_name_by_code to handle any mixture of two letter fips codes matching [A-Z0-9]{2} the change allow GZ and WE region codes ( Boris Zentner )\n- Sync regionName.c with http://www.maxmind.com/app/fips10_4 from Dec 17th, 2008 ( Boris Zentner )\n- Fix _GeoIP_lookupaddress for 64bit big endian systems like ppc64 ( Peter Volkov )\n- Add proper WIN32/64 support ( Gerald Combs ) \n- Escape - in all manpages ( Patrick Matthaei )\n- Add manpage for geoiplookup6 ( Boris Zentner )\n- Fix -d command line option ( Klaus Heinz )\n- GeoIPUpdate.c use vasprintf if avail, otherwise try vsnprintf and sprintf ( Boris Zentner )\n- avoid pre/postincrement and assignment on the same variable ( Boris Zentner )\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6153", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6153/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6153/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.4.7", + "id": 6153, + "node_id": "MDc6UmVsZWFzZTYxNTM=", + "tag_name": "v1.4.7", + "target_commitish": "master", + "name": "Many Updates", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2011-12-19T14:25:01Z", + "published_at": "2013-07-08T16:33:35Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.4.7", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.4.7", + "body": "- Upd timezone.c Add SX, BQ and CW remove AN and FX ( Boris Zentner )\n- Add support for the new types in geoiplookup6 ( Boris Zentner )\n- Add new database types GEOIP_CITY_EDITION_REV0_V6, \n GEOIP_CITY_EDITION_REV1_V6, GEOIP_DOMAIN_EDITION_V6, \n GEOIP_ORG_EDITION_V6 and GEOIP_ISP_EDITION_V6 ( Boris Zentner )\n- Remove AN and FX. Add SX, BQ and CW ( Boris Zentner )\n- Fix possible segfault in geoipupdate if the connection disappear\n unexpected. ( Boris Zentner )\n- Add sanity check for geoipupdate-pureperl.pl ( Boris Zentner )\n- Add GEOIP_USERTYPE_EDITION and GEOIP_USERTYPE_EDITION_V6\n datatypes ( Boris Zentner )\n- Add new functions GeoIP_is_private_ipnum_v4 and GeoIP_is_private_v4\n ( Boris Zentner )\n- Add new functions GeoIP_teredo and GeoIP_enable_teredo.\n teredo is enabled by default ( Boris Zentner )\n- Fix output of geoiplookup for unknown or private regions.\n ( Boris Zentner )\n- Fix geoipupdate-pureperl.pl to accept more product codes.\n ( Boris Zentner )\n- Fix minor output issue in geoipupdate -v ( Boris Zentner )\n- Add support for various databases. ( Boris Zentner )\n- Add experimental teredo support ( Boris Zentner )\n- Fix possible buffer overflow in conjunction with\n http_proxies ( Elso Andras )\n- Remove memcpy/bcopy macro for BSD ( Boris Zentner )\n- Add GeoIP_lib_version and GeoIP_cleanup ( Ladar Levison )\n- Upd Makefile.vc ( Thomas Winzig )\n- Fix typo in DK,18,Midtjylland ( Boris Zentner )\n- Update libGeoIP/regionName.c with FIPS codes 20100810 ( Boris Zentner )\n- Fix continent codes ( Boris Zentner )\n- Fix 3letter country codes for ATA, BVT, IOT, CXR, CCK, ATF, HMD,\n MYT, SGS and UMI ( Boris Zentner )\n- Fix typo/segfault in GeoIP_id_by_name_v6 ( Boris Zentner )\n- Update libGeoIP/regionName.c with FIPS codes 20100529 ( Boris Zentner )\n- Remove buffered IO functions, to fix issues with dup'ed file\n descriptors ( Boris Zentner )\n- Fix very minor memleak in geoipupdate ( Boris Zentner )\n- Add GEOIP_CITYCONFIDENCEDIST_EDITION, GEOIP_LARGE_COUNTRY_EDITION\n and GEOIP_LARGE_COUNTRY_EDITION_V6 database types ( Boris Zentner )\n- Update libGeoIP/regionName.c with FIPS codes 20100422 ( Boris Zentner )\n- Update libGeoIP/regionName.c with FIPS codes 20100420 ( Boris Zentner )\n- Update libGeoIP/regionName.c with FIPS codes 20100221 ( Boris Zentner )\n- Add missing timezones ( Boris Zentner )\n- Add missing include for Windows 2000 ( Jaap Keute )\n- 'GeoIP Database up to date' and 'Updated database' prints to stdout\n instead of stderr ( Boris Zentner )\n- Add missing GeoIPRecord_delete to geoiplookup.c ( Piotr Kaczuba )\n- Add some IPv4 helper functions\n unsigned long GeoIP_addr_to_num(const char *addr);\n char \\* GeoIP_num_to_addr(unsigned long ipnum); ( Boris Zentner )\n- Fix default name for the accuracy radius database to GeoIPDistance.dat ( Boris Zentner )\n- Add GEOIP_CITYCONFIDENCE_EDITION database type. ( Boris Zentner )\n- geoiplookup use GeoIPDistance.dat files if avail ( Boris Zentner )\n- Fix geoiplookup/geoiplookup6 output, when the databaseinfo string is\n not avail. ( Boris Zentner )\n- Change continent code for RU from AS to EU ( Boris Zentner )\n- Add GEOIP_ACCURACYRADIUS_EDITION database type. ( Boris Zentner )\n- Add GEOIP_LOCATIONA_EDITION the database to map back from binary to\n the csv database ( Boris Zentner )\n- Change Turkey's continent code from Asia to Europe ( Boris Zentner )\n- Rename _iso_8859_1__utf8 to _GeoIP_iso_8859_1__utf8 ( Boris Zentner )\n- GEOIP_ORG_EDITION, GEOIP_ISP_EDITION, GEOIP_DOMAIN_EDITION and\n GEOIP_ASNUM_EDITION databases return UTF8 results, if gi->charset is set\n to GEOIP_CHARSET_UTF8 ( Boris Zentner )\n- Avoid unnecesary call to gettimeofday when GEOIP_CHECK_CACHE is not set ( John Douglass )\n- Delayed loading of changed database files for 60 seconds. To avoid\n reading halve written databases ( Boris Zentner )\n- Update README.OSX for Leopard and Snow Leopard ( Boris Zentner )\n- Add more IPv6 functions ( Boris Zentner )\n const char _GeoIP_country_code_by_addr_v6 (GeoIP_ gi, const char _addr);\n const char *GeoIP_country_code_by_name_v6 (GeoIP_ gi, const char _host);\n const char *GeoIP_country_code3_by_addr_v6 (GeoIP_ gi, const char _addr);\n const char *GeoIP_country_code3_by_name_v6 (GeoIP_ gi, const char _host);\n const char *GeoIP_country_name_by_addr_v6 (GeoIP_ gi, const char _addr);\n const char *GeoIP_country_name_by_name_v6 (GeoIP_ gi, const char *host);\n- Make sure that GeoIP_*_v6 functions refuse GEOIP_PROXY_EDITION and\n GEOIP_NETSPEED_EDITION databases ( Boris Zentner ) \n- Update libGeoIP/regionName.c with FIPS codes from 20090723 ( Boris Zentner )\n- Fix geoipupdate's -v option to not change the license filename ( Thom May )\n- Fix geoipupdate's exit code ( Thom May )\n- Add support for ASNUM_EDITION ( Boris Zentner )\n- Fix -i output for larger values, sign issue ( Boris Zentner )\n- Add -i flag for more information on netmask, range_by_ip and the current network range ( Boris Zentner )\n- Add support for DOMAIN_EDITION database type ( Boris Zentner )\n- Fix apps/geoipupdate-pureperl.pl output layer on W32 ( Boris Zentner )\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6152", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6152/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6152/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.4.8", + "id": 6152, + "node_id": "MDc6UmVsZWFzZTYxNTI=", + "tag_name": "v1.4.8", + "target_commitish": "master", + "name": "Updates", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2011-12-19T14:07:34Z", + "published_at": "2013-07-08T16:33:01Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.4.8", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.4.8", + "body": "- Fix GEOIP_DOMAIN_EDITION_V6 ( Boris Zentner )\n- Add new Datatypes GEOIP_NETSPEED_EDITION_REV1_V6 and\n GEOIP_NETSPEED_EDITION_REV1 ( Boris Zentner )\n- Fix possible directory traversal weakness in geoipupdate-pureperl.pl with\n malicious update server ( Boris Zentner )\n- Fix GEOIP_ORG_EDITION_V6 and GEOIP_ISP_EDITION_V6 ( Boris Zentner )\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6151", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6151/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6151/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.5.0", + "id": 6151, + "node_id": "MDc6UmVsZWFzZTYxNTE=", + "tag_name": "v1.5.0", + "target_commitish": "master", + "name": "Updates", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-02-21T14:24:38Z", + "published_at": "2013-07-08T16:32:24Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.5.0", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.5.0", + "body": "- Rename custom_directory to GeoIP_custom_directory. ( Boris Zentner )\n- Make sure the database match the requested type. This is helpful for\n Databases with the same default name and the general geoiplookup form\n ( geoiplookup without a specific database ) ( Boris Zentner )\n- apps/geoiplookup6.c use the ipnum instead of the hostname for lookups.\n ( Boris Zentner )\n- Use configure.ac instead of configure.in ( Boris Zentner )\n- Region lookup is a bit faster ( Boris Zentner )\n- Add pkg-config file ( Bastien Nocera )\n- Updates required to build a Windows DLL under MinGW ( Gerald Combs )\n- Make API thread safe ( Boris Zentner )\n- geoiplookup's default charset is UTF8\n -l change the charset back to iso8859-1 ( Boris Zentner )\n- geoipupdate skips \\r otherwise it might be part of the last\n product_id ( Boris Zentner )\n- Update time zones ( Boris Zentner )\n- Update Region codes ( Boris Zentner )\n- Remove the unused CITYCONFIDENCE\\* database types ( Boris Zentner )\n- bootstrap rebuilds ltmain.sh ( Boris Zentner )\n- Update README.OSX for Lion ( Boris Zentner )\n- Change Macedonia to Macedonia, The Former Yugoslav Republic of\n ( Boris Zentner )\n- Add region_name to geoiplookup GEOIP_CITY_EDITION_REV1 ( Boris Zentner )\n- Add region_name to geoiplookup GEOIP_CITY_EDITION_REV0 ( Chris Johnson )\n- Add a --disable-data-files option. This allows you to build and install\n the library without having a data/GeoIP.dat file. This is useful when\n building the library from a checkout of the source tree, rather than a\n tarball ( Dave Rolsky )\n- Add GEOIP_ACCURACYRADIUS_EDITION and GEOIP_ACCURACYRADIUS_EDITION_V6\n ( Boris Zentner )\n- Add more database types GEOIP_COUNTRYCONF_EDITION,\n GEOIP_CITYCONF_EDITION, GEOIP_REGIONCONF_EDITION and\n GEOIP_POSTALCONF_EDITION ( Boris Zentner )\n- Fix default filenames for GEOIP_NETSPEED_EDITION_REV1 and\n GEOIP_NETSPEED_EDITION_REV1_V6 ( Boris Zentner )\n" + }, + { + "url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6150", + "assets_url": "https://api.github.com/repos/maxmind/geoip-api-c/releases/6150/assets", + "upload_url": "https://uploads.github.com/repos/maxmind/geoip-api-c/releases/6150/assets{?name,label}", + "html_url": "https://github.com/maxmind/geoip-api-c/releases/tag/v1.5.1", + "id": 6150, + "node_id": "MDc6UmVsZWFzZTYxNTA=", + "tag_name": "v1.5.1", + "target_commitish": "master", + "name": "Updates", + "draft": false, + "author": { + "login": "oschwald", + "id": 278835, + "node_id": "MDQ6VXNlcjI3ODgzNQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/278835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/oschwald", + "html_url": "https://github.com/oschwald", + "followers_url": "https://api.github.com/users/oschwald/followers", + "following_url": "https://api.github.com/users/oschwald/following{/other_user}", + "gists_url": "https://api.github.com/users/oschwald/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oschwald/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oschwald/subscriptions", + "organizations_url": "https://api.github.com/users/oschwald/orgs", + "repos_url": "https://api.github.com/users/oschwald/repos", + "events_url": "https://api.github.com/users/oschwald/events{/privacy}", + "received_events_url": "https://api.github.com/users/oschwald/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-05-14T14:53:47Z", + "published_at": "2013-07-08T16:31:19Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/maxmind/geoip-api-c/tarball/v1.5.1", + "zipball_url": "https://api.github.com/repos/maxmind/geoip-api-c/zipball/v1.5.1", + "body": "- Update time_zone for Ontario, Canada ( Boris Zentner )\n- geoiplookup and geoiplookup6 exit code is 0 when user asked for help\n ( Jan Safranek )\n- Added -h option to geoiplookup6 ( Jan Safranek )\n- Do not load the database file if nodes and file size do not make\n sense. ( Boris Zentner )\n- Keep README and man pages in pure ascii. ( Boris Zentner )\n- It doesn't make sense to use GEOIP_INDEX_MODE with small databases\n like GEOIP_COUNTRY_EDITION. Instead of undefined behaviour we handle\n it silently as GEOIP_MEMORY_MODE ( Boris Zentner )\n- Update FIPS codes for Greece ( Boris Zentner )\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/abrt.yaml b/upstream-info/abrt.yaml index 092974d0320f2b98dc0f5f9c49e3551913079b87..d771d1c7819810832a9643f31c0da450a3027c62 100644 --- a/upstream-info/abrt.yaml +++ b/upstream-info/abrt.yaml @@ -1,4 +1,311 @@ +--- version_control: github -src_repo: abrt/abrt -tag_prefix: ^v -seperator: . +src_repo: abrt/abrt +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 06:49:30.359441720 +00:00 + raw_data: | + [ + { + "name": "abrt-2.0.8-30.el6", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/abrt-2.0.8-30.el6", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/abrt-2.0.8-30.el6", + "commit": { + "sha": "42be3a26baab8b1b84ec3cd8f5ef515d52b5ac9f", + "url": "https://api.github.com/repos/abrt/abrt/commits/42be3a26baab8b1b84ec3cd8f5ef515d52b5ac9f" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvYWJydC0yLjAuOC0zMC5lbDY=" + }, + { + "name": "2.14.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.14.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.14.2", + "commit": { + "sha": "434cfd609f8e9f76175d7c3160c764d837f9b73d", + "url": "https://api.github.com/repos/abrt/abrt/commits/434cfd609f8e9f76175d7c3160c764d837f9b73d" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xNC4y" + }, + { + "name": "2.14.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.14.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.14.1", + "commit": { + "sha": "eb140b60a57ad7b6d829d73d59db2f905eed8e3c", + "url": "https://api.github.com/repos/abrt/abrt/commits/eb140b60a57ad7b6d829d73d59db2f905eed8e3c" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xNC4x" + }, + { + "name": "2.14.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.14.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.14.0", + "commit": { + "sha": "56478e26e39e05572c24709a1a98b472ae42defb", + "url": "https://api.github.com/repos/abrt/abrt/commits/56478e26e39e05572c24709a1a98b472ae42defb" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xNC4w" + }, + { + "name": "2.13.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.13.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.13.0", + "commit": { + "sha": "50a05d7a358e4fca19b5fc2a9adeceaa63a4a55e", + "url": "https://api.github.com/repos/abrt/abrt/commits/50a05d7a358e4fca19b5fc2a9adeceaa63a4a55e" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMy4w" + }, + { + "name": "2.12.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.12.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.12.2", + "commit": { + "sha": "68b94115a121d3004e01762a9eef74fd07a38af0", + "url": "https://api.github.com/repos/abrt/abrt/commits/68b94115a121d3004e01762a9eef74fd07a38af0" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMi4y" + }, + { + "name": "2.12.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.12.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.12.1", + "commit": { + "sha": "b12aef3da080b284cdb33f8aa1288e468346b21c", + "url": "https://api.github.com/repos/abrt/abrt/commits/b12aef3da080b284cdb33f8aa1288e468346b21c" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMi4x" + }, + { + "name": "2.12.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.12.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.12.0", + "commit": { + "sha": "e28b5529e749c8e6d77ad3f9b3d7c299eb644845", + "url": "https://api.github.com/repos/abrt/abrt/commits/e28b5529e749c8e6d77ad3f9b3d7c299eb644845" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMi4w" + }, + { + "name": "2.11.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.11.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.11.1", + "commit": { + "sha": "b8a4ae68a304d428eb199446ba42fb56d048e178", + "url": "https://api.github.com/repos/abrt/abrt/commits/b8a4ae68a304d428eb199446ba42fb56d048e178" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMS4x" + }, + { + "name": "2.11.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.11.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.11.0", + "commit": { + "sha": "9becfd2429e73fb7a0e3ef27b7be781a586da3fb", + "url": "https://api.github.com/repos/abrt/abrt/commits/9becfd2429e73fb7a0e3ef27b7be781a586da3fb" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMS4w" + }, + { + "name": "2.10.10", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.10", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.10", + "commit": { + "sha": "2d4f178b83d4b7e92efd38ecaa5fcd41937e85c6", + "url": "https://api.github.com/repos/abrt/abrt/commits/2d4f178b83d4b7e92efd38ecaa5fcd41937e85c6" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC4xMA==" + }, + { + "name": "2.10.9", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.9", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.9", + "commit": { + "sha": "eaf506b0382d42ee605d65ac8152646db69a9898", + "url": "https://api.github.com/repos/abrt/abrt/commits/eaf506b0382d42ee605d65ac8152646db69a9898" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC45" + }, + { + "name": "2.10.8", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.8", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.8", + "commit": { + "sha": "54fe011c5b15aef087041834a26f393ef28f30d7", + "url": "https://api.github.com/repos/abrt/abrt/commits/54fe011c5b15aef087041834a26f393ef28f30d7" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC44" + }, + { + "name": "2.10.7", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.7", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.7", + "commit": { + "sha": "e93cd586decbdd2018f031ea3d47b568e5e9fcde", + "url": "https://api.github.com/repos/abrt/abrt/commits/e93cd586decbdd2018f031ea3d47b568e5e9fcde" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC43" + }, + { + "name": "2.10.6", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.6", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.6", + "commit": { + "sha": "980016846ded41ad9cff4adab46f8e67197a5a11", + "url": "https://api.github.com/repos/abrt/abrt/commits/980016846ded41ad9cff4adab46f8e67197a5a11" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC42" + }, + { + "name": "2.10.5", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.5", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.5", + "commit": { + "sha": "d8e9acc033ebfb0620c8f80ba713ea92f5ebf10b", + "url": "https://api.github.com/repos/abrt/abrt/commits/d8e9acc033ebfb0620c8f80ba713ea92f5ebf10b" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC41" + }, + { + "name": "2.10.4", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.4", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.4", + "commit": { + "sha": "7a72a8bcf16d1b90d6dea7007904801bd8020d11", + "url": "https://api.github.com/repos/abrt/abrt/commits/7a72a8bcf16d1b90d6dea7007904801bd8020d11" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC40" + }, + { + "name": "2.10.3", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.3", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.3", + "commit": { + "sha": "b4833013698a5aa40a0db7326c461bbf90c4d5f9", + "url": "https://api.github.com/repos/abrt/abrt/commits/b4833013698a5aa40a0db7326c461bbf90c4d5f9" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC4z" + }, + { + "name": "2.10.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.2", + "commit": { + "sha": "5e3b0a594c4f964349724bd17e1b1b875e5d579d", + "url": "https://api.github.com/repos/abrt/abrt/commits/5e3b0a594c4f964349724bd17e1b1b875e5d579d" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC4y" + }, + { + "name": "2.10.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.1", + "commit": { + "sha": "6324abdc4668fe45b95aa56343be13f1a3c66f3a", + "url": "https://api.github.com/repos/abrt/abrt/commits/6324abdc4668fe45b95aa56343be13f1a3c66f3a" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC4x" + }, + { + "name": "2.10.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.10.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.10.0", + "commit": { + "sha": "3893d82a97f564ccbd9d7312f5aab3158c7d9b1a", + "url": "https://api.github.com/repos/abrt/abrt/commits/3893d82a97f564ccbd9d7312f5aab3158c7d9b1a" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi4xMC4w" + }, + { + "name": "2.9.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.9.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.9.0", + "commit": { + "sha": "faba7723ce110f3cb421a5970db79da758e51168", + "url": "https://api.github.com/repos/abrt/abrt/commits/faba7723ce110f3cb421a5970db79da758e51168" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi45LjA=" + }, + { + "name": "2.8.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.8.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.8.2", + "commit": { + "sha": "7ee8ec85c36ba16df932a03e9fd605403a5ef7a0", + "url": "https://api.github.com/repos/abrt/abrt/commits/7ee8ec85c36ba16df932a03e9fd605403a5ef7a0" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi44LjI=" + }, + { + "name": "2.8.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.8.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.8.1", + "commit": { + "sha": "14e789946a98c2b3992e6bffeb80762e48e07be2", + "url": "https://api.github.com/repos/abrt/abrt/commits/14e789946a98c2b3992e6bffeb80762e48e07be2" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi44LjE=" + }, + { + "name": "2.8.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.8.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.8.0", + "commit": { + "sha": "f28f5b098878c95a9ca58a7c9cf1b581b614a4be", + "url": "https://api.github.com/repos/abrt/abrt/commits/f28f5b098878c95a9ca58a7c9cf1b581b614a4be" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi44LjA=" + }, + { + "name": "2.7.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.7.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.7.2", + "commit": { + "sha": "b2a01b858e31460cd151604d85c87d1f16194caf", + "url": "https://api.github.com/repos/abrt/abrt/commits/b2a01b858e31460cd151604d85c87d1f16194caf" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi43LjI=" + }, + { + "name": "2.7.1", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.7.1", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.7.1", + "commit": { + "sha": "657ef941c7ce7b9725241b8514ffca8d27211128", + "url": "https://api.github.com/repos/abrt/abrt/commits/657ef941c7ce7b9725241b8514ffca8d27211128" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi43LjE=" + }, + { + "name": "2.7.0", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.7.0", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.7.0", + "commit": { + "sha": "8c0728d723447f5c773ba41a3c104af158578570", + "url": "https://api.github.com/repos/abrt/abrt/commits/8c0728d723447f5c773ba41a3c104af158578570" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi43LjA=" + }, + { + "name": "2.6.3", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.6.3", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.6.3", + "commit": { + "sha": "915729d44dfaa1bb7892c8709f92ba94d8438a08", + "url": "https://api.github.com/repos/abrt/abrt/commits/915729d44dfaa1bb7892c8709f92ba94d8438a08" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi42LjM=" + }, + { + "name": "2.6.2", + "zipball_url": "https://api.github.com/repos/abrt/abrt/zipball/2.6.2", + "tarball_url": "https://api.github.com/repos/abrt/abrt/tarball/2.6.2", + "commit": { + "sha": "c737ccb332ec855a42df51be25971edb1b91484d", + "url": "https://api.github.com/repos/abrt/abrt/commits/c737ccb332ec855a42df51be25971edb1b91484d" + }, + "node_id": "MDM6UmVmNzk1OTY1MjpyZWZzL3RhZ3MvMi42LjI=" + } + ] +query_type: api.github.tags diff --git a/upstream-info/afflib.yaml b/upstream-info/afflib.yaml index 70a5d3d91568d824d4a4d2777a1ea1698cab0999..b08be8a78873fc66d15247585435a46c31cdbcac 100644 --- a/upstream-info/afflib.yaml +++ b/upstream-info/afflib.yaml @@ -1,4 +1,462 @@ +--- version_control: github -src_repo: sshock/AFFLIBv3 -tag_prefix: ^v -seperator: . +src_repo: sshock/AFFLIBv3 +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 06:50:34.459143530 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/15601370", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/15601370/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/15601370/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.18", + "id": 15601370, + "node_id": "MDc6UmVsZWFzZTE1NjAxMzcw", + "tag_name": "v3.7.18", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.18", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-02-16T19:18:36Z", + "published_at": "2019-02-16T19:23:00Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.18", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.18", + "body": "Fix affverify failing due to context being freed too soon\r\nFix pyaff build issue with newer Python (3.7) and cython (0.29)" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/12804941", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/12804941/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/12804941/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.17", + "id": 12804941, + "node_id": "MDc6UmVsZWFzZTEyODA0OTQx", + "tag_name": "v3.7.17", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.17", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-09-09T17:46:49Z", + "published_at": "2018-09-09T17:58:02Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.17", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.17", + "body": "Misc fixes over the last year:\r\nd77ae18 fix #34: option typo (25 minutes ago)\r\n92ee47f minor fixes to configure.ac (3 months ago)\r\nbdb0ef1 Fix issue #32, an off-by-one buffer overflow (6 months ago)\r\nd438bef whitespace (6 months ago)\r\n435a2ca Sanity check size passed to malloc... (6 months ago)\r\nbecf548 Fix incrementing in vnode_split_raw.cpp for comment consistnecy (12 months ago)\r\ne32b671 Update Win32 readmes to fix issue #26. (1 year, 2 months ago)" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/6822344", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/6822344/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/6822344/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.16", + "id": 6822344, + "node_id": "MDc6UmVsZWFzZTY4MjIzNDQ=", + "tag_name": "v3.7.16", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.16", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-06-24T01:02:53Z", + "published_at": "2017-06-24T01:11:24Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.16", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.16", + "body": "Fix build with LibreSSL; from @Sp1l\r\nUse DESTDIR for packaging; from @kwizart\r\nFixes for building on Windows" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/5042766", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/5042766/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/5042766/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.15", + "id": 5042766, + "node_id": "MDc6UmVsZWFzZTUwNDI3NjY=", + "tag_name": "v3.7.15", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.15", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-12-31T06:02:28Z", + "published_at": "2016-12-31T06:04:59Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.15", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.15", + "body": "Fix pyaff to integrate with automake better, thanks to @umireon.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/5027551", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/5027551/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/5027551/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.14", + "id": 5027551, + "node_id": "MDc6UmVsZWFzZTUwMjc1NTE=", + "tag_name": "v3.7.14", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.14", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-12-28T19:46:44Z", + "published_at": "2016-12-28T19:50:08Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.14", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.14", + "body": "Python 3 support using cython, thanks to @umireon.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/4764515", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/4764515/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/4764515/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.13", + "id": 4764515, + "node_id": "MDc6UmVsZWFzZTQ3NjQ1MTU=", + "tag_name": "v3.7.13", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.13", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-11-26T17:56:38Z", + "published_at": "2016-11-26T17:59:02Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.13", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.13", + "body": "Fix some warnings and enable support for FUSE on macOS.\n\n(Please use this release, not 3.7.12 or 3.7.11, which had incorrect versioning.)\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/4107935", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/4107935/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/4107935/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.10", + "id": 4107935, + "node_id": "MDc6UmVsZWFzZTQxMDc5MzU=", + "tag_name": "v3.7.10", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.10", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-09-12T18:19:45Z", + "published_at": "2016-09-12T18:20:49Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.10", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.10", + "body": "Add support for OpenSSL 1.1.0.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/3928908", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/3928908/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/3928908/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.8", + "id": 3928908, + "node_id": "MDc6UmVsZWFzZTM5Mjg5MDg=", + "tag_name": "v3.7.8", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.8", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-08-19T18:42:04Z", + "published_at": "2016-08-19T18:47:51Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.8", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.8", + "body": "C++11 and other misc fixes.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/1899897", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/1899897/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/1899897/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.7", + "id": 1899897, + "node_id": "MDc6UmVsZWFzZTE4OTk4OTc=", + "tag_name": "v3.7.7", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.7", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-10-01T23:42:12Z", + "published_at": "2015-10-01T23:47:05Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.7", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.7", + "body": "Fixes to get it compiling on Windows with Visual Studio 2010 or later.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/688255", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/688255/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/688255/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.6", + "id": 688255, + "node_id": "MDc6UmVsZWFzZTY4ODI1NQ==", + "tag_name": "v3.7.6", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.6", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-11-08T06:34:06Z", + "published_at": "2014-11-08T06:40:06Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.6", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.6", + "body": "Fixed some build issues.\nRemoved some unneeded dependencies.\n" + }, + { + "url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/619501", + "assets_url": "https://api.github.com/repos/sshock/AFFLIBv3/releases/619501/assets", + "upload_url": "https://uploads.github.com/repos/sshock/AFFLIBv3/releases/619501/assets{?name,label}", + "html_url": "https://github.com/sshock/AFFLIBv3/releases/tag/v3.7.5", + "id": 619501, + "node_id": "MDc6UmVsZWFzZTYxOTUwMQ==", + "tag_name": "v3.7.5", + "target_commitish": "master", + "name": "AFFLIB Version 3.7.5", + "draft": false, + "author": { + "login": "sshock", + "id": 1693761, + "node_id": "MDQ6VXNlcjE2OTM3NjE=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1693761?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sshock", + "html_url": "https://github.com/sshock", + "followers_url": "https://api.github.com/users/sshock/followers", + "following_url": "https://api.github.com/users/sshock/following{/other_user}", + "gists_url": "https://api.github.com/users/sshock/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sshock/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sshock/subscriptions", + "organizations_url": "https://api.github.com/users/sshock/orgs", + "repos_url": "https://api.github.com/users/sshock/repos", + "events_url": "https://api.github.com/users/sshock/events{/privacy}", + "received_events_url": "https://api.github.com/users/sshock/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-10-11T06:25:53Z", + "published_at": "2014-10-11T06:56:40Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sshock/AFFLIBv3/tarball/v3.7.5", + "zipball_url": "https://api.github.com/repos/sshock/AFFLIBv3/zipball/v3.7.5", + "body": "AFFLIB is now being maintained by Phillip Hellewell.\n\nVersion 3.7.5 includes a few minor fixes and additions:\n- Support .iso extension as a raw file.\n- Fixed several typos.\n- Add man pages written by Joao Eriberto Mota Filho.\n- Cleanup to makefile and configure scripts.\n- Fix build issue with hurd-i386.\n- Show a valid error message when attempting to mount E01 images.\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/amanda.yaml b/upstream-info/amanda.yaml index 9d103ec3bc8228d7acd9e9fc56c4212246c30b45..cff828da351979cb5525c400af66d85ff94109f7 100644 --- a/upstream-info/amanda.yaml +++ b/upstream-info/amanda.yaml @@ -5,7 +5,7 @@ tag_prefix: community_ seperator: _ download_url: http://prdownloads.sourceforge.net/amanda/amanda last_query: - time_stamp: 2020-04-26 08:21:12.324231000 +00:00 + time_stamp: 2020-05-20 06:50:49.139714320 +00:00 raw_data: |2 7557 martinea Nov 30 2017 ./ 3090 danlocks May 28 2010 3_1_0/ diff --git a/upstream-info/argon2.yaml b/upstream-info/argon2.yaml index 28144886db8ce5bc5821c63f391b3e0509e6a133..29fced2145f2f8758108edf93125bda8f271a0e5 100644 --- a/upstream-info/argon2.yaml +++ b/upstream-info/argon2.yaml @@ -1,4 +1,257 @@ +--- version_control: github -src_repo: P-H-C/phc-winner-argon2 -tag_prefix: ^v -seperator: . +src_repo: P-H-C/phc-winner-argon2 +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 06:50:56.058648760 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/18349314", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/18349314/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/18349314/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20190702", + "id": 18349314, + "node_id": "MDc6UmVsZWFzZTE4MzQ5MzE0", + "tag_name": "20190702", + "target_commitish": "master", + "name": "20190702", + "draft": false, + "author": { + "login": "veorq", + "id": 3204810, + "node_id": "MDQ6VXNlcjMyMDQ4MTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3204810?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/veorq", + "html_url": "https://github.com/veorq", + "followers_url": "https://api.github.com/users/veorq/followers", + "following_url": "https://api.github.com/users/veorq/following{/other_user}", + "gists_url": "https://api.github.com/users/veorq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/veorq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/veorq/subscriptions", + "organizations_url": "https://api.github.com/users/veorq/orgs", + "repos_url": "https://api.github.com/users/veorq/repos", + "events_url": "https://api.github.com/users/veorq/events{/privacy}", + "received_events_url": "https://api.github.com/users/veorq/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-20T09:18:00Z", + "published_at": "2019-07-02T06:21:09Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20190702", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20190702", + "body": "" + }, + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/9042808", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/9042808/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/9042808/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20171227", + "id": 9042808, + "node_id": "MDc6UmVsZWFzZTkwNDI4MDg=", + "tag_name": "20171227", + "target_commitish": "master", + "name": "20171227", + "draft": false, + "author": { + "login": "daniel-dinu", + "id": 10579656, + "node_id": "MDQ6VXNlcjEwNTc5NjU2", + "avatar_url": "https://avatars0.githubusercontent.com/u/10579656?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-dinu", + "html_url": "https://github.com/daniel-dinu", + "followers_url": "https://api.github.com/users/daniel-dinu/followers", + "following_url": "https://api.github.com/users/daniel-dinu/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-dinu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-dinu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-dinu/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-dinu/orgs", + "repos_url": "https://api.github.com/users/daniel-dinu/repos", + "events_url": "https://api.github.com/users/daniel-dinu/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-dinu/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-12-27T19:56:31Z", + "published_at": "2017-12-27T20:00:44Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20171227", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20171227", + "body": "See CHANGELOG.md" + }, + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/4516638", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/4516638/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/4516638/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20161029", + "id": 4516638, + "node_id": "MDc6UmVsZWFzZTQ1MTY2Mzg=", + "tag_name": "20161029", + "target_commitish": "master", + "name": "20161029", + "draft": false, + "author": { + "login": "veorq", + "id": 3204810, + "node_id": "MDQ6VXNlcjMyMDQ4MTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3204810?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/veorq", + "html_url": "https://github.com/veorq", + "followers_url": "https://api.github.com/users/veorq/followers", + "following_url": "https://api.github.com/users/veorq/following{/other_user}", + "gists_url": "https://api.github.com/users/veorq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/veorq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/veorq/subscriptions", + "organizations_url": "https://api.github.com/users/veorq/orgs", + "repos_url": "https://api.github.com/users/veorq/repos", + "events_url": "https://api.github.com/users/veorq/events{/privacy}", + "received_events_url": "https://api.github.com/users/veorq/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-10-29T09:24:03Z", + "published_at": "2016-10-29T09:25:11Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20161029", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20161029", + "body": "See changelog\n" + }, + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/3936090", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/3936090/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/3936090/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20160821", + "id": 3936090, + "node_id": "MDc6UmVsZWFzZTM5MzYwOTA=", + "tag_name": "20160821", + "target_commitish": "master", + "name": "20160821", + "draft": false, + "author": { + "login": "veorq", + "id": 3204810, + "node_id": "MDQ6VXNlcjMyMDQ4MTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3204810?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/veorq", + "html_url": "https://github.com/veorq", + "followers_url": "https://api.github.com/users/veorq/followers", + "following_url": "https://api.github.com/users/veorq/following{/other_user}", + "gists_url": "https://api.github.com/users/veorq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/veorq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/veorq/subscriptions", + "organizations_url": "https://api.github.com/users/veorq/orgs", + "repos_url": "https://api.github.com/users/veorq/repos", + "events_url": "https://api.github.com/users/veorq/events{/privacy}", + "received_events_url": "https://api.github.com/users/veorq/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-08-21T18:33:33Z", + "published_at": "2016-08-21T20:32:25Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20160821", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20160821", + "body": "" + }, + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/2966259", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/2966259/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/2966259/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20160406", + "id": 2966259, + "node_id": "MDc6UmVsZWFzZTI5NjYyNTk=", + "tag_name": "20160406", + "target_commitish": "master", + "name": "20160406", + "draft": false, + "author": { + "login": "daniel-dinu", + "id": 10579656, + "node_id": "MDQ6VXNlcjEwNTc5NjU2", + "avatar_url": "https://avatars0.githubusercontent.com/u/10579656?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daniel-dinu", + "html_url": "https://github.com/daniel-dinu", + "followers_url": "https://api.github.com/users/daniel-dinu/followers", + "following_url": "https://api.github.com/users/daniel-dinu/following{/other_user}", + "gists_url": "https://api.github.com/users/daniel-dinu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daniel-dinu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daniel-dinu/subscriptions", + "organizations_url": "https://api.github.com/users/daniel-dinu/orgs", + "repos_url": "https://api.github.com/users/daniel-dinu/repos", + "events_url": "https://api.github.com/users/daniel-dinu/events{/privacy}", + "received_events_url": "https://api.github.com/users/daniel-dinu/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-04-06T12:20:19Z", + "published_at": "2016-04-06T18:39:35Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20160406", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20160406", + "body": "" + }, + { + "url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/2240107", + "assets_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/releases/2240107/assets", + "upload_url": "https://uploads.github.com/repos/P-H-C/phc-winner-argon2/releases/2240107/assets{?name,label}", + "html_url": "https://github.com/P-H-C/phc-winner-argon2/releases/tag/20151206", + "id": 2240107, + "node_id": "MDc6UmVsZWFzZTIyNDAxMDc=", + "tag_name": "20151206", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "veorq", + "id": 3204810, + "node_id": "MDQ6VXNlcjMyMDQ4MTA=", + "avatar_url": "https://avatars3.githubusercontent.com/u/3204810?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/veorq", + "html_url": "https://github.com/veorq", + "followers_url": "https://api.github.com/users/veorq/followers", + "following_url": "https://api.github.com/users/veorq/following{/other_user}", + "gists_url": "https://api.github.com/users/veorq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/veorq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/veorq/subscriptions", + "organizations_url": "https://api.github.com/users/veorq/orgs", + "repos_url": "https://api.github.com/users/veorq/repos", + "events_url": "https://api.github.com/users/veorq/events{/privacy}", + "received_events_url": "https://api.github.com/users/veorq/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-12-06T08:11:54Z", + "published_at": "2015-12-06T08:15:59Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/tarball/20151206", + "zipball_url": "https://api.github.com/repos/P-H-C/phc-winner-argon2/zipball/20151206", + "body": "" + } + ] +query_type: api.github.releases diff --git a/upstream-info/asciidoc.yaml b/upstream-info/asciidoc.yaml index 93d89f9791199f6f20d581557ccf5863e63de8dc..7c093ec18d654f619fdad76098b4f2c19019ef7c 100644 --- a/upstream-info/asciidoc.yaml +++ b/upstream-info/asciidoc.yaml @@ -1,4 +1,93 @@ +--- version_control: github -src_repo: asciidoc/asciidoc-py3 -tag_prefix: ^v -seperator: . +src_repo: asciidoc/asciidoc-py3 +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 06:51:08.359038410 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/asciidoc/asciidoc-py3/releases/24447346", + "assets_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/releases/24447346/assets", + "upload_url": "https://uploads.github.com/repos/asciidoc/asciidoc-py3/releases/24447346/assets{?name,label}", + "html_url": "https://github.com/asciidoc/asciidoc-py3/releases/tag/9.0.0rc2", + "id": 24447346, + "node_id": "MDc6UmVsZWFzZTI0NDQ3MzQ2", + "tag_name": "9.0.0rc2", + "target_commitish": "master", + "name": "9.0.0rc2", + "draft": false, + "author": { + "login": "MasterOdin", + "id": 1845314, + "node_id": "MDQ6VXNlcjE4NDUzMTQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1845314?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MasterOdin", + "html_url": "https://github.com/MasterOdin", + "followers_url": "https://api.github.com/users/MasterOdin/followers", + "following_url": "https://api.github.com/users/MasterOdin/following{/other_user}", + "gists_url": "https://api.github.com/users/MasterOdin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MasterOdin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MasterOdin/subscriptions", + "organizations_url": "https://api.github.com/users/MasterOdin/orgs", + "repos_url": "https://api.github.com/users/MasterOdin/repos", + "events_url": "https://api.github.com/users/MasterOdin/events{/privacy}", + "received_events_url": "https://api.github.com/users/MasterOdin/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2020-03-12T00:31:53Z", + "published_at": "2020-03-12T00:32:45Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/tarball/9.0.0rc2", + "zipball_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/zipball/9.0.0rc2", + "body": "View previous release notes for:\r\n* [9.0.0rc1](https://github.com/asciidoc/asciidoc-py3/releases/tag/9.0.0rc1)\r\n\r\nAdditions and changes\r\n\r\n* Running `make help` will now print out a helpful usage message\r\n* Add simplified Chinese translation (thanks @muirmok)\r\n* vim-asciidoc: speed up the refresh process for big files (thanks @aerostitch)\r\n\r\nBugfixes\r\n\r\n* Include `unwraplatex.py` filter when running `make install`" + }, + { + "url": "https://api.github.com/repos/asciidoc/asciidoc-py3/releases/21843925", + "assets_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/releases/21843925/assets", + "upload_url": "https://uploads.github.com/repos/asciidoc/asciidoc-py3/releases/21843925/assets{?name,label}", + "html_url": "https://github.com/asciidoc/asciidoc-py3/releases/tag/9.0.0rc1", + "id": 21843925, + "node_id": "MDc6UmVsZWFzZTIxODQzOTI1", + "tag_name": "9.0.0rc1", + "target_commitish": "master", + "name": "9.0.0rc1", + "draft": false, + "author": { + "login": "MasterOdin", + "id": 1845314, + "node_id": "MDQ6VXNlcjE4NDUzMTQ=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1845314?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MasterOdin", + "html_url": "https://github.com/MasterOdin", + "followers_url": "https://api.github.com/users/MasterOdin/followers", + "following_url": "https://api.github.com/users/MasterOdin/following{/other_user}", + "gists_url": "https://api.github.com/users/MasterOdin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MasterOdin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MasterOdin/subscriptions", + "organizations_url": "https://api.github.com/users/MasterOdin/orgs", + "repos_url": "https://api.github.com/users/MasterOdin/repos", + "events_url": "https://api.github.com/users/MasterOdin/events{/privacy}", + "received_events_url": "https://api.github.com/users/MasterOdin/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-11-29T00:38:33Z", + "published_at": "2019-11-29T00:48:34Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/tarball/9.0.0rc1", + "zipball_url": "https://api.github.com/repos/asciidoc/asciidoc-py3/zipball/9.0.0rc1", + "body": "Additions and changes\r\n- Port asciidoc to run on Python 3.5+ (see https://github.com/asciidoc/asciidoc for the EOL Python 2 implementation)\r\n- Drop internal implementation of OrderedDict and use the standard library collections.OrderedDict instead\r\n- Implement Dockerfile for running asciidoc\r\n- Add Catalan translation\r\n- Add docbook5 backend\r\n- Fix misspellings in various files and documents\r\n- Use UTC for testing instead of Pacific/Auckland (which observes daylight saving time).\r\n- Use \"with\" context statement for opening and closing files instead of older try/finally pattern.\r\n- Search sibling paths before system wide paths in asciidocapi\r\n- Add manpage for testasciidoc.py\r\n- Use argparse instead of optparse for argument parsing\r\n- Migrate from A-A-P based build system to Make\r\n\r\nBug fixes\r\n- Fix index terms requiring two characters instead of just one (see https://github.com/asciidoc/asciidoc-py3/pull/2#issuecomment-392605876)\r\n- Properly capture and use colophon, dedication, and preface for docbooks in Japanese (see https://github.com/asciidoc/asciidoc-py3/pull/2#issuecomment-392623181)\r\n\r\nTesting\r\n- Commit generated test files to the repository for continuous integration\r\n- Test against Python 3.5+ on Travis-CI" + } + ] +query_type: api.github.releases diff --git a/upstream-info/atf.yaml b/upstream-info/atf.yaml index 1ac737c7f713ee20279e994201c9ba43942106be..1fea4ca8d158346e3c1eb2a5b0b962d8915ac873 100644 --- a/upstream-info/atf.yaml +++ b/upstream-info/atf.yaml @@ -1,4 +1,1565 @@ +--- version_control: github -src_repo: jmmv/atf -tag_prefix: ^v -seperator: . +src_repo: jmmv/atf +tag_prefix: atf- +seperator: "." +last_query: + time_stamp: 2020-05-20 06:51:24.645509860 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/649572", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/649572/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/649572/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.21", + "id": 649572, + "node_id": "MDc6UmVsZWFzZTY0OTU3Mg==", + "tag_name": "atf-0.21", + "target_commitish": "master", + "name": "ATF 0.21: Major cleanup release (bug fixes, doc improvements)", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-10-23T20:07:41Z", + "published_at": "2014-10-23T20:21:50Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/280056", + "id": 280056, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MDA1Ng==", + "name": "atf-0.21.tar.gz", + "label": null, + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 567791, + "download_count": 34195, + "created_at": "2014-10-23T20:21:30Z", + "updated_at": "2014-10-23T20:21:31Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.21/atf-0.21.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.21", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.21", + "body": "Changes in version 0.21\n\n---\n\nReleased on October 23rd, 2014.\n- Restored the atf(7) manual page to serve as a reference to all the other\n manual pages shipped by ATF.\n- Added the -s flag to atf-sh to support specifying the shell interpreter\n to be used.\n- Removed ATF_WORKDIR. The only remaining consumers have been converted to\n use the standard TMPDIR environment variable. As a benefit, and because\n Kyua forces the TMPDIR to live within the test case's work directory,\n any stale files left behind by ATF will be automatically cleaned up.\n- Documented the environment variables recognized by each component in the\n relevant manual pages. This information was lost with the atf-config(1)\n removal.\n- Added a new \"require.diskspace\" metadata property to test cases so that\n they can specify the minimum amount of disk space required for the test\n to run.\n- Renamed the atf-{c,c++,sh}-api(3) manual pages to atf-{c,c++,sh}(3) for\n discoverability purposes. Symbolic links are provided for the time\n being to still make the old names visible.\n- Issue #5: Recommend the (expected, actual) idiom for calls to the test\n macros in the manual pages.\n- Issue #7: Stopped catching unhandled exceptions in atf-c++ tests. This\n propagates the crash to the caller, which in turn allows it to obtain\n proper debugging information. In particular, Kyua should now be able to\n extract a stacktrace pinpointing the problem.\n- Issue #8: Fixed atf-c/macros_test:use test failures spotted by the clang\n that ships with FreeBSD 11.0-CURRENT.\n- Issue #12: Improved documentation of atf-sh(3) and atf-check(1) by better\n explaining how they relate to each other.\n- Issue #14: Stopped setting 'set -e' in atf-sh. This setting was\n initially added as a way to enable a \"strict\" mode in the library and to\n make test cases fail fast when they run unprotected commands. However,\n doing so in the library is surprising as the responsibility of enabling\n 'set -e' should be on the user's code. Also, 'set -e' introduces\n inconsistent behavior on subshells and users do not expect that.\n- Issue #15: Fixed atf_utils_{fork,wait} to support nested calls.\n- Issue #16: Fixed test failures (by removing a long-standing hack) on\n systems that lack \\e support in printf(1).\n- Issue #19: Removed stale references to atf-config and atf-run.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/177648", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/177648/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/177648/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.20", + "id": 177648, + "node_id": "MDc6UmVsZWFzZTE3NzY0OA==", + "tag_name": "atf-0.20", + "target_commitish": "master", + "name": "ATF 0.20: First release without the deprecated tools", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-02-07T21:21:49Z", + "published_at": "2014-02-07T21:58:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/72831", + "id": 72831, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcyODMx", + "name": "atf-0.20.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 556370, + "download_count": 1527, + "created_at": "2014-02-07T21:58:03Z", + "updated_at": "2014-02-07T21:58:18Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.20/atf-0.20.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.20", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.20", + "body": "# Changes in version 0.20\n\nExperimental version released on February 7th, 2014.\n\nThis is the first release without the code for the deprecated tools. If\nyou require such code, please fetch a copy of the 0.19 release and extract\nthe 'tools' directory for your own consumption.\n- Removed the deprecated tools. This includes atf-config, atf-report,\n atf-run and atf-version.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/177646", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/177646/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/177646/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.19", + "id": 177646, + "node_id": "MDc6UmVsZWFzZTE3NzY0Ng==", + "tag_name": "atf-0.19", + "target_commitish": "master", + "name": "ATF 0.19: Last release with the deprecated tools", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-02-07T21:20:21Z", + "published_at": "2014-02-07T21:57:52Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/72830", + "id": 72830, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcyODMw", + "name": "atf-0.19.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 690448, + "download_count": 32, + "created_at": "2014-02-07T21:57:48Z", + "updated_at": "2014-02-07T21:57:52Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.19/atf-0.19.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.19", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.19", + "body": "# Changes in version 0.19\n\nExperimental version released on February 7th, 2014.\n\nThis is the last release to bundle the code for the deprecated tools.\nThe next release will drop their code and will stop worrying about\nbackwards compatibility between the ATF libraries and what the old tools\nmay or may not support.\n\nIf you still require the old tools for some reason, grab a copy of the\n'tools' directory now. The code in this directory is standalone and\ndoes not depend on any internal details of atf-c++ any longer.\n- Various fixes and improvements to support running as part of the FreeBSD\n test suite.\n- Project hosting moved from Google Code (as a subproject of Kyua) to\n GitHub (as a first-class project). The main reason for the change is\n the suppression of binary downloads in Google Code on Jan 15th, 2014.\n See https://github.com/jmmv/atf/\n- Removed builtin help from atf-sh(1) and atf-check(1) for simplicity\n reasons. In other words, their -h option is gone.\n- Moved the code of the deprecated tools into a 'tools' directory and\n completely decoupled their code from the internals of atf-c++. The\n reason for this is to painlessly allow a third-party to maintain a\n copy of these tools after we delete them because upcoming changes to\n atf-c++ would break the stale tools.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175388", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175388/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175388/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.18", + "id": 175388, + "node_id": "MDc6UmVsZWFzZTE3NTM4OA==", + "tag_name": "atf-0.18", + "target_commitish": "master", + "name": "ATF 0.18", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-11-16T20:20:25Z", + "published_at": "2014-02-06T11:51:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71961", + "id": 71961, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTYx", + "name": "atf-0.18.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 659698, + "download_count": 593, + "created_at": "2014-02-06T11:51:25Z", + "updated_at": "2014-02-06T11:51:28Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.18/atf-0.18.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.18", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.18", + "body": "# Changes in version 0.18\n\nExperimental version released on November 16th, 2013.\n- Issue 45: Added require.memory support in atf-run for FreeBSD.\n- Fixed an issue with the handling of cin with libc++.\n- Issue 64: Fixed various mandoc formatting warnings.\n- NetBSD PR bin/48284: Made atf-check flush its progress message to\n stdout so that an interrupted test case always shows the last message\n being executed.\n- NetBSD PR bin/48285: Fixed atf_check examples in atf-sh-api(3).\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175387", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175387/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175387/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.17", + "id": 175387, + "node_id": "MDc6UmVsZWFzZTE3NTM4Nw==", + "tag_name": "atf-0.17", + "target_commitish": "master", + "name": "ATF 0.17", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-02-14T15:16:44Z", + "published_at": "2014-02-06T11:51:22Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71960", + "id": 71960, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTYw", + "name": "atf-0.17.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 636185, + "download_count": 10, + "created_at": "2014-02-06T11:51:20Z", + "updated_at": "2014-02-06T11:51:22Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.17/atf-0.17.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.17", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.17", + "body": "# Changes in version 0.17\n\nExperimental version released on February 14th, 2013.\n- Added the atf_utils_cat_file, atf_utils_compare_file,\n atf_utils_copy_file, atf_utils_create_file, atf_utils_file_exists,\n atf_utils_fork, atf_utils_grep_file, atf_utils_grep_string,\n atf_utils_readline, atf_utils_redirect and atf_utils_wait utility\n functions to atf-c-api. Documented the already-public\n atf_utils_free_charpp function.\n- Added the cat_file, compare_file, copy_file, create_file, file_exists,\n fork, grep_collection, grep_file, grep_string, redirect and wait\n functions to the atf::utils namespace of atf-c++-api. These are\n wrappers around the same functions added to the atf-c-api library.\n- Added the ATF_CHECK_MATCH, ATF_CHECK_MATCH_MSG, ATF_REQUIRE_MATCH and\n ATF_REQUIRE_MATCH_MSG macros to atf-c to simplify the validation of a\n string against a regular expression.\n- Miscellaneous fixes for manpage typos and compilation problems with\n clang.\n- Added caching of the results of those configure tests that rely on\n executing a test program. This should help crossbuild systems by\n providing a mechanism to pre-specify what the results should be.\n- PR bin/45690: Make atf-report convert any non-printable characters to\n a plain-text representation (matching their corresponding hexadecimal\n entities) in XML output files. This is to prevent the output of test\n cases from breaking xsltproc later.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175386", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175386/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175386/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.16", + "id": 175386, + "node_id": "MDc6UmVsZWFzZTE3NTM4Ng==", + "tag_name": "atf-0.16", + "target_commitish": "master", + "name": "ATF 0.16", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-07-10T19:53:59Z", + "published_at": "2014-02-06T11:51:17Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71959", + "id": 71959, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU5", + "name": "atf-0.16.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 662290, + "download_count": 16, + "created_at": "2014-02-06T11:51:14Z", + "updated_at": "2014-02-06T11:51:17Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.16/atf-0.16.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.16", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.16", + "body": "# Changes in version 0.16\n\nExperimental version released on July 10th, 2012.\n- Added a --enable-tools flag to configure to request the build of the\n deprecated ATF tools, whose build is now disabled by default. In order\n to continue running tests, you should migrate to Kyua instead of enabling\n the build of the deprecated tools. The kyua-atf-compat package provides\n transitional compatibility versions of atf-run and atf-report built on\n top of Kyua.\n- Tweaked the ATF_TEST_CASE macro of atf-c++ so that the compiler can\n detect defined but unused test cases.\n- PR bin/45859: Fixed some XSLT bugs that resulted in the tc-time and\n tp-time XML tags leaking into the generated HTML file. Also improved\n the CSS file slightly to correct alignment and color issues with the\n timestamps column.\n- Optimized atf-c++/macros.hpp so that GNU G++ consumes less memory during\n compilation with GNU G++.\n- Flipped the default to building shared libraries for atf-c and atf-c++,\n and started versioning them. As a side-effect, this removes the\n --enable-unstable-shared flag from configure that appears to not work any\n more (under NetBSD). Additionally, some distributions require the use of\n shared libraries for proper dependency tracking (e.g. Fedora), so it is\n better if we do the right versioning upstream.\n- Project hosting moved from an adhoc solution (custom web site and\n Monotone repository) to Google Code (standard wiki and Git). ATF now\n lives in a subcomponent of the Kyua project.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175385", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175385/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175385/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.15", + "id": 175385, + "node_id": "MDc6UmVsZWFzZTE3NTM4NQ==", + "tag_name": "atf-0.15", + "target_commitish": "master", + "name": "ATF 0.15", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:51:11Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71958", + "id": 71958, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU4", + "name": "atf-0.15.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 625384, + "download_count": 9, + "created_at": "2014-02-06T11:51:07Z", + "updated_at": "2014-02-06T11:51:11Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.15/atf-0.15.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.15", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.15", + "body": "# Changes in version 0.15\n\nExperimental version released on January 16th, 2012.\n- Respect stdin in atf-check. The previous release silenced stdin for any\n processes spawned by atf, not only test programs, which caused breakage\n in tests that pipe data through atf-check.\n- Performance improvements to atf-sh.\n- Enabled detection of unused parameters and variables in the code and\n fixed all warnings.\n- Changed the behavior of \"developer mode\". Compiler warnings are now\n enabled unconditionally regardless of whether we are in developer mode or\n not; developer mode is now only used to perform strict warning checks and\n to enable assertions. Additionally, developer mode is now only\n automatically enabled when building from the repository, not for formal\n releases.\n- Added new Autoconf M4 macros (ATF_ARG_WITH, ATF_CHECK_C and\n ATF_CHECK_CXX) to provide a consistent way of defining a --with-arg flag\n in configure scripts and detecting the presence of any of the ATF\n bindings. Note that ATF_CHECK_SH was already introduced in 0.14, but it\n has now been modified to also honor --with-atf if instantiated.\n- Added timing support to atf-run / atf-report.\n- Added support for a 'require.memory' property, to specify the minimum\n amount of physical memory needed by the test case to yield valid results.\n- PR bin/45690: Force an ISO-8859-1 encoding in the XML files generated by\n atf-report so that invalid data in the output of test cases does not\n mangle our report.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175383", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175383/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175383/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.14", + "id": 175383, + "node_id": "MDc6UmVsZWFzZTE3NTM4Mw==", + "tag_name": "atf-0.14", + "target_commitish": "master", + "name": "ATF 0.14", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:51:03Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71957", + "id": 71957, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU3", + "name": "atf-0.14.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 617893, + "download_count": 6, + "created_at": "2014-02-06T11:50:59Z", + "updated_at": "2014-02-06T11:51:03Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.14/atf-0.14.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.14", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.14", + "body": "# Changes in version 0.14\n\nExperimental version released on June 14th, 2011.\n- Added a pkg-config file for atf-sh and an aclocal file to ease the\n detection of atf-sh from autoconf scripts.\n- Made the default test case body defined by atf_sh fail. This is to\n ensure that test cases are properly defined in test programs and helps\n in catching typos in the names of the body functions.\n- PR bin/44882: Made atf-run connect the stdin of test cases to /dev/zero.\n This provides more consistent results with \"normal\" execution (in\n particular, when tests are executed detached from a terminal).\n- Made atf-run hardcode TZ=UTC for test cases. It used to undefine TZ, but\n that does not take into account that libc determines the current timezone\n from a configuration file.\n- All test programs will now print a warning when they are not run through\n atf-run(1) stating that this is unsupported and may deliver incorrect\n results.\n- Added support for the 'require.files' test-case property. This allows\n test cases to specify installed files that must be present for the test\n case to run.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175382", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175382/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175382/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.13", + "id": 175382, + "node_id": "MDc6UmVsZWFzZTE3NTM4Mg==", + "tag_name": "atf-0.13", + "target_commitish": "master", + "name": "ATF 0.13", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:54Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71956", + "id": 71956, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU2", + "name": "atf-0.13.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 613264, + "download_count": 8, + "created_at": "2014-02-06T11:50:51Z", + "updated_at": "2014-02-06T11:50:54Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.13/atf-0.13.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.13", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.13", + "body": "# Changes in version 0.13\n\nExperimental version released on March 31st, 2011.\n\nThis is the first release after the creation of the Kyua project, a more\nmodular and reliable replacement for ATF. From now on, ATF will change to\naccomodate the transition to this new codebase, but ATF will still continue\nto see development in the short/medium term. Check out the project page at\nhttp://code.google.com/p/kyua/ for more details.\n\nThe changes in this release are:\n- Added support to run the tests with the Kyua runtime engine (kyua-cli), a\n new package that aims to replace atf-run and atf-report. The ATF tests\n can be run with the new system by issuing a 'make installcheck-kyua' from\n the top-level directory of the project (assuming the 'kyua' binary is\n available during the configuration stage of ATF).\n- atf-run and atf-report are now in maintenance mode (but _not_ deprecated\n yet!). Kyua already implements a new, much more reliable runtime engine\n that provides similar features to these tools. That said, it is not\n complete yet so all development efforts should go towards it.\n- If GDB is installed, atf-run dumps the stack trace of crashing test\n programs in an attempt to aid debugging. Contributed by Antti Kantee.\n- Reverted default timeout change in previous release and reset its value\n to 5 minutes. This was causing several issues, specially when running\n the existing NetBSD test suite in qemu.\n- Fixed the 'match' output checker in atf-check to properly validate the\n last line of a file even if it does not have a newline.\n- Added the ATF_REQUIRE_IN and ATF_REQUIRE_NOT_IN macros to atf-c++ to\n check for the presence (or lack thereof) of an element in a collection.\n- PR bin/44176: Fixed a race condition in atf-run that would crash atf-run\n when the cleanup of a test case triggered asynchronous modifications to\n its work directory (e.g. killing a daemon process that cleans up a pid\n file in the work directory).\n- PR bin/44301: Fixed the sample XSLT file to report bogus test programs\n instead of just listing them as having 0 test cases.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175380", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175380/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175380/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.12", + "id": 175380, + "node_id": "MDc6UmVsZWFzZTE3NTM4MA==", + "tag_name": "atf-0.12", + "target_commitish": "master", + "name": "ATF 0.12", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:46Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71955", + "id": 71955, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU1", + "name": "atf-0.12.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 605664, + "download_count": 8, + "created_at": "2014-02-06T11:50:44Z", + "updated_at": "2014-02-06T11:50:46Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.12/atf-0.12.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.12", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.12", + "body": "# Changes in version 0.12\n\nExperimental version released on November 7th, 2010.\n- Added the ATF_REQUIRE_THROW_RE to atf-c++, which is the same as\n ATF_REQUIRE_THROW but allows checking for the validity of the exception's\n error message by means of a regular expression.\n- Added the ATF_REQUIRE_MATCH to atf-c++, which allows checking for a\n regular expression match in a string.\n- Changed the default timeout for test cases from 5 minutes to 30 seconds.\n 30 seconds is long enough for virtually all tests to complete, and 5\n minutes is a way too long pause in a test suite where a single test case\n stalls.\n- Deprecated the use.fs property. While this seemed like a good idea in\n the first place to impose more control on what test cases can do, it\n turns out to be bad. First, use.fs=false prevents bogus test cases\n from dumping core so after-the-fact debugging is harder. Second,\n supporting use.fs adds a lot of unnecessary complexity. atf-run will\n now ignore any value provided to use.fs and will allow test cases to\n freely access the file system if they wish to.\n- Added the atf_tc_get_config_var_as_{bool,long}{,_wd} functions to the atf-c\n library. The 'text' module became private in 0.11 but was being used\n externally to simplify the parsing of configuration variables.\n- Made atf-run recognize the 'unprivileged-user' configuration variable\n and automatically drop root privileges when a test case sets\n require.user=unprivileged. Note that this is, by no means, done for\n security purposes; this is just for user convenience; tests should, in\n general, not be blindly run as root in the first place.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175379", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175379/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175379/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.11", + "id": 175379, + "node_id": "MDc6UmVsZWFzZTE3NTM3OQ==", + "tag_name": "atf-0.11", + "target_commitish": "master", + "name": "ATF 0.11", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:39Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71954", + "id": 71954, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTU0", + "name": "atf-0.11.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 604699, + "download_count": 6, + "created_at": "2014-02-06T11:50:37Z", + "updated_at": "2014-02-06T11:50:39Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.11/atf-0.11.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.11", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.11", + "body": "# Changes in version 0.11\n\nExperimental version released on October 20th, 2010.\n- The ATF_CHECK\\* macros in atf-c++ were renamed to ATF_REQUIRE\\* to match\n their counterparts in atf-c.\n- Clearly separated the modules in atf-c that are supposed to be public\n from those that are implementation details. The header files for the\n internal modules are not installed any more.\n- Made the atf-check tool private. It is only required by atf-sh and being\n public has the danger of causing confusion. Also, making it private\n simplifies the public API of atf.\n- Changed atf-sh to enable per-command error checking (set -e) by default.\n This catches many cases in which a test case is broken but it is not\n reported as such because execution continues.\n- Fixed the XSTL and CSS stylesheets to support expected failures.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175377", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175377/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175377/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.10", + "id": 175377, + "node_id": "MDc6UmVsZWFzZTE3NTM3Nw==", + "tag_name": "atf-0.10", + "target_commitish": "master", + "name": "ATF 0.10", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:33Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71953", + "id": 71953, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTUz", + "name": "atf-0.10.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 599208, + "download_count": 10, + "created_at": "2014-02-06T11:50:31Z", + "updated_at": "2014-02-06T11:50:33Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.10/atf-0.10.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.10", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.10", + "body": "# Changes in version 0.10\n\nExperimental version released on July 2nd, 2010.\n\nMiscellaneous features\n- Added expected failures support to test cases and atf-run. These\n include, for example, expected clean exits, expected reception of fatal\n signals, expected timeouts and expected errors in condition checks.\n These statuses can be used to denote test cases that are known to fail\n due to a bug in the code they are testing. atf-report reports these\n tests separately but they do not count towards the failed test cases\n amount.\n- Added the ATF_CHECK_ERRNO and ATF_REQUIRE_ERRNO to the C library to\n allow easy checking of call failures that update errno.\n- Added the has.cleanup meta-data property to test caes that specifies\n whether the test case has a cleanup routine or not; its value is\n automatically set. This property is read by atf-run to know if it has to\n run the cleanup routine; skipping this run for every test case\n significantly speeds up the run time of test suites.\n- Reversed the order of the ATF_CHECK_THROW macro in the C++ binding to\n take the expected exception as the first argument and the statement to\n execute as the second argument.\n\nChanges in atf-check\n- Changed atf-check to support negating the status and output checks by\n prefixing them with not- and added support to specify multiple checkers\n for stdout and stderr, not only one.\n- Added the match output checker to atf-check to look for regular\n expressions in the stdout and stderr of commands.\n- Modified the exit checks in atf-check to support checking for the\n reception of signals.\n\nCode simplifications and cleanups\n- Removed usage messages from test programs to simplify the\n implementation of every binding by a significant amount. They just now\n refer the user to the appropriate manual page and do not attempt to wrap\n lines on terminal boundaries. Test programs are not supposed to be run\n by users directly so this minor interface regression is not important.\n- Removed the atf-format internal utility, which is unused after the\n change documented above.\n- Removed the atf-cleanup internal utility. It has been unused since the\n test case isolation was moved to atf-run in 0.8\n- Splitted the Makefile.am into smaller files for easier maintenance and\n dropped the use of M4. Only affects users building from the repository\n sources.\n- Intermixed tests with the source files in the source tree to provide\n them more visibility and easier access. The tests directory is gone from\n the source tree and tests are now suffixed by _test, not prefixed by t_.\n- Simplifications to the atf-c library: removed the io, tcr and ui\n modules as they had become unnecessary after all simplifications\n introduced since the 0.8 release.\n- Removed the application/X-atf-tcr format introduced in 0.8 release.\n Tests now print a much simplified format that is easy to parse and nicer\n to read by end users. As a side effect, the default for test cases is\n now to print their results to stdout unless otherwise stated by providing\n the -r flag.\n- Removed XML distribution documents and replaced them with plain-text\n documents. They provided little value and introduced a lot of complexity\n to the build system.\n- Simplified the output of atf-version by not attempting to print a\n revision number when building form a distfile. Makes the build system\n easier to maintain.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175376", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175376/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175376/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.9", + "id": 175376, + "node_id": "MDc6UmVsZWFzZTE3NTM3Ng==", + "tag_name": "atf-0.9", + "target_commitish": "master", + "name": "ATF 0.9", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:25Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71952", + "id": 71952, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTUy", + "name": "atf-0.9.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 674458, + "download_count": 9, + "created_at": "2014-02-06T11:50:23Z", + "updated_at": "2014-02-06T11:50:25Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.9/atf-0.9.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.9", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.9", + "body": "# Changes in version 0.9\n\nExperimental version released on June 3rd, 2010.\n- Added atf-sh, an interpreter to process test programs written using\n the shell API. This is not really a shell interpreter by itself though:\n it is just a wrapper around the system shell that eases the loading of\n the necessary ATF libraries.\n- Removed atf-compile in favour of atf-sh.\n- Added the use.fs metadata property to test case, which is used to\n specify which test cases require file system access. This is to\n highlight dependencies on external resources more clearly and to speed up\n the execution of test suites by skipping the creation of many unnecessary\n work directories.\n- Fixed test programs to get a sane default value for their source\n directory. This means that it should not be necessary any more to pass\n -s when running test programs that do not live in the current directory.\n- Defining test case headers became optional. This is trivial to achieve\n in shell-based tests but a bit ugly in C and C++. In C, use the new\n ATF_TC_WITHOUT_HEAD macro to define the test case, and in C++ use\n ATF_TEST_CASE_WITHOUT_HEAD.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175375", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175375/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175375/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.8", + "id": 175375, + "node_id": "MDc6UmVsZWFzZTE3NTM3NQ==", + "tag_name": "atf-0.8", + "target_commitish": "master", + "name": "ATF 0.8", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71951", + "id": 71951, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTUx", + "name": "atf-0.8.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 669187, + "download_count": 6, + "created_at": "2014-02-06T11:50:16Z", + "updated_at": "2014-02-06T11:50:18Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.8/atf-0.8.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.8", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.8", + "body": "# Changes in version 0.8\n\nExperimental version released on May 7th, 2010.\n- Test programs no longer run several test cases in a row. The execution\n of a test program now requires a test case name, and that single test\n case is executed. To execute several test cases, use the atf-run utility\n as usual.\n- Test programs no longer fork a subprocess to isolate the execution of\n test cases. They run the test case code in-process, and a crash of the\n test case will result in a crash of the test program. This is to ease\n debugging of faulty test cases.\n- Test programs no longer isolate their test cases. This means that they\n will not create temporary directories nor sanitize the environment any\n more. Yes: running a test case that depends on system state by hand will\n most likely yield different results depending on where (machine,\n directory, user environment, etc.) it is run. Isolation has been moved\n to atf-run.\n- Test programs no longer print a cryptic format (application/X-atf-tcs)\n on a special file channel. They can now print whatever they want on the\n screen. Because test programs can now only run one test case every time,\n providing controlled output is not necessary any more.\n- Test programs no longer write their status into a special file\n descriptor. Instead, they create a file with the results, which is later\n parsed by atf-run. This changes the semantics of the -r flag.\n- atf-run has been adjusted to perform the test case isolation. As a\n result, there is now a single canonical place that implements the\n isolation of test caes. In previous releases, the three language\n bindings (C, C++ and shell) had to be kept in sync with each other (read:\n not a nice thing to do at all). As a side effect of this change, writing\n bindings for other languages will be much, much easier from now on.\n- atf-run forks test programs on a test case basis, instead of on a test\n program basis as it did before. This is to provide the test case\n isolation that was before implemented by the test programs themselves.\n- Removed the atf-exec tool. This was used to implement test case\n isolation in atf-sh, but it is now unnecessary.\n- It is now optional to define the descr meta-data property. It has been\n proven to be mostly useless, because test cases often carry a descriptive\n name of their own.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175374", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175374/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175374/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.7", + "id": 175374, + "node_id": "MDc6UmVsZWFzZTE3NTM3NA==", + "tag_name": "atf-0.7", + "target_commitish": "master", + "name": "ATF 0.7", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:50:12Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71950", + "id": 71950, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTUw", + "name": "atf-0.7.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 661714, + "download_count": 6, + "created_at": "2014-02-06T11:50:10Z", + "updated_at": "2014-02-06T11:50:12Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.7/atf-0.7.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.7", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.7", + "body": "# Changes in version 0.7\n\nExperimental version released on December 22nd, 2009.\n- Added build-time checks to atf-c and atf-c++. A binding for atf-sh\n will come later.\n- Migrated all build-time checks for header files to proper ATF tests.\n This demonstrates the use of the new feature described above.\n- Added an internal API for child process management.\n- Converted all plain-text distribution documents to a Docbook canonical\n version, and include pre-generated plain text and HTML copies in the\n distribution file.\n- Simplified the contents of the Makefile.am by regenerating it from a\n canonical Makefile.am.m4 source. As a side-effect, some dependency\n specifications were fixed.\n- Migrated all checks from the check target to installcheck, as these\n require ATF to be installed.\n- Fixed sign comparison mismatches triggered by the now-enabled\n -Wsign-compare.\n- Fixed many memory and object leaks.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175370", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175370/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175370/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.6", + "id": 175370, + "node_id": "MDc6UmVsZWFzZTE3NTM3MA==", + "tag_name": "atf-0.6", + "target_commitish": "master", + "name": "ATF 0.6", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:47:39Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71949", + "id": 71949, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ5", + "name": "atf-0.6.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 572410, + "download_count": 4, + "created_at": "2014-02-06T11:50:03Z", + "updated_at": "2014-02-06T11:50:06Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.6/atf-0.6.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.6", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.6", + "body": "# Changes in version 0.6\n\nExperimental version released on January 18th, 2009.\n- Make atf-exec be able to kill its child process after a certain period\n of time; this is controlled through the new -t option.\n- Change atf-sh to use atf-exec's -t option to control the test case's\n timeouts, instead of doing it internally. Same behavior as before, but\n noticeably faster.\n- atf-exec's -g option and atf-killpg are gone due to the previous\n change.\n- Added the atf-check(1) tool, a program that executes a given command\n and checks its exit code against a known value and allows the management\n of stdout and stderr in multiple ways. This replaces the previous\n atf_check function in the atf-sh library and exposes this functionality\n to both atf-c and atf-c++.\n- Added the ATF_REQUIRE family of macros to the C interface. These help\n in checking for fatal test conditions. The old ATF_CHECK macros now\n perform non-fatal checks only. I.e. by using ATF_CHECK, the test case\n can now continue its execution and the failures will not be reported\n until the end of the whole run.\n- Extended the amount of ATF_CHECK_\\* C macros with new ones to provide\n more features to the developer. These also have their corresponding\n counterparts in the ATF_REQUIRE_\\* family. The new macros (listing the\n suffixes only) are: _EQ (replaces _EQUAL), _EQ_MSG, _STREQ and\n _STREQ_MSG.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175369", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175369/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175369/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.5", + "id": 175369, + "node_id": "MDc6UmVsZWFzZTE3NTM2OQ==", + "tag_name": "atf-0.5", + "target_commitish": "master", + "name": "ATF 0.5", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:47:30Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71948", + "id": 71948, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ4", + "name": "atf-0.5.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 550846, + "download_count": 4, + "created_at": "2014-02-06T11:49:52Z", + "updated_at": "2014-02-06T11:49:55Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.5/atf-0.5.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.5", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.5", + "body": "# Changes in version 0.5\n\nExperimental version released on May 1st, 2008.\n- Clauses 3 and 4 of the BSD license used by the project were dropped.\n All the code is now under a 2-clause BSD license compatible with the GNU\n General Public License (GPL).\n- Added a C-only binding so that binary test programs do not need to be\n tied to C++ at all. This binding is now known as the atf-c library.\n- Renamed the C++ binding to atf-c++ for consistency with the new atf-c.\n- Renamed the POSIX shell binding to atf-sh for consistency with the new\n atf-c and atf-c++.\n- Added a -w flag to test programs through which it is possible to\n specify the work directory to be used. This was possible in prior\n releases by defining the workdir configuration variable (-v workdir=...),\n but was a conceptually incorrect mechanism.\n- Test programs now preserve the execution order of test cases when they\n are given in the command line. Even those mentioned more than once are\n executed multiple times to comply with the user's requests.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175368", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175368/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175368/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.4", + "id": 175368, + "node_id": "MDc6UmVsZWFzZTE3NTM2OA==", + "tag_name": "atf-0.4", + "target_commitish": "master", + "name": "ATF 0.4", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:47:23Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71947", + "id": 71947, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ3", + "name": "atf-0.4.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 496371, + "download_count": 5, + "created_at": "2014-02-06T11:49:45Z", + "updated_at": "2014-02-06T11:49:47Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.4/atf-0.4.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.4", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.4", + "body": "# Changes in version 0.4\n\nExperimental version released on February 4th, 2008.\n- Added two new manual pages, atf-c++-api and atf-sh-api, describing the\n C++ and POSIX shell interfaces used to write test programs.\n- Added a pkg-config file, useful to get the flags to build against the\n C++ library or to easily detect the presence of ATF.\n- Added a way for test cases to require a specific architecture and/or\n machine type through the new 'require.arch' and 'require.machine'\n meta-data properties, respectively.\n- Added the 'timeout' property to test cases, useful to set an\n upper-bound limit for the test's run time and thus prevent global test\n program stalls due to the test case's misbehavior.\n- Added the atf-exec(1) internal utility, used to execute a command\n after changing the process group it belongs to.\n- Added the atf-killpg(1) internal utility, used to kill process groups.\n- Multiple portability fixes. Of special interest, full support for\n SunOS (Solaris Express Developer Edition 2007/09) using the Sun Studio 12\n C++ compiler.\n- Fixed a serious bug that prevented atf-run(1) from working at all\n under Fedora 8 x86_64. Due to the nature of the bug, other platforms\n were likely affected too.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175366", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175366/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175366/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.3", + "id": 175366, + "node_id": "MDc6UmVsZWFzZTE3NTM2Ng==", + "tag_name": "atf-0.3", + "target_commitish": "master", + "name": "ATF 0.3", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:45:05Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71946", + "id": 71946, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ2", + "name": "atf-0.3.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 474051, + "download_count": 4, + "created_at": "2014-02-06T11:49:38Z", + "updated_at": "2014-02-06T11:49:40Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.3/atf-0.3.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.3", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.3", + "body": "# Changes in version 0.3\n\nExperimental version released on November 11th, 2007.\n- Added XML output support to atf-report. This is accompanied by a DTD\n for the format's structure and sample XSLT/CSS files to post-process this\n output and convert it to a plain HTML report.\n- Changed atf-run to add system information to the report it generates.\n This is currently used by atf-report's XML output only, and is later\n printed in the HTML reports in a nice and useful summary table. The user\n and system administrator are allowed to tune this feature by means of\n hooks.\n- Removed the test cases' 'isolated' property. This was intended to\n avoid touching the file system at all when running the related test case,\n but this has not been true for a long while: some control files are\n unconditionally required for several purposes, and we cannot easily get\n rid of them. This way we remove several critical and delicate pieces of\n code.\n- Improved atf-report's CSV output format to include information about\n test programs too.\n- Fixed the tests that used atf-compile to not require this tool as a\n helper. Avoids systems without build-time utilities to skip many tests\n that could otherwise be run. (E.g. NetBSD without the comp.tgz set\n installed.)\n- Many general cleanups: Fixed many pieces of code marked as ugly and/or\n incomplete.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175365", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175365/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175365/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.2", + "id": 175365, + "node_id": "MDc6UmVsZWFzZTE3NTM2NQ==", + "tag_name": "atf-0.2", + "target_commitish": "master", + "name": "ATF 0.2", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:43:41Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71945", + "id": 71945, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ1", + "name": "atf-0.2.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 457759, + "download_count": 5, + "created_at": "2014-02-06T11:49:31Z", + "updated_at": "2014-02-06T11:49:33Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.2/atf-0.2.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.2", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.2", + "body": "# Changes in version 0.2\n\nExperimental version released on September 20th, 2007.\n- Test cases now get a known umask on entry.\n- atf-run now detects many unexpected failures caused by test programs and\n reports them as bogus tests. atf-report is able to handle these new\n errors and nicely reports them to the user.\n- All the data formats read and written by the tools have been\n documented and cleaned up. These include those grammars that define how\n the different components communicate with each other as well as the\n format of files written by the developers and users: the Atffiles and the\n configuration files.\n- Added the atf-version tool, a utility that displays information about\n the currently installed version of ATF.\n- Test cases can now define an optional cleanup routine to undo their\n actions regardless of their exit status.\n- atf-report now summarizes the list of failed (bogus) test programs\n when using the ticker output format.\n- Test programs now capture some termination signals and clean up any\n temporary files before exiting the program.\n- Multiple bug fixes and improvements all around.\n" + }, + { + "url": "https://api.github.com/repos/jmmv/atf/releases/175364", + "assets_url": "https://api.github.com/repos/jmmv/atf/releases/175364/assets", + "upload_url": "https://uploads.github.com/repos/jmmv/atf/releases/175364/assets{?name,label}", + "html_url": "https://github.com/jmmv/atf/releases/tag/atf-0.1", + "id": 175364, + "node_id": "MDc6UmVsZWFzZTE3NTM2NA==", + "tag_name": "atf-0.1", + "target_commitish": "master", + "name": "ATF 0.1", + "draft": false, + "author": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-02-26T16:11:02Z", + "published_at": "2014-02-06T11:42:53Z", + "assets": [ + { + "url": "https://api.github.com/repos/jmmv/atf/releases/assets/71944", + "id": 71944, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcxOTQ0", + "name": "atf-0.1.tar.gz", + "label": "", + "uploader": { + "login": "jmmv", + "id": 879272, + "node_id": "MDQ6VXNlcjg3OTI3Mg==", + "avatar_url": "https://avatars0.githubusercontent.com/u/879272?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jmmv", + "html_url": "https://github.com/jmmv", + "followers_url": "https://api.github.com/users/jmmv/followers", + "following_url": "https://api.github.com/users/jmmv/following{/other_user}", + "gists_url": "https://api.github.com/users/jmmv/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jmmv/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jmmv/subscriptions", + "organizations_url": "https://api.github.com/users/jmmv/orgs", + "repos_url": "https://api.github.com/users/jmmv/repos", + "events_url": "https://api.github.com/users/jmmv/events{/privacy}", + "received_events_url": "https://api.github.com/users/jmmv/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 429665, + "download_count": 5, + "created_at": "2014-02-06T11:49:20Z", + "updated_at": "2014-02-06T11:49:23Z", + "browser_download_url": "https://github.com/jmmv/atf/releases/download/atf-0.1/atf-0.1.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/jmmv/atf/tarball/atf-0.1", + "zipball_url": "https://api.github.com/repos/jmmv/atf/zipball/atf-0.1", + "body": "# Changes in version 0.1\n\nExperimental version released on August 20th, 2007.\n- First public version. This was released coinciding with the end of the\n Google Summer of Code 2007 program.\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/babel.yaml b/upstream-info/babel.yaml index 61d40e17bf17ef4d3290bb9443d5e69474f217a8..d5d7c234bb07178d459b609aefc24df5ff783fcd 100644 --- a/upstream-info/babel.yaml +++ b/upstream-info/babel.yaml @@ -4,7 +4,7 @@ src_repo: babel tag_prefix: "^v" seperator: "." last_query: - time_stamp: 2020-04-26 03:26:28.423586830 +00:00 + time_stamp: 2020-05-20 07:07:33.311464110 +00:00 raw_data: '{"info":{"author":"Armin Ronacher","author_email":"armin.ronacher@active-4.com","bugtrack_url":null,"classifiers":["Development Status :: 5 - Production/Stable","Environment :: Web Environment","Intended Audience :: Developers","License :: OSI Approved :: BSD License","Operating System :: OS @@ -17,12 +17,12 @@ last_query: Libraries :: Python Modules"],"description":"A collection of tools for internationalizing Python applications.\n\n\n","description_content_type":"","docs_url":"https://pythonhosted.org/Babel/","download_url":"","downloads":{"last_day":-1,"last_month":-1,"last_week":-1},"home_page":"http://babel.pocoo.org/","keywords":"","license":"BSD","maintainer":"","maintainer_email":"","name":"Babel","package_url":"https://pypi.org/project/Babel/","platform":"","project_url":"https://pypi.org/project/Babel/","project_urls":{"Homepage":"http://babel.pocoo.org/"},"release_url":"https://pypi.org/project/Babel/2.8.0/","requires_dist":["pytz (>=2015.7)"],"requires_python":">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","summary":"Internationalization - utilities","version":"2.8.0","yanked":false},"last_serial":6379297,"releases":{"0.8":[],"0.8.1":[],"0.9":[],"0.9.1":[],"0.9.2":[],"0.9.3":[],"0.9.4":[],"0.9.5":[],"0.9.6":[{"comment_text":"","digests":{"md5":"b4cd4fc5cbb87a5d90796f3f6a45fb92","sha256":"b29dd100dbcfbe2ad83ed8faf1076cedbae4912ef3189e8aa092fed205ad40c4"},"downloads":-1,"filename":"Babel-0.9.6-py2.3.egg","has_sig":false,"md5_digest":"b4cd4fc5cbb87a5d90796f3f6a45fb92","packagetype":"bdist_egg","python_version":"2.3","requires_python":null,"size":4384501,"upload_time":"2011-03-18T07:38:04","upload_time_iso_8601":"2011-03-18T07:38:04.585078Z","url":"https://files.pythonhosted.org/packages/e6/16/6d54f756bcbb658cb61d35d860eb280df9466a6cd71171aae341a9512f3a/Babel-0.9.6-py2.3.egg","yanked":false},{"comment_text":"","digests":{"md5":"be5a6c59b62c2c75a97c6cdeb281ef08","sha256":"89c43eabe1eb606455c1921a595241b2c0c98dbb1b0aaaf35ddcf2e7428c9882"},"downloads":-1,"filename":"Babel-0.9.6-py2.4.egg","has_sig":false,"md5_digest":"be5a6c59b62c2c75a97c6cdeb281ef08","packagetype":"bdist_egg","python_version":"2.4","requires_python":null,"size":1861659,"upload_time":"2011-03-18T07:41:28","upload_time_iso_8601":"2011-03-18T07:41:28.914912Z","url":"https://files.pythonhosted.org/packages/6d/56/503a8e4d4987d598d258a163308a03115a9e0f9ef69d6100ede3f81ea367/Babel-0.9.6-py2.4.egg","yanked":false},{"comment_text":"","digests":{"md5":"827da7be4d083373753b55198953f202","sha256":"c0d3424b3e8a41e53d536a448be85f1969d186daf571f277c3d2c1b258241c67"},"downloads":-1,"filename":"Babel-0.9.6-py2.5.egg","has_sig":false,"md5_digest":"827da7be4d083373753b55198953f202","packagetype":"bdist_egg","python_version":"2.5","requires_python":null,"size":1860073,"upload_time":"2011-03-18T07:42:32","upload_time_iso_8601":"2011-03-18T07:42:32.676308Z","url":"https://files.pythonhosted.org/packages/2d/d1/fbcc2008c6581ad30d3bae9394671eea729dfd211fa5214e480310ba3ed7/Babel-0.9.6-py2.5.egg","yanked":false},{"comment_text":"","digests":{"md5":"e66698fb97c8dc0a7c6b7b86c91d62be","sha256":"b99a0e43027d2ad5f1e8f55a96eea5f25d06f8a35d9af30cc29ff1aa196c088b"},"downloads":-1,"filename":"Babel-0.9.6-py2.6.egg","has_sig":false,"md5_digest":"e66698fb97c8dc0a7c6b7b86c91d62be","packagetype":"bdist_egg","python_version":"2.6","requires_python":null,"size":1859723,"upload_time":"2011-03-18T07:43:10","upload_time_iso_8601":"2011-03-18T07:43:10.066709Z","url":"https://files.pythonhosted.org/packages/5a/9d/2ed1579c088a6c5953bf31b9929cb0b2421252bd0f7fceed6e9e8f21b007/Babel-0.9.6-py2.6.egg","yanked":false},{"comment_text":"","digests":{"md5":"144b6a12aafe1ba15b3766d9f8b0be81","sha256":"65e7f3df394cbd163345247345a2956451a9f102497ebf12b32ba3f229f3ecc8"},"downloads":-1,"filename":"Babel-0.9.6-py2.7.egg","has_sig":false,"md5_digest":"144b6a12aafe1ba15b3766d9f8b0be81","packagetype":"bdist_egg","python_version":"2.7","requires_python":null,"size":1859520,"upload_time":"2011-03-18T07:43:41","upload_time_iso_8601":"2011-03-18T07:43:41.813563Z","url":"https://files.pythonhosted.org/packages/6b/00/ce976c63f004a440efb77a3a58315fbc08139171998787a64be836e7686e/Babel-0.9.6-py2.7.egg","yanked":false},{"comment_text":"","digests":{"md5":"f0edcad03dfdb5505f337ef1a7690325","sha256":"4a3a085ecf1fcd2736573538ffa114f1f4331b3bbbdd69381e6e172c49c9750f"},"downloads":-1,"filename":"Babel-0.9.6.tar.gz","has_sig":false,"md5_digest":"f0edcad03dfdb5505f337ef1a7690325","packagetype":"sdist","python_version":"source","requires_python":null,"size":1820835,"upload_time":"2011-03-18T07:38:46","upload_time_iso_8601":"2011-03-18T07:38:46.970464Z","url":"https://files.pythonhosted.org/packages/47/d8/84943abdffcc0f910327a08651e857e682efcda80e6650b1aa93679d5f60/Babel-0.9.6.tar.gz","yanked":false},{"comment_text":"","digests":{"md5":"135aa335148202caa5b23ff871b6afd9","sha256":"eac5a36fd394954abdca25f680882ff2df01056dc5fe579f939f22e4e4114df4"},"downloads":-1,"filename":"Babel-0.9.6.win32.exe","has_sig":false,"md5_digest":"135aa335148202caa5b23ff871b6afd9","packagetype":"bdist_wininst","python_version":"any","requires_python":null,"size":1983205,"upload_time":"2011-03-18T07:40:56","upload_time_iso_8601":"2011-03-18T07:40:56.421725Z","url":"https://files.pythonhosted.org/packages/e2/c9/abfa44679392183909e74739442a9025345c0d6d3bdf3281ad59bb1981b6/Babel-0.9.6.win32.exe","yanked":false},{"comment_text":"","digests":{"md5":"b4fcf32415e7de49c1b6d89461b626f2","sha256":"149859d2b43da82ef61370a00c277578caf6048625d1456db8cbf22e49938dd6"},"downloads":-1,"filename":"Babel-0.9.6.zip","has_sig":false,"md5_digest":"b4fcf32415e7de49c1b6d89461b626f2","packagetype":"sdist","python_version":"source","requires_python":null,"size":1925497,"upload_time":"2011-03-18T07:39:42","upload_time_iso_8601":"2011-03-18T07:39:42.930262Z","url":"https://files.pythonhosted.org/packages/8b/bf/cf6408434941548c26626c4b2f515e100eff78a7fce1c1248c7af94ab893/Babel-0.9.6.zip","yanked":false}],"1.0":[{"comment_text":"","digests":{"md5":"b61c0038fa212b15294fa1b3abfd0153","sha256":"abf1965b3ea34bfec77d4b806b66d7fa9a6c684f34be0829408f288035cdfc83"},"downloads":-1,"filename":"Babel-1.0.tar.gz","has_sig":false,"md5_digest":"b61c0038fa212b15294fa1b3abfd0153","packagetype":"sdist","python_version":"source","requires_python":null,"size":3270907,"upload_time":"2013-07-26T16:13:50","upload_time_iso_8601":"2013-07-26T16:13:50.169322Z","url":"https://files.pythonhosted.org/packages/7c/03/4314d98f0c1cdbd7f0c9b295e62a9a84650bf653581719e6fa89108b00fa/Babel-1.0.tar.gz","yanked":false}],"1.1":[{"comment_text":"","digests":{"md5":"dfabd75f34e02ebfe8937943e00f919e","sha256":"52a9174f0914b17034907ae4a20b62e21e2341e88aeec892675b24db2b9f3a0e"},"downloads":-1,"filename":"Babel-1.1.tar.gz","has_sig":false,"md5_digest":"dfabd75f34e02ebfe8937943e00f919e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3281656,"upload_time":"2013-07-27T09:38:44","upload_time_iso_8601":"2013-07-27T09:38:44.384788Z","url":"https://files.pythonhosted.org/packages/14/2b/07da6390513486f2ca9284f8d17d692593b180ab426a788b466ab00dda7d/Babel-1.1.tar.gz","yanked":false}],"1.2":[{"comment_text":"","digests":{"md5":"f27a2bd004f9cc6040f2f8c2b893724b","sha256":"f33115628e1507924d7c929ba8752658ace1a98c47ee0aa6e28bfc02bda5abfc"},"downloads":-1,"filename":"Babel-1.2.tar.gz","has_sig":false,"md5_digest":"f27a2bd004f9cc6040f2f8c2b893724b","packagetype":"sdist","python_version":"source","requires_python":null,"size":3400957,"upload_time":"2013-07-27T10:59:33","upload_time_iso_8601":"2013-07-27T10:59:33.018230Z","url":"https://files.pythonhosted.org/packages/ad/82/18617389832560ce449c229704373e2b09a6ce39a8e35cc31507a965805d/Babel-1.2.tar.gz","yanked":false}],"1.3":[{"comment_text":"","digests":{"md5":"5264ceb02717843cbc9ffce8e6e06bdb","sha256":"9f02d0357184de1f093c10012b52e7454a1008be6a5c185ab7a3307aceb1d12e"},"downloads":-1,"filename":"Babel-1.3.tar.gz","has_sig":false,"md5_digest":"5264ceb02717843cbc9ffce8e6e06bdb","packagetype":"sdist","python_version":"source","requires_python":null,"size":3401237,"upload_time":"2013-07-29T11:33:38","upload_time_iso_8601":"2013-07-29T11:33:38.248227Z","url":"https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz","yanked":false}],"2.0":[{"comment_text":"","digests":{"md5":"62917719897a81e22dcaa3b17eeb11d8","sha256":"44988df191123065af9857eca68e9151526a931c12659ca29904e4f11de7ec1b"},"downloads":-1,"filename":"Babel-2.0.tar.gz","has_sig":false,"md5_digest":"62917719897a81e22dcaa3b17eeb11d8","packagetype":"sdist","python_version":"source","requires_python":null,"size":3415906,"upload_time":"2015-07-27T11:28:04","upload_time_iso_8601":"2015-07-27T11:28:04.442130Z","url":"https://files.pythonhosted.org/packages/e9/ad/dbe9dcca7cbd76bfac175ee52626582531ec3496a2668a1fe7dc5d505e96/Babel-2.0.tar.gz","yanked":false}],"2.1.1":[{"comment_text":"","digests":{"md5":"c3b3ef576cae3137be4a7b2498779d73","sha256":"324978553daa4fae54c0bb7a360ba886d1bfbe3ac6299915857fff55f133feb7"},"downloads":-1,"filename":"Babel-2.1.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"c3b3ef576cae3137be4a7b2498779d73","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":3576481,"upload_time":"2015-09-25T12:28:59","upload_time_iso_8601":"2015-09-25T12:28:59.411949Z","url":"https://files.pythonhosted.org/packages/1d/6f/95f416917bbd85afd3b44417ab0d521920fbb5e65898abf21cbe788dbef8/Babel-2.1.1-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"cab63d158ceed3a809703711cfb8cbd5","sha256":"7fb6d50effe88a087feb2036cb972fd7a893bf338361516f1a55a820bf7b5248"},"downloads":-1,"filename":"Babel-2.1.1.tar.gz","has_sig":false,"md5_digest":"cab63d158ceed3a809703711cfb8cbd5","packagetype":"sdist","python_version":"source","requires_python":null,"size":3437647,"upload_time":"2015-09-25T12:29:26","upload_time_iso_8601":"2015-09-25T12:29:26.837503Z","url":"https://files.pythonhosted.org/packages/b8/4c/f76e5d422bd92f0caa6cce05d93f5b2eca62bdd30532316fdf31e00ae8f1/Babel-2.1.1.tar.gz","yanked":false}],"2.2.0":[{"comment_text":"","digests":{"md5":"b6ade77c75100cc5226d44290d507b73","sha256":"fed07cbcdcb3de79b53a8220eebed21c93f8dbb3dbce1d9c6b1c4b09e8aecf2b"},"downloads":-1,"filename":"Babel-2.2.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"b6ade77c75100cc5226d44290d507b73","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6478375,"upload_time":"2016-01-02T19:25:27","upload_time_iso_8601":"2016-01-02T19:25:27.879287Z","url":"https://files.pythonhosted.org/packages/33/0e/7428041cddc3ff6e9a0f11cd2464b8bf6caed1b3879fcb9cf064f1ac7675/Babel-2.2.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"1b69e4b2ab3795119266ccaa36b36f15","sha256":"d8cb4c0e78148aee89560f9fe21587aa57739c975bb89ff66b1e842cc697428f"},"downloads":-1,"filename":"Babel-2.2.0.tar.gz","has_sig":false,"md5_digest":"1b69e4b2ab3795119266ccaa36b36f15","packagetype":"sdist","python_version":"source","requires_python":null,"size":6334150,"upload_time":"2016-01-02T19:26:35","upload_time_iso_8601":"2016-01-02T19:26:35.837251Z","url":"https://files.pythonhosted.org/packages/08/00/278d52a7ba3c5f9709d50bd123d0cc4f66497a9bab1b6b2bc18d3fcced09/Babel-2.2.0.tar.gz","yanked":false}],"2.3.0":[{"comment_text":"","digests":{"md5":"de39450840c7430f47762e19529972ef","sha256":"140365dd23d9965418070510877ee3d51e9e13979e0412d28b050a5754696038"},"downloads":-1,"filename":"Babel-2.3.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"de39450840c7430f47762e19529972ef","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":97714,"upload_time":"2016-04-07T20:45:28","upload_time_iso_8601":"2016-04-07T20:45:28.083399Z","url":"https://files.pythonhosted.org/packages/f2/cb/1ddd0dce0c865fa0e17c0c04c792bb72ac45f78a6395aa3c000be31763d7/Babel-2.3.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"ac1d663480a11ff7902d5690e52031fd","sha256":"880ce4d80c7aac0bf9dd8dc7e806c059c89cc2f03166c482d3a55ad56c6b2030"},"downloads":-1,"filename":"Babel-2.3.0.tar.gz","has_sig":false,"md5_digest":"ac1d663480a11ff7902d5690e52031fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":238887,"upload_time":"2016-04-07T20:45:48","upload_time_iso_8601":"2016-04-07T20:45:48.886152Z","url":"https://files.pythonhosted.org/packages/e0/2c/0646c563576282f0cc8983b5363afda2bbc1df78a6da68efaac8507bc43b/Babel-2.3.0.tar.gz","yanked":false}],"2.3.1":[{"comment_text":"","digests":{"md5":"ef9fd60c59d0b56788538b3abed3feaf","sha256":"0a7a22124e2bf674d4cb1120e3fc69a0f51888ac731d86dbe747e3d484c17f45"},"downloads":-1,"filename":"Babel-2.3.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"ef9fd60c59d0b56788538b3abed3feaf","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7166343,"upload_time":"2016-04-07T20:52:09","upload_time_iso_8601":"2016-04-07T20:52:09.234158Z","url":"https://files.pythonhosted.org/packages/b1/a4/7fbb785a70491262aa9fad6833f0373c6bf9417a63c65951b79000e1dd8c/Babel-2.3.1-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"9510cf04e88ceb535b7ed17ba3671125","sha256":"ee54fe8db330611c0d43df98482cd3b2856f35e9eb94e58fa7703081bf8aa911"},"downloads":-1,"filename":"Babel-2.3.1.tar.gz","has_sig":false,"md5_digest":"9510cf04e88ceb535b7ed17ba3671125","packagetype":"sdist","python_version":"source","requires_python":null,"size":7018496,"upload_time":"2016-04-07T20:52:46","upload_time_iso_8601":"2016-04-07T20:52:46.043069Z","url":"https://files.pythonhosted.org/packages/98/04/d8fb91dd535e468b075565154502b5d4f158ed2789f92c5db6806d599b9f/Babel-2.3.1.tar.gz","yanked":false}],"2.3.2":[{"comment_text":"","digests":{"md5":"03002f94cf49cc5f3a7086a7af821b7e","sha256":"318a374096429471d43c1385e3d0408f26ce3d8308929f159ab248df6095da82"},"downloads":-1,"filename":"Babel-2.3.2-py2.py3-none-any.whl","has_sig":false,"md5_digest":"03002f94cf49cc5f3a7086a7af821b7e","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7081749,"upload_time":"2016-04-08T08:38:37","upload_time_iso_8601":"2016-04-08T08:38:37.630289Z","url":"https://files.pythonhosted.org/packages/a8/90/ea6299b7dc9a63c79f19722e2aabe0b9a749bf669175a7775fbb407ddadf/Babel-2.3.2-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"95ad5c32d28defb0ca543756ca335031","sha256":"9c0e011d2b5fd67e154be01ebec5eebf472e1277a34ec0856e97b77041bc834c"},"downloads":-1,"filename":"Babel-2.3.2.tar.gz","has_sig":false,"md5_digest":"95ad5c32d28defb0ca543756ca335031","packagetype":"sdist","python_version":"source","requires_python":null,"size":6909749,"upload_time":"2016-04-08T08:39:17","upload_time_iso_8601":"2016-04-08T08:39:17.611195Z","url":"https://files.pythonhosted.org/packages/e0/66/c609a958a86846a690f5cad1cd035cdefeb18e6def1d2616da50c97a9841/Babel-2.3.2.tar.gz","yanked":false}],"2.3.3":[{"comment_text":"","digests":{"md5":"d3327185fa0ad36a23399ec3b7aaf946","sha256":"33fe6090337ecc785bfa3c452a97e378676a19593f795258721090eb3de94e43"},"downloads":-1,"filename":"Babel-2.3.3-py2.py3-none-any.whl","has_sig":false,"md5_digest":"d3327185fa0ad36a23399ec3b7aaf946","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7103155,"upload_time":"2016-04-12T09:55:33","upload_time_iso_8601":"2016-04-12T09:55:33.488208Z","url":"https://files.pythonhosted.org/packages/96/28/d8b07b9e2fa99cda9b7bd2a319a8ffbc15f704a2059584a490b06db58b49/Babel-2.3.3-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"7385ea5b37005f4b2015f971044431f6","sha256":"12dff9afa9c6cd6e2a39960d3cd4b46b2b98768cdc6646833c66b20799c1c58e"},"downloads":-1,"filename":"Babel-2.3.3.tar.gz","has_sig":false,"md5_digest":"7385ea5b37005f4b2015f971044431f6","packagetype":"sdist","python_version":"source","requires_python":null,"size":6917535,"upload_time":"2016-04-12T09:55:43","upload_time_iso_8601":"2016-04-12T09:55:43.770434Z","url":"https://files.pythonhosted.org/packages/8c/77/e39a94131df796b130981eef8355169680f6060572a730c3e9457353f299/Babel-2.3.3.tar.gz","yanked":false}],"2.3.4":[{"comment_text":"","digests":{"md5":"9bdf9ce4df64492c4d3cced201dc8032","sha256":"3318ed2960240d61cbc6558858ee00c10eed77a6508c4d1ed8e6f7f48399c975"},"downloads":-1,"filename":"Babel-2.3.4-py2.py3-none-any.whl","has_sig":false,"md5_digest":"9bdf9ce4df64492c4d3cced201dc8032","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7083486,"upload_time":"2016-04-22T11:54:36","upload_time_iso_8601":"2016-04-22T11:54:36.432806Z","url":"https://files.pythonhosted.org/packages/b4/ec/acd307eac2e23f9cab1c8bdbe29b3b1d43215e31c32f8aa91b3a97925b5b/Babel-2.3.4-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"afa20bc55b0e991833030129ad498f35","sha256":"c535c4403802f6eb38173cd4863e419e2274921a01a8aad8a5b497c131c62875"},"downloads":-1,"filename":"Babel-2.3.4.tar.gz","has_sig":false,"md5_digest":"afa20bc55b0e991833030129ad498f35","packagetype":"sdist","python_version":"source","requires_python":null,"size":6866920,"upload_time":"2016-04-22T11:54:57","upload_time_iso_8601":"2016-04-22T11:54:57.135590Z","url":"https://files.pythonhosted.org/packages/6e/96/ba2a2462ed25ca0e651fb7b66e7080f5315f91425a07ea5b34d7c870c114/Babel-2.3.4.tar.gz","yanked":false}],"2.4.0":[{"comment_text":"","digests":{"md5":"83f9f414cf1701247691ee962a7b5fe1","sha256":"e86ca5a3a6bb64b9bbb62b9dac37225ec0ab5dfaae3c2492ebd648266468042f"},"downloads":-1,"filename":"Babel-2.4.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"83f9f414cf1701247691ee962a7b5fe1","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6770598,"upload_time":"2017-03-24T15:06:35","upload_time_iso_8601":"2017-03-24T15:06:35.258742Z","url":"https://files.pythonhosted.org/packages/5f/cf/17935db603f7044d188ce3e3a6545c4b4500dbaa8835d50da2934b738111/Babel-2.4.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"90e7a0add19b2036a9b415630a0d9388","sha256":"8c98f5e5f8f5f088571f2c6bd88d530e331cbbcb95a7311a0db69d3dca7ec563"},"downloads":-1,"filename":"Babel-2.4.0.tar.gz","has_sig":false,"md5_digest":"90e7a0add19b2036a9b415630a0d9388","packagetype":"sdist","python_version":"source","requires_python":null,"size":6607513,"upload_time":"2017-03-24T15:06:52","upload_time_iso_8601":"2017-03-24T15:06:52.623362Z","url":"https://files.pythonhosted.org/packages/92/22/643f3b75f75e0220c5ef9f5b72b619ccffe9266170143a4821d4885198de/Babel-2.4.0.tar.gz","yanked":false}],"2.5.0":[{"comment_text":"","digests":{"md5":"bf29f5ecf187ce1265aee114915c6449","sha256":"e0d07af61ff43729f61dc838f2af283c315e671454e7cf9d744ac9c56cccfca6"},"downloads":-1,"filename":"Babel-2.5.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"bf29f5ecf187ce1265aee114915c6449","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774243,"upload_time":"2017-08-18T09:06:43","upload_time_iso_8601":"2017-08-18T09:06:43.358836Z","url":"https://files.pythonhosted.org/packages/88/69/bee7f293436ed3c653b34d9c89ff1324428639981dd6d2e7bc1b7adf2b95/Babel-2.5.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"03da8249c2684abcbd208a8d0f979939","sha256":"754177ee7481b6fac1bf84edeeb6338ab51640984e97e4083657d384b1c8830d"},"downloads":-1,"filename":"Babel-2.5.0.tar.gz","has_sig":false,"md5_digest":"03da8249c2684abcbd208a8d0f979939","packagetype":"sdist","python_version":"source","requires_python":null,"size":6612353,"upload_time":"2017-08-18T09:06:49","upload_time_iso_8601":"2017-08-18T09:06:49.607948Z","url":"https://files.pythonhosted.org/packages/3a/cb/46b76381ebda237c1b08d1c94394659679a4f1bd6475fe3703b303830ee0/Babel-2.5.0.tar.gz","yanked":false}],"2.5.1":[{"comment_text":"","digests":{"md5":"e075ef09710cce29f06f27ce84058fb2","sha256":"f20b2acd44f587988ff185d8949c3e208b4b3d5d20fcab7d91fe481ffa435528"},"downloads":-1,"filename":"Babel-2.5.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"e075ef09710cce29f06f27ce84058fb2","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774506,"upload_time":"2017-09-14T10:11:05","upload_time_iso_8601":"2017-09-14T10:11:05.880415Z","url":"https://files.pythonhosted.org/packages/36/80/99c5e2b07a4c85683f9884e993660bbb02051f77c4e63293348801aaa594/Babel-2.5.1-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"60228b3ce93a203357158b909afe8ae1","sha256":"6007daf714d0cd5524bbe436e2d42b3c20e68da66289559341e48d2cd6d25811"},"downloads":-1,"filename":"Babel-2.5.1.tar.gz","has_sig":false,"md5_digest":"60228b3ce93a203357158b909afe8ae1","packagetype":"sdist","python_version":"source","requires_python":null,"size":6612869,"upload_time":"2017-09-14T10:11:10","upload_time_iso_8601":"2017-09-14T10:11:10.959818Z","url":"https://files.pythonhosted.org/packages/5a/22/63f1dbb8514bb7e0d0c8a85cc9b14506599a075e231985f98afd70430e1f/Babel-2.5.1.tar.gz","yanked":false}],"2.5.2":[{"comment_text":"","digests":{"md5":"46beac3dd4bc3790f7a7f734cd400a23","sha256":"3dc5399f1d0672c200e69759612ed751cb9edc46fc2df1c5faf42a88f54b18cb"},"downloads":-1,"filename":"Babel-2.5.2-py2.py3-none-any.whl","has_sig":false,"md5_digest":"46beac3dd4bc3790f7a7f734cd400a23","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6776643,"upload_time":"2018-01-15T12:07:11","upload_time_iso_8601":"2018-01-15T12:07:11.794215Z","url":"https://files.pythonhosted.org/packages/6d/f0/32a4c2389e5a3c6507884cd4d7501b35d2bb8b2c0938e1d44ccfc6f238df/Babel-2.5.2-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"4556f987617b0ecbc8a36e6c75dcd071","sha256":"f9ecc03310233ffa9f2575bda3ebccf9ee3ece18ace7239aa83ca56a368844f9"},"downloads":-1,"filename":"Babel-2.5.2.tar.gz","has_sig":false,"md5_digest":"4556f987617b0ecbc8a36e6c75dcd071","packagetype":"sdist","python_version":"source","requires_python":null,"size":6648317,"upload_time":"2018-01-15T12:07:16","upload_time_iso_8601":"2018-01-15T12:07:16.632298Z","url":"https://files.pythonhosted.org/packages/ab/0d/03da6e363ef2aa2c0d84e373d49553fa2e90ef73a89d0994106acbea5220/Babel-2.5.2.tar.gz","yanked":false}],"2.5.3":[{"comment_text":"","digests":{"md5":"5b9542d0511bea97af2416b094ae2587","sha256":"ad209a68d7162c4cff4b29cdebe3dec4cef75492df501b0049a9433c96ce6f80"},"downloads":-1,"filename":"Babel-2.5.3-py2.py3-none-any.whl","has_sig":false,"md5_digest":"5b9542d0511bea97af2416b094ae2587","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774418,"upload_time":"2018-01-15T17:13:05","upload_time_iso_8601":"2018-01-15T17:13:05.900722Z","url":"https://files.pythonhosted.org/packages/94/03/14e68ad12e771a79cf96792f7158d68a7b3d8c7b2badf39e9ef1f65b57d6/Babel-2.5.3-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"152a6b17fe4110b95675aceb9af9fab2","sha256":"8ce4cb6fdd4393edd323227cba3a077bceb2a6ce5201c902c65e730046f41f14"},"downloads":-1,"filename":"Babel-2.5.3.tar.gz","has_sig":false,"md5_digest":"152a6b17fe4110b95675aceb9af9fab2","packagetype":"sdist","python_version":"source","requires_python":null,"size":6611941,"upload_time":"2018-01-15T17:13:13","upload_time_iso_8601":"2018-01-15T17:13:13.559913Z","url":"https://files.pythonhosted.org/packages/0e/d5/9b1d6a79c975d0e9a32bd337a1465518c2519b14b214682ca9892752417e/Babel-2.5.3.tar.gz","yanked":false}],"2.6.0":[{"comment_text":"","digests":{"md5":"9989ee4e3e12def96e4aa26d97f147ca","sha256":"6778d85147d5d85345c14a26aada5e478ab04e39b078b0745ee6870c2b5cf669"},"downloads":-1,"filename":"Babel-2.6.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"9989ee4e3e12def96e4aa26d97f147ca","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8098645,"upload_time":"2018-05-28T14:37:43","upload_time_iso_8601":"2018-05-28T14:37:43.585277Z","url":"https://files.pythonhosted.org/packages/b8/ad/c6f60602d3ee3d92fbed87675b6fb6a6f9a38c223343ababdb44ba201f10/Babel-2.6.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"c384ac03026e8fe6f9b90f55201f1bff","sha256":"8cba50f48c529ca3fa18cf81fa9403be176d374ac4d60738b839122dfaaa3d23"},"downloads":-1,"filename":"Babel-2.6.0.tar.gz","has_sig":false,"md5_digest":"c384ac03026e8fe6f9b90f55201f1bff","packagetype":"sdist","python_version":"source","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":7960433,"upload_time":"2018-05-28T14:37:47","upload_time_iso_8601":"2018-05-28T14:37:47.526462Z","url":"https://files.pythonhosted.org/packages/be/cc/9c981b249a455fa0c76338966325fc70b7265521bad641bf2932f77712f4/Babel-2.6.0.tar.gz","yanked":false}],"2.7.0":[{"comment_text":"","digests":{"md5":"b96fe47047fd07bc5797779d903d4fe2","sha256":"af92e6106cb7c55286b25b38ad7695f8b4efb36a90ba483d7f7a6628c46158ab"},"downloads":-1,"filename":"Babel-2.7.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"b96fe47047fd07bc5797779d903d4fe2","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8421834,"upload_time":"2019-05-27T12:52:03","upload_time_iso_8601":"2019-05-27T12:52:03.159790Z","url":"https://files.pythonhosted.org/packages/2c/60/f2af68eb046c5de5b1fe6dd4743bf42c074f7141fe7b2737d3061533b093/Babel-2.7.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"83c158b7dae9135750a7cf204e6e2eea","sha256":"e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28"},"downloads":-1,"filename":"Babel-2.7.0.tar.gz","has_sig":false,"md5_digest":"83c158b7dae9135750a7cf204e6e2eea","packagetype":"sdist","python_version":"source","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8244870,"upload_time":"2019-05-27T12:52:07","upload_time_iso_8601":"2019-05-27T12:52:07.393441Z","url":"https://files.pythonhosted.org/packages/bd/78/9fb975cbb3f4b136de2cd4b5e5ce4a3341169ebf4c6c03630996d05428f1/Babel-2.7.0.tar.gz","yanked":false}],"2.8.0":[{"comment_text":"","digests":{"md5":"7430e628b71a0d5973e3166bb54caac4","sha256":"d670ea0b10f8b723672d3a6abeb87b565b244da220d76b4dba1b66269ec152d4"},"downloads":-1,"filename":"Babel-2.8.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"7430e628b71a0d5973e3166bb54caac4","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8608706,"upload_time":"2019-12-31T12:41:07","upload_time_iso_8601":"2019-12-31T12:41:07.733575Z","url":"https://files.pythonhosted.org/packages/15/a1/522dccd23e5d2e47aed4b6a16795b8213e3272c7506e625f2425ad025a19/Babel-2.8.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"6fad9772e75421969ddb41975483abdf","sha256":"1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"},"downloads":-1,"filename":"Babel-2.8.0.tar.gz","has_sig":false,"md5_digest":"6fad9772e75421969ddb41975483abdf","packagetype":"sdist","python_version":"source","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8444381,"upload_time":"2019-12-31T12:42:10","upload_time_iso_8601":"2019-12-31T12:42:10.038608Z","url":"https://files.pythonhosted.org/packages/34/18/8706cfa5b2c73f5a549fdc0ef2e24db71812a2685959cff31cbdfc010136/Babel-2.8.0.tar.gz","yanked":false}]},"urls":[{"comment_text":"","digests":{"md5":"7430e628b71a0d5973e3166bb54caac4","sha256":"d670ea0b10f8b723672d3a6abeb87b565b244da220d76b4dba1b66269ec152d4"},"downloads":-1,"filename":"Babel-2.8.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"7430e628b71a0d5973e3166bb54caac4","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8608706,"upload_time":"2019-12-31T12:41:07","upload_time_iso_8601":"2019-12-31T12:41:07.733575Z","url":"https://files.pythonhosted.org/packages/15/a1/522dccd23e5d2e47aed4b6a16795b8213e3272c7506e625f2425ad025a19/Babel-2.8.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"6fad9772e75421969ddb41975483abdf","sha256":"1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"},"downloads":-1,"filename":"Babel-2.8.0.tar.gz","has_sig":false,"md5_digest":"6fad9772e75421969ddb41975483abdf","packagetype":"sdist","python_version":"source","requires_python":">=2.7, - !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8444381,"upload_time":"2019-12-31T12:42:10","upload_time_iso_8601":"2019-12-31T12:42:10.038608Z","url":"https://files.pythonhosted.org/packages/34/18/8706cfa5b2c73f5a549fdc0ef2e24db71812a2685959cff31cbdfc010136/Babel-2.8.0.tar.gz","yanked":false}]}' + utilities","version":"2.8.0","yanked":false,"yanked_reason":null},"last_serial":6379297,"releases":{"0.8":[],"0.8.1":[],"0.9":[],"0.9.1":[],"0.9.2":[],"0.9.3":[],"0.9.4":[],"0.9.5":[],"0.9.6":[{"comment_text":"","digests":{"md5":"b4cd4fc5cbb87a5d90796f3f6a45fb92","sha256":"b29dd100dbcfbe2ad83ed8faf1076cedbae4912ef3189e8aa092fed205ad40c4"},"downloads":-1,"filename":"Babel-0.9.6-py2.3.egg","has_sig":false,"md5_digest":"b4cd4fc5cbb87a5d90796f3f6a45fb92","packagetype":"bdist_egg","python_version":"2.3","requires_python":null,"size":4384501,"upload_time":"2011-03-18T07:38:04","upload_time_iso_8601":"2011-03-18T07:38:04.585078Z","url":"https://files.pythonhosted.org/packages/e6/16/6d54f756bcbb658cb61d35d860eb280df9466a6cd71171aae341a9512f3a/Babel-0.9.6-py2.3.egg","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"be5a6c59b62c2c75a97c6cdeb281ef08","sha256":"89c43eabe1eb606455c1921a595241b2c0c98dbb1b0aaaf35ddcf2e7428c9882"},"downloads":-1,"filename":"Babel-0.9.6-py2.4.egg","has_sig":false,"md5_digest":"be5a6c59b62c2c75a97c6cdeb281ef08","packagetype":"bdist_egg","python_version":"2.4","requires_python":null,"size":1861659,"upload_time":"2011-03-18T07:41:28","upload_time_iso_8601":"2011-03-18T07:41:28.914912Z","url":"https://files.pythonhosted.org/packages/6d/56/503a8e4d4987d598d258a163308a03115a9e0f9ef69d6100ede3f81ea367/Babel-0.9.6-py2.4.egg","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"827da7be4d083373753b55198953f202","sha256":"c0d3424b3e8a41e53d536a448be85f1969d186daf571f277c3d2c1b258241c67"},"downloads":-1,"filename":"Babel-0.9.6-py2.5.egg","has_sig":false,"md5_digest":"827da7be4d083373753b55198953f202","packagetype":"bdist_egg","python_version":"2.5","requires_python":null,"size":1860073,"upload_time":"2011-03-18T07:42:32","upload_time_iso_8601":"2011-03-18T07:42:32.676308Z","url":"https://files.pythonhosted.org/packages/2d/d1/fbcc2008c6581ad30d3bae9394671eea729dfd211fa5214e480310ba3ed7/Babel-0.9.6-py2.5.egg","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"e66698fb97c8dc0a7c6b7b86c91d62be","sha256":"b99a0e43027d2ad5f1e8f55a96eea5f25d06f8a35d9af30cc29ff1aa196c088b"},"downloads":-1,"filename":"Babel-0.9.6-py2.6.egg","has_sig":false,"md5_digest":"e66698fb97c8dc0a7c6b7b86c91d62be","packagetype":"bdist_egg","python_version":"2.6","requires_python":null,"size":1859723,"upload_time":"2011-03-18T07:43:10","upload_time_iso_8601":"2011-03-18T07:43:10.066709Z","url":"https://files.pythonhosted.org/packages/5a/9d/2ed1579c088a6c5953bf31b9929cb0b2421252bd0f7fceed6e9e8f21b007/Babel-0.9.6-py2.6.egg","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"144b6a12aafe1ba15b3766d9f8b0be81","sha256":"65e7f3df394cbd163345247345a2956451a9f102497ebf12b32ba3f229f3ecc8"},"downloads":-1,"filename":"Babel-0.9.6-py2.7.egg","has_sig":false,"md5_digest":"144b6a12aafe1ba15b3766d9f8b0be81","packagetype":"bdist_egg","python_version":"2.7","requires_python":null,"size":1859520,"upload_time":"2011-03-18T07:43:41","upload_time_iso_8601":"2011-03-18T07:43:41.813563Z","url":"https://files.pythonhosted.org/packages/6b/00/ce976c63f004a440efb77a3a58315fbc08139171998787a64be836e7686e/Babel-0.9.6-py2.7.egg","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"f0edcad03dfdb5505f337ef1a7690325","sha256":"4a3a085ecf1fcd2736573538ffa114f1f4331b3bbbdd69381e6e172c49c9750f"},"downloads":-1,"filename":"Babel-0.9.6.tar.gz","has_sig":false,"md5_digest":"f0edcad03dfdb5505f337ef1a7690325","packagetype":"sdist","python_version":"source","requires_python":null,"size":1820835,"upload_time":"2011-03-18T07:38:46","upload_time_iso_8601":"2011-03-18T07:38:46.970464Z","url":"https://files.pythonhosted.org/packages/47/d8/84943abdffcc0f910327a08651e857e682efcda80e6650b1aa93679d5f60/Babel-0.9.6.tar.gz","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"135aa335148202caa5b23ff871b6afd9","sha256":"eac5a36fd394954abdca25f680882ff2df01056dc5fe579f939f22e4e4114df4"},"downloads":-1,"filename":"Babel-0.9.6.win32.exe","has_sig":false,"md5_digest":"135aa335148202caa5b23ff871b6afd9","packagetype":"bdist_wininst","python_version":"any","requires_python":null,"size":1983205,"upload_time":"2011-03-18T07:40:56","upload_time_iso_8601":"2011-03-18T07:40:56.421725Z","url":"https://files.pythonhosted.org/packages/e2/c9/abfa44679392183909e74739442a9025345c0d6d3bdf3281ad59bb1981b6/Babel-0.9.6.win32.exe","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"b4fcf32415e7de49c1b6d89461b626f2","sha256":"149859d2b43da82ef61370a00c277578caf6048625d1456db8cbf22e49938dd6"},"downloads":-1,"filename":"Babel-0.9.6.zip","has_sig":false,"md5_digest":"b4fcf32415e7de49c1b6d89461b626f2","packagetype":"sdist","python_version":"source","requires_python":null,"size":1925497,"upload_time":"2011-03-18T07:39:42","upload_time_iso_8601":"2011-03-18T07:39:42.930262Z","url":"https://files.pythonhosted.org/packages/8b/bf/cf6408434941548c26626c4b2f515e100eff78a7fce1c1248c7af94ab893/Babel-0.9.6.zip","yanked":false,"yanked_reason":null}],"1.0":[{"comment_text":"","digests":{"md5":"b61c0038fa212b15294fa1b3abfd0153","sha256":"abf1965b3ea34bfec77d4b806b66d7fa9a6c684f34be0829408f288035cdfc83"},"downloads":-1,"filename":"Babel-1.0.tar.gz","has_sig":false,"md5_digest":"b61c0038fa212b15294fa1b3abfd0153","packagetype":"sdist","python_version":"source","requires_python":null,"size":3270907,"upload_time":"2013-07-26T16:13:50","upload_time_iso_8601":"2013-07-26T16:13:50.169322Z","url":"https://files.pythonhosted.org/packages/7c/03/4314d98f0c1cdbd7f0c9b295e62a9a84650bf653581719e6fa89108b00fa/Babel-1.0.tar.gz","yanked":false,"yanked_reason":null}],"1.1":[{"comment_text":"","digests":{"md5":"dfabd75f34e02ebfe8937943e00f919e","sha256":"52a9174f0914b17034907ae4a20b62e21e2341e88aeec892675b24db2b9f3a0e"},"downloads":-1,"filename":"Babel-1.1.tar.gz","has_sig":false,"md5_digest":"dfabd75f34e02ebfe8937943e00f919e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3281656,"upload_time":"2013-07-27T09:38:44","upload_time_iso_8601":"2013-07-27T09:38:44.384788Z","url":"https://files.pythonhosted.org/packages/14/2b/07da6390513486f2ca9284f8d17d692593b180ab426a788b466ab00dda7d/Babel-1.1.tar.gz","yanked":false,"yanked_reason":null}],"1.2":[{"comment_text":"","digests":{"md5":"f27a2bd004f9cc6040f2f8c2b893724b","sha256":"f33115628e1507924d7c929ba8752658ace1a98c47ee0aa6e28bfc02bda5abfc"},"downloads":-1,"filename":"Babel-1.2.tar.gz","has_sig":false,"md5_digest":"f27a2bd004f9cc6040f2f8c2b893724b","packagetype":"sdist","python_version":"source","requires_python":null,"size":3400957,"upload_time":"2013-07-27T10:59:33","upload_time_iso_8601":"2013-07-27T10:59:33.018230Z","url":"https://files.pythonhosted.org/packages/ad/82/18617389832560ce449c229704373e2b09a6ce39a8e35cc31507a965805d/Babel-1.2.tar.gz","yanked":false,"yanked_reason":null}],"1.3":[{"comment_text":"","digests":{"md5":"5264ceb02717843cbc9ffce8e6e06bdb","sha256":"9f02d0357184de1f093c10012b52e7454a1008be6a5c185ab7a3307aceb1d12e"},"downloads":-1,"filename":"Babel-1.3.tar.gz","has_sig":false,"md5_digest":"5264ceb02717843cbc9ffce8e6e06bdb","packagetype":"sdist","python_version":"source","requires_python":null,"size":3401237,"upload_time":"2013-07-29T11:33:38","upload_time_iso_8601":"2013-07-29T11:33:38.248227Z","url":"https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz","yanked":false,"yanked_reason":null}],"2.0":[{"comment_text":"","digests":{"md5":"62917719897a81e22dcaa3b17eeb11d8","sha256":"44988df191123065af9857eca68e9151526a931c12659ca29904e4f11de7ec1b"},"downloads":-1,"filename":"Babel-2.0.tar.gz","has_sig":false,"md5_digest":"62917719897a81e22dcaa3b17eeb11d8","packagetype":"sdist","python_version":"source","requires_python":null,"size":3415906,"upload_time":"2015-07-27T11:28:04","upload_time_iso_8601":"2015-07-27T11:28:04.442130Z","url":"https://files.pythonhosted.org/packages/e9/ad/dbe9dcca7cbd76bfac175ee52626582531ec3496a2668a1fe7dc5d505e96/Babel-2.0.tar.gz","yanked":false,"yanked_reason":null}],"2.1.1":[{"comment_text":"","digests":{"md5":"c3b3ef576cae3137be4a7b2498779d73","sha256":"324978553daa4fae54c0bb7a360ba886d1bfbe3ac6299915857fff55f133feb7"},"downloads":-1,"filename":"Babel-2.1.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"c3b3ef576cae3137be4a7b2498779d73","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":3576481,"upload_time":"2015-09-25T12:28:59","upload_time_iso_8601":"2015-09-25T12:28:59.411949Z","url":"https://files.pythonhosted.org/packages/1d/6f/95f416917bbd85afd3b44417ab0d521920fbb5e65898abf21cbe788dbef8/Babel-2.1.1-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"cab63d158ceed3a809703711cfb8cbd5","sha256":"7fb6d50effe88a087feb2036cb972fd7a893bf338361516f1a55a820bf7b5248"},"downloads":-1,"filename":"Babel-2.1.1.tar.gz","has_sig":false,"md5_digest":"cab63d158ceed3a809703711cfb8cbd5","packagetype":"sdist","python_version":"source","requires_python":null,"size":3437647,"upload_time":"2015-09-25T12:29:26","upload_time_iso_8601":"2015-09-25T12:29:26.837503Z","url":"https://files.pythonhosted.org/packages/b8/4c/f76e5d422bd92f0caa6cce05d93f5b2eca62bdd30532316fdf31e00ae8f1/Babel-2.1.1.tar.gz","yanked":false,"yanked_reason":null}],"2.2.0":[{"comment_text":"","digests":{"md5":"b6ade77c75100cc5226d44290d507b73","sha256":"fed07cbcdcb3de79b53a8220eebed21c93f8dbb3dbce1d9c6b1c4b09e8aecf2b"},"downloads":-1,"filename":"Babel-2.2.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"b6ade77c75100cc5226d44290d507b73","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6478375,"upload_time":"2016-01-02T19:25:27","upload_time_iso_8601":"2016-01-02T19:25:27.879287Z","url":"https://files.pythonhosted.org/packages/33/0e/7428041cddc3ff6e9a0f11cd2464b8bf6caed1b3879fcb9cf064f1ac7675/Babel-2.2.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"1b69e4b2ab3795119266ccaa36b36f15","sha256":"d8cb4c0e78148aee89560f9fe21587aa57739c975bb89ff66b1e842cc697428f"},"downloads":-1,"filename":"Babel-2.2.0.tar.gz","has_sig":false,"md5_digest":"1b69e4b2ab3795119266ccaa36b36f15","packagetype":"sdist","python_version":"source","requires_python":null,"size":6334150,"upload_time":"2016-01-02T19:26:35","upload_time_iso_8601":"2016-01-02T19:26:35.837251Z","url":"https://files.pythonhosted.org/packages/08/00/278d52a7ba3c5f9709d50bd123d0cc4f66497a9bab1b6b2bc18d3fcced09/Babel-2.2.0.tar.gz","yanked":false,"yanked_reason":null}],"2.3.0":[{"comment_text":"","digests":{"md5":"de39450840c7430f47762e19529972ef","sha256":"140365dd23d9965418070510877ee3d51e9e13979e0412d28b050a5754696038"},"downloads":-1,"filename":"Babel-2.3.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"de39450840c7430f47762e19529972ef","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":97714,"upload_time":"2016-04-07T20:45:28","upload_time_iso_8601":"2016-04-07T20:45:28.083399Z","url":"https://files.pythonhosted.org/packages/f2/cb/1ddd0dce0c865fa0e17c0c04c792bb72ac45f78a6395aa3c000be31763d7/Babel-2.3.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"ac1d663480a11ff7902d5690e52031fd","sha256":"880ce4d80c7aac0bf9dd8dc7e806c059c89cc2f03166c482d3a55ad56c6b2030"},"downloads":-1,"filename":"Babel-2.3.0.tar.gz","has_sig":false,"md5_digest":"ac1d663480a11ff7902d5690e52031fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":238887,"upload_time":"2016-04-07T20:45:48","upload_time_iso_8601":"2016-04-07T20:45:48.886152Z","url":"https://files.pythonhosted.org/packages/e0/2c/0646c563576282f0cc8983b5363afda2bbc1df78a6da68efaac8507bc43b/Babel-2.3.0.tar.gz","yanked":false,"yanked_reason":null}],"2.3.1":[{"comment_text":"","digests":{"md5":"ef9fd60c59d0b56788538b3abed3feaf","sha256":"0a7a22124e2bf674d4cb1120e3fc69a0f51888ac731d86dbe747e3d484c17f45"},"downloads":-1,"filename":"Babel-2.3.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"ef9fd60c59d0b56788538b3abed3feaf","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7166343,"upload_time":"2016-04-07T20:52:09","upload_time_iso_8601":"2016-04-07T20:52:09.234158Z","url":"https://files.pythonhosted.org/packages/b1/a4/7fbb785a70491262aa9fad6833f0373c6bf9417a63c65951b79000e1dd8c/Babel-2.3.1-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"9510cf04e88ceb535b7ed17ba3671125","sha256":"ee54fe8db330611c0d43df98482cd3b2856f35e9eb94e58fa7703081bf8aa911"},"downloads":-1,"filename":"Babel-2.3.1.tar.gz","has_sig":false,"md5_digest":"9510cf04e88ceb535b7ed17ba3671125","packagetype":"sdist","python_version":"source","requires_python":null,"size":7018496,"upload_time":"2016-04-07T20:52:46","upload_time_iso_8601":"2016-04-07T20:52:46.043069Z","url":"https://files.pythonhosted.org/packages/98/04/d8fb91dd535e468b075565154502b5d4f158ed2789f92c5db6806d599b9f/Babel-2.3.1.tar.gz","yanked":false,"yanked_reason":null}],"2.3.2":[{"comment_text":"","digests":{"md5":"03002f94cf49cc5f3a7086a7af821b7e","sha256":"318a374096429471d43c1385e3d0408f26ce3d8308929f159ab248df6095da82"},"downloads":-1,"filename":"Babel-2.3.2-py2.py3-none-any.whl","has_sig":false,"md5_digest":"03002f94cf49cc5f3a7086a7af821b7e","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7081749,"upload_time":"2016-04-08T08:38:37","upload_time_iso_8601":"2016-04-08T08:38:37.630289Z","url":"https://files.pythonhosted.org/packages/a8/90/ea6299b7dc9a63c79f19722e2aabe0b9a749bf669175a7775fbb407ddadf/Babel-2.3.2-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"95ad5c32d28defb0ca543756ca335031","sha256":"9c0e011d2b5fd67e154be01ebec5eebf472e1277a34ec0856e97b77041bc834c"},"downloads":-1,"filename":"Babel-2.3.2.tar.gz","has_sig":false,"md5_digest":"95ad5c32d28defb0ca543756ca335031","packagetype":"sdist","python_version":"source","requires_python":null,"size":6909749,"upload_time":"2016-04-08T08:39:17","upload_time_iso_8601":"2016-04-08T08:39:17.611195Z","url":"https://files.pythonhosted.org/packages/e0/66/c609a958a86846a690f5cad1cd035cdefeb18e6def1d2616da50c97a9841/Babel-2.3.2.tar.gz","yanked":false,"yanked_reason":null}],"2.3.3":[{"comment_text":"","digests":{"md5":"d3327185fa0ad36a23399ec3b7aaf946","sha256":"33fe6090337ecc785bfa3c452a97e378676a19593f795258721090eb3de94e43"},"downloads":-1,"filename":"Babel-2.3.3-py2.py3-none-any.whl","has_sig":false,"md5_digest":"d3327185fa0ad36a23399ec3b7aaf946","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7103155,"upload_time":"2016-04-12T09:55:33","upload_time_iso_8601":"2016-04-12T09:55:33.488208Z","url":"https://files.pythonhosted.org/packages/96/28/d8b07b9e2fa99cda9b7bd2a319a8ffbc15f704a2059584a490b06db58b49/Babel-2.3.3-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"7385ea5b37005f4b2015f971044431f6","sha256":"12dff9afa9c6cd6e2a39960d3cd4b46b2b98768cdc6646833c66b20799c1c58e"},"downloads":-1,"filename":"Babel-2.3.3.tar.gz","has_sig":false,"md5_digest":"7385ea5b37005f4b2015f971044431f6","packagetype":"sdist","python_version":"source","requires_python":null,"size":6917535,"upload_time":"2016-04-12T09:55:43","upload_time_iso_8601":"2016-04-12T09:55:43.770434Z","url":"https://files.pythonhosted.org/packages/8c/77/e39a94131df796b130981eef8355169680f6060572a730c3e9457353f299/Babel-2.3.3.tar.gz","yanked":false,"yanked_reason":null}],"2.3.4":[{"comment_text":"","digests":{"md5":"9bdf9ce4df64492c4d3cced201dc8032","sha256":"3318ed2960240d61cbc6558858ee00c10eed77a6508c4d1ed8e6f7f48399c975"},"downloads":-1,"filename":"Babel-2.3.4-py2.py3-none-any.whl","has_sig":false,"md5_digest":"9bdf9ce4df64492c4d3cced201dc8032","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":7083486,"upload_time":"2016-04-22T11:54:36","upload_time_iso_8601":"2016-04-22T11:54:36.432806Z","url":"https://files.pythonhosted.org/packages/b4/ec/acd307eac2e23f9cab1c8bdbe29b3b1d43215e31c32f8aa91b3a97925b5b/Babel-2.3.4-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"afa20bc55b0e991833030129ad498f35","sha256":"c535c4403802f6eb38173cd4863e419e2274921a01a8aad8a5b497c131c62875"},"downloads":-1,"filename":"Babel-2.3.4.tar.gz","has_sig":false,"md5_digest":"afa20bc55b0e991833030129ad498f35","packagetype":"sdist","python_version":"source","requires_python":null,"size":6866920,"upload_time":"2016-04-22T11:54:57","upload_time_iso_8601":"2016-04-22T11:54:57.135590Z","url":"https://files.pythonhosted.org/packages/6e/96/ba2a2462ed25ca0e651fb7b66e7080f5315f91425a07ea5b34d7c870c114/Babel-2.3.4.tar.gz","yanked":false,"yanked_reason":null}],"2.4.0":[{"comment_text":"","digests":{"md5":"83f9f414cf1701247691ee962a7b5fe1","sha256":"e86ca5a3a6bb64b9bbb62b9dac37225ec0ab5dfaae3c2492ebd648266468042f"},"downloads":-1,"filename":"Babel-2.4.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"83f9f414cf1701247691ee962a7b5fe1","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6770598,"upload_time":"2017-03-24T15:06:35","upload_time_iso_8601":"2017-03-24T15:06:35.258742Z","url":"https://files.pythonhosted.org/packages/5f/cf/17935db603f7044d188ce3e3a6545c4b4500dbaa8835d50da2934b738111/Babel-2.4.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"90e7a0add19b2036a9b415630a0d9388","sha256":"8c98f5e5f8f5f088571f2c6bd88d530e331cbbcb95a7311a0db69d3dca7ec563"},"downloads":-1,"filename":"Babel-2.4.0.tar.gz","has_sig":false,"md5_digest":"90e7a0add19b2036a9b415630a0d9388","packagetype":"sdist","python_version":"source","requires_python":null,"size":6607513,"upload_time":"2017-03-24T15:06:52","upload_time_iso_8601":"2017-03-24T15:06:52.623362Z","url":"https://files.pythonhosted.org/packages/92/22/643f3b75f75e0220c5ef9f5b72b619ccffe9266170143a4821d4885198de/Babel-2.4.0.tar.gz","yanked":false,"yanked_reason":null}],"2.5.0":[{"comment_text":"","digests":{"md5":"bf29f5ecf187ce1265aee114915c6449","sha256":"e0d07af61ff43729f61dc838f2af283c315e671454e7cf9d744ac9c56cccfca6"},"downloads":-1,"filename":"Babel-2.5.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"bf29f5ecf187ce1265aee114915c6449","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774243,"upload_time":"2017-08-18T09:06:43","upload_time_iso_8601":"2017-08-18T09:06:43.358836Z","url":"https://files.pythonhosted.org/packages/88/69/bee7f293436ed3c653b34d9c89ff1324428639981dd6d2e7bc1b7adf2b95/Babel-2.5.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"03da8249c2684abcbd208a8d0f979939","sha256":"754177ee7481b6fac1bf84edeeb6338ab51640984e97e4083657d384b1c8830d"},"downloads":-1,"filename":"Babel-2.5.0.tar.gz","has_sig":false,"md5_digest":"03da8249c2684abcbd208a8d0f979939","packagetype":"sdist","python_version":"source","requires_python":null,"size":6612353,"upload_time":"2017-08-18T09:06:49","upload_time_iso_8601":"2017-08-18T09:06:49.607948Z","url":"https://files.pythonhosted.org/packages/3a/cb/46b76381ebda237c1b08d1c94394659679a4f1bd6475fe3703b303830ee0/Babel-2.5.0.tar.gz","yanked":false,"yanked_reason":null}],"2.5.1":[{"comment_text":"","digests":{"md5":"e075ef09710cce29f06f27ce84058fb2","sha256":"f20b2acd44f587988ff185d8949c3e208b4b3d5d20fcab7d91fe481ffa435528"},"downloads":-1,"filename":"Babel-2.5.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"e075ef09710cce29f06f27ce84058fb2","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774506,"upload_time":"2017-09-14T10:11:05","upload_time_iso_8601":"2017-09-14T10:11:05.880415Z","url":"https://files.pythonhosted.org/packages/36/80/99c5e2b07a4c85683f9884e993660bbb02051f77c4e63293348801aaa594/Babel-2.5.1-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"60228b3ce93a203357158b909afe8ae1","sha256":"6007daf714d0cd5524bbe436e2d42b3c20e68da66289559341e48d2cd6d25811"},"downloads":-1,"filename":"Babel-2.5.1.tar.gz","has_sig":false,"md5_digest":"60228b3ce93a203357158b909afe8ae1","packagetype":"sdist","python_version":"source","requires_python":null,"size":6612869,"upload_time":"2017-09-14T10:11:10","upload_time_iso_8601":"2017-09-14T10:11:10.959818Z","url":"https://files.pythonhosted.org/packages/5a/22/63f1dbb8514bb7e0d0c8a85cc9b14506599a075e231985f98afd70430e1f/Babel-2.5.1.tar.gz","yanked":false,"yanked_reason":null}],"2.5.2":[{"comment_text":"","digests":{"md5":"46beac3dd4bc3790f7a7f734cd400a23","sha256":"3dc5399f1d0672c200e69759612ed751cb9edc46fc2df1c5faf42a88f54b18cb"},"downloads":-1,"filename":"Babel-2.5.2-py2.py3-none-any.whl","has_sig":false,"md5_digest":"46beac3dd4bc3790f7a7f734cd400a23","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6776643,"upload_time":"2018-01-15T12:07:11","upload_time_iso_8601":"2018-01-15T12:07:11.794215Z","url":"https://files.pythonhosted.org/packages/6d/f0/32a4c2389e5a3c6507884cd4d7501b35d2bb8b2c0938e1d44ccfc6f238df/Babel-2.5.2-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"4556f987617b0ecbc8a36e6c75dcd071","sha256":"f9ecc03310233ffa9f2575bda3ebccf9ee3ece18ace7239aa83ca56a368844f9"},"downloads":-1,"filename":"Babel-2.5.2.tar.gz","has_sig":false,"md5_digest":"4556f987617b0ecbc8a36e6c75dcd071","packagetype":"sdist","python_version":"source","requires_python":null,"size":6648317,"upload_time":"2018-01-15T12:07:16","upload_time_iso_8601":"2018-01-15T12:07:16.632298Z","url":"https://files.pythonhosted.org/packages/ab/0d/03da6e363ef2aa2c0d84e373d49553fa2e90ef73a89d0994106acbea5220/Babel-2.5.2.tar.gz","yanked":false,"yanked_reason":null}],"2.5.3":[{"comment_text":"","digests":{"md5":"5b9542d0511bea97af2416b094ae2587","sha256":"ad209a68d7162c4cff4b29cdebe3dec4cef75492df501b0049a9433c96ce6f80"},"downloads":-1,"filename":"Babel-2.5.3-py2.py3-none-any.whl","has_sig":false,"md5_digest":"5b9542d0511bea97af2416b094ae2587","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":6774418,"upload_time":"2018-01-15T17:13:05","upload_time_iso_8601":"2018-01-15T17:13:05.900722Z","url":"https://files.pythonhosted.org/packages/94/03/14e68ad12e771a79cf96792f7158d68a7b3d8c7b2badf39e9ef1f65b57d6/Babel-2.5.3-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"152a6b17fe4110b95675aceb9af9fab2","sha256":"8ce4cb6fdd4393edd323227cba3a077bceb2a6ce5201c902c65e730046f41f14"},"downloads":-1,"filename":"Babel-2.5.3.tar.gz","has_sig":false,"md5_digest":"152a6b17fe4110b95675aceb9af9fab2","packagetype":"sdist","python_version":"source","requires_python":null,"size":6611941,"upload_time":"2018-01-15T17:13:13","upload_time_iso_8601":"2018-01-15T17:13:13.559913Z","url":"https://files.pythonhosted.org/packages/0e/d5/9b1d6a79c975d0e9a32bd337a1465518c2519b14b214682ca9892752417e/Babel-2.5.3.tar.gz","yanked":false,"yanked_reason":null}],"2.6.0":[{"comment_text":"","digests":{"md5":"9989ee4e3e12def96e4aa26d97f147ca","sha256":"6778d85147d5d85345c14a26aada5e478ab04e39b078b0745ee6870c2b5cf669"},"downloads":-1,"filename":"Babel-2.6.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"9989ee4e3e12def96e4aa26d97f147ca","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8098645,"upload_time":"2018-05-28T14:37:43","upload_time_iso_8601":"2018-05-28T14:37:43.585277Z","url":"https://files.pythonhosted.org/packages/b8/ad/c6f60602d3ee3d92fbed87675b6fb6a6f9a38c223343ababdb44ba201f10/Babel-2.6.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"c384ac03026e8fe6f9b90f55201f1bff","sha256":"8cba50f48c529ca3fa18cf81fa9403be176d374ac4d60738b839122dfaaa3d23"},"downloads":-1,"filename":"Babel-2.6.0.tar.gz","has_sig":false,"md5_digest":"c384ac03026e8fe6f9b90f55201f1bff","packagetype":"sdist","python_version":"source","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":7960433,"upload_time":"2018-05-28T14:37:47","upload_time_iso_8601":"2018-05-28T14:37:47.526462Z","url":"https://files.pythonhosted.org/packages/be/cc/9c981b249a455fa0c76338966325fc70b7265521bad641bf2932f77712f4/Babel-2.6.0.tar.gz","yanked":false,"yanked_reason":null}],"2.7.0":[{"comment_text":"","digests":{"md5":"b96fe47047fd07bc5797779d903d4fe2","sha256":"af92e6106cb7c55286b25b38ad7695f8b4efb36a90ba483d7f7a6628c46158ab"},"downloads":-1,"filename":"Babel-2.7.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"b96fe47047fd07bc5797779d903d4fe2","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8421834,"upload_time":"2019-05-27T12:52:03","upload_time_iso_8601":"2019-05-27T12:52:03.159790Z","url":"https://files.pythonhosted.org/packages/2c/60/f2af68eb046c5de5b1fe6dd4743bf42c074f7141fe7b2737d3061533b093/Babel-2.7.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"83c158b7dae9135750a7cf204e6e2eea","sha256":"e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28"},"downloads":-1,"filename":"Babel-2.7.0.tar.gz","has_sig":false,"md5_digest":"83c158b7dae9135750a7cf204e6e2eea","packagetype":"sdist","python_version":"source","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8244870,"upload_time":"2019-05-27T12:52:07","upload_time_iso_8601":"2019-05-27T12:52:07.393441Z","url":"https://files.pythonhosted.org/packages/bd/78/9fb975cbb3f4b136de2cd4b5e5ce4a3341169ebf4c6c03630996d05428f1/Babel-2.7.0.tar.gz","yanked":false,"yanked_reason":null}],"2.8.0":[{"comment_text":"","digests":{"md5":"7430e628b71a0d5973e3166bb54caac4","sha256":"d670ea0b10f8b723672d3a6abeb87b565b244da220d76b4dba1b66269ec152d4"},"downloads":-1,"filename":"Babel-2.8.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"7430e628b71a0d5973e3166bb54caac4","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8608706,"upload_time":"2019-12-31T12:41:07","upload_time_iso_8601":"2019-12-31T12:41:07.733575Z","url":"https://files.pythonhosted.org/packages/15/a1/522dccd23e5d2e47aed4b6a16795b8213e3272c7506e625f2425ad025a19/Babel-2.8.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"6fad9772e75421969ddb41975483abdf","sha256":"1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"},"downloads":-1,"filename":"Babel-2.8.0.tar.gz","has_sig":false,"md5_digest":"6fad9772e75421969ddb41975483abdf","packagetype":"sdist","python_version":"source","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8444381,"upload_time":"2019-12-31T12:42:10","upload_time_iso_8601":"2019-12-31T12:42:10.038608Z","url":"https://files.pythonhosted.org/packages/34/18/8706cfa5b2c73f5a549fdc0ef2e24db71812a2685959cff31cbdfc010136/Babel-2.8.0.tar.gz","yanked":false,"yanked_reason":null}]},"urls":[{"comment_text":"","digests":{"md5":"7430e628b71a0d5973e3166bb54caac4","sha256":"d670ea0b10f8b723672d3a6abeb87b565b244da220d76b4dba1b66269ec152d4"},"downloads":-1,"filename":"Babel-2.8.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"7430e628b71a0d5973e3166bb54caac4","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8608706,"upload_time":"2019-12-31T12:41:07","upload_time_iso_8601":"2019-12-31T12:41:07.733575Z","url":"https://files.pythonhosted.org/packages/15/a1/522dccd23e5d2e47aed4b6a16795b8213e3272c7506e625f2425ad025a19/Babel-2.8.0-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"6fad9772e75421969ddb41975483abdf","sha256":"1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"},"downloads":-1,"filename":"Babel-2.8.0.tar.gz","has_sig":false,"md5_digest":"6fad9772e75421969ddb41975483abdf","packagetype":"sdist","python_version":"source","requires_python":">=2.7, + !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*","size":8444381,"upload_time":"2019-12-31T12:42:10","upload_time_iso_8601":"2019-12-31T12:42:10.038608Z","url":"https://files.pythonhosted.org/packages/34/18/8706cfa5b2c73f5a549fdc0ef2e24db71812a2685959cff31cbdfc010136/Babel-2.8.0.tar.gz","yanked":false,"yanked_reason":null}]}' diff --git a/upstream-info/cairo.yaml b/upstream-info/cairo.yaml index f787bcfdfd37fbee26317f7a6d7e7a461f8540a1..240e03f5295ef10efe1402ea821a0e2555f9b698 100644 --- a/upstream-info/cairo.yaml +++ b/upstream-info/cairo.yaml @@ -1,8 +1,8 @@ --- version_control: git src_repo: https://gitlab.freedesktop.org/cairo/cairo.git -tag_prefix: +tag_prefix: "^v" seperator: "." last_query: - time_stamp: 2020-04-26 08:12:26.767627200 +00:00 + time_stamp: 2020-05-20 07:09:59.939807680 +00:00 raw_data: "e397679ce14807eae313570b91a4b6b4f0e67c34\trefs/tags/1.0.0\n995ed33726ac1e840ea1d6a28f48d6883a4bad59\trefs/tags/1.0.0^{}\n831602f6c763520ae779dd593f3d80e905cecaff\trefs/tags/1.0.2\n169e72d6b973a91747c642c5b6f799e6a2af879b\trefs/tags/1.0.2^{}\n1337aa4235e04867dd9a3f50fce649920cd3e168\trefs/tags/1.0.4\n8c188e45eed41a2a2ee38cdbce834ba139190eda\trefs/tags/1.0.4^{}\n4e0f5d73357f7dc7e76b197ec2a90bc60073c447\trefs/tags/1.1.10\n65e73c81b83222de873935cf384e514ea20ac854\trefs/tags/1.1.10^{}\ne2e2b8b404bdea83a7bedb4ad194e40189c240c0\trefs/tags/1.1.2\nd5dd5e6ebc43db103071b8b86284f4e38572b053\trefs/tags/1.1.2^{}\n466eab544f120cc89c8adc1be2b522580b978413\trefs/tags/1.1.4\n044bc5b2a51558046bc2d0bc3a8a50897571674a\trefs/tags/1.1.4^{}\nd481e6871a67342d2d2df1102b47d84051b17b4f\trefs/tags/1.1.6\n7ba3b75efd56113411ed141a86675099ae82d5d5\trefs/tags/1.1.6^{}\nf615d6ccd4c20310c5733a27b5e014acfcb1eb71\trefs/tags/1.1.8\ndd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9\trefs/tags/1.1.8^{}\nc2c260d8b6d15197d25d5c00d2051a4b1d38969b\trefs/tags/1.10.0\ncb0bc64c16b3a38cbf0c622830c18ac9ea6e2ffe\trefs/tags/1.10.0^{}\n1b93c2bf4c74b3c810f8eea49b9dcdb25be45a9d\trefs/tags/1.10.2\n4938e11ffe11781e4e294092807ebc67f362eac6\trefs/tags/1.10.2^{}\n3261641fb1848a8f7cfb53524e1b15ec8aaf8705\trefs/tags/1.11.2\nac9ee388faf3c8c5df502f6cc7b039f043154954\trefs/tags/1.11.2^{}\n1228c4803e139922c469db4693c77c8823e408a7\trefs/tags/1.11.4\na8dbc68056af9f32b6ebc6c1a0191e9ca7ec2e7d\trefs/tags/1.11.4^{}\nd818f75258d15d6f8f23f7e6696b7c343ef6d139\trefs/tags/1.12.0\na0bf6d25b5b68c897d63580d1ca9ee182f04cce1\trefs/tags/1.12.0^{}\n49e2073a88ea2186e6123e21aa60209f653883dd\trefs/tags/1.12.10\n2d6204c67d4d0d9c5d03087c4c1609a81ef1fdb7\trefs/tags/1.12.10^{}\nadf3d54c7fd3492e3a1222fa68bed163200c7943\trefs/tags/1.12.12\na201a1169f472e822a66275b7dffe62f241d8ec0\trefs/tags/1.12.12^{}\n25ef4d21f1616ddd9a6550cf7a129b2634b6caad\trefs/tags/1.12.14\n0dac37c41473deafa4a2f154187c5c3d08b07c91\trefs/tags/1.12.14^{}\n0ce626fde1b349d20b6cd09903699b8e6c5f981d\trefs/tags/1.12.16\n8e11a42e3e9b679dce97ac45cd8b47322536a253\trefs/tags/1.12.16^{}\n2b56f0bbe1b2cad1846e6c0ccfec1fd7f677763a\trefs/tags/1.12.18\nc5bba093dec4fc7addddb1a16b6a17e3a4c29555\trefs/tags/1.12.18^{}\n5ca23ab6e42efba637d92a91d7e2d996a6c88b5b\trefs/tags/1.12.2\ndbc0efad7e565558a3abf7f69d7675efddc4688d\trefs/tags/1.12.2^{}\n97bb2e59c8bd68a1a5f90ecd096dcd71713c8581\trefs/tags/1.12.4\n117abd85ac7ff41e484fe0d98f16704ec30abd09\trefs/tags/1.12.4^{}\nd7982acf5bfd16edba25110f8c3e2085029771cb\trefs/tags/1.12.6\nfab6958eff35a94cf46e38f19a7e75e10aa2b182\trefs/tags/1.12.6^{}\n213e80f75a3c205544693e1261db33f3c11ad88b\trefs/tags/1.12.8\ncc162915a55cc67587677352bd9e389f16117853\trefs/tags/1.12.8^{}\nc37b8a7b05cdfbea6744755fa7505456a4cbee49\trefs/tags/1.14.0\nf6fd372a8b31a0bebbdfe36090d6ffc7bab9a2f8\trefs/tags/1.14.0^{}\nc33d2e86467f68ff7c3951fcad51cd1d388a1329\trefs/tags/1.14.10\n05b63e807bb5f86f600283df1c3ca554778d90fa\trefs/tags/1.14.10^{}\nc700f258665acf0f34feaa9b1051dcdc6896605e\trefs/tags/1.14.12\n7cf32a065e7c3d8721ae5f4eccf6695152fe14b7\trefs/tags/1.14.12^{}\n58310876ffddf3147908a03707162b16e23eeef0\trefs/tags/1.14.2\n93422b3cb5e0ef8104b8194c8873124ce2f5ea2d\trefs/tags/1.14.2^{}\n3237f3ce2ffbc3207c5e62e9b0f112d9edebb935\trefs/tags/1.14.4\n0317ee7f61f1f4d154f7cb7e56d2b1080c2c644a\trefs/tags/1.14.4^{}\n796ba938e99a92c395099cbe16051a74acb73de1\trefs/tags/1.14.6\n9d3191da6fae7dfd914c3516d6ba369c9ba1a576\trefs/tags/1.14.6^{}\ndb75993b0d2cd7edd2b307446003ab26a3f4bb85\trefs/tags/1.14.8\n9b23aa0f9de4b0ccac8640bea43570b13f8f5a0f\trefs/tags/1.14.8^{}\ne96822697e9cfeafc1eee5ad7761f2d395dca8b0\trefs/tags/1.15.10\n95c464d5feaae58b6cc0990434ce2498cc315dc6\trefs/tags/1.15.10^{}\n5811a8e000ed639e0e01d87e124dcf2f22e5ca73\trefs/tags/1.15.12\n7149686456ec3c481fa1d3dbe76a0dab1e42b519\trefs/tags/1.15.12^{}\na312f0653ffe0350175d78b56aea79dd35c93661\trefs/tags/1.15.14\nd9aaea0c1e1484c632e1a6735c6ecc961c4b032b\trefs/tags/1.15.14^{}\n765ef89949efb5b0de77fabdbd947d255303cb3a\trefs/tags/1.15.2\ndb8a7f1697c49ae4942d2aa49eed52dd73dd9c7a\trefs/tags/1.15.2^{}\n51815eefbe42efd2e6874133530c475f9f220e21\trefs/tags/1.15.4\n9fe6683cb105354e86ea649ba7a13052c7edc757\trefs/tags/1.15.4^{}\nf686baf46425ae2d268b061854d4371fff58e870\trefs/tags/1.15.6\nc31721ab27c65941dd9e0c29662d7ebb5caa2a01\trefs/tags/1.15.6^{}\n33cc51495a2ea8aa9b03b8e601faacfa2bbc6090\trefs/tags/1.15.8\n112f0fc73b769c2db69f50601bf094892bd6db10\trefs/tags/1.15.8^{}\n8aa0aff1e6820177f20aa7fcea2fe507bbbb76c6\trefs/tags/1.16.0\n3ad43122b21a3299dd729dc8462d6b8f7f01142d\trefs/tags/1.16.0^{}\nd94f16d1d0bb7df8d0081d260f910a65eca416f9\trefs/tags/1.17.2\nd67be70805fc422aacdb75fb14f6fa482db649c0\trefs/tags/1.17.2^{}\nb89be73dd3824d536c895d49c6ab7bc172cc8144\trefs/tags/1.2.0\n61404bd5022b913f58ecda8dc9e8922b4fc6f80b\trefs/tags/1.2.0^{}\n606a245eed0f8ffde54918b219db5c5592b481f4\trefs/tags/1.2.2\nac1c748868bdf4ca6fd195b184ec90827f6e8c94\trefs/tags/1.2.2^{}\na8832092d4a01cb8c6c7140f3eb31b081c7b738f\trefs/tags/1.2.4\n54755b2d9891981d813384bccde84998def96abf\trefs/tags/1.2.4^{}\n28e379a587b718022dd0304e8a2fc6f34a9e75ff\trefs/tags/1.2.6\n8878bbc549a01868853ff6270b986e57c6474d88\trefs/tags/1.2.6^{}\n4ac555d65ba81e9bbfa46741f9f75b13bcb9b57e\trefs/tags/1.3.10\nb35cfde7f0e2896ccc1453f9716cb9b61c42cf94\trefs/tags/1.3.10^{}\nd1ed480fee3fa25ef72b487a0b25ad9023e02230\trefs/tags/1.3.12\nc34a1a75fdb886b7a69875fb92d30c6dfd9d39cb\trefs/tags/1.3.12^{}\na4ab005cb25bb470976c983fef224934bce730c4\trefs/tags/1.3.14\n90e453fc22398f31996a6fdbeec6da98e25a160e\trefs/tags/1.3.14^{}\n28233ac6743ece07c25057eb35852655a0c4d12a\trefs/tags/1.3.16\nb3e1fd8c1cbfc4db88bec4bb52821ed9380dbb4f\trefs/tags/1.3.16^{}\nb294d8dec628c9d1c1fedad64d1b9513544f0bd5\trefs/tags/1.3.2\n804e20b55d049a26fe4d96bb6d79890c65e43ab5\trefs/tags/1.3.2^{}\nbdc22c29cbe46e8b23a0a7cd40692ae0adc2646f\trefs/tags/1.3.4\n143c56cb12ee5d0b0fbc5e4039dd4fc88764254d\trefs/tags/1.3.4^{}\n99e0dbf241f8837b14f63e53df2183536402a058\trefs/tags/1.3.6\n648ef4487dfa43f20fb2c73e7b8e567f8a25497a\trefs/tags/1.3.6^{}\n8a2938488994da741ce666fa9d051fe0d68aad09\trefs/tags/1.3.8\n129b55f5fcc4c2ae5b63ac6eb73fce8a708e4874\trefs/tags/1.3.8^{}\n42da3152eed3b13324118372d13ef1a906ffa651\trefs/tags/1.4.0\n5dfa8c23f13f5cafac5cf56f34888a6e01dc79ba\trefs/tags/1.4.0^{}\n47df9ae46c3531b6acdcb44d663f12fd13ae22fa\trefs/tags/1.4.10\n107a74885a25e585b467c7841c6929a12aa62565\trefs/tags/1.4.10^{}\n07d39eb5666223a8b458e7a5d656201e920590cd\trefs/tags/1.4.12\n442fa9a106b01f17699397dcc95298071a50fd6d\trefs/tags/1.4.12^{}\ndc7f11d2c7efee3155e5e5e857740c963073787e\trefs/tags/1.4.14\nbdd93f5e8eb5726315cca396240afe7a084348ae\trefs/tags/1.4.14^{}\n981f24c082a26b7cd348e548058d4fa159f99cbf\trefs/tags/1.4.2\naba2b299db163d8a5b9d0a0214cd8a485fb87162\trefs/tags/1.4.2^{}\n8e63b5bd5e9668be221c6c8c130faaa8d7ad15a3\trefs/tags/1.4.4\nebba4a6d1467a8e5db5cc43eb08e8fc98c39b30a\trefs/tags/1.4.4^{}\n292173f86e70f26de2632c602120f74c7fd3fb69\trefs/tags/1.4.6\nddca8fec07ff95caeda6e4ce9efc3239b146bd2d\trefs/tags/1.4.6^{}\nfed28df066e5a875f4f26cd4dd252c18f4496149\trefs/tags/1.4.8\nfea4f344c46cf5f85c6af3102333008768c55063\trefs/tags/1.4.8^{}\nadf9c4d9f1988e5a91b0c364524e7784cb073e07\trefs/tags/1.5.10\n0f2ecb5ec65ff13c3aafbe57600c1906f3fe7978\trefs/tags/1.5.10^{}\n71ed91bc9914dd63635a1eb4f95b7b4f557400c6\trefs/tags/1.5.12\n3ec4b9a4fc96572f099d0e9679fec9e5eb97a32e\trefs/tags/1.5.12^{}\na457cfabe2873ab90bdb5ab29f393bae9bb26b54\trefs/tags/1.5.14\nf4d4d7b3d0bd62af6ffd50ba9cd8df0b9a12be71\trefs/tags/1.5.14^{}\n2ae4469920a3b34d5ef4f3df904ab7d571fb3a6f\trefs/tags/1.5.16\n5366c8f483dc7bd40b5d0a184c9b16826007c032\trefs/tags/1.5.16^{}\n2cca7e52ac5474c41be4aabe24e386b4a07093e9\trefs/tags/1.5.18\n6d6c8aa643603c2b5fd7baedc897d4698ba8bafb\trefs/tags/1.5.18^{}\ne5e1ff33c11caec2b117255f0d68e23dd2bc584d\trefs/tags/1.5.2\nee5dc04aaf81d6ce9c496c7966ceebfbd6ab12fb\trefs/tags/1.5.2^{}\n6bf90754284fe228ba484950dd88b769f187865a\trefs/tags/1.5.20\naadbaf7d990d0d5cd7c25cc856dbcfcc357b44f1\trefs/tags/1.5.20^{}\n0a0169d1f1ba5b631153c1ff4b558dd18a1f62f2\trefs/tags/1.5.4\ne0c0275e1764502cfd1d0e93e374b4ed396f0073\trefs/tags/1.5.4^{}\n7232c580ea59fa22e9461fb15026d7dba6b731ff\trefs/tags/1.5.6\nd2a02d4f5ccb1c6dc7f8cca0c322b72f1638d25b\trefs/tags/1.5.6^{}\n53f6d200aeacd6de1f5ef93a53f594de366df4dc\trefs/tags/1.5.8\n4ccb8cb29546432858e778e1b88cada1327f6f45\trefs/tags/1.5.8^{}\n8a0a7996feb123cbd2cdff03bac69a15a5a6ac2d\trefs/tags/1.6.0\nd6263bec89bcd1565fb0f56a9840cd6f7761097f\trefs/tags/1.6.0^{}\n8e1e46f9dde5a6d8c25bd7d72c6e5421f6972119\trefs/tags/1.6.2\n5bc6fd71398f8aa902fcffe2da5d1e70fb94aa8a\trefs/tags/1.6.2^{}\n2a3d010f5576a0cae0cd9aac14e2bd0527709098\trefs/tags/1.6.4\n08a804806355d99d7968976d6afb98bbc0f2613d\trefs/tags/1.6.4^{}\n836a2a6cdd1ce3776cfe3fb6baf2a4d265139587\trefs/tags/1.7.2\n057a832f9e806f9321648e47ee314a62e82e6ba4\trefs/tags/1.7.2^{}\na9aec7abe05076e18e55d1a4721ed65517a95a14\trefs/tags/1.7.4\n012a12a67b66f3809fa203f91ff8920936c25361\trefs/tags/1.7.4^{}\n7618ee27bd0a75073566e0773588ace1f04e52f9\trefs/tags/1.7.6\n005dd8499bca9521ab934a56c68d2b85042359b7\trefs/tags/1.7.6^{}\n860e2b8fcc64e7f54bb19137870dac49f6a1ab46\trefs/tags/1.8.0\n6b3aa86b1c5b2fce3e56b43142c4ec2664a37032\trefs/tags/1.8.0^{}\na2df04d2fd72febd3427c713474c885e9fdfcd41\trefs/tags/1.8.10\ndc7eba7564c1cf90cb4d330824e63053a51d3450\trefs/tags/1.8.10^{}\nd5c7bda74fe49106bdcbee71f1823989fa98adc0\trefs/tags/1.8.2\nf7c958d97221375fdcbb6c58c3b58c07676b7589\trefs/tags/1.8.2^{}\nec2afbd4c0fdecc14d2f65200f87dab227a14317\trefs/tags/1.8.4\n66e8f142e381501d114888c2d1fc1e7f6d6a9857\trefs/tags/1.8.4^{}\neb1012739437fe5f47a240cd5e15abc43a2c3380\trefs/tags/1.8.6\ne2a2eddcfb8fc73f3decdb91c00e8e6d5282e09c\trefs/tags/1.8.6^{}\n5965c25f84c79f04b3b595b7aae4c56468a245d5\trefs/tags/1.8.8\n7dd89ff7a1e04930045d9726f5f21330f54d3f24\trefs/tags/1.8.8^{}\n407e0e4ee9f137ea802873fcc253a69a82904180\trefs/tags/1.9.10\n0f1ff0daab7259ec16076f788760da4f35cb0cdc\trefs/tags/1.9.10^{}\n7964832af89c05727f2e0950ced5f3551e43159b\trefs/tags/1.9.12\naa4cd8287f47b4538e765e1b48dcbac19813a8a2\trefs/tags/1.9.12^{}\ne649754077f4364e96669c2de4791bfd0054f1fd\trefs/tags/1.9.14\ned8c6f42540f03a62fd64ad83b7c397528092232\trefs/tags/1.9.14^{}\n1bd9d63da95106cfbe4762d088414df9c6398e90\trefs/tags/1.9.2\ne9b9d2a7c17ca4b2bc2991fdc4893aed850578db\trefs/tags/1.9.2^{}\nb287cd55c75a6de85f221499b818bf2e9a51f3b9\trefs/tags/1.9.4\nad6334b9870c63e641b531d6e910c084b587d0f9\trefs/tags/1.9.4^{}\n478c97b154431280872ac915ea30e6c1318721d7\trefs/tags/1.9.6\ncb090136b2b0b89bde69d9575f2f592b46e144e8\trefs/tags/1.9.6^{}\nad7475a2d6b8055226e5b7fa8ce999b2d21702fd\trefs/tags/1.9.8\n3a20b10cd0d94406fbd5fe3bb3d4820a95364537\trefs/tags/1.9.8^{}\n9676f742d1fcfb14450508cf8b5c1b66c46b76ee\trefs/tags/LGPL_CHANGE_AFTER\nd7edfcacd918cb8d78a5694348fa21d77f17f6fa\trefs/tags/LGPL_CHANGE_AFTER^{}\n0068c663cc007523a7794f0c6cc6aec48a9f10ba\trefs/tags/LGPL_CHANGE_BEFORE\nb8f6633e9547ece19f73b85fdb1cb4f8625f1332\trefs/tags/LGPL_CHANGE_BEFORE^{}\ne9a30e08633cfea2367594ef0cabde5719ff429d\trefs/tags/RELEASE_0_9_0\n1049c3c077c6000e25001a1a55e5fc48cf12a61e\trefs/tags/RELEASE_0_9_0^{}\ne5b831b107ad18e78ec9ea5e6da68eb30bf71126\trefs/tags/RELEASE_0_9_2\nb3a4f29f830dbcb57ef3d1e4c3c140126752043b\trefs/tags/RELEASE_0_9_2^{}\n88955494ad8f94a103c79a1f1bbab92fd8f3df65\trefs/tags/RELEASE_1_0_0\n995ed33726ac1e840ea1d6a28f48d6883a4bad59\trefs/tags/RELEASE_1_0_0^{}\n5af154997df3d681013019273c7c9ecdb12e1f69\trefs/tags/RELEASE_1_0_2\n169e72d6b973a91747c642c5b6f799e6a2af879b\trefs/tags/RELEASE_1_0_2^{}\nf4203442e5c2ce8126de95982300989e8108fa16\trefs/tags/SNAPSHOT_0_1_1\nb0f8dcdc83d3487a5016d813a4ee3284784b78c1\trefs/tags/SNAPSHOT_0_1_1^{}\n7039000845a91b46af4c89e16e84fc7e97432166\trefs/tags/SNAPSHOT_0_1_16\n5df303fcb78a5388ed0017cecab8033368f57dd8\trefs/tags/SNAPSHOT_0_1_16^{}\ne34dde73595136d47ca904ffe8a3ade61fdd0b26\trefs/tags/SNAPSHOT_0_1_2\n944b1721e1910bc4d8caa97ae946b769f9ad2d8a\trefs/tags/SNAPSHOT_0_1_2^{}\nfe06ff81998befd6cc1df602794e7cc7e6736869\trefs/tags/SNAPSHOT_0_1_20\n350fea8877964f481fb60b2bd5477c87321fd417\trefs/tags/SNAPSHOT_0_1_20^{}\n12657d126236be292ff5494688378baea0e91ea1\trefs/tags/SNAPSHOT_0_1_21\n0f1b69b6ddd7714e03bd98f5c983c5c8bad9f27e\trefs/tags/SNAPSHOT_0_1_21^{}\nff844ebd0c08fabd51e233a26f6b4f5fc0eb0f5a\trefs/tags/SNAPSHOT_0_1_22\n7146e2fc48df28d462ddeab81dc3c55bee4a7527\trefs/tags/SNAPSHOT_0_1_22^{}\nd040602d32e5f2b7edd62937e4d82b0188f35777\trefs/tags/SNAPSHOT_0_1_23\n1d28eecd8b8dd5b3082bcdbb0455df1ad825bba7\trefs/tags/SNAPSHOT_0_1_23^{}\n29e5b9c44e8776092998d222002212e5e15777e9\trefs/tags/SNAPSHOT_0_1_3\nfdf1ed1185916b77dc36564f637ebe147acb537d\trefs/tags/SNAPSHOT_0_1_3^{}\nf2e47d0ecf97d82983e0e5d1a3ee6e7cc7096694\trefs/tags/SNAPSHOT_0_1_4\ndfcd68ecca8f6a627ba406cbd4123a3a1c5cac40\trefs/tags/SNAPSHOT_0_1_4^{}\n462062f4f5256fff9a820675731a39950295b116\trefs/tags/SNAPSHOT_0_1_5\n17c740eb6bb7567a0ac70afd339d1a0cc0bb979e\trefs/tags/SNAPSHOT_0_1_5^{}\n0e1f8ca5fc828e57148b17f949ad802b162544d9\trefs/tags/SNAPSHOT_0_1_6\n6d8d18e2dcdb2c829ec25659c1397f258c6b5a6b\trefs/tags/SNAPSHOT_0_1_6^{}\n308a76a51514bb87ffe0bc9f0e6ee888b1231bf9\trefs/tags/SNAPSHOT_0_2_0\ndb163fcc882251188e0ce63d0b9606cb59664da0\trefs/tags/SNAPSHOT_0_2_0^{}\n28a8f72b6a725a7d50e1a08c2b8dfb2edea5f9e3\trefs/tags/SNAPSHOT_0_3_0\n0b5ac24b1522b3287903c04fb894bfae4fc67403\trefs/tags/SNAPSHOT_0_3_0^{}\ne2b8c27770d5d6922ee421e48d5ae1f1261ca4ac\trefs/tags/SNAPSHOT_0_4_0\n6c38e238e5daab5df4c11027d28e48e62bbd4bc8\trefs/tags/SNAPSHOT_0_4_0^{}\nbaad60ca80017a804e43624318162d5d9c1ff2ef\trefs/tags/SNAPSHOT_0_5_0\n5de154bcdb659618d723bcec14e0315630c62c7e\trefs/tags/SNAPSHOT_0_5_0^{}\nb6a0a9de2e65d08d76aa7af34557c6415f6391cf\trefs/tags/SNAPSHOT_0_5_1\n6aff9afc22eb6c5c814992c5ca4b3bd437935d3a\trefs/tags/SNAPSHOT_0_5_1^{}\n95d27bec35dd50f31aad47f994efb993799a424e\trefs/tags/SNAPSHOT_0_5_2\n01dd527ef3cb3205e33ffec90a11fda11f0e281a\trefs/tags/SNAPSHOT_0_5_2^{}\n47131d78d6b73f906438681e55d0b02dd29e5b10\trefs/tags/SNAPSHOT_0_6_0\n73c2eada0d0c80763f0a953cce7fc144f7931fa1\trefs/tags/SNAPSHOT_0_6_0^{}\n89e60891a587741cfcbe9874c301138852805d95\trefs/tags/initial\n00807705bf00ce370bb5860db23edbc0fa507015\trefs/tags/initial^{}\n" diff --git a/upstream-info/delve.yaml b/upstream-info/delve.yaml index da56af76d02dd56864b32a9025f2815eabc3f83b..feb64e5f39e0aaf37b026e653a350d5623997017 100644 --- a/upstream-info/delve.yaml +++ b/upstream-info/delve.yaml @@ -4,8 +4,9 @@ src_repo: go-delve/delve tag_prefix: "^v" seperator: "." download_url: http://prdownloads.sourceforge.net/amanda/amanda +query_type: api.github.releases last_query: - time_stamp: 2020-04-26 09:04:21.263120210 +00:00 + time_stamp: 2020-05-20 07:11:10.626083670 +00:00 raw_data: | [ { @@ -255,4 +256,3 @@ last_query: "body": "[delve-1.0.0.tar.gz](https://github.com/derekparker/delve/files/1738674/delve-1.0.0.tar.gz)\r\n" } ] -query_type: api.github.releases diff --git a/upstream-info/dnsmasq.yaml b/upstream-info/dnsmasq.yaml index ad49f68c573e6c46d052b22415b7e0b175c4ecce..e86121615f82ea4ded03bcc12ec4142ed7deded3 100644 --- a/upstream-info/dnsmasq.yaml +++ b/upstream-info/dnsmasq.yaml @@ -4,5 +4,5 @@ src_repo: http://thekelleys.org.uk/git/dnsmasq.git tag_prefix: "^v" seperator: "." last_query: - time_stamp: 2020-04-26 08:12:29.979563250 +00:00 + time_stamp: 2020-05-20 07:11:21.115746380 +00:00 raw_data: "c9ca360c2719f5f0adf9e70dbba4fa7f1fe6ce77\trefs/tags/v2.0\n9e4abcb5acb18aa1adbc22bfc3ce60e9441b02ef\trefs/tags/v2.0^{}\n969dba8164fa67392cf98c8c40b0c9f40e07d056\trefs/tags/v2.1\n1ab84e2f3579b1bcd6b881c10bacfa735e3c5008\trefs/tags/v2.1^{}\n3b471a3f1126654db376b19f5436f0739538f8e4\trefs/tags/v2.10\nfeba5c1d2510b2a5dd9ec74d43a588696b485c74\trefs/tags/v2.10^{}\n74bb73f9475b74e0be7cd68c899acbc6357e5a94\trefs/tags/v2.11\ndfa666f24b0021af1ccfa764846cf86715a61709\trefs/tags/v2.11^{}\nbce0e2eb55362f05d8684abb80398e1a632f2a4b\trefs/tags/v2.12\nc1bb85048b4551445ecda00b30717e479c16b2d0\trefs/tags/v2.12^{}\n23e00e1b22f9a801c2a1bd08e6fcc0575138c139\trefs/tags/v2.13\n9c74ec03ca0a8150bb780ea45e43259f2c88c252\trefs/tags/v2.13^{}\n0002294f076dac8d99412d1fdb05ea11b37581bb\trefs/tags/v2.14\n3be34541c2cd009433a4f0468091ac6b3ab8add6\trefs/tags/v2.14^{}\n98e0eca85f7899b99c1eb8e8dc2da0b6a4a932a3\trefs/tags/v2.15\n36717eeefcfd6bbd3e875027112080a59fe1f5c1\trefs/tags/v2.15^{}\n6a9777e651198ab5dd382f32aa0832a17ed1caa4\trefs/tags/v2.16\nfd9fa4811dda712e9078b851e1608cbcc7afa898\trefs/tags/v2.16^{}\neb123d618c6f104fc2372e7e88979e1a46a30487\trefs/tags/v2.17\n26128d274798da97e0bb46625987ef5589ee89a8\trefs/tags/v2.17^{}\n473eb452a15e119061c1b2fc8bb90dbbf19b352d\trefs/tags/v2.18\n59353a6b5643cf71f1af21a68d734da68ec95bd1\trefs/tags/v2.18^{}\n5ca3a85a669ca9b1742be619069a944530f2844a\trefs/tags/v2.19\nbb01cb9604d6cae2f1514eca174b5db080c716e9\trefs/tags/v2.19^{}\nb9e2acca50cdd2982eb023feb006dfd744bc40b2\trefs/tags/v2.2\nb49644f39fe5b77d085f9c6b21e73b8cb50a5c70\trefs/tags/v2.2^{}\n5f4f3d8111dc8dfa1e44f0e417b84989bf43024e\trefs/tags/v2.20\nf6b7dc47c76970a60a54449e681d43f01cd27fe4\trefs/tags/v2.20^{}\n373b3a89e6f5493c8631b131c7af539aa8ed5063\trefs/tags/v2.21\n0a852541d394503d1d345148e9b885faf760e140\trefs/tags/v2.21^{}\n7b4770a043fb1751c64aa2da65e3958feb518649\trefs/tags/v2.22\n91dccd095886afb65935f0bf191de52758f79d69\trefs/tags/v2.22^{}\ne4cca86081b555a99680841590f7b1ba6831f012\trefs/tags/v2.23\n3d8df260e14e56db858f75c2333dbd49131cfe73\trefs/tags/v2.23^{}\ncba458405e4dbcd66de424738b6d46e35dc0da85\trefs/tags/v2.24\nb8187c80a87e24f60ceae78dff3687137c5a61de\trefs/tags/v2.24^{}\n6767a6681d384641e5ee9446dd6956f2889ce798\trefs/tags/v2.25\ne17fb629a2ffb3c12faa4e83da529e7c73841949\trefs/tags/v2.25^{}\nd6dd078779ade89ec5b4eebda834001fb7ddc2b9\trefs/tags/v2.26\naedef83058d9001f6d327a7c077d08c195e4d42b\trefs/tags/v2.26^{}\n2eb373d075cdd5b9ab5b0e337803a261c72b32c5\trefs/tags/v2.27\ncdeda28f828404536a2cc9cff1bf4a500244f64e\trefs/tags/v2.27^{}\n8e5b45c7943f94380c2d9fee5fbbe1fe9e009237\trefs/tags/v2.28\n5e9e0efb01c4de8395364ab65b0e88b9d196290f\trefs/tags/v2.28^{}\n8560d6a008c006402e707ecdca5fa7123b6dfc05\trefs/tags/v2.29\n309331f52cf52e5934c59d57cf37318013533101\trefs/tags/v2.29^{}\nb6da86b9c334b72d19597b57b61651591378ae52\trefs/tags/v2.3\n44a2a3165c78839d8f6237868597b59c67614362\trefs/tags/v2.3^{}\nca31cca76f65f7044b622f38f184d431ccc757e6\trefs/tags/v2.30\n26d0dbaf2496cfba2abd837fca8b783608b1eadc\trefs/tags/v2.30^{}\nd738a35fd154ae3288ffc63245315bbbb80c0551\trefs/tags/v2.31\n7cebd20fe7671ba108625b8d863293da7ca40b09\trefs/tags/v2.31^{}\nc4a0b1dabd270a5fdb380c0ce491634388b8ad70\trefs/tags/v2.32\n849a8357ba2ea8c8f9e030b2b3a4418c054fb38c\trefs/tags/v2.32^{}\n2afceb47d565ceef51e9c34d5e042af5b8920ed1\trefs/tags/v2.33\n208b65c5cf0b8277371a0e787005ad66ee3027a8\trefs/tags/v2.33^{}\n8d97fedffa05c1e18de495875443a0dac4a935f9\trefs/tags/v2.34\n1697269ce7ab6a0ef74d442028df9df4b07d857c\trefs/tags/v2.34^{}\n9cfae2d8fa1603cca05eb2cbc68868d54620044b\trefs/tags/v2.35\n4011c4e05e93238eba05d7b51e50f69a2f2be122\trefs/tags/v2.35^{}\n342792032af65e18b7d19e77d3f51dd92aed81f0\trefs/tags/v2.36\n832af0bafb81e7427b062f73d0e7ece21c77a530\trefs/tags/v2.36^{}\n5f91c11ab19db0cec821a3328e952c80c6abd895\trefs/tags/v2.37\n1b7ecd111d7442a638ea56f679469cadb0be080b\trefs/tags/v2.37^{}\n796948e48c6202551290328ac8d27961c23f887c\trefs/tags/v2.38\n6b01084f8ea6177144fb000bd0c16fd642ed28a1\trefs/tags/v2.38^{}\n346bbf9f66002bf57308820bec7a131b394d1185\trefs/tags/v2.39\nf2621c7ff0ecf88ceeb240427d0be63f7c1cbb0d\trefs/tags/v2.39^{}\n56c4cf9245bad6656735ebfd8320255ec25cd399\trefs/tags/v2.4\n1cff166d3751accd573df6babd2b7395080de704\trefs/tags/v2.4^{}\nb379e5436c3b5a08144a59df9396cde0a43cf918\trefs/tags/v2.40\n5aabfc78bc90d34f64dc43a9851556dde1aa103e\trefs/tags/v2.40^{}\n5da1a92339fa90c13df74b7a48996e67ba61e2f5\trefs/tags/v2.41\n824af85bdf7a19ea2281b85826180696fed22125\trefs/tags/v2.41^{}\ne7e30eff59688f1cae5f28d7387c5787028b1ef3\trefs/tags/v2.42\n9e038946a1b7e31b1be2160843d132cf6e55ac20\trefs/tags/v2.42^{}\nb9baf0e9f52d63e0cbf454c6070e90e485f2f55f\trefs/tags/v2.43\n1a6bca81f6ed40376fda37cca6c5c38e2ec7e187\trefs/tags/v2.43^{}\nde2c2cca39dad45f2a9d356dc0908609d17014c5\trefs/tags/v2.44\n3927da46aa47328bcb58aa10429f590897e40fb0\trefs/tags/v2.44^{}\n19b620697baf94eea0ac774dc7d4c8a5e225ce8b\trefs/tags/v2.45\n1ad24ae15c799bff2d644cc02bc272ab91cf6f79\trefs/tags/v2.45^{}\n94d4e8370fb0415fbe65d80e40274b0cacc4b280\trefs/tags/v2.46\n9009d74652283dbc47e7701664165170615f25b9\trefs/tags/v2.46^{}\nbe7a586eadeff964dd8901193c2cd2e8962387ea\trefs/tags/v2.47\n73a08a248d45ca4ed6e5454a174d7248fdbeb17d\trefs/tags/v2.47^{}\n54921f378cf33ba79c126cf89b78a729d0f49867\trefs/tags/v2.48\n7622fc06ab82e532fef4230dab6d8a0bae8353a4\trefs/tags/v2.48^{}\n5ae16f9150e39d62fb9dbf6f9bd2571d598e4578\trefs/tags/v2.49\n03a97b617071ce506357ac9b505d39fa283833ec\trefs/tags/v2.49^{}\nbc86962c6625af6ced73f3086066b03881cd5b3b\trefs/tags/v2.5\n8a911ccc75ceeb7229b4bf9619b36652e01ef3d9\trefs/tags/v2.5^{}\n0c0a77bd38f88eabd4c07773cb9064631592ba7c\trefs/tags/v2.50\n77e94da7bb3839872abca8e3b8733cfe649d404f\trefs/tags/v2.50^{}\ne96e28f9e70f4cbac9e6c0db158cc10cdf1cf958\trefs/tags/v2.51\n1f15b81d610eb7c9612814603221d25871927833\trefs/tags/v2.51^{}\n74a2edac3cd243d351706bc0820b126b0fe2b18a\trefs/tags/v2.52\n316e2730acfc439c6bb12beb7c286daffb3cac4e\trefs/tags/v2.52^{}\n894e580c77491d6569d965eac33753ff7a97d8d1\trefs/tags/v2.53\n8ef5ada23888ba41cf9f87e81392eff60c767fd8\trefs/tags/v2.53^{}\nc0d3027f165a1d3a4bb7ed250e457d41db493739\trefs/tags/v2.55\nc52e18973444f7f61b86ead0b5c5a384e77ec21c\trefs/tags/v2.55^{}\n1e757ee98fe3f0eced1039a367a6e81a0df014bd\trefs/tags/v2.56\n28866e9567f1ef1cb12d19e78e0e5d5a0335c059\trefs/tags/v2.56^{}\n1d96eef08d9ae48f2fc37dcebf080289acd3d0cb\trefs/tags/v2.57\n572b41eb503fd765b5a195abd799043989363791\trefs/tags/v2.57^{}\n4e360f9d025e0c709d6f1fb85d785faf19f91f1d\trefs/tags/v2.58\n7de060b08dc8f7ea9fd1f972e3c55beab2df51b1\trefs/tags/v2.58^{}\n8125907f8050ca9836cac1403e455937df1f2769\trefs/tags/v2.59\n74c95c25425154af858de72773eb643fd5712e72\trefs/tags/v2.59^{}\nefe9e26e4b03f63dc8a79a78622149bd08e27c3c\trefs/tags/v2.6\n33820b7ed94cee97017eba9ec695951944c96a4d\trefs/tags/v2.6^{}\n744a4361a404a7bb6e5f637979cea32dce59d466\trefs/tags/v2.60\ndf66e341de38e982673e06369b6c4a7097b7621f\trefs/tags/v2.60^{}\ncf8cf5f7aca8a804de233ec0e90fe1d3ed7f3535\trefs/tags/v2.60rc1\nbc5992daf651b52025b42c6031fa98a5e122ea27\trefs/tags/v2.60rc1^{}\n140e135a54c0660cbf6dc678f5670a05bc162d98\trefs/tags/v2.60rc2\n552af8b988ea80218c60a5b0fb5baccd1c2e1301\trefs/tags/v2.60rc2^{}\n34addb3b174b884bdeb0304badc8463557a64681\trefs/tags/v2.60rc3\nc46c7c7584e069a4a4158683c002f08e307d66cc\trefs/tags/v2.60rc3^{}\n773ccf93830847cf2bd565dbccc12a2cf14c1217\trefs/tags/v2.60rc4\nb7f4020133da5e894a4c72a0b51518d0709e8b8e\trefs/tags/v2.60rc4^{}\nc597f07c0d9e200e76a70a49338a6f82c0088416\trefs/tags/v2.60rc5\n22b135a1168667da16373199cc0c873520b8fd97\trefs/tags/v2.60rc5^{}\n8d76cc98a96599cd4988ff6ebdb8a19e2707d833\trefs/tags/v2.60test10\na2761754da41275e556c1f1a15eb492108e8d619\trefs/tags/v2.60test10^{}\n0f16ff9e67d457d05f89cc1385271cb69aa1b6d0\trefs/tags/v2.60test11\n0793380b4038e5cf4c0ebaac27c0dda8cd0e232c\trefs/tags/v2.60test11^{}\n54c478fc480d416247e2683a6f2b1bd7094e1b9c\trefs/tags/v2.60test12\n57f460de2f19ba9b4fbe1bb0b680c220312daa10\trefs/tags/v2.60test12^{}\n16c9ae9b7a83437410392e9782f72717f57368b8\trefs/tags/v2.60test13\ne44ddcac635f009c8e1b8c473bfecdc31b6e65bc\trefs/tags/v2.60test13^{}\n6b32dbfea4d6f56ab7c37c3b284a96e709b412a7\trefs/tags/v2.60test14\nc5ad4e799861dc1477c25a74e800cfd4a2916bc5\trefs/tags/v2.60test14^{}\n580ba2b5cacb4c403227043ccf53fe00aaa6308c\trefs/tags/v2.60test15\na4a5205fd761f7394d37adf1a52e1335fd59e1d5\trefs/tags/v2.60test15^{}\nde206c2f14c8dc10b77ac9ef8a929eae3559d093\trefs/tags/v2.60test16\nc5379c1ab6c077734d3855dd36e1f45683a291b4\trefs/tags/v2.60test16^{}\n51391fc3edf06432c36b773bcc58aa84dc2b4878\trefs/tags/v2.60test17\nac8540c3c5ab8c5468bdda0253017d2081ccdf4e\trefs/tags/v2.60test17^{}\n7e75670c5be18919f4068fb2722718190f661d00\trefs/tags/v2.60test18\n0d5d35d052e44fb0638dfa6ad177e57659f4f58a\trefs/tags/v2.60test18^{}\n8228e408cc62d22e99010e2a2d8c0cb9a02174ba\trefs/tags/v2.60test7\n984d2fded6515f10fc6f127d928be2294a1224ec\trefs/tags/v2.60test7^{}\n103d3e92072c9b9195d8da1288e212501e2aa1a6\trefs/tags/v2.60test8\n205fafa57767db68a0fb810616d1756a4ce2a1e4\trefs/tags/v2.60test8^{}\n24a91d53e3645f095a5123b3f31a61ea9c860080\trefs/tags/v2.60test9\n915363f976064224958985f2a4b090c668d9fe9f\trefs/tags/v2.60test9^{}\n138ec8e2a316a6cf25730b83137c23b470cfceef\trefs/tags/v2.61\n7f61b3ad59ba33f1fcf802a50d2bdb9dd0bbe9ed\trefs/tags/v2.61^{}\n5abb9734d510837bd818f2f36587ff9d588acf91\trefs/tags/v2.61rc1\n83e854e359c132fbeeed5aab59003d62efb3dbdb\trefs/tags/v2.61rc1^{}\n3aca7fb9c5f3d1e099eeabba6d193b1b658204ba\trefs/tags/v2.61rc2\nd1c759c5c13d18a27de51d9a1c6475df4ba47a08\trefs/tags/v2.61rc2^{}\nbc4741ae3c215b8e39c6ac7cf41a9c979075c76c\trefs/tags/v2.61rc3\n61ce600b20a620c3c93a4e50b445812211bd0371\trefs/tags/v2.61rc3^{}\n4e7bc8f23c1843f51332dea4c8dd6dc4fdc1655c\trefs/tags/v2.61rc4\n19d69be2201326faecbf7628397db7ed5a9c7dd6\trefs/tags/v2.61rc4^{}\nb60b2e14a664f163d505c11ea21e1d3708f9eb79\trefs/tags/v2.61test10\na8131113790c0858990eaf4e2fb34f3ab91b99db\trefs/tags/v2.61test10^{}\nfcf3882b6f3d6c2e31a1cd0ce36575e1352134d3\trefs/tags/v2.61test11\n89382bacaa4c65e34dfb4aad5b183d8f33dfb8e5\trefs/tags/v2.61test11^{}\n05f79098413faea9f09f498b8912ae9be1744acc\trefs/tags/v2.61test2\ndd88c17f152b2a30e7004d5fcca1e7503157452f\trefs/tags/v2.61test2^{}\n046d4efb63bdad9620c3224ec2a69563110b4323\trefs/tags/v2.61test3\n2a82db4cafbb826ecfd84b79d8c7ffac6d99b285\trefs/tags/v2.61test3^{}\n8227dde016c435143b1407ba24ab4437c653ba97\trefs/tags/v2.61test4\n8643ec7fea3d5cba09cb5f0d553a72afb299aa68\trefs/tags/v2.61test4^{}\n5dd36a04123174f19d3a152b99faa639d53da025\trefs/tags/v2.61test5\ne759d426fa08a65455061823ffb83efaf3972fbb\trefs/tags/v2.61test5^{}\n822b31651e7199e194b288f2c154bc5a405483cf\trefs/tags/v2.61test6\n353ae4d2707f51ad5e708aed39de9700f0311096\trefs/tags/v2.61test6^{}\nad64ab1e6a60fe977ffe599faeecef1eb18f420d\trefs/tags/v2.61test7\na9530964859fa901380e523a6c1c2fe5a8b75afd\trefs/tags/v2.61test7^{}\n3f5ff0ecd04f27284a8f6e2877995628d3ffe128\trefs/tags/v2.61test8\n30cd96663fb0d20032ecd3bd443fbb64b6356f90\trefs/tags/v2.61test8^{}\nc46ef63772ce9e8410d2c0601dc5d90111e041ca\trefs/tags/v2.61test9\nc8257540bc4f36757b73ced65ae49f3560375b7f\trefs/tags/v2.61test9^{}\nf5cb8e3870f31f1206e19388e4606b635d07e5b3\trefs/tags/v2.62\n24ce681e5154e10b347bfaa3570c4446b9682784\trefs/tags/v2.62^{}\n7d291bd6f0b1bb66c492e07b3a406c64d7e0bd0c\trefs/tags/v2.62rc1\n9f7f3b1216f56cf53a2448ac4b8325b1c4ec4085\trefs/tags/v2.62rc1^{}\nfd71681896c905fe55d9b7f99ff52fa9089f60c7\trefs/tags/v2.62rc2\n51931b888a3b7063d8c28634dbbcc3eb2676ef82\trefs/tags/v2.62rc2^{}\n91d5a875446941704f3f2698aef6028f74bc2dfa\trefs/tags/v2.62rc3\n5ae34bf3c86ec8f0620e8294bb9e68ea7f420a14\trefs/tags/v2.62rc3^{}\ne5f41a9b0c7e465e7789fc60f5f2e8aec35bbf1c\trefs/tags/v2.62test1\n068b4b51e3328bf42cffd871d79523c5fe8a203e\trefs/tags/v2.62test1^{}\n93a30a6fa6773e490ddb4866e3e5b9198e9626a4\trefs/tags/v2.62test2\nc64b7f6a7828b74a13836aee84f5bcdc30fb374e\trefs/tags/v2.62test2^{}\nf7535171ac3c6713eeaca89973a8b0db0606b33f\trefs/tags/v2.62test3\n18c63eff8f14473da47b33dcc92494dae40474a2\trefs/tags/v2.62test3^{}\n281925bc478c06ca60832759336e364c8c352215\trefs/tags/v2.62test4\n8767ceecd49f8f935e8b2f269d20be5c5bef0da8\trefs/tags/v2.62test4^{}\n2db455fb5f1196ca48f9808a26505f33b9744708\trefs/tags/v2.63\n5f11b3e5e035f0f3cf523ac5a8403eb890868eea\trefs/tags/v2.63^{}\n513687f6bb5699e322e5cf9994128668f8ffa8ba\trefs/tags/v2.63rc1\n8223cb15e7ac0ae328d3ad37242c0db5b343c302\trefs/tags/v2.63rc1^{}\ndb5a036dd4144a3552ef44e163673918770ff0d1\trefs/tags/v2.63rc2\n132255b5daf6d026268217a4cb153fde3c2c6445\trefs/tags/v2.63rc2^{}\n68e92ea838ba7fda29228708bbadded472731cd5\trefs/tags/v2.63rc3\nc740e4f342a2a5de9d9e09bfe450e8996d25a9c7\trefs/tags/v2.63rc3^{}\n39b1507df92a0b2283e22145ddf32f97293c3f20\trefs/tags/v2.63rc4\nad094275b09782a526cba6413aeb574b132089dd\trefs/tags/v2.63rc4^{}\n0432eaf56fb1035e2441fa2e3c2076c8e572ad3b\trefs/tags/v2.63rc5\nfd05f127909bbf4f6983a4de2dcb611947488dee\trefs/tags/v2.63rc5^{}\n7b524fbeb3ba3594b31e436108058c1d51bbe67f\trefs/tags/v2.63rc6\n5f11b3e5e035f0f3cf523ac5a8403eb890868eea\trefs/tags/v2.63rc6^{}\n313de9df2e4c7841d34a6acfa8d124b0e07f8692\trefs/tags/v2.63test1\n54dd393f3938fc0c19088fbd319b95e37d81a2b0\trefs/tags/v2.63test1^{}\n202fd8e7b6f8f724d98be01e5a28b45ea9bf1438\trefs/tags/v2.63test2\n05ff1ed7cc237da3b2d901df6f1d5e863b488f6a\trefs/tags/v2.63test2^{}\nf539719bf0b67674050c92e2d2f58278de240537\trefs/tags/v2.63test3\n611ebc5f1e1d082a9763334d9de2c27cf436fb4e\trefs/tags/v2.63test3^{}\ncac32c28a9d669db801b19ebaebcdaf046589bc8\trefs/tags/v2.64\n29d28dda95d77250197a4cd3e199540e13317441\trefs/tags/v2.64^{}\n85768f42895b217cc87de454fc47845cb13337b0\trefs/tags/v2.64rc1\n8e4b87918fab1788438463e3f54dac2472318c34\trefs/tags/v2.64rc1^{}\nb2e688419c06921a41a364645d2ff92f39fe0553\trefs/tags/v2.64rc2\nd89fb4ed4fedb1d79900eb62ac66f4efbcad6a0f\trefs/tags/v2.64rc2^{}\ne816c476b03a1a4fae3e1bcdbd1bf89346e05919\trefs/tags/v2.64rc3\n29d28dda95d77250197a4cd3e199540e13317441\trefs/tags/v2.64rc3^{}\n7f19b19408522e86444ddaa62181e87f00780aeb\trefs/tags/v2.64test1\n2e34ac14037517975134bbb54aa666696438c3ce\trefs/tags/v2.64test1^{}\n0c4843b02bff58ddbc50d613684044b7749fcecd\trefs/tags/v2.64test2\n12d71ed28ce0bfc3906140e565180489f6f6ac30\trefs/tags/v2.64test2^{}\n041ebf9593af88b27d4ff04eaaa4b6b1b0179097\trefs/tags/v2.64test3\n4d0f5b4c44e66eb6c426180186b4619bd2f43046\trefs/tags/v2.64test3^{}\n35422eef922adc172efbe8a1fba5ac89ed0bd08f\trefs/tags/v2.64test4\n8b46061e735f88fee6ecc7ceab4f3974e6bd38cb\trefs/tags/v2.64test4^{}\nf6cf4209e53bd54b9b523aa6b301b3f96ca52cff\trefs/tags/v2.64test5\n35239a302ac9de0f54ce163550208f7f39ff68f2\trefs/tags/v2.64test5^{}\n5bcbd706a514decd2c0076d335bdec6cbd789d89\trefs/tags/v2.64test6\ne4807d8bb253dc9fbc377f7102edffe17238de88\trefs/tags/v2.64test6^{}\neb01edc4151edd1714a6ca5726d91b090e5efcce\trefs/tags/v2.64test7\n23780dd577aa2003370f0d6b31bd5f5b9c51c494\trefs/tags/v2.64test7^{}\n3e6332a8777f9649e5baca99ddb597ca2648ba37\trefs/tags/v2.65\n8f6698643b087df61e2e22248f44ef5183db16a5\trefs/tags/v2.65^{}\n5269c29605c0352a6b254cd21941752e54cd9773\trefs/tags/v2.65test1\n7c305be1bd207898cd24e6af6adfecc106b541d8\trefs/tags/v2.65test1^{}\n3a567ca7430b50989793f2d625198cb829f81d15\trefs/tags/v2.65test2\nee86ce68fc6ba371c3368c31aa548c635757270e\trefs/tags/v2.65test2^{}\nd77882a108b438c8fcf0e3629bca28717ebe69a4\trefs/tags/v2.65test3\n8ff556739efc6adacc079cf5dd479d5c3a3e0684\trefs/tags/v2.65test3^{}\nadda5d21cc0d0df308b33631a2eb30aeb9e5455e\trefs/tags/v2.65test4\n429798fd088573c03fb3f18619472dcb22de45ed\trefs/tags/v2.65test4^{}\nb2be2730560bfd282ef5a8ea60505deff683e1e0\trefs/tags/v2.66\n834f36fe6de1f0d1ad9acdc2b464f754ee9c312a\trefs/tags/v2.66^{}\nefbcfaa0d527e4b6a48958a051178da3fc771974\trefs/tags/v2.66rc1\n3ddad2460856f5d5d968eecc08da43f06764931f\trefs/tags/v2.66rc1^{}\nc8a9df4ca2dcce1ccc2e01ee7dab73d8f39a6c93\trefs/tags/v2.66rc2\n9f9bd08af8cfdb59201cbd03542c920d5d462d61\trefs/tags/v2.66rc2^{}\nc35153bddad8304324fc02b8257bb27999a5a3e9\trefs/tags/v2.66rc3\n8ac97873502c9dbae2ac61c86cb576685b9b81dc\trefs/tags/v2.66rc3^{}\nbd49258e63e442928f3cbda7a6433b31711fe134\trefs/tags/v2.66rc4\n96c727fda6db70352deb62b861e3d6c615dd5740\trefs/tags/v2.66rc4^{}\n1163c6240deb646719d7180b6375a08e34b6d4fa\trefs/tags/v2.66rc5\n9de1aa9b7ff44228ec3d3a1d02d5189fd9bf1b54\trefs/tags/v2.66rc5^{}\n6977e803a1f742f231e8d1a9e1fd64434bf8ab96\trefs/tags/v2.66test1\n9def963c65730d1d3bb083058ff2dce2318de847\trefs/tags/v2.66test1^{}\n777453006d7c27cea57cc122731b9f33a046fbbc\trefs/tags/v2.66test10\n459380965ad6becd285fdc95e5b663e1f5c29bb7\trefs/tags/v2.66test10^{}\n6d539f6ee703cb98c61634d2d8920fba0fcf5e96\trefs/tags/v2.66test11\n30393100c1c80cf51e92af957fb87448f2099cfc\trefs/tags/v2.66test11^{}\n467fd6ba47ab6418a0fe4d75dffde29baa45b6e5\trefs/tags/v2.66test12\n22ce550e5346947a12a781ed0959a7b1165d0dc6\trefs/tags/v2.66test12^{}\n1f76459b76b03db035a25320269f0c31c202ed6e\trefs/tags/v2.66test13\ne25db1f273920d58c5d2e7569cd087e5bd73dd73\trefs/tags/v2.66test13^{}\nf1f5265e110e95ab1a7f35a8b1e16df3044c2fea\trefs/tags/v2.66test14\na21e27bc991bb22b1926ef2344e66b82abf332b4\trefs/tags/v2.66test14^{}\n607be8a6a92f541c15dfe8efb15e4d9f0091c7d1\trefs/tags/v2.66test15\ndd1721c79954f3d5a728d242d37dd45761c566ed\trefs/tags/v2.66test15^{}\n83d1c01d858a550bf2014fd925a5ded5566ad61e\trefs/tags/v2.66test16\n4038ae200598b47b8a93a87981cdf851bc1bf757\trefs/tags/v2.66test16^{}\ncb48fe92d68d0dc7f5c5af0e2f27a7febdd0837e\trefs/tags/v2.66test17\na6ebfacf7bdd41524c6cf5fb4ee1326b6d772406\trefs/tags/v2.66test17^{}\ne28ab87ae03e6de479293c4f75292c8da04710f3\trefs/tags/v2.66test18\ne28836bf456112e6f3c44c4d6c27bf545331fdbd\trefs/tags/v2.66test18^{}\nb682b9b5bce1b3f150de3a801fa4b2181beb76b2\trefs/tags/v2.66test19\n3a654c506fb040fc94746e6ee9025fef097f87cd\trefs/tags/v2.66test19^{}\n5a33610c591a5fedb08e94271bfa546971ebe616\trefs/tags/v2.66test2\n1b75c1e61ffc9be8648a646f6300f8d4d04f0e47\trefs/tags/v2.66test2^{}\n14ab40fb74b0e145057a491acd7d3ae0eeba7d85\trefs/tags/v2.66test20\n52a1ae72f0c3a5d7629b54d0fe401388a34b5b74\trefs/tags/v2.66test20^{}\n3201738968bfcaa778780505447d7a4997ebdb22\trefs/tags/v2.66test21\nc630924d66b7ebf6b21f634cbe6fd4619596f9d4\trefs/tags/v2.66test21^{}\n74b1d30ed0b8e4a5e2b5177633738150b434a7d8\trefs/tags/v2.66test22\na1a79edaeab9bbbaeeacc23cafc872ea511f6a43\trefs/tags/v2.66test22^{}\n983b88bd68d1cac47517d0eeb0d7a3bc1080c93b\trefs/tags/v2.66test23\n6e37ab595ce42f5084469b9e23c9ea4515d24640\trefs/tags/v2.66test23^{}\n328710e567d03bbf130ed78b777746209b466272\trefs/tags/v2.66test3\n55b42f6de33ab1de695509a053c9fbd38795150b\trefs/tags/v2.66test3^{}\nc65935d7ab6b2f13e33867059e03c43fb966e5be\trefs/tags/v2.66test4\n3b43646a08928e54ba16b1b7791de83b79260072\trefs/tags/v2.66test4^{}\n444ea4f4ba82a901a40eb2daa4a48acc56ee6458\trefs/tags/v2.66test5\nb456b9fdfe76626ed76306b7af50a6532cb04ee5\trefs/tags/v2.66test5^{}\neb6825d3c7ea458bc8195019a6a52f93c582d767\trefs/tags/v2.66test6\nc6cb7407b3b7416c9b407006eab484c26664bf5e\trefs/tags/v2.66test6^{}\n142e395e0f78ce54d1194e347d8c04c9014410c8\trefs/tags/v2.66test7\n39f6a04ca42af0f167b67c1a66ce3df6d2385c75\trefs/tags/v2.66test7^{}\n67cfedb9d9fc5dc3b4ce1c5e41f80aa619188d2e\trefs/tags/v2.66test8\nbaeb3adf21ad2e4311fd8ed60768d1a4b0f8c2db\trefs/tags/v2.66test8^{}\n156c7b6e9d5cb120acb3e2ecfa88d1e3cc73c019\trefs/tags/v2.66test9\n21bac1bccd390f068402424f4abf0f3bc4fb6258\trefs/tags/v2.66test9^{}\n0593c9cea98d3bbc0f2d6ad04c6e6f63dcf1470d\trefs/tags/v2.67\neec5c1e21c5e021e272162c9bccc61400bc1660a\trefs/tags/v2.67^{}\n96978949301ad57829fe4de0546b6db4c8e6bfda\trefs/tags/v2.67rc1\n2f9fd1dcc52422af41c9b983a82f63ab39ebe59d\trefs/tags/v2.67rc1^{}\n0b4781683733af38d6b0545d0c94c89306c657c1\trefs/tags/v2.67rc2\nd5c35a59b0aefb51be5e8e524dba72e09711cef1\trefs/tags/v2.67rc2^{}\n2323ae22eab6b82b15d657cddb1be2d128e3e3be\trefs/tags/v2.67rc3\n903650af67e1a6fb06c64a99ac322bd440e6106a\trefs/tags/v2.67rc3^{}\n47e6fe9d67d218cf4d3d2e14a7104d3dae01ba94\trefs/tags/v2.67rc4\ndc27e148a154079929510c3fda978045b64440dc\trefs/tags/v2.67rc4^{}\nc3b8c84080bc4aab7200f20980bc19bba5410d8f\trefs/tags/v2.67test1\n2b6390fdc9a809e0b7d0f965d6978eead897b47b\trefs/tags/v2.67test1^{}\n2f2f1745896b363c4fedc1185927fc5dcb2a9a06\trefs/tags/v2.67test10\nff7eea27e7560fde52ea236111abfe319aa7ed85\trefs/tags/v2.67test10^{}\n53ac4ad4541debc8fe195b16906103293960b056\trefs/tags/v2.67test11\n6acef73052a6d394372b15056d36282df9df2b45\trefs/tags/v2.67test11^{}\n695f667ade781bd0f75241f35bc8b6ad279f64b5\trefs/tags/v2.67test12\n02ed24d351bff14e9ebdbea17ccbac0ce5be5a1a\trefs/tags/v2.67test12^{}\nbb2065207f74527197e1d9f9fcebd818bb20ddfe\trefs/tags/v2.67test13\n65e7912d311bcbc3b9243818fa2f0d83c50ea1ab\trefs/tags/v2.67test13^{}\nb34a83dbd984f0c98b5a3eedb7c5943ed440e388\trefs/tags/v2.67test14\nc8f2dd8b5363b9026ae3de6ce84b5b64df657892\trefs/tags/v2.67test14^{}\naea993ab5144e73ab79940674c00fbb37ecc09a2\trefs/tags/v2.67test15\n89500e31f199e9ae1eadc86213b911ff44d30d6f\trefs/tags/v2.67test15^{}\ned379192b4060eb0bf7e7b2805bad43766863ce7\trefs/tags/v2.67test16\n1b55190d3fffb7fbe39fcc62f2273c78a77c3d29\trefs/tags/v2.67test16^{}\n8b4703c9dd48fe8bab3d0d6aba309e7bdcba186d\trefs/tags/v2.67test17\n8f3194f7ac4590deeaf427fa40aa0f8d53588c05\trefs/tags/v2.67test17^{}\n38459d1d3f28f27487197affe087320cce32d616\trefs/tags/v2.67test18\ned4c0767b1f3a5182f5322adf33a5a460b500f98\trefs/tags/v2.67test18^{}\n0543ba017558657fc33fa52e3ca0e359adeda391\trefs/tags/v2.67test2\n797a7afba477390bc016c647cfb792c85ee6102d\trefs/tags/v2.67test2^{}\n8bc192fc6dbb6df75421c64a9cbb5192eb40c620\trefs/tags/v2.67test3\n2bb73af7d1a97b5db150c82b5509eedbc9deeb3f\trefs/tags/v2.67test3^{}\n674338284572993a0e7581b6ac6799f7aa734231\trefs/tags/v2.67test4\n3f2873d42c4d7e7dba32b6e64a3687d43928bc8e\trefs/tags/v2.67test4^{}\nd64a6d39ae7b95e29bad000ad1e193de4795b0e2\trefs/tags/v2.67test5\n63fd27e35f85a1f535efc73734165917190f387e\trefs/tags/v2.67test5^{}\nd66acae1cc02c3f932f64b799558a89b674b4731\trefs/tags/v2.67test6\nbaa80ae5125beabd49edae2cdfaf3817a88a2ab6\trefs/tags/v2.67test6^{}\n18250e16f157e89b44d6add49b999431f8c897f7\trefs/tags/v2.67test7\ne2ba0df2d4798e52e188c2f7f74613867d5aa82a\trefs/tags/v2.67test7^{}\n7272c1a4ebeef2ec058311879c8f454cae103c3f\trefs/tags/v2.67test8\nef1a94abaad2453c6d0ee9c259c3c661afc78d93\trefs/tags/v2.67test8^{}\n05c69dad0f2ddb86a91719a2a531b085d590b662\trefs/tags/v2.67test9\nfc4c4fda052591ccbe74db26e8368a460d1b8d5b\trefs/tags/v2.67test9^{}\nb7d35abd99de22767c8ea011ca4d050c209cb04c\trefs/tags/v2.68\n56ad6c9be1b48791edfb140f87c3738dd723d116\trefs/tags/v2.68^{}\n3a9bbde3de9daa5566e16e2c5cb86e7421229e5f\trefs/tags/v2.68rc1\nf7029f5c0887f81be3a7e3721eea2b247f00e0b7\trefs/tags/v2.68rc1^{}\nebb18d68cd7c84a993e134336746b7bd0b8a5c1b\trefs/tags/v2.68rc2\n241fa9c6c81fe42148252d8f02f0a2db28f745b5\trefs/tags/v2.68rc2^{}\n1119a79c3f9f28c38eb938779397f48b5634aba5\trefs/tags/v2.68rc3\n254390644a1b00033f3f86ea14bd0d1bcd8a4db3\trefs/tags/v2.68rc3^{}\nf90763f11a2ea830385cae61d4837b298eaf510f\trefs/tags/v2.68rc4\n0d6eb134f50e4fcf08b4ec426ddf5b58a4bfd019\trefs/tags/v2.68rc4^{}\n6d98a8fdb4fe7caab81117a721fde7574413a484\trefs/tags/v2.68rc5\n4c82efc5aca0d3b7438f3e91bf3ed2a29818a4b8\trefs/tags/v2.68rc5^{}\nc2bc993e1f213cf4817b13ae4fffcee21ed31c44\trefs/tags/v2.68test1\n7b174c250df2bc97b503fd03b9e473998676b1a6\trefs/tags/v2.68test1^{}\na44d6192b3d0a0de5bbd4352c7145d7b30b41ae6\trefs/tags/v2.68test2\ndd9d9ce54c46b0e110f71f8cb19934bd2e8ae656\trefs/tags/v2.68test2^{}\nc46e1238ee180c10a2159d29caf4f6bdcbc0ae53\trefs/tags/v2.69\n198d940af6063337f8d7f8156cc251532fc3f1fc\trefs/tags/v2.69^{}\n691cbd2dc330cf2a344ebfa4eb2453a443ce7870\trefs/tags/v2.69rc1\n604f7598c2265e334de05ed25d8e4e2a01de36cd\trefs/tags/v2.69rc1^{}\ndcd1c8ec9e3804178a13895909cf8328bc23c920\trefs/tags/v2.69rc2\n49752b90d5ecdec87933133a3696efc5f60b7a16\trefs/tags/v2.69rc2^{}\n941ed3b205e38030956ecca3528a3893cea8a41f\trefs/tags/v2.69rc3\nb7639d58158c6e971535893b407560e136a27994\trefs/tags/v2.69rc3^{}\n2b9c1285a35908e3ca8961e7e8b6f7953d54a79d\trefs/tags/v2.69rc4\nb7639d58158c6e971535893b407560e136a27994\trefs/tags/v2.69rc4^{}\ndaa168f8388130f972233b04f35ed73120e526df\trefs/tags/v2.69test1\n1ee9be4c3f60e16b6815699ba95d67d29beaf015\trefs/tags/v2.69test1^{}\nc1fd52551c9c9112fe2fa465d73d34e50dd7b042\trefs/tags/v2.69test10\n87070192375fa54b94244837ddba09c6e60425c9\trefs/tags/v2.69test10^{}\n37d94d81cbfb27c403bdb8426701f0d64d8eacb4\trefs/tags/v2.69test11\n29fe922b1408fd038a6012297b4bd1c4fada85c3\trefs/tags/v2.69test11^{}\nec5da2e95abbb3f9feb03a9466594b59a523c803\trefs/tags/v2.69test2\n00238fb019988c6e35e1dd411c0118bf56d18d25\trefs/tags/v2.69test2^{}\n5b831df884090d2bafe2a88eac2e6c64f718128c\trefs/tags/v2.69test3\nc3a04081ff5e8a400df21096791e67e368114c73\trefs/tags/v2.69test3^{}\nd4585f83577a2848f31acd4216f559b6b669516a\trefs/tags/v2.69test4\n81a883fda3a78f418dd45d4ecf445bcf15498c2b\trefs/tags/v2.69test4^{}\n2a652c6e9139c32a608489536db1d874e6a20867\trefs/tags/v2.69test5\n613d6c52495a70034ef9e24423afcc3f917776c0\trefs/tags/v2.69test5^{}\n8c9c1199df5a038630c09f8532d28e298485d5e0\trefs/tags/v2.69test6\nfd372273bde910735f6117461f070fe8b250158b\trefs/tags/v2.69test6^{}\n6cb843a1590017192ba93f918b25bedbebcf9bc4\trefs/tags/v2.69test7\nda4f372271fdbeae0216ef671cfacec9985406dd\trefs/tags/v2.69test7^{}\n639700ec07b06a811620c10f8e922fb796bc9f21\trefs/tags/v2.69test8\nee4158678a5c5281cbbf38cd8f36b98df6d1b159\trefs/tags/v2.69test8^{}\n62641829a36d848aaeb0be06664a9838e3d6d717\trefs/tags/v2.69test9\na857daa3511eebbbf63bc894695f4bfc790b2246\trefs/tags/v2.69test9^{}\ncd3bd067eefc85245af376d07bb2ec3c2232cafb\trefs/tags/v2.7\na84fa1d085ae80a6b9466c5d2219b01210c8ed51\trefs/tags/v2.7^{}\n3347155c40ad89b28e71b9282ebc38a212b536ca\trefs/tags/v2.70\n7e22cf28f88f2c86b74158f01dad2292e095b296\trefs/tags/v2.70^{}\n35265758c5a71f43f51fe1ec74e13033d0870ff9\trefs/tags/v2.71\n0fa7e6294723d4137f4cfafbb36ae9d0a08a51d3\trefs/tags/v2.71^{}\n140a00ecfef56915cf8442457e5b40b12dff0522\trefs/tags/v2.71test1\n50f86ce8e42a1f93bb1fa759ebb883df96c5b078\trefs/tags/v2.71test1^{}\nf7f20ca2a097127008fd34e46a1badd8e653303b\trefs/tags/v2.71test2\nb692f23466eb28ceed42c4e1d312707636afff09\trefs/tags/v2.71test2^{}\n377f65c6e1e1d5a96a1c14c3d4ca3b19cd3fb8eb\trefs/tags/v2.72\n25e27235dd40a45c048ae0df6df98d6f1d59d177\trefs/tags/v2.72^{}\nf1405d05617796d636a5e3211dd8f59eae7bd748\trefs/tags/v2.72rc1\n3e1551a1de58e68e991e47eacd5733d10e944ddf\trefs/tags/v2.72rc1^{}\nd26f578d90645550735a505a484b194ec40cf296\trefs/tags/v2.72rc2\nbf2db4b084f8c588796518bde288978afc0bd099\trefs/tags/v2.72rc2^{}\n5c77c16a93b8db3e27b5e71a15b884a377cc52c3\trefs/tags/v2.72test1\n8e9ffba66e538f3f483ab0d46e5f9fd21d5abf32\trefs/tags/v2.72test1^{}\nf75b47e6fabfdf04e6f26b02fa911e96b387db42\trefs/tags/v2.72test2\na03f8d4c37c9e52833ce2ad7d9744b3c587efb14\trefs/tags/v2.72test2^{}\n89f166794b7203b20fe44e1ccc6de2f049c51e2c\trefs/tags/v2.72test3\n6799a466055fa34d07d6e7672269b9c8cbcca3d7\trefs/tags/v2.72test3^{}\n1f9a421e353067ff60032a5b6b42c976b91754e5\trefs/tags/v2.73\ne3ec6f0bd7323b043faa9dffa20f0c9151fae1e3\trefs/tags/v2.73^{}\na8af1aa8f04bab1bc8233d5d6536c92554b206f0\trefs/tags/v2.73rc1\n65c721200023ef0023114459a8d12f8b0a24cfd8\trefs/tags/v2.73rc1^{}\n8912a23e1ce413c702c426950b860d7328aeab10\trefs/tags/v2.73rc10\nf7bfbdc8727b4ba0a231ed2f8daffbd493a8dbb5\trefs/tags/v2.73rc10^{}\nbfb6817195b7c02e007b4262baa7a40f01d47364\trefs/tags/v2.73rc2\nfd6ad9e481ab7c812a6b1515244908818cbb0442\trefs/tags/v2.73rc2^{}\n68fd229006fb4098e74bb5ec88988e66714fcf35\trefs/tags/v2.73rc3\nfd6ad9e481ab7c812a6b1515244908818cbb0442\trefs/tags/v2.73rc3^{}\n12d9cc0dc1477427edd503326cd767fde19dcb73\trefs/tags/v2.73rc4\nad4a8ff7d9097008d7623df8543df435bfddeac8\trefs/tags/v2.73rc4^{}\nde52cec1eaa1d518f8c4093dea43e92666ce025b\trefs/tags/v2.73rc5\ncbe379ad6b52a538a4416a7cd992817e5637ccf9\trefs/tags/v2.73rc5^{}\ndded546b32fba70c6d44aa6558e2c41daf941b74\trefs/tags/v2.73rc6\nb8f16556d36924cd8dc7663cb4129d7b1f3fc2be\trefs/tags/v2.73rc6^{}\n3537c8c0332ab0d68f2c4a00d3baab63ece960e4\trefs/tags/v2.73rc7\ne66b4dff3c562c7836d5be4c26972d665ad783f1\trefs/tags/v2.73rc7^{}\n83d8acecd2f0e8a07d6ea5c8f865a606c36e7118\trefs/tags/v2.73rc8\n5d07d77e75e0f02bc0a8f6029ffbc8b371fa804e\trefs/tags/v2.73rc8^{}\n08a0ca0c3419ffe1c510fbaa1e0c2440e75ecf03\trefs/tags/v2.73rc9\n4d25cf89d51c635af0a23c0ca3425c7aadbc0b55\trefs/tags/v2.73rc9^{}\ne0111b80e417c72409aa59460b302ca40d10fdaa\trefs/tags/v2.73test1\n3267804598047bd1781cab91508d1bc516e5ddbb\trefs/tags/v2.73test1^{}\ncfd850eadf01a9126399b82c1294af538f9af74c\trefs/tags/v2.73test2\nfbc5205702c7f6f431d9f1043c553d7fb62ddfdb\trefs/tags/v2.73test2^{}\n8b8522b49f7203b207b52ebdcefd844ac5092c13\trefs/tags/v2.73test3\n424c4a8a53c8aa5d6ac899c95803b97410abec8f\trefs/tags/v2.73test3^{}\n23be6d20209aa7f6bbbcbb8a420b81c14b209170\trefs/tags/v2.73test4\n9f79ee4ae34886c0319f06d8f162b81ef79d62fb\trefs/tags/v2.73test4^{}\n07903e25e22892d00f1cb0b4eb4469b796741229\trefs/tags/v2.73test5\n5f4dc5c6ca50655ab14f572c7e30815ed74cd51a\trefs/tags/v2.73test5^{}\n32267b2d885d794050e5a40beb0d155d95781839\trefs/tags/v2.73test6\n5f4dc5c6ca50655ab14f572c7e30815ed74cd51a\trefs/tags/v2.73test6^{}\n42dfa7202e18a67f3db9f6ccd3ea56460f806a76\trefs/tags/v2.74\nf6381cf482d7cae823e7bcd707fc7e24d6553797\trefs/tags/v2.74^{}\n1f1b10ad2f739552e9ea955a8b583f9ff9b2f2e4\trefs/tags/v2.74rc1\n90c3822bfacab24e3e2a082685dadb7d671f9059\trefs/tags/v2.74rc1^{}\n118e320d711b4eb9fba427e8cd0b9f4c87dd1445\trefs/tags/v2.74rc2\n13480e8c2a0e170a5e070f82c46e6ae00c464a89\trefs/tags/v2.74rc2^{}\neeabb41ecf4f7795f7fd1cb267fca8c80d0ebeb9\trefs/tags/v2.74rc3\nd3699bb6bc97172a98b013ce2b53e70ae5f43e83\trefs/tags/v2.74rc3^{}\nc93076e1d9c462e03191063d2457ee3c4bbfaace\trefs/tags/v2.74rc4\n34b5d194886fc1c9427672c98cdec917ca317fc3\trefs/tags/v2.74rc4^{}\n5d438718c6c817e80300e750c3593bb2772cb739\trefs/tags/v2.74test1\n60176c7bf44e4f49528b3add80f03333fabf7279\trefs/tags/v2.74test1^{}\nd8ce31a7d1dbf88ff73679c3ea7db123d9f5c3ab\trefs/tags/v2.74test2\nb842bc97bb3bf1861f6fc01b01f5c673fc49cd35\trefs/tags/v2.74test2^{}\na310c093c61ceb6e1b8073cddf610c50c2fae6f3\trefs/tags/v2.75\n63ec5d12643b6dbb7f0e9401d39debc21f6638ed\trefs/tags/v2.75^{}\nd889b00cccccf60c1bc78750030c4536c2133bb8\trefs/tags/v2.76\nf186bdcbc76cd894133a043b115b4510c0ee1fcf\trefs/tags/v2.76^{}\nc6df359fb33be8af8366e258a2ae053a1c6629f5\trefs/tags/v2.76rc1\n8628cd603fd0c55c7d41b84488446db44f58ff5b\trefs/tags/v2.76rc1^{}\nf47e39fdc0769f8b72e3d4646ec0c2776c47ba24\trefs/tags/v2.76rc2\n45cb8dd9beb277655297ecb053b40240fdc30621\trefs/tags/v2.76rc2^{}\nf0f1c0444227eb37d6ff19d50546d40680a06983\trefs/tags/v2.76test1\n63ec5d12643b6dbb7f0e9401d39debc21f6638ed\trefs/tags/v2.76test1^{}\n44551a7fc59ac420b2bd951829c66581265fd277\trefs/tags/v2.76test10\n22c0f4fe8767bd18959626fc999bf59f6992a27f\trefs/tags/v2.76test10^{}\n67aa1b7609c44cd09db564e68c9ab2edcea5e75a\trefs/tags/v2.76test11\nc7f3bd2ac8e52ae3d941d28cf807e97d09e379a9\trefs/tags/v2.76test11^{}\n72c324813bbfba24fc0228175a28b5be63627406\trefs/tags/v2.76test12\nfa79466c2a7f92895aa9a48b7ef411f634ebef2f\trefs/tags/v2.76test12^{}\n8433520253457338d4be651ac452e319b1080f9f\trefs/tags/v2.76test13\n2c0c36f54b2a4d2cb13e29d580f8935be95018f6\trefs/tags/v2.76test13^{}\n091596926aec7ee8677e1110618b0bef0cf58f6d\trefs/tags/v2.76test2\ncc7cb0b89326b7c2ecdd4848002d10a4cbed894d\trefs/tags/v2.76test2^{}\n24e579b83c8460998abcf657d01eeb3f43caff78\trefs/tags/v2.76test3\ncc7cb0b89326b7c2ecdd4848002d10a4cbed894d\trefs/tags/v2.76test3^{}\ncf971b1ce09660fe5e7fbe11de19798048f2a1b0\trefs/tags/v2.76test4\nd917275e481add809cd5c40650f339ae994ee35f\trefs/tags/v2.76test4^{}\n63c9462c635966575e38e20ca6eab321c6d3b8c4\trefs/tags/v2.76test5\nbb58f63ce598763231fbf320bace1dbd777afd37\trefs/tags/v2.76test5^{}\n274ca0c1b80746c53322c9590c1c3106ae182452\trefs/tags/v2.76test6\nf4d0c660ca403e933d51093167c0d01526c7f9d1\trefs/tags/v2.76test6^{}\n61faf12c9485a115fa19f7084f2794720f487b31\trefs/tags/v2.76test7\nd05dd58de1113bb99060af2772247a45ceb3a1ad\trefs/tags/v2.76test7^{}\nfcbf2899ba749d3598c9acea28ce50c9ffaccf5a\trefs/tags/v2.76test8\n4ace25c5d6c30949be9171ff1c524b2139b989d3\trefs/tags/v2.76test8^{}\nbb1ccfc31bc809cbac1bfe697934be5ff4aa9c19\trefs/tags/v2.76test9\n9e4cf47ee831760d6651770c837993e0c32dda23\trefs/tags/v2.76test9^{}\n82b2b4b5657a68ea9e677a935164a40cef13e434\trefs/tags/v2.77\n74ea91531a5f0c6ad8c4bcc5f6bda55bf2c2acb1\trefs/tags/v2.77^{}\n26d7a70a5dea9bfa6c2a2f6f04a5415bb6e8b3e3\trefs/tags/v2.77rc1\n09f3b2cd9c7b5b5e0e96ba41f666e69808862620\trefs/tags/v2.77rc1^{}\nafc82c060ebd0970f6706881dc1754db48318f59\trefs/tags/v2.77rc2\nc7be0164ce6ae89d6f2f0ffea14e2612418dd5da\trefs/tags/v2.77rc2^{}\ndeb148ce928ca33a350db38575a10758d3af8416\trefs/tags/v2.77rc3\n7ab78b937fc1b98a1e47a63b2cc1f8451cd7c5fa\trefs/tags/v2.77rc3^{}\na0c57cfd176153b1455b98c2e39485a72c1d941c\trefs/tags/v2.77rc4\n1835343acd6b4233f4f2cc527f68129be2d124e4\trefs/tags/v2.77rc4^{}\n42286f18473dea80d97d420c5b3cffefb227ad06\trefs/tags/v2.77rc5\n9828ab115efc77a72ff78206f2e38d5ca8505e56\trefs/tags/v2.77rc5^{}\nb158cc24bea6fb6c8c8e665e9d775474d033086f\trefs/tags/v2.77test1\n0740e43e20e03ba17b338ed325b2278e0895d946\trefs/tags/v2.77test1^{}\nbaf8380d9246048fbaaa0ec3f5e14d46e84e0da1\trefs/tags/v2.77test2\n68f6312d4bae30b78daafcd6f51dc441b8685b1e\trefs/tags/v2.77test2^{}\n8d7dcb891f9f7183bf1036c194619115c2190d0c\trefs/tags/v2.77test3\n05da782f8f45933915af0ef3cc1ba35e31d20c59\trefs/tags/v2.77test3^{}\n26bbde2a03c3763e912350660e6e2dbcb788c8f2\trefs/tags/v2.77test4\n62f9c0d47099f46cac941ce0ea103921999d244f\trefs/tags/v2.77test4^{}\nd72bcd4f00bdbb7de7357818cba5f558468f4521\trefs/tags/v2.77test5\nefff74c1aea14757ce074db28e02671c7f7bb5f5\trefs/tags/v2.77test5^{}\na0ecd2c0acd724064574df226b0eb83ac0a06007\trefs/tags/v2.78\n30df7efc9654b080f763b78c2078ae13b51019c7\trefs/tags/v2.78^{}\n1e8ee1c69b191f94b74a38c25a4bb3c3a14c52bd\trefs/tags/v2.78test1\n4bb68866a8aeb31db8100492bceae051e33be5d0\trefs/tags/v2.78test1^{}\ndf778d0e136408f6468991fc327f1c6d0b94acab\trefs/tags/v2.78test2\n712dadb287416cd4188b78ab08f804f8805d636c\trefs/tags/v2.78test2^{}\nea41f377833f5c2b5efe13a27930515a7b3e1d47\trefs/tags/v2.79\n94b6878821b59b32353525e1594efeffd109fa9d\trefs/tags/v2.79^{}\n314c903ae956a789b68ad86dca09a18e83f0a09f\trefs/tags/v2.79rc1\n1721453d51a3feef78890d12dd19b1ea3145568b\trefs/tags/v2.79rc1^{}\nce0aebd84135374d5ac0bc291c9efa7f5d328e67\trefs/tags/v2.79rc2\nae290659de71fc7d1e92afe84c7fbd87d6aad016\trefs/tags/v2.79rc2^{}\n2db1cb8086b8431c7638dbb0d5fa9d1d9ca81dc4\trefs/tags/v2.79test1\na49c5c22654da2eb3af5899e4edc3d047beb24d4\trefs/tags/v2.79test1^{}\nc83728a26a2bc502810d5bc04a989c3fd903ebd5\trefs/tags/v2.8\na222641cb06189d287bf2e00a3f1f26019b80ac7\trefs/tags/v2.8^{}\n3746b2e331773b03051ab2cfa89870a6c72599fa\trefs/tags/v2.80\n91421cb7575df7bb211dacc30dc7c7c715c38299\trefs/tags/v2.80^{}\n93c05f9a84f544f91f823a2156c6b70022b939f9\trefs/tags/v2.80rc1\n53792c934cf18f46c5da3ea28786100cb339ad4c\trefs/tags/v2.80rc1^{}\ne0678d0642fba849097890e973c6f8c6ff273af0\trefs/tags/v2.80test1\n4441cf762c6e7e62ca20c98b77799e1574095f41\trefs/tags/v2.80test1^{}\n4f9a4992539879a5191732b6fcb6dcc0e5e2bad5\trefs/tags/v2.80test2\n7f0084316a2f5ddafc6a327c8ba636784748a044\trefs/tags/v2.80test2^{}\n9225b02591af8011ac9777e50d94fcaf6afbf1a6\trefs/tags/v2.80test3\n3b6eb197a88ff450fb6abeff67152a592a7d683a\trefs/tags/v2.80test3^{}\n2af14acca1d2e0111515e1c0a7393f001d50b4ff\trefs/tags/v2.80test4\nc5db8f93ec20b46ad47115abf235d75e2bb11ad0\trefs/tags/v2.80test4^{}\nf5e9fb63ea192c5982999df7d2c46761269f8a5a\trefs/tags/v2.80test5\nda8b6517decdac593e7ce24bde2824dd841725c8\trefs/tags/v2.80test5^{}\n2bc7ef3408e588b81a1e1b5b0d9abaa117036f9c\trefs/tags/v2.80test6\naf3bd07355f9031c0172742e1a91435747b716f6\trefs/tags/v2.80test6^{}\n71c6da2dfb004d72ae9238f521ebbc227b435331\trefs/tags/v2.80test7\n3a610a007fd80751330591c7e1a3a5d31e72727b\trefs/tags/v2.80test7^{}\n2ee3a9ec9cad40d1e83c11b462567c2683fe342f\trefs/tags/v2.80test8\ne1791f36ea0e8c87762a38e2de2db7fe4eee5a4a\trefs/tags/v2.80test8^{}\n9504e99c634b1e2ddd36f98fbbbad955c1ce82d8\trefs/tags/v2.81\n7ddb99d251c3f5870c8c308a98bb8f283c831872\trefs/tags/v2.81^{}\n1ac768c13a225a14c9588bedb14f61d4dc777dbe\trefs/tags/v2.81rc1\nb2ed691eb3ca6488a8878f5f3dd950a07b14a9db\trefs/tags/v2.81rc1^{}\nce1858ddf0d2279008a625d8974f4928c798b295\trefs/tags/v2.81rc2\nfc19399a1f07ac97cfc10acfa033d1a6e757aa00\trefs/tags/v2.81rc2^{}\n1553eaa94d96dcaaa717866d9ac6e40253dc8ead\trefs/tags/v2.81rc3\n46bdfe691adb10cad34c00c3389412980739e09b\trefs/tags/v2.81rc3^{}\n50e9f8cd0a84e5ee9e80fd6d4f1cad7ff3733187\trefs/tags/v2.81rc4\n63ed917ad958610e6f05a619409c01625cb8b8dc\trefs/tags/v2.81rc4^{}\nf323d2762bdbaff25aac3a0aebca2a0acc1d2bd3\trefs/tags/v2.81rc5\n532246fc9e9b82ffadddd9fd8d4d02f3744abda9\trefs/tags/v2.81rc5^{}\n2dc3725901b72501e637056a611ae3a4f80bace2\trefs/tags/v2.9\nde37951cf4c3a380fd11a2bf4f03a4eed1137673\trefs/tags/v2.9^{}\n" diff --git a/upstream-info/edk2.yaml b/upstream-info/edk2.yaml index 66aad48b597db7505d1ce5db4024b024135d3153..f889937363ee77e04527c940eedd37b4bc8095d4 100644 --- a/upstream-info/edk2.yaml +++ b/upstream-info/edk2.yaml @@ -1,10 +1,11 @@ --- version_control: github src_repo: tianocore/edk2 -tag_prefix: "^v" +tag_prefix: edk2-stable seperator: "." +query_type: api.github.releases last_query: - time_stamp: 2020-04-26 11:21:56.162863900 +00:00 + time_stamp: 2020-05-20 07:12:36.247706470 +00:00 raw_data: | [ { @@ -71,7 +72,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 1642082, - "download_count": 1722, + "download_count": 2761, "created_at": "2020-03-06T14:46:04Z", "updated_at": "2020-03-06T14:46:14Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/edk2-stable202002/ShellBinPkg.zip" @@ -145,7 +146,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 1677699, - "download_count": 3279, + "download_count": 3320, "created_at": "2019-12-05T00:56:59Z", "updated_at": "2019-12-05T00:57:04Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/edk2-stable201911/ShellBinPkg.zip" @@ -219,7 +220,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 1638200, - "download_count": 2352, + "download_count": 2353, "created_at": "2019-09-05T00:15:53Z", "updated_at": "2019-09-05T00:15:58Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/edk2-stable201908/ShellBinPkg.zip" @@ -293,7 +294,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 1637992, - "download_count": 1657, + "download_count": 1662, "created_at": "2019-06-10T16:39:07Z", "updated_at": "2019-06-10T16:39:12Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/edk2-stable201905/ShellBinPkg.zip" @@ -449,7 +450,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 79352781, - "download_count": 6731, + "download_count": 6799, "created_at": "2018-03-30T22:20:09Z", "updated_at": "2018-03-30T22:20:46Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/vUDK2018/UDK2018.Documents.zip" @@ -523,7 +524,7 @@ last_query: "content_type": "application/x-zip-compressed", "state": "uploaded", "size": 85900807, - "download_count": 2929, + "download_count": 2939, "created_at": "2017-06-26T17:36:18Z", "updated_at": "2017-06-26T17:36:44Z", "browser_download_url": "https://github.com/tianocore/edk2/releases/download/vUDK2017/UDK2017.Documents.zip" @@ -534,4 +535,3 @@ last_query: "body": "# UDK2017 Release Page\r\n## How to build \r\nSee wiki page [UDK2017 How to Build]( https://github.com/tianocore/tianocore.github.io/wiki/UDK2017#how-to-build-udk2017) on the UDK2017 Release wiki page\r\n\r\n\r\n## UDK2017 Features / Updates / Changes\r\nSee the wiki page [UDK2017 Features Updates Changes](https://github.com/tianocore/tianocore.github.io/wiki/UDK2017#udk2017-features--updates--changes) for list of Features, Updates and Changes to the UDK2017 Release from the previous UDK release\r\n### UDK2017 Package Notes\r\nSee wiki page [UDK2017 Package notes]( https://github.com/tianocore/tianocore.github.io/wiki/UDK2017#udk2017-package-notes ) for list of Package's Notes details on changes & updates\r\n\r\n## Downloads - File Descriptions (Below files)\r\n### Source Code \r\nThese source code downloads are the from the tag [vUDK2017](https://github.com/tianocore/edk2/releases/tag/vUDK2017) for the official UDK2017 release.
\r\nUDK2017 edk-vUDK2017 Workspace [Source code (zip file)](https://github.com/tianocore/edk2/archive/vUDK2017.zip ) \r\nUDK2017 edk-vUDK2017 Workspace [Source code (tar.gz file)](https://github.com/tianocore/edk2/archive/vUDK2017.tar.gz ) \r\n\r\n### Documentation\r\nThis download contains all .chm and .html documents for UDK2017. Each package includes details on the definitions (including PPIs/PROTOCOLs/GUIDs and library classes) and libraries instances associated with each package.
\r\n[UDK2017 Documents (ZIP File)]( https://github.com/tianocore/edk2/releases/download/vUDK2017/UDK2017.Documents.zip) \r\n\r\n**********\r\n## More Information about this release\r\n**Note:** For a detailed list of Changes and updates \r\n See the [UDK2017 Release wiki]( https://github.com/tianocore/tianocore.github.io/wiki/UDK2017) page\r\n\r\n**********\r\n" } ] -query_type: api.github.releases diff --git a/upstream-info/fcoe-utils.yaml b/upstream-info/fcoe-utils.yaml index d2fe76e37936d272288dfcb9537f7933c1c89bef..b1dc6badb1e496872af8f3d6ce93ef17a56832d2 100644 --- a/upstream-info/fcoe-utils.yaml +++ b/upstream-info/fcoe-utils.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: morbidrsa/fcoe-utils -tag_prefix: ^v -seperator: . +src_repo: morbidrsa/fcoe-utils +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 07:18:58.128324790 +00:00 + raw_data: "9447a0b01facff897a3f5aab98c0635cef2774b8\trefs/tags/community_20110504\n5a412ad7f4c95bb5b756aa12b52646e857e7c75d\trefs/tags/community_20110504^{}\nab8659029324b068f8b136c5c61f9c09dbe30a5f\trefs/tags/igb_20110504\n5a412ad7f4c95bb5b756aa12b52646e857e7c75d\trefs/tags/igb_20110504^{}\nefd60674376bcc215971075db92271a879c206b4\trefs/tags/igb_20110508\n534eacb5d4e7bafbdb60386678afeffb7966c375\trefs/tags/igb_20110508^{}\n1a5faed6df5b92f5f68b7346ba9111f4280f3097\trefs/tags/isci-for-3.5\nde2eb4d5c5c25e8fb75d1e19092f24b83cb7d8d5\trefs/tags/isci-for-3.5^{}\nf48051b72efe535581ec7925856965a8bb655cff\trefs/tags/ixgb_20110504\n5a412ad7f4c95bb5b756aa12b52646e857e7c75d\trefs/tags/ixgb_20110504^{}\na5a2043c046cbdc6d8791f6144667b2dedf2fcb5\trefs/tags/jenkins-linux-fcoe-21\n1c35534b6c81c988f68d30b01204e7227fa1cb37\trefs/tags/jenkins-linux-fcoe-21^{}\n7cb3ccf85fc7958d5c38edb76dbcd7cc79842e19\trefs/tags/jenkins-linux-fcoe-22\n1c35534b6c81c988f68d30b01204e7227fa1cb37\trefs/tags/jenkins-linux-fcoe-22^{}\nb8e329ba0c83fd26483261098b2040d603b3b194\trefs/tags/jenkins-linux-fcoe-23\n1c35534b6c81c988f68d30b01204e7227fa1cb37\trefs/tags/jenkins-linux-fcoe-23^{}\n668ee0051f87062b520cbf94d9b2c8894d19435e\trefs/tags/jenkins-linux-fcoe-58\nace9ff23f9b50589f078fcb97edd4198cd190fa6\trefs/tags/jenkins-linux-fcoe-58^{}\n4037b32c038ef723c3d7cc6fd986ef44fcc6697b\trefs/tags/jenkins-linux-fcoe-59\nace9ff23f9b50589f078fcb97edd4198cd190fa6\trefs/tags/jenkins-linux-fcoe-59^{}\n7bece23f1a4de58fe98b4039ad26b4d7c1701827\trefs/tags/scsi-fixes\n3569e5374df66a42ab66368b8bbb075e81d4e85c\trefs/tags/scsi-fixes^{}\na43260fe0e02c187b5cb2c150897defdc8c983e9\trefs/tags/scsi-misc\n5c41dc3a79150e93e5d050871a10b761be8281a1\trefs/tags/scsi-misc^{}\n905a2b4c690e48d5bdb2f3b824ef401293ab0e1f\trefs/tags/test_20110505\n90864fbc7639d7a2300c67a18c9fb9fbcf7d51d2\trefs/tags/test_20110505^{}\na4d103a652db57e83be14a57af5525f386ca63ec\trefs/tags/v-k4.4\nb1bb0248feb365399ffe9efe64a4bb6ccb4e9271\trefs/tags/v1.0.10\n542192c0793a98acd5bd0e10750ec9cc30794cc6\trefs/tags/v1.0.11\n9403c2aaac0b79d0d236ef9413cc88b7d6f7f04e\trefs/tags/v1.0.12\nc2e49ba528a9efaa2a24aa95d3b212512c2a54e8\trefs/tags/v1.0.13\nf47043834ab83a6c50930edb9ef9754986dd0aa4\trefs/tags/v1.0.14\n04b3807ba2065a72c30196790e7e4459bf93fe55\trefs/tags/v1.0.15\n24b3dbd67f50350da9d4fe2f291301f8436583b4\trefs/tags/v1.0.16\n13ebfcfca0bb9f2f4e5ba85e86c2b47d4a6cfd00\trefs/tags/v1.0.17\n45228f6c54fa2d34db5ecece0867d6f6f36d8039\trefs/tags/v1.0.18\n0a471f6704723d32d7a7be2936c70cf8a36b3d78\trefs/tags/v1.0.19\nd19c52aa185441d9e497fdac19aafcc89fdbfc8e\trefs/tags/v1.0.20\n4dbbfb0a19830c62b47115d230c4f94334d53989\trefs/tags/v1.0.21\n7d3af6b88cf2dd8d81f9c7179f2649550fbfc005\trefs/tags/v1.0.22\n0d502bb01b36d99b6b4798a72f408559adcb5464\trefs/tags/v1.0.23\n04227ba5a2980c9c714739458fec02c3922527e3\trefs/tags/v1.0.23^{}\n28ee068c4c3d9bbb375a7f10aac21d566821311a\trefs/tags/v1.0.24\nb69ed787bece91e0876d14704dfa07e03df21fa7\trefs/tags/v1.0.25\ne0524de36ef79eeaf707c385d83967d8beb67349\trefs/tags/v1.0.26\n43dce5222b5f2d357c72ba12b4d161a6b891d201\trefs/tags/v1.0.27\ndab332040a936dca31c64fe822b6595cb69a0352\trefs/tags/v1.0.27^{}\ncebde9a45d39a31b8c98b48752a53aef0f27383d\trefs/tags/v1.0.28\na47e70d463589b6e5c2c84098aeb6e381e43e94c\trefs/tags/v1.0.29\n2aa88c7c0fb0435ed52ec2db1cf0f1485527ac26\trefs/tags/v1.0.29^{}\na4d103a652db57e83be14a57af5525f386ca63ec\trefs/tags/v1.0.31\ndbdfeba2504d57f9b722e7388940e61cbffe99f2\trefs/tags/v1.0.32\nf5cbb9ae7124a2dd20ba4f8f1d36093bb8bd7adb\trefs/tags/v1.0.32^{}\nd72bcd32acbb3a6815656cd11967413a5c6a2243\trefs/tags/v1.0.7\n5a6bd107b737d5f28ea425fe90df8e7c7b9aa788\trefs/tags/v1.0.7^{}\n87314ca4c6ae005569607f3e71a6f69e38c24ba5\trefs/tags/v1.0.8\n561445df6eea8b2c59c7a68c94e52c65ba0a1207\trefs/tags/v1.0.8^{}\n8401ccb7c8aef30cc2c6f02b166c0ea2990ef301\trefs/tags/v1.0.9\n26791a8bcf0e6d33f43aef7682bdb555236d56de\trefs/tags/v2.6.12\n9ee1c939d1cb936b1f98e8d81aeffab57bae46ab\trefs/tags/v2.6.12^{}\n9e734775f7c22d2f89943ad6c745571f1930105f\trefs/tags/v2.6.12-rc2\n1da177e4c3f41524e886b7f1b8a0c1fc7321cac2\trefs/tags/v2.6.12-rc2^{}\n0397236d43e48e821cce5bbe6a80a1a56bb7cc3a\trefs/tags/v2.6.12-rc3\na2755a80f40e5794ddc20e00f781af9d6320fafb\trefs/tags/v2.6.12-rc3^{}\nebb5573ea8beaf000d4833735f3e53acb9af844c\trefs/tags/v2.6.12-rc4\n88d7bd8cb9eb8d64bf7997600b0d64f7834047c5\trefs/tags/v2.6.12-rc4^{}\n06f6d9e2f140466eeb41e494e14167f90210f89d\trefs/tags/v2.6.12-rc5\n2a24ab628aa7b190be32f63dfb6d96f3fb61580a\trefs/tags/v2.6.12-rc5^{}\n701d7ecec3e0c6b4ab9bb824fd2b34be4da63b7e\trefs/tags/v2.6.12-rc6\n7cef5677ef3a8084f2588ce0a129dc95d65161f6\trefs/tags/v2.6.12-rc6^{}\n0da688d20078783b23f99b232b272b027d6c3f59\trefs/tags/v2.6.13\n02b3e4e2d71b6058ec11cc01c72ac651eb3ded2b\trefs/tags/v2.6.13^{}\n733ad933f62e82ebc92fed988c7f0795e64dea62\trefs/tags/v2.6.13-rc1\n4c91aedb75d1b87deccf16d58f67fb46402d7d44\trefs/tags/v2.6.13-rc1^{}\nc521cb0f10ef2bf28a18e1cc8adf378ccbbe5a19\trefs/tags/v2.6.13-rc2\na18bcb7450840f07a772a45229de4811d930f461\trefs/tags/v2.6.13-rc2^{}\na339981ec18d304f9efeb9ccf01b1f04302edf32\trefs/tags/v2.6.13-rc3\nc32511e2718618f0b53479eb36e07439aa363a74\trefs/tags/v2.6.13-rc3^{}\n7eab951de91d95875ba34ec4c599f37e1208db93\trefs/tags/v2.6.13-rc4\n63953523341bcafe5928bf6e99bffd7db94b471e\trefs/tags/v2.6.13-rc4^{}\n2ef68d3fdfacf92ac5ff84be969b4b8acb5c0723\trefs/tags/v2.6.13-rc5\n9a351e30d72d409ec62c83f380e330e0baa584b4\trefs/tags/v2.6.13-rc5^{}\n50f0e20a16496a9feb52cf1d79a0c33cce1a682d\trefs/tags/v2.6.13-rc6\n6fc32179de9e14c542e0b1760e412bc670611c53\trefs/tags/v2.6.13-rc6^{}\n3e6f704488332c74e7defec13f22bf2e2bccb444\trefs/tags/v2.6.13-rc7\n0572e3da3ff5c3744b2f606ecf296d5f89a4bbdf\trefs/tags/v2.6.13-rc7^{}\n2b10839e32c4c476e9d94492756bb1a3e1ec4aa8\trefs/tags/v2.6.14\n741b2252a5e14d6c60a913c77a6099abe73a854a\trefs/tags/v2.6.14^{}\n1f9d1e3248d4eb96b229eecf0e5d9445d3529e85\trefs/tags/v2.6.14-rc1\n2f4ba45a75d6383b4a1201169a808ffea416ffa0\trefs/tags/v2.6.14-rc1^{}\nc2bbf523f1d454649897b3e4bcd71778e4fa5913\trefs/tags/v2.6.14-rc2\n676d55ae30ea3b688f0386f70553489f25f24d55\trefs/tags/v2.6.14-rc2^{}\nf92737b18abac90af30ac26a050fda879c9b238b\trefs/tags/v2.6.14-rc3\n1c9426e8a59461688bb451e006456987b198e4c0\trefs/tags/v2.6.14-rc3^{}\na1aeb6f9e4306b1a62629c56197eea65afd372b3\trefs/tags/v2.6.14-rc4\n907a42617970a159361f17ef9a63f04d276995ab\trefs/tags/v2.6.14-rc4^{}\nc08359b174c3b3a175979f81cc786c791f74c852\trefs/tags/v2.6.14-rc5\n93918e9afc76717176e9e114e79cdbb602a45ae8\trefs/tags/v2.6.14-rc5^{}\ndab47a31f42a23d2b374e1cd7d0b797e8e08b23d\trefs/tags/v2.6.15\n88026842b0a760145aa71d69e74fbc9ec118ca44\trefs/tags/v2.6.15^{}\n1400e40b758e4099e4d758d8fc38981b33b71897\trefs/tags/v2.6.15-rc1\ncd52d1ee9a92587b242d946a2300a3245d3b885a\trefs/tags/v2.6.15-rc1^{}\n7305b5cb045e2c71250b5b7472771ed2620bc514\trefs/tags/v2.6.15-rc2\n3bedff1d73b86e0cf52634efb447e9ada08f2cc6\trefs/tags/v2.6.15-rc2^{}\n00d7a7358e3f9f2575501674e604fe4c6700b365\trefs/tags/v2.6.15-rc3\n624f54be206adf970cd8eece16446b027913e533\trefs/tags/v2.6.15-rc3^{}\n8c27e9cccbc96548646606a2eb52c27e72abf5e1\trefs/tags/v2.6.15-rc4\n5666c0947ede0432ba5148570aa66ffb9febff5b\trefs/tags/v2.6.15-rc4^{}\nb58cb01b0f7eff054d1246e63f0eebfbdf8e6686\trefs/tags/v2.6.15-rc5\n436b0f76f2cee6617f27a649637766628909dd5d\trefs/tags/v2.6.15-rc5^{}\n20f065bc620db2d6157c95b117910c4ed59acc46\trefs/tags/v2.6.15-rc6\ndf7addbb45874f0f992266003155de5a22e1872f\trefs/tags/v2.6.15-rc6^{}\n373540886574ecf8b864fa7b8a5cf879b1d7b054\trefs/tags/v2.6.15-rc7\nf89f5948fc10bb973cd452d2e334da207828e228\trefs/tags/v2.6.15-rc7^{}\n414ad0ded83f088608f7c0e774df8cccbba4e229\trefs/tags/v2.6.16\n7705a8792b0fc82fd7d4dd923724606bbfd9fb20\trefs/tags/v2.6.16^{}\nf3bcf72eb85aba88a7bd0a6116dd0b5418590dbe\trefs/tags/v2.6.16-rc1\n2664b25051f7ab96b22b199aa2f5ef6a949a4296\trefs/tags/v2.6.16-rc1^{}\ne4f9aae0d74cb7d2fd5f0eb315cf9de1118fe260\trefs/tags/v2.6.16-rc2\n826eeb53a6f264842200d3311d69107d2eb25f5e\trefs/tags/v2.6.16-rc2^{}\na3adf278bcd5852d8c6345c9b0a44a0cc71c7454\trefs/tags/v2.6.16-rc3\ne9bb4c9929a63b23dcc637fae312b36b038bdc61\trefs/tags/v2.6.16-rc3^{}\nd94ef3bc908905e8bc0f1560a90df76a4c4b60bb\trefs/tags/v2.6.16-rc4\nbd71c2b17468a2531fb4c81ec1d73520845e97e1\trefs/tags/v2.6.16-rc4^{}\nafdf555c717a6ace9e5446dda4d169eaa5ca8062\trefs/tags/v2.6.16-rc5\nb9a33cebac70d6f67a769ce8d4078fee2b254ada\trefs/tags/v2.6.16-rc5^{}\n76dbe3f496eeaadab8977409b930e7d522dcf750\trefs/tags/v2.6.16-rc6\n535744878e34d01a53f946f26dfbca37186f2cf8\trefs/tags/v2.6.16-rc6^{}\n8ba130df4b67fa40878ccf80d54615132d24bc68\trefs/tags/v2.6.17\n427abfa28afedffadfca9dd8b067eb6d36bac53f\trefs/tags/v2.6.17^{}\nd882e0c80e6e3c60640492b83395e6fbbae04276\trefs/tags/v2.6.17-rc1\n6246b6128bbe34d0752f119cf7c5111c85fe481d\trefs/tags/v2.6.17-rc1^{}\nf61c8059ffbc29bd8a1ffbd5a87e5135bc28a752\trefs/tags/v2.6.17-rc2\n8bbde0e6d52265158ee9625f383500c1a7d09ba9\trefs/tags/v2.6.17-rc2^{}\n6716c37ec2dbf78b85a55cc5605677b6cf2299a0\trefs/tags/v2.6.17-rc3\n2be4d50295e2b6f62c07b614e1b103e280dddb84\trefs/tags/v2.6.17-rc3^{}\n90b92312eeebc70e61415394be3cc03b08a74945\trefs/tags/v2.6.17-rc4\nd8c3291c73b958243b33f8509d4507e76dafd055\trefs/tags/v2.6.17-rc4^{}\n39beb382e4e11ed01cb5e73022f18bbed2aefd8b\trefs/tags/v2.6.17-rc5\na8bd60705aa17a998516837d9c1e503ad4cbd7fc\trefs/tags/v2.6.17-rc5^{}\n831695cbeb7a0e8f9ddb9c0203a22723da2c3f2f\trefs/tags/v2.6.17-rc6\n1def630a6a49dda5bc89dfbd86656293640456f0\trefs/tags/v2.6.17-rc6^{}\n119248f4578ca60b09c20893724e10f19806e6f1\trefs/tags/v2.6.18\ne478bec0ba0a83a48a0f6982934b6de079e7e6b3\trefs/tags/v2.6.18^{}\n7df8ea909888d4856d3aff1c41192739d715a393\trefs/tags/v2.6.18-rc1\n120bda20c6f64b32e8bfbdd7b34feafaa5f5332e\trefs/tags/v2.6.18-rc1^{}\nf4035c6284f7de0b47ccf68264f289e7e0b47da2\trefs/tags/v2.6.18-rc2\n82d6897fefca6206bca7153805b4c5359ce97fc4\trefs/tags/v2.6.18-rc2^{}\n5031a46c0d098346e4c9cd56f7858def243da096\trefs/tags/v2.6.18-rc3\nb6ff50833ad43a8ebd9b16bf53c334f7aaf33c41\trefs/tags/v2.6.18-rc3^{}\n06abe048193087f81ee67c225a1b685d937f220d\trefs/tags/v2.6.18-rc4\n9f737633e6ee54fc174282d49b2559bd2208391d\trefs/tags/v2.6.18-rc4^{}\n69b7510036d06c6aabcdc0bb03f35cfc62160302\trefs/tags/v2.6.18-rc5\n60d4684068ff1eec78f55b5888d0bd2d4cca1520\trefs/tags/v2.6.18-rc5^{}\n12c8b6ff70a17bfcb59bcca55fa8e79d809c1c70\trefs/tags/v2.6.18-rc6\nc336923b668fdcf0312efbec3b44895d713f4d81\trefs/tags/v2.6.18-rc6^{}\n3d3f47c98b3696f5bd677f89a755c239f4d52a4c\trefs/tags/v2.6.18-rc7\n95064a75ebf8744e1ff595e8cd7ff9b6c851523e\trefs/tags/v2.6.18-rc7^{}\nc3fe6924620fd733ffe8bc8a9da1e9cde08402b3\trefs/tags/v2.6.19\n0215ffb08ce99e2bb59eca114a99499a4d06e704\trefs/tags/v2.6.19^{}\n008616c979c90b1a4ea2d2cebf4996743463b001\trefs/tags/v2.6.19-rc1\nd223a60106891bfe46febfacf46b20cd8509aaad\trefs/tags/v2.6.19-rc1^{}\n5e2c92804ed42d0be784e4dc4041dc3ca001810b\trefs/tags/v2.6.19-rc2\nb4bd8c66435a8cdf8c90334fb3b517a23ff2ab95\trefs/tags/v2.6.19-rc2^{}\naaa751e8aa7dd8b1c1f787728d279d9dadbb5938\trefs/tags/v2.6.19-rc3\n7059abedd2f04b68bd7e1a79c9c72f7aeee134c0\trefs/tags/v2.6.19-rc3^{}\n7a9d289b6650bf78df77ab463bedc2919df89833\trefs/tags/v2.6.19-rc4\nae99a78af33f00565a05dbbc6ca9b247fed002c5\trefs/tags/v2.6.19-rc4^{}\n2f4871018917f13c7cd01254335561a152decc00\trefs/tags/v2.6.19-rc5\n80c218812786f619c9a1ce50d0e7c32c7afde4de\trefs/tags/v2.6.19-rc5^{}\n82471364173618c5a97b6c02bf6e72deddde9632\trefs/tags/v2.6.19-rc6\n44597f65f6af3c692560a639f61d25398d13d1b6\trefs/tags/v2.6.19-rc6^{}\nfa285a3d7924a0e3782926e51f16865c5129a2f7\trefs/tags/v2.6.20\n62d0cfcb27cf755cebdc93ca95dabc83608007cd\trefs/tags/v2.6.20^{}\na7ecdd29e85a7d51179c6a4507a4c25a87ab5c0e\trefs/tags/v2.6.20-rc1\ncc016448b0bf0764928275d034e367753bde8162\trefs/tags/v2.6.20-rc1^{}\n8a2d17a56a71c5c796b0a5378ee76a105f21fdd9\trefs/tags/v2.6.20-rc2\n3bf8ba38f38d3647368e4edcf7d019f9f8d9184a\trefs/tags/v2.6.20-rc2^{}\n9d37e643a198d4232d2a12f1107358eb02b6cece\trefs/tags/v2.6.20-rc3\n669df1b478803f49a356528d290af7bf442eb3be\trefs/tags/v2.6.20-rc3^{}\ncb15cca892ac09f7cb99618a09304c5f5620e6ee\trefs/tags/v2.6.20-rc4\nbf81b46482c0fa8ea638e409d39768ea92a6b0f0\trefs/tags/v2.6.20-rc4^{}\nc81c70d32732b7abc644ec7aca24f3597aa921ea\trefs/tags/v2.6.20-rc5\na8b3485287731978899ced11f24628c927890e78\trefs/tags/v2.6.20-rc5^{}\n0909eebced6eadf15ea6aadce0d79c08676de3fe\trefs/tags/v2.6.20-rc6\n99abfeafb5f2eea1bb481330ff37343e1133c924\trefs/tags/v2.6.20-rc6^{}\n97c617f72b58983017f32da97fc228597c0dae8f\trefs/tags/v2.6.20-rc7\nf56df2f4db6e4af87fb8e941cff69f4501a111df\trefs/tags/v2.6.20-rc7^{}\nd1be341dba5521506d9e6dccfd66179080705bea\trefs/tags/v2.6.21\nde46c33745f5e2ad594c72f2cf5f490861b16ce1\trefs/tags/v2.6.21^{}\n2eb1ae149a28c1b8ade687c5fbab3c37da4c0fba\trefs/tags/v2.6.21-rc1\nc8f71b01a50597e298dc3214a2f2be7b8d31170c\trefs/tags/v2.6.21-rc1^{}\nfa18364691754673df97824d81bfe8524a3a0595\trefs/tags/v2.6.21-rc2\n606135a3081e045b677cde164a296c51f66c4633\trefs/tags/v2.6.21-rc2^{}\n44e05067b4b767fa3137335818c399b9b198c925\trefs/tags/v2.6.21-rc3\n08e15e81a40e3241ce93b4a43886f3abda184aa6\trefs/tags/v2.6.21-rc3^{}\nbac6eefe96204d0ad67d144f2511a6fc487aa594\trefs/tags/v2.6.21-rc4\ndb98e0b434a6265c451ffe94ec0a29b8d0aaf587\trefs/tags/v2.6.21-rc4^{}\n6fb04ccf5c5e054c4107090bed6e866489f1089f\trefs/tags/v2.6.21-rc5\ne0f2e3a06be513352cb4955313ed7e55909acd84\trefs/tags/v2.6.21-rc5^{}\na5d693edb558469a6f72bfda1253c7ba2278d657\trefs/tags/v2.6.21-rc6\na21bd69e1509b43823c317c3bf3f7ffa99884356\trefs/tags/v2.6.21-rc6^{}\n60afa917fea11f7cc93281b2dfd64b19b6521a93\trefs/tags/v2.6.21-rc7\n94a05509a9e11806acd797153d03019706e466f1\trefs/tags/v2.6.21-rc7^{}\n098fd16f00005f665d3baa7e682d8cb3d7c0fe6f\trefs/tags/v2.6.22\n7dcca30a32aadb0520417521b0c44f42d09fe05c\trefs/tags/v2.6.22^{}\ncb22632a37a5d797da988453924206d1638e4e6c\trefs/tags/v2.6.22-rc1\n39403865d2e4590802553370a56c9ab93131e4ee\trefs/tags/v2.6.22-rc1^{}\n5a1b8597cd250efd5bda1cba08417c95b6b314d7\trefs/tags/v2.6.22-rc2\n55b637c6a003a8c4850b41a2c2fd6942d8a7f530\trefs/tags/v2.6.22-rc2^{}\n0119a8416e0827bf2b937a1cf21d4909db3fa111\trefs/tags/v2.6.22-rc3\nc420bc9f09a0926b708c3edb27eacba434a4f4ba\trefs/tags/v2.6.22-rc3^{}\n5b78c77092a64e253fe1fde9fbbe818b49330ffc\trefs/tags/v2.6.22-rc4\n5ecd3100e695228ac5e0ce0e325e252c0f11806f\trefs/tags/v2.6.22-rc4^{}\naec07c7abc280bd5d0ca33b7cda3eb7b9b6e89c1\trefs/tags/v2.6.22-rc5\n188e1f81ba31af1b65a2f3611df4c670b092bbac\trefs/tags/v2.6.22-rc5^{}\n953e420db7c599f7db00548243f2afddc8440329\trefs/tags/v2.6.22-rc6\n189548642c5962e60c3667bdb3a703fe0bed12a6\trefs/tags/v2.6.22-rc6^{}\n087ea061253277de2b27e82d8572a386835a1b7e\trefs/tags/v2.6.22-rc7\na38d6181ff27824c79fc7df825164a212eff6a3f\trefs/tags/v2.6.22-rc7^{}\n0b8bc8b91cf6befea20fe78b90367ca7b61cfa0d\trefs/tags/v2.6.23\nbbf25010f1a6b761914430f5fca081ec8c7accd1\trefs/tags/v2.6.23^{}\n7d57c74238cdf570bca20b711b2c0b31a553c1e5\trefs/tags/v2.6.23-rc1\nf695baf2df9e0413d3521661070103711545207a\trefs/tags/v2.6.23-rc1^{}\n2c7522b19c386ed601d27b2aed3e7b84ac7852f0\trefs/tags/v2.6.23-rc2\nd4ac2477fad0f2680e84ec12e387ce67682c5c13\trefs/tags/v2.6.23-rc2^{}\n39e7e2ec80646a62a9d61871bee8d2736088a86f\trefs/tags/v2.6.23-rc3\n39d3520c92cf7a28c07229ca00cc35a1e8026c77\trefs/tags/v2.6.23-rc3^{}\ne7afef45b41f5f5e2211322f083247e42ba13a78\trefs/tags/v2.6.23-rc4\nb07d68b5ca4d55a16fab223d63d5fb36f89ff42f\trefs/tags/v2.6.23-rc4^{}\nf3cfc7abf10379d926dd04008059d2b04eaf4499\trefs/tags/v2.6.23-rc5\n40ffbfad6bb79a99cc7627bdaca0ee22dec526f6\trefs/tags/v2.6.23-rc5^{}\na33969a68b624d98356398af0a59856cc52f47a5\trefs/tags/v2.6.23-rc6\n0d4cbb5e7f60b2f1a4d8b7f6ea4cc264262c7a01\trefs/tags/v2.6.23-rc6^{}\nc3e1edc6a6b420f81a6bc1ea47c5b3dd157e76aa\trefs/tags/v2.6.23-rc7\n81cfe79b9c577139a873483654640eb3f6e78c39\trefs/tags/v2.6.23-rc7^{}\nfc4a2ad046f06bed41eda33142c5767149a72fe7\trefs/tags/v2.6.23-rc8\n4942de4a0e914f205d351a81873f4f63986bcc3c\trefs/tags/v2.6.23-rc8^{}\nda0a81e98c06aa0d1e05b9012c2b2facb1807e12\trefs/tags/v2.6.23-rc9\n3146b39c185f8a436d430132457e84fa1d8f8208\trefs/tags/v2.6.23-rc9^{}\n0d733ddb2026683da26c1722847b99911c43ccb5\trefs/tags/v2.6.24\n49914084e797530d9baaf51df9eda77babc98fa8\trefs/tags/v2.6.24^{}\ncebdeed27b068dcc3e7c311d7ec0d9c33b5138c2\trefs/tags/v2.6.24-rc1\nc9927c2bf4f45bb85e8b502ab3fb79ad6483c244\trefs/tags/v2.6.24-rc1^{}\n9aae299f7fd1888ea3a195cfe0edef17bb647415\trefs/tags/v2.6.24-rc2\ndbeeb816e805091e7cfc03baf36dc40b4adb2bbd\trefs/tags/v2.6.24-rc2^{}\nf05092637dc0d9a3f2249c9b283b973e6e96b7d2\trefs/tags/v2.6.24-rc3\nd9f8bcbf67a0ee67c8cb0734f003dfe916bb5248\trefs/tags/v2.6.24-rc3^{}\nb6fa40f5916811c6aad6625c384d26fd01135014\trefs/tags/v2.6.24-rc4\n09b56adc98e0f8a21644fcb4d20ad367c3fceb55\trefs/tags/v2.6.24-rc4^{}\n9f11d5919577129413e8389e43e5b6e8413dff53\trefs/tags/v2.6.24-rc5\n82d29bf6dc7317aeb0a3a13c2348ca8591965875\trefs/tags/v2.6.24-rc5^{}\nf49e4e249d57ddfa97e046bc5c994ef72c93e63b\trefs/tags/v2.6.24-rc6\nea67db4cdbbf7f4e74150e71da0984e25121f500\trefs/tags/v2.6.24-rc6^{}\nfcb31af14662059db467201ec73dfbb6f3300342\trefs/tags/v2.6.24-rc7\n3ce54450461bad18bbe1f9f5aa3ecd2f8e8d1235\trefs/tags/v2.6.24-rc7^{}\nc9ba0caa9650a1898c839a79f6ff96a8a982424c\trefs/tags/v2.6.24-rc8\ncbd9c883696da72b2b1f03f909dbacc04bbf8b58\trefs/tags/v2.6.24-rc8^{}\n20b8df8e5501bac243e64c0c8c52907735a0041b\trefs/tags/v2.6.25\n4b119e21d0c66c22e8ca03df05d9de623d0eb50f\trefs/tags/v2.6.25^{}\nabf6976c818c553eb2209fe32028a4c5eecab0cb\trefs/tags/v2.6.25-rc1\n19af35546de68c872dcb687613e0902a602cb20e\trefs/tags/v2.6.25-rc1^{}\nb74415eac8d3f1fcb39ad4bcef0c829635a3bc9f\trefs/tags/v2.6.25-rc2\n101142c37be8e5af9b847860219217e6b958c739\trefs/tags/v2.6.25-rc2^{}\nd622f5379e88a3bac4f8decfa49c0a04a8e209d3\trefs/tags/v2.6.25-rc3\nbfa274e2436fc7ef72ef51c878083647f1cfd429\trefs/tags/v2.6.25-rc3^{}\nc6c155e032361b0031943141b1a6f231e4f63817\trefs/tags/v2.6.25-rc4\n29e8c3c304b62f31b799565c9ee85d42bd163f80\trefs/tags/v2.6.25-rc4^{}\ncd81f35c48b7e0c2a871f88e1973f391f8330449\trefs/tags/v2.6.25-rc5\ncdeeeae056a429e729ae9e914fa8142ee45bee93\trefs/tags/v2.6.25-rc5^{}\nb22f07f908a648c864b16d2ba71f03aba4b684c9\trefs/tags/v2.6.25-rc6\na978b30af3bab0dd9af9350eeda25e76123fa28e\trefs/tags/v2.6.25-rc6^{}\nf4281310b609edd587922b7d4afa63e4b9a1ffd4\trefs/tags/v2.6.25-rc7\n05dda977f2574c3341abef9b74c27d2b362e1e3a\trefs/tags/v2.6.25-rc7^{}\ne39586f39c2829d30f4ea6680a846dfe4aad2f2e\trefs/tags/v2.6.25-rc8\n0e81a8ae37687845f7cdfa2adce14ea6a5f1dd34\trefs/tags/v2.6.25-rc8^{}\n3df83da958163beeca00d1254f512fafd79a19ed\trefs/tags/v2.6.25-rc9\n120dd64cacd4fb796bca0acba3665553f1d9ecaa\trefs/tags/v2.6.25-rc9^{}\n14650d6ec137e70b6c1918cdef235027c5156020\trefs/tags/v2.6.26\nbce7f793daec3e65ec5c5705d2457b81fe7b5725\trefs/tags/v2.6.26^{}\nd6b7f73ed134769c86966697e61b235b200cc4ae\trefs/tags/v2.6.26-rc1\n2ddcca36c8bcfa251724fe342c8327451988be0d\trefs/tags/v2.6.26-rc1^{}\nb67fc588ce611ca847620bd1353bf2d68fc3027f\trefs/tags/v2.6.26-rc2\n492c2e476eac010962850006c49df326919b284c\trefs/tags/v2.6.26-rc2^{}\nb041a30258df00c90ac1ed532cec3f25c00a3ce8\trefs/tags/v2.6.26-rc3\nb8291ad07a7f3b5b990900f0001198ac23ba893e\trefs/tags/v2.6.26-rc3^{}\ne21868a4cdd93e5883ff61579d4cd799d1a3c244\trefs/tags/v2.6.26-rc4\ne490517a039a99d692cb3a5561941b0a5f576172\trefs/tags/v2.6.26-rc4^{}\n9ab8267ac47ce50b932cc4b1cbd9b05e2faac8b7\trefs/tags/v2.6.26-rc5\n53c8ba95402be65d412a806cda3430f0e72cd107\trefs/tags/v2.6.26-rc5^{}\nc047413a582cbf2c7e1b012458c1665d959703be\trefs/tags/v2.6.26-rc6\n5dd34572ad9a3be430632dd42e4af2ea370b397b\trefs/tags/v2.6.26-rc6^{}\nf40883d058ed196976285fc1fd5fd6c85dcb5bef\trefs/tags/v2.6.26-rc7\nd70ac829b7f42d7ef4f879635c6a772b0b4ed0a2\trefs/tags/v2.6.26-rc7^{}\n496a3db2bfb98f1e9c7b73514d8d25790f69f5fb\trefs/tags/v2.6.26-rc8\n543cf4cb3fe6f6cae3651ba918b9c56200b257d0\trefs/tags/v2.6.26-rc8^{}\nc22689a6f45beff21b97df566e0da17b4fa9ec19\trefs/tags/v2.6.26-rc9\nb7279469d66b55119784b8b9529c99c1955fe747\trefs/tags/v2.6.26-rc9^{}\n4b5127df968616dee2f4775d795198878ef1638b\trefs/tags/v2.6.27\n3fa8749e584b55f1180411ab1b51117190bac1e5\trefs/tags/v2.6.27^{}\n78e28361b194c98eaa987e368264c2209ca08976\trefs/tags/v2.6.27-rc1\n6e86841d05f371b5b9b86ce76c02aaee83352298\trefs/tags/v2.6.27-rc1^{}\nb27c893faffea2a0c49cf6170d89c2a7aeba6598\trefs/tags/v2.6.27-rc2\n0967d61ea0d8e8a7826bd8949cd93dd1e829ac55\trefs/tags/v2.6.27-rc2^{}\n4aca83081f7ddf04d74989cc9b5e149160096324\trefs/tags/v2.6.27-rc3\n30a2f3c60a84092c8084dfe788b710f8d0768cd4\trefs/tags/v2.6.27-rc3^{}\n0572569f90ba4175e0400f3be7b9f42e1c803e55\trefs/tags/v2.6.27-rc4\n6a55617ed5d1aa62b850de2cf66f5ede2eef4825\trefs/tags/v2.6.27-rc4^{}\nd17d499628a7d4a34c11f54a203281773885a3e7\trefs/tags/v2.6.27-rc5\n24342c34a022ee90839873d91396045e12ef1090\trefs/tags/v2.6.27-rc5^{}\n89c44b4a5ad50f8b85846b16af5f977f3861d197\trefs/tags/v2.6.27-rc6\nadee14b2e1557d0a8559f29681732d05a89dfc35\trefs/tags/v2.6.27-rc6^{}\ncb1d73008533d7c4a949fc0867de2612dab23572\trefs/tags/v2.6.27-rc7\n72d31053f62c4bc464c2783974926969614a8649\trefs/tags/v2.6.27-rc7^{}\n7b4e06aa7c0952353096105f87be67615e4382f5\trefs/tags/v2.6.27-rc8\n94aca1dac6f6d21f4b07e4864baf7768cabcc6e7\trefs/tags/v2.6.27-rc8^{}\n5a97794d66909dbe3282062d7637705bcd352815\trefs/tags/v2.6.27-rc9\n4330ed8ed4da360ac1ca14b0fddff4c05b10de16\trefs/tags/v2.6.27-rc9^{}\n8a38e7fd7a30cd44be954f9a3b062e607cec5d41\trefs/tags/v2.6.28\n4a6908a3a050aacc9c3a2f36b276b46c0629ad91\trefs/tags/v2.6.28^{}\ncb50773491b0066d0e55f31f8875d5678fa3f8ad\trefs/tags/v2.6.28-rc1\n57f8f7b60db6f1ed2c6918ab9230c4623a9dbe37\trefs/tags/v2.6.28-rc1^{}\n5eb14db1f80df4eb0ecb0976e47e8e287e3175fc\trefs/tags/v2.6.28-rc2\n0173a3265b228da319ceb9c1ec6a5682fd1b2d92\trefs/tags/v2.6.28-rc2^{}\n31cb515c75388d457c2f318a0ee9606b3527852f\trefs/tags/v2.6.28-rc3\n45beca08dd8b6d6a65c5ffd730af2eac7a2c7a03\trefs/tags/v2.6.28-rc3^{}\nb65a80a5ee7923355cbca669cead08e067fc7ada\trefs/tags/v2.6.28-rc4\nf7160c7573615ec82c691e294cf80d920b5d588d\trefs/tags/v2.6.28-rc4^{}\n68185b00cf91c1c4dcc761a2f3a1631562ed52f3\trefs/tags/v2.6.28-rc5\n9bf1a2445f3c569098b8de7097ca324e65abecc2\trefs/tags/v2.6.28-rc5^{}\nb503092a16bdba0a418e155fe592521fc20855af\trefs/tags/v2.6.28-rc6\n13d428afc007fcfcd6deeb215618f54cf9c0cae6\trefs/tags/v2.6.28-rc6^{}\n1a0bff987b27da5181f112bcc60f34d6fbb7e67e\trefs/tags/v2.6.28-rc7\n061e41fdb5047b1fb161e89664057835935ca1d2\trefs/tags/v2.6.28-rc7^{}\n6fa7003fe34e9a8a31fb91754f3c289cc045564b\trefs/tags/v2.6.28-rc8\n8b1fae4e4200388b64dd88065639413cb3f1051c\trefs/tags/v2.6.28-rc8^{}\n7d4b1bcc5e7411fc9e63f610c16e5de8fe6dfde8\trefs/tags/v2.6.28-rc9\n929096fe9ff1f4b3645cf3919527ab47e8d5e17c\trefs/tags/v2.6.28-rc9^{}\n5dfd736f95b3d84a18b5bb8e50ac71f245438acf\trefs/tags/v2.6.29\n8e0ee43bc2c3e19db56a4adaa9a9b04ce885cd84\trefs/tags/v2.6.29^{}\n7a3862d6e9934ffe107fe7ddfbe2c63dba321793\trefs/tags/v2.6.29-rc1\nc59765042f53a79a7a65585042ff463b69cb248c\trefs/tags/v2.6.29-rc1^{}\nd31ce8060b0e875179ba5ca1d40475dc2a082cc7\trefs/tags/v2.6.29-rc2\n1de9e8e70f5acc441550ca75433563d91b269bbe\trefs/tags/v2.6.29-rc2^{}\n8be00154b8e949bf4b89ac198aef9a247532ac2d\trefs/tags/v2.6.29-rc3\n18e352e4a73465349711a9324767e1b2453383e2\trefs/tags/v2.6.29-rc3^{}\n87c16e9e8bb74f14f4504305957e4346e7fc46ea\trefs/tags/v2.6.29-rc4\n8e4921515c1a379539607eb443d51c30f4f7f338\trefs/tags/v2.6.29-rc4^{}\n1dcda2df87ba4ecc7988be7a45d01645e11c9f4c\trefs/tags/v2.6.29-rc5\nd2f8d7ee1a9b4650b4e43325b321801264f7c37a\trefs/tags/v2.6.29-rc5^{}\n0715562512ca6cf14c1b8f08e09d5907118deaf0\trefs/tags/v2.6.29-rc6\n20f4d6c3a2a23c5d7d9cc7f42fbb943ca7a03d1f\trefs/tags/v2.6.29-rc6^{}\nb21232ea962bbaf0e909365f4964f6cceb2ba8ce\trefs/tags/v2.6.29-rc7\nfec6c6fec3e20637bee5d276fb61dd8b49a3f9cc\trefs/tags/v2.6.29-rc7^{}\n73e37758f6b500a67d918528204832cc8f256516\trefs/tags/v2.6.29-rc8\n041b62374c7fedc11a8a1eeda2868612d3d1436c\trefs/tags/v2.6.29-rc8^{}\nfa9c4d0983f98945b32d6bd0dfc1ba1b02d3773c\trefs/tags/v2.6.30\n07a2039b8eb0af4ff464efd3dfd95de5c02648c6\trefs/tags/v2.6.30^{}\n42ae7400074d449189d41fceb6d6f871490d7842\trefs/tags/v2.6.30-rc1\n577c9c456f0e1371cbade38eaf91ae8e8a308555\trefs/tags/v2.6.30-rc1^{}\n7c941a7798a5169ee0dd69a9e8d5c40ceb702023\trefs/tags/v2.6.30-rc2\n0882e8dd3aad33eca41696d463bb896e6c8817eb\trefs/tags/v2.6.30-rc2^{}\nb2fdb301af8f488952aaab7de3ff8d3294c3274f\trefs/tags/v2.6.30-rc3\n091069740304c979f957ceacec39c461d0192158\trefs/tags/v2.6.30-rc3^{}\n176c5e45fe4f1c83df9429b7c2668b41446baac2\trefs/tags/v2.6.30-rc4\n091438dd5668396328a3419abcbc6591159eb8d1\trefs/tags/v2.6.30-rc4^{}\n4266b00c9dc3e1e071bde0ebfeadc40bbc1e8316\trefs/tags/v2.6.30-rc5\n091bf7624d1c90cec9e578a18529f615213ff847\trefs/tags/v2.6.30-rc5^{}\n6492b02a211a5fd0fc92e68d171fc3644cda71a7\trefs/tags/v2.6.30-rc6\n1406de8e11eb043681297adf86d6892ff8efc27a\trefs/tags/v2.6.30-rc6^{}\nefa3e68c670b745894255af9827b3902bbc9376e\trefs/tags/v2.6.30-rc7\n59a3759d0fe8d969888c741bb33f4946e4d3750d\trefs/tags/v2.6.30-rc7^{}\ne6c72abc9d239d788b0cdb20cb3d20ba04c33707\trefs/tags/v2.6.30-rc8\n9fa7eb283c5cdc2b0f4a8cfe6387ed82e5e9a3d3\trefs/tags/v2.6.30-rc8^{}\na271b16ba5478acead8773ebe01ee9b6365154d8\trefs/tags/v2.6.31\n74fca6a42863ffacaf7ba6f1936a9f228950f657\trefs/tags/v2.6.31^{}\neeadf87f8411b42b9803312d2870aa424602a99c\trefs/tags/v2.6.31-rc1\n28d0325ce6e0a52f53d8af687e6427fee59004d3\trefs/tags/v2.6.31-rc1^{}\nc5d511255186f0bba081f11cbe11c856cadaedf7\trefs/tags/v2.6.31-rc2\n8e4a718ff38d8539938ec3421935904c27e00c39\trefs/tags/v2.6.31-rc2^{}\nc361304f4a17c05992b1cf68172a5ea8389649ee\trefs/tags/v2.6.31-rc3\n6847e154e3cd74fca6084124c097980a7634285a\trefs/tags/v2.6.31-rc3^{}\n12ae5c63b8a8ac621ddfc810f774d00cad44765a\trefs/tags/v2.6.31-rc4\n4be3bd7849165e7efa6b0b35a23d6a3598d97465\trefs/tags/v2.6.31-rc4^{}\n948e7a0b0e000a8d646b72fcfd8ccaa047e046ab\trefs/tags/v2.6.31-rc5\ned680c4ad478d0fee9740f7d029087f181346564\trefs/tags/v2.6.31-rc5^{}\n73e5ade3a45e2096db80f0e87d6d838d0499f0fe\trefs/tags/v2.6.31-rc6\n64f1607ffbbc772685733ea63e6f7f4183df1b16\trefs/tags/v2.6.31-rc6^{}\ndcd5e628b7dc7f393dd728999fb0fb73a96d5e1b\trefs/tags/v2.6.31-rc7\n422bef879e84104fee6dc68ded0e371dbeb5f88e\trefs/tags/v2.6.31-rc7^{}\nda1ee8b71154887fe5298ae683c089050f2c49a5\trefs/tags/v2.6.31-rc8\n326ba5010a5429a5a528b268b36a5900d4ab0eba\trefs/tags/v2.6.31-rc8^{}\n0827eb5df631ed1756653faf74248a9524f202cd\trefs/tags/v2.6.31-rc9\ne07cccf4046978df10f2e13fe2b99b2f9b3a65db\trefs/tags/v2.6.31-rc9^{}\n8401ccb7c8aef30cc2c6f02b166c0ea2990ef301\trefs/tags/v2.6.32\n1016bf08944977a33d3a48edc15ee34b425f6d8a\trefs/tags/v2.6.32-rc1\n17d857be649a21ca90008c6dc425d849fa83db5c\trefs/tags/v2.6.32-rc1^{}\n1016bf08944977a33d3a48edc15ee34b425f6d8a\trefs/tags/v2.6.32-rc2\n17d857be649a21ca90008c6dc425d849fa83db5c\trefs/tags/v2.6.32-rc2^{}\n910eff4ec30f648f297700d43784b2159d35fb4f\trefs/tags/v2.6.32-rc3\n374576a8b6f865022c0fd1ca62396889b23d66dd\trefs/tags/v2.6.32-rc3^{}\n742a213497d587595f23674eafad1e520c5af6bd\trefs/tags/v2.6.32-rc4\n161291396e76e0832c08f617eb9bd364d1648148\trefs/tags/v2.6.32-rc4^{}\nc6add0a844533aeaa7bf86dcd4f924dca085d287\trefs/tags/v2.6.32-rc5\n012abeea669ea49636cf952d13298bb68654146a\trefs/tags/v2.6.32-rc5^{}\n53a1963436f23ee8b6fa29a5ebcd925a9912594b\trefs/tags/v2.6.32-rc6\nb419148e567728f6af0c3b01965c1cc141e3e13a\trefs/tags/v2.6.32-rc6^{}\n5946e9740318d61b3d1c3d7bfdc3b54fc3ac181c\trefs/tags/v2.6.32-rc7\n156171c71a0dc4bce12b4408bb1591f8fe32dc1a\trefs/tags/v2.6.32-rc7^{}\nde8a4af91ab6fa3cde2618f4021b5faabdcd95ea\trefs/tags/v2.6.32-rc8\n648f4e3e50c4793d9dbf9a09afa193631f76fa26\trefs/tags/v2.6.32-rc8^{}\n542192c0793a98acd5bd0e10750ec9cc30794cc6\trefs/tags/v2.6.33\nd14e040a3592de665407269688d70296955c5f14\trefs/tags/v2.6.33-rc1\n55639353a0035052d9ea6cfe4dde0ac7fcbb2c9f\trefs/tags/v2.6.33-rc1^{}\n331ce84170c8ebba5f0fadac64f66d6f00a438e4\trefs/tags/v2.6.33-rc2\n6b7b284958d47b77d06745b36bc7f36dab769d9b\trefs/tags/v2.6.33-rc2^{}\n31fdc15b99788540d0ee8b8b337242e38489f603\trefs/tags/v2.6.33-rc3\n74d2e4f8d79ae0c4b6ec027958d5b18058662eea\trefs/tags/v2.6.33-rc3^{}\n5ba7808eabc37cb2464096077d0df55f33148245\trefs/tags/v2.6.33-rc4\n7284ce6c9f6153d1777df5f310c959724d1bd446\trefs/tags/v2.6.33-rc4^{}\n76efcb71c910774213480cdfe20b73e07c6a00aa\trefs/tags/v2.6.33-rc5\n92dcffb916d309aa01778bf8963a6932e4014d07\trefs/tags/v2.6.33-rc5^{}\nb02c43040da3d3e4f56d34d443c4c2a0d41da367\trefs/tags/v2.6.33-rc6\nabe94c756c08d50566c09a65b9c7fe72f83071c5\trefs/tags/v2.6.33-rc6^{}\n600255d9e9ec0eecc49be78197c630504cf8c263\trefs/tags/v2.6.33-rc7\n29275254caedfedce960cfe6df24b90cb04fe431\trefs/tags/v2.6.33-rc7^{}\n22ebef85968508e596dc60d970b716024cb9a34e\trefs/tags/v2.6.33-rc8\n724e6d3fe8003c3f60bf404bf22e4e331327c596\trefs/tags/v2.6.33-rc8^{}\nf47043834ab83a6c50930edb9ef9754986dd0aa4\trefs/tags/v2.6.34\nfe2098f5dff78881162f71ae028384435681a90a\trefs/tags/v2.6.34-rc1\n57d54889cd00db2752994b389ba714138652e60c\trefs/tags/v2.6.34-rc1^{}\n2fc56a2a7aa32adeddf7efe074b38cbdbb41894a\trefs/tags/v2.6.34-rc2\n220bf991b0366cc50a94feede3d7341fa5710ee4\trefs/tags/v2.6.34-rc2^{}\nfc2199137e85558e1f8f2bf44e0d3fa2b5cc4371\trefs/tags/v2.6.34-rc3\n2eaa9cfdf33b8d7fb7aff27792192e0019ae8fc6\trefs/tags/v2.6.34-rc3^{}\ncb0cbeb16ff949783023da2270d5af36af416865\trefs/tags/v2.6.34-rc4\n0d0fb0f9c5fddef4a10242fe3337f00f528a3099\trefs/tags/v2.6.34-rc4^{}\nd1744e136396b363e5844ed5f928e40067b5784a\trefs/tags/v2.6.34-rc5\n01bf0b64579ead8a82e7cfc32ae44bc667e7ad0f\trefs/tags/v2.6.34-rc5^{}\n1b5265c5905fdc68873d37c902adc4aec2cbd6a3\trefs/tags/v2.6.34-rc6\n66f41d4c5c8a5deed66fdcc84509376c9a0bf9d8\trefs/tags/v2.6.34-rc6^{}\n3884cbfac5cf610a7116ca90a970a11cf495bb83\trefs/tags/v2.6.34-rc7\nb57f95a38233a2e73b679bea4a5453a1cc2a1cc9\trefs/tags/v2.6.34-rc7^{}\n04b3807ba2065a72c30196790e7e4459bf93fe55\trefs/tags/v2.6.35\n77cb4411c86825cf693e338fada52dfca3345668\trefs/tags/v2.6.35-rc1\n67a3e12b05e055c0415c556a315a3d3eb637e29e\trefs/tags/v2.6.35-rc1^{}\n06006d039fbf390b87b5ee76d16187b5cb9b3f4d\trefs/tags/v2.6.35-rc2\ne44a21b7268a022c7749f521c06214145bd161e4\trefs/tags/v2.6.35-rc2^{}\nf51882c32dcbec0befa48e12682f1651c4772b7b\trefs/tags/v2.6.35-rc3\n7e27d6e778cd87b6f2415515d7127eba53fe5d02\trefs/tags/v2.6.35-rc3^{}\n55acf6b6533581f03df07ddd166c6631bc304845\trefs/tags/v2.6.35-rc4\n815c4163b6c8ebf8152f42b0a5fd015cfdcedc78\trefs/tags/v2.6.35-rc4^{}\n1dd55af06d281ffbc945cd7bb21cfb98d6e84a99\trefs/tags/v2.6.35-rc5\n1c5474a65bf15a4cb162dfff86d6d0b5a08a740c\trefs/tags/v2.6.35-rc5^{}\n37a3bd34ba0892f0f1c1a0a03b06d61ed3c554c1\trefs/tags/v2.6.35-rc6\nb37fa16e78d6f9790462b3181602a26b5af36260\trefs/tags/v2.6.35-rc6^{}\n24b3dbd67f50350da9d4fe2f291301f8436583b4\trefs/tags/v2.6.36\n8ed88d401f908a594cd74a4f2513b0fabd32b699\trefs/tags/v2.6.36-rc1\nda5cabf80e2433131bf0ed8993abc0f7ea618c73\trefs/tags/v2.6.36-rc1^{}\n58d3707b8891f71d4891e6b36129eeacd3ba63f4\trefs/tags/v2.6.36-rc2\n76be97c1fc945db08aae1f1b746012662d643e97\trefs/tags/v2.6.36-rc2^{}\n40f7ec041a61c6b6d419e418818c79f7c23a1007\trefs/tags/v2.6.36-rc3\n2bfc96a127bc1cc94d26bfaa40159966064f9c8c\trefs/tags/v2.6.36-rc3^{}\n8607f6908a65fbd41d8eee6d0572425182eced69\trefs/tags/v2.6.36-rc4\n49553c2ef88749dd502687f4eb9c258bb10a4f44\trefs/tags/v2.6.36-rc4^{}\nf4d2c86897046fb2dd9680b3446dfcc17a11e7f4\trefs/tags/v2.6.36-rc5\nb30a3f6257ed2105259b404d419b4964e363928c\trefs/tags/v2.6.36-rc5^{}\n93590f17a2e3ba2aed400c7608263b97da62b6d4\trefs/tags/v2.6.36-rc6\n899611ee7d373e5eeda08e9a8632684e1ebbbf00\trefs/tags/v2.6.36-rc6^{}\nf3f2d2543afa76bcc13a58fc6a1ff723f28890da\trefs/tags/v2.6.36-rc7\ncb655d0f3d57c23db51b981648e452988c0223f9\trefs/tags/v2.6.36-rc7^{}\n7619e63f48822b2c68d0e108677340573873fb93\trefs/tags/v2.6.36-rc8\ncd07202cc8262e1669edff0d97715f3dd9260917\trefs/tags/v2.6.36-rc8^{}\n13ebfcfca0bb9f2f4e5ba85e86c2b47d4a6cfd00\trefs/tags/v2.6.37\n579cc3d8b5840f3355bad58e7ab23eae04ff9cb6\trefs/tags/v2.6.37-rc1\nc8ddb2713c624f432fa5fe3c7ecffcdda46ea0d4\trefs/tags/v2.6.37-rc1^{}\na1e4aaecda4a52e850e90d4f95ed2f59955ed057\trefs/tags/v2.6.37-rc2\ne53beacd23d9cb47590da6a7a7f6d417b941a994\trefs/tags/v2.6.37-rc2^{}\n8a198c8196ac3716e1856978d3e18cca5d800ef3\trefs/tags/v2.6.37-rc3\n3561d43fd289f590fdae672e5eb831b8d5cf0bf6\trefs/tags/v2.6.37-rc3^{}\n78d3494aa9e5cbd28600b5440655b263ab1c0efd\trefs/tags/v2.6.37-rc4\ne8a7e48bb248a1196484d3f8afa53bded2b24e71\trefs/tags/v2.6.37-rc4^{}\nf9459ed00525f440d25d7c88fe8d52abd3746066\trefs/tags/v2.6.37-rc5\ncf7d7e5a1980d1116ee152d25dac382b112b9c17\trefs/tags/v2.6.37-rc5^{}\n3f4ddf273ce92382ad3ce55fde3d773bd9e4bddd\trefs/tags/v2.6.37-rc6\nb0c3844d8af6b9f3f18f31e1b0502fbefa2166be\trefs/tags/v2.6.37-rc6^{}\n6261d1ea5bdbc9baf84c192242c82e63cdb02788\trefs/tags/v2.6.37-rc7\n90a8a73c06cc32b609a880d48449d7083327e11a\trefs/tags/v2.6.37-rc7^{}\n5720e551140dd586156e9875b0d1ef528e9c5f59\trefs/tags/v2.6.37-rc8\n387c31c7e5c9805b0aef8833d1731a5fe7bdea14\trefs/tags/v2.6.37-rc8^{}\n45228f6c54fa2d34db5ecece0867d6f6f36d8039\trefs/tags/v2.6.38\naa6741cead5660406a453c01b6e37cbe06d52433\trefs/tags/v2.6.38-rc1\nc56eb8fb6dccb83d9fe62fd4dc00c834de9bc470\trefs/tags/v2.6.38-rc1^{}\n182a43159a3ea400594ca05ce7ff5052950a1010\trefs/tags/v2.6.38-rc2\n1bae4ce27c9c90344f23c65ea6966c50ffeae2f5\trefs/tags/v2.6.38-rc2^{}\n70f1e06182fab9290a1f7775ade996e4854dec3a\trefs/tags/v2.6.38-rc3\nebf53826e105f488f4f628703a108e98940d1dc5\trefs/tags/v2.6.38-rc3^{}\n901069c5c5b155322539a94cf337c378848e435a\trefs/tags/v2.6.38-rc4\n100b33c8bd8a3235fd0b7948338d6cbb3db3c63d\trefs/tags/v2.6.38-rc4^{}\n656372ebed8acf941bb63d08abb250c9896785a8\trefs/tags/v2.6.38-rc5\n85e2efbb1db9a18d218006706d6e4fbeb0216213\trefs/tags/v2.6.38-rc5^{}\n86483dddb24b8d5624c38362f820211c694473ba\trefs/tags/v2.6.38-rc6\nf5412be599602124d2bdd49947b231dd77c0bf99\trefs/tags/v2.6.38-rc6^{}\n295dd79b22916ed71a641dd80ee4d8b07c624feb\trefs/tags/v2.6.38-rc7\ndd9c1549edef02290edced639f67b54a25abbe0e\trefs/tags/v2.6.38-rc7^{}\n44986a8d6d6d024d9422dbb91635600862921ed3\trefs/tags/v2.6.38-rc8\na5abba989deceb731047425812d268daf7536575\trefs/tags/v2.6.38-rc8^{}\n0a471f6704723d32d7a7be2936c70cf8a36b3d78\trefs/tags/v2.6.39\n5cb75c01f17f69d6ac102d58766f7fb30269a5c9\trefs/tags/v2.6.39-rc1\n0ce790e7d736cedc563e1fb4e998babf5a4dbc3d\trefs/tags/v2.6.39-rc1^{}\n76af3715abf44176ae1ac9cf5cb9f3861d39eee1\trefs/tags/v2.6.39-rc2\n6221f222c0ebf1acdf7abcf927178f40e1a65e2a\trefs/tags/v2.6.39-rc2^{}\n074bd9a1615dd4c0108b0424a50770d1b605b53e\trefs/tags/v2.6.39-rc3\na6360dd37e1a144ed11e6548371bade559a1e4df\trefs/tags/v2.6.39-rc3^{}\nc8e761132679d935b5d3edd06e48db2bd3eb918a\trefs/tags/v2.6.39-rc4\nf0e615c3cb72b42191b558c130409335812621d8\trefs/tags/v2.6.39-rc4^{}\n149b78658628901a6e578566a45f159d0b38ce2f\trefs/tags/v2.6.39-rc5\n8e10cd74342c7f5ce259cceca36f6eba084f5d58\trefs/tags/v2.6.39-rc5^{}\n8630f22a089f0d777893ee6a53eb3e6acef06044\trefs/tags/v2.6.39-rc6\n0ee5623f9a6e52df90a78bd21179f8ab370e102e\trefs/tags/v2.6.39-rc6^{}\n2c2138749b9dc99a1f26b212eb373458ea179e06\trefs/tags/v2.6.39-rc7\n693d92a1bbc9e42681c42ed190bd42b636ca876f\trefs/tags/v2.6.39-rc7^{}\ncda7108ee4d181164d91c7e070b323a4e7f5abdf\trefs/tags/v3.0\nd7d0b221fdc34cec1e1efe3c7264b74efbd89317\trefs/tags/v3.0^{}\n2a23a510142a1ab597f0214e4fadb3c7350bbb8d\trefs/tags/v3.0-rc1\n55922c9d1b84b89cb946c777fddccb3247e7df2c\trefs/tags/v3.0-rc1^{}\neb73a032155ba51adb229be1a2ad3ac08951b485\trefs/tags/v3.0-rc2\n59c5f46fbe01a00eedf54a23789634438bb80603\trefs/tags/v3.0-rc2^{}\na73e7344f7a7712628f40f851fa835ea82025d7b\trefs/tags/v3.0-rc3\n2c53b436a30867eb6b47dd7bab23ba638d1fb0d2\trefs/tags/v3.0-rc3^{}\n4921f03412bd0a91cb242b259618b13dfae1acf6\trefs/tags/v3.0-rc4\n56299378726d5f2ba8d3c8cbbd13cb280ba45e4f\trefs/tags/v3.0-rc4^{}\nc699212fde57ea66926c4a0b6ebbe4d62c52e0b9\trefs/tags/v3.0-rc5\nb0af8dfdd67699e25083478c63eedef2e72ebd85\trefs/tags/v3.0-rc5^{}\n8a79d68b5a847beef3f70b2ed16b2a757572cc5e\trefs/tags/v3.0-rc6\nfe0d42203cb5616eeff68b14576a0f7e2dd56625\trefs/tags/v3.0-rc6^{}\n394d6f903ac6889fa50ca5c19111ae659d524b4c\trefs/tags/v3.0-rc7\n620917de59eeb934b9f8cf35cc2d95c1ac8ed0fc\trefs/tags/v3.0-rc7^{}\n4dbbfb0a19830c62b47115d230c4f94334d53989\trefs/tags/v3.1\ndd073a5b13967fa83038ed1594ecae5faaed71a2\trefs/tags/v3.1-rc1\n322a8b034003c0d46d39af85bf24fee27b902f48\trefs/tags/v3.1-rc1^{}\nbc9dac81d1d3442713e5b91ed7cda1646df9730e\trefs/tags/v3.1-rc10\n899e3ee404961a90b828ad527573aaaac39f0ab1\trefs/tags/v3.1-rc10^{}\nfbba4cec036b7027b84c00547361bd8127254b1e\trefs/tags/v3.1-rc2\n93ee7a9340d64f20295aacc3fb6a22b759323280\trefs/tags/v3.1-rc2^{}\nae30e7e9c4d8cd135ec429191f9eec746709eccc\trefs/tags/v3.1-rc3\nfcb8ce5cfe30ca9ca5c9a79cdfe26d1993e65e0c\trefs/tags/v3.1-rc3^{}\n897e5ed317d229e937731d6389f8f51c7e29e62e\trefs/tags/v3.1-rc4\nc6a389f123b9f68d605bb7e0f9b32ec1e3e14132\trefs/tags/v3.1-rc4^{}\ndba5cf0231a4c3091c0f3b7236c6978dab8cbc97\trefs/tags/v3.1-rc5\nddf28352b80c86754a6424e3a61e8bdf9213b3c7\trefs/tags/v3.1-rc5^{}\n8ff02915cf6ca8f5ecda04e0a2150507df89846b\trefs/tags/v3.1-rc6\nb6fd41e29dea9c6753b1843a77e50433e6123bcb\trefs/tags/v3.1-rc6^{}\n4cf670b4bbdb31291ffa52ad3f65acd8cd2eb20d\trefs/tags/v3.1-rc7\nd93dc5c4478c1fd5de85a3e8aece9aad7bbae044\trefs/tags/v3.1-rc7^{}\ne7f2a88548df497544d4fafca79836bbd8b6342e\trefs/tags/v3.1-rc8\na102a9ece5489e1718cd7543aa079082450ac3a2\trefs/tags/v3.1-rc8^{}\n38a181c9f494c81d7d2327861621c0e04018bc6a\trefs/tags/v3.1-rc9\n976d167615b64e14bc1491ca51d424e2ba9a5e84\trefs/tags/v3.1-rc9^{}\n5cb038e08237d1a74477ee31a5ae3895b1daa2a1\trefs/tags/v3.10\n2aa88c7c0fb0435ed52ec2db1cf0f1485527ac26\trefs/tags/v3.10^{}\n9174c12727941568fd44197df76c2b112cf9fdd8\trefs/tags/v3.11\n2aa88c7c0fb0435ed52ec2db1cf0f1485527ac26\trefs/tags/v3.11^{}\n79f0e83d0cf7be15fb0008d9ffd68176fe8a0cab\trefs/tags/v3.19\n7d3af6b88cf2dd8d81f9c7179f2649550fbfc005\trefs/tags/v3.2\n4ea8b996e5dd18145d945667fbcd9a6af234a30c\trefs/tags/v3.2-rc1\n1ea6b8f48918282bdca0b32a34095504ee65bab5\trefs/tags/v3.2-rc1^{}\n68b7d2ca89b1ce708f40ebd45d19fcf982cc6b38\trefs/tags/v3.2-rc2\ncfcfc9eca2bcbd26a8e206baeb005b055dbf8e37\trefs/tags/v3.2-rc2^{}\ne0f79b438798057b03d1a06704d63c8e4297b053\trefs/tags/v3.2-rc3\ncaca6a03d365883564885f2c1da3e88dcf65d139\trefs/tags/v3.2-rc3^{}\n96c50634c8fc57b7a4a5d84691a18c173268251e\trefs/tags/v3.2-rc4\n5611cc4572e889b62a7b4c72a413536bf6a9c416\trefs/tags/v3.2-rc4^{}\n10fc295c8cd3c5b9d7d271b4875679ee294afbae\trefs/tags/v3.2-rc5\ndc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50\trefs/tags/v3.2-rc5^{}\n5292d98194346528607da828962c7e8677c27e15\trefs/tags/v3.2-rc6\n384703b8e6cd4c8ef08512e596024e028c91c339\trefs/tags/v3.2-rc6^{}\ne33abea7c57a228c8fdf77c892c230cb840425ac\trefs/tags/v3.2-rc7\n5f0a6e2d503896062f641639dacfe5055c2f593b\trefs/tags/v3.2-rc7^{}\n22af79bf27717f0bca2415cd2834ceaa8d3a779a\trefs/tags/v3.3\n04227ba5a2980c9c714739458fec02c3922527e3\trefs/tags/v3.3^{}\n0803b590443c714345e41c77b6e2f1d6c92243ec\trefs/tags/v3.3-rc1\ndcd6c92267155e70a94b3927bce681ce74b80d1f\trefs/tags/v3.3-rc1^{}\n8bd4e2a2ba139fcdab2ab9bbdd76e4df4d66d7fd\trefs/tags/v3.3-rc2\n62aa2b537c6f5957afd98e29f96897419ed5ebab\trefs/tags/v3.3-rc2^{}\n72cdd65517c6463e5578040976c166b33bcfc14a\trefs/tags/v3.3-rc3\nd65b4e98d7ea3038b767b70fe8be959b2913f16d\trefs/tags/v3.3-rc3^{}\nb87f9498998dbefd82fa7b3d6414454600481889\trefs/tags/v3.3-rc4\nb01543dfe67bb1d191998e90d20534dc354de059\trefs/tags/v3.3-rc4^{}\n13aae9ead734a49a5486907f7dc290b2ea50a6b9\trefs/tags/v3.3-rc5\n6b21d18ed50c7d145220b0724ea7f2613abf0f95\trefs/tags/v3.3-rc5^{}\nd9234c2ff6f2a50075dd37fb859e17bfb185d17c\trefs/tags/v3.3-rc6\n192cfd58774b4d17b2fe8bdc77d89c2ef4e0591d\trefs/tags/v3.3-rc6^{}\nb2e4909898710f070173a108f25e6e135b5bdebd\trefs/tags/v3.3-rc7\nfde7d9049e55ab85a390be7f415d74c9f62dd0f9\trefs/tags/v3.3-rc7^{}\n04227ba5a2980c9c714739458fec02c3922527e3\trefs/tags/v3.4\nb84516a747a9754fc77668a23cbf6203cf2c05d2\trefs/tags/v3.4-rc1\ndd775ae2549217d3ae09363e3edb305d0fa19928\trefs/tags/v3.4-rc1^{}\n4029716364bee5d89323c24dc343c0dade05c5e8\trefs/tags/v3.4-rc2\n0034102808e0dbbf3a2394b82b1bb40b5778de9e\trefs/tags/v3.4-rc2^{}\n0690bdc7e124d9ef5da67cc75f0ea9952a5427d7\trefs/tags/v3.4-rc3\ne816b57a337ea3b755de72bec38c10c864f23015\trefs/tags/v3.4-rc3^{}\n2263a9c8844371b175e061728bd7acb8fd188c4f\trefs/tags/v3.4-rc4\n66f75a5d028beaf67c931435fdc3e7823125730c\trefs/tags/v3.4-rc4^{}\nc3bf00ad560c0ccf0e6a36d922cc99e9de10fb47\trefs/tags/v3.4-rc5\n69964ea4c7b68c9399f7977aa5b9aa6539a6a98a\trefs/tags/v3.4-rc5^{}\n2b1e9fec303b3f2f138edcefc5f048d666e56166\trefs/tags/v3.4-rc6\nd48b97b403d23f6df0b990cee652bdf9a52337a3\trefs/tags/v3.4-rc6^{}\n5842651b3b71b4873d020e3e16e238b76fdfa90c\trefs/tags/v3.4-rc7\n36be50515fe2aef61533b516fa2576a2c7fe7664\trefs/tags/v3.4-rc7^{}\n28ee068c4c3d9bbb375a7f10aac21d566821311a\trefs/tags/v3.5\n04f4dfa6bbb4df376ed50599de43bf5181241602\trefs/tags/v3.5-rc1\nf8f5701bdaf9134b1f90e5044a82c66324d2073f\trefs/tags/v3.5-rc1^{}\n41827bc48b4ead01918d9a8ee2f7307a886c3a1a\trefs/tags/v3.5-rc2\ncfaf025112d3856637ff34a767ef785ef5cf2ca9\trefs/tags/v3.5-rc2^{}\n111ecbd538d2d3542e2e54a666f04c11bb14ed83\trefs/tags/v3.5-rc3\n485802a6c524e62b5924849dd727ddbb1497cc71\trefs/tags/v3.5-rc3^{}\n379f9f503b99360d6fa269947eefc67492641c28\trefs/tags/v3.5-rc4\n6b16351acbd415e66ba16bf7d473ece1574cf0bc\trefs/tags/v3.5-rc4^{}\nb26e78e3ef49a32fe2267fb194d740cabec35b78\trefs/tags/v3.5-rc5\n6887a4131da3adaab011613776d865f4bcfb5678\trefs/tags/v3.5-rc5^{}\na94b851ad29264f83dd48229090cf95e6394b0d5\trefs/tags/v3.5-rc6\nbd0a521e88aa7a06ae7aabaed7ae196ed4ad867a\trefs/tags/v3.5-rc6^{}\nac143858efa89977a70ff375ac9c1bedba17691d\trefs/tags/v3.5-rc7\n84a1caf1453c3d44050bd22db958af4a7f99315c\trefs/tags/v3.5-rc7^{}\nb69ed787bece91e0876d14704dfa07e03df21fa7\trefs/tags/v3.6\nf85125cc169d2379a55f170270ef3f0adf260409\trefs/tags/v3.6-rc1\n0d7614f09c1ebdbaa1599a5aba7593f147bf96ee\trefs/tags/v3.6-rc1^{}\nd1a4d2f3a903dbd3b274cac81d53c138748ef309\trefs/tags/v3.6-rc2\nd9875690d9b89a866022ff49e3fcea892345ad92\trefs/tags/v3.6-rc2^{}\nc8d47765843dba9357904ee626a46f949e1ee2ca\trefs/tags/v3.6-rc3\nfea7a08acb13524b47711625eebea40a0ede69a0\trefs/tags/v3.6-rc3^{}\ne0524de36ef79eeaf707c385d83967d8beb67349\trefs/tags/v3.7\n82eac2a64d9e6ffc1a2cbb439618966554f8cd7a\trefs/tags/v3.8\ndab332040a936dca31c64fe822b6595cb69a0352\trefs/tags/v3.8^{}\ncebde9a45d39a31b8c98b48752a53aef0f27383d\trefs/tags/v3.9\n" +query_type: git-ls diff --git a/upstream-info/firebird.yaml b/upstream-info/firebird.yaml deleted file mode 100644 index 1f8f1cf3746e6af7c52438b8a3d464359ec805bc..0000000000000000000000000000000000000000 --- a/upstream-info/firebird.yaml +++ /dev/null @@ -1,4 +0,0 @@ -version_control: github -src_repo: FirebirdSQL/firebird -tag_prefix: ^v -seperator: . diff --git a/upstream-info/gjs.yaml b/upstream-info/gjs.yaml index 071b6d1eb15eeb30c8e925cd90bc55af3f471fc8..4f20bfcf63dd6df9e6e9102315168943ae0973e0 100644 --- a/upstream-info/gjs.yaml +++ b/upstream-info/gjs.yaml @@ -4,293 +4,5 @@ src_repo: gjs tag_prefix: GJS_ seperator: _ last_query: - time_stamp: 2020-04-24 13:46:20.175037500 +00:00 - raw_data: | - 1.39.0 - 1.39.0^{} - 1.39.3 - 1.39.3^{} - 1.44.0 - 1.44.0^{} - 1.45.3 - 1.45.3^{} - 1.45.4 - 1.45.4^{} - 1.46.0 - 1.46.0^{} - 1.47.0 - 1.47.0^{} - 1.47.3 - 1.47.3^{} - 1.47.4 - 1.47.4^{} - 1.47.90 - 1.47.90^{} - 1.47.91 - 1.47.91^{} - 1.47.92 - 1.47.92^{} - 1.48.0 - 1.48.0^{} - 1.48.1 - 1.48.1^{} - 1.48.2 - 1.48.2^{} - 1.48.3 - 1.48.3^{} - 1.48.4 - 1.48.4^{} - 1.48.5 - 1.48.5^{} - 1.48.6 - 1.48.6^{} - 1.48.7 - 1.48.7^{} - 1.49.1 - 1.49.1^{} - 1.49.2 - 1.49.2^{} - 1.49.3 - 1.49.3^{} - 1.49.4 - 1.49.4^{} - 1.49.90 - 1.49.90^{} - 1.49.91 - 1.49.91^{} - 1.49.92 - 1.49.92^{} - 1.50.0 - 1.50.0^{} - 1.50.1 - 1.50.1^{} - 1.50.2 - 1.50.2^{} - 1.50.3 - 1.50.3^{} - 1.50.4 - 1.50.4^{} - 1.51.2 - 1.51.2^{} - 1.51.3 - 1.51.3^{} - 1.51.4 - 1.51.4^{} - 1.51.90 - 1.51.90^{} - 1.51.91 - 1.51.91^{} - 1.51.92 - 1.51.92^{} - 1.52.0 - 1.52.0^{} - 1.52.1 - 1.52.1^{} - 1.52.2 - 1.52.2^{} - 1.52.3 - 1.52.3^{} - 1.52.4 - 1.52.4^{} - 1.52.5 - 1.52.5^{} - 1.53.1 - 1.53.1^{} - 1.53.2 - 1.53.2^{} - 1.53.3 - 1.53.3^{} - 1.53.4 - 1.53.4^{} - 1.53.90 - 1.53.90^{} - 1.53.91 - 1.53.91^{} - 1.53.92 - 1.53.92^{} - 1.54.0 - 1.54.0^{} - 1.54.1 - 1.54.1^{} - 1.54.2 - 1.54.2^{} - 1.54.3 - 1.54.3^{} - 1.55.1 - 1.55.1^{} - 1.55.2 - 1.55.2^{} - 1.55.3 - 1.55.3^{} - 1.55.4 - 1.55.4^{} - 1.55.90 - 1.55.90^{} - 1.55.91 - 1.55.91^{} - 1.55.92 - 1.55.92^{} - 1.56.0 - 1.56.0^{} - 1.56.1 - 1.56.1^{} - 1.56.2 - 1.56.2^{} - 1.57.1 - 1.57.1^{} - 1.57.2 - 1.57.2^{} - 1.57.3 - 1.57.3^{} - 1.57.4 - 1.57.4^{} - 1.57.90 - 1.57.90^{} - 1.57.91 - 1.57.91^{} - 1.57.92 - 1.57.92^{} - 1.58.0 - 1.58.0^{} - 1.58.1 - 1.58.1^{} - 1.58.2 - 1.58.2^{} - 1.58.3 - 1.58.3^{} - 1.58.4 - 1.58.4^{} - 1.58.5 - 1.58.5^{} - 1.58.6 - 1.58.6^{} - 1.63.1 - 1.63.1^{} - 1.63.2 - 1.63.2^{} - 1.63.3 - 1.63.3^{} - 1.63.90 - 1.63.90^{} - 1.63.91 - 1.63.91^{} - 1.63.92 - 1.63.92^{} - 1.64.0 - 1.64.0^{} - 1.64.1 - 1.64.1^{} - 1.65.1 - 1.65.1^{} - GJS_0_1 - GJS_0_1^{} - GJS_0_2 - GJS_0_2^{} - GJS_0_3 - GJS_0_3^{} - GJS_0_4 - GJS_0_4^{} - GJS_0_5 - GJS_0_5^{} - GJS_0_6 - GJS_0_6^{} - GJS_0_7 - GJS_0_7^{} - GJS_0_7_10 - GJS_0_7_10^{} - GJS_0_7_11 - GJS_0_7_11^{} - GJS_0_7_14 - GJS_0_7_14^{} - GJS_0_7_2 - GJS_0_7_2^{} - GJS_0_7_4 - GJS_0_7_4^{} - GJS_0_7_5 - GJS_0_7_5^{} - GJS_0_7_6 - GJS_0_7_6^{} - GJS_0_7_7 - GJS_0_7_7^{} - GJS_0_7_8 - GJS_0_7_8^{} - GJS_1_29_0 - GJS_1_29_0^{} - GJS_1_29_15 - GJS_1_29_15^{} - GJS_1_29_16 - GJS_1_29_16^{} - GJS_1_29_17 - GJS_1_29_17^{} - GJS_1_29_18 - GJS_1_29_18^{} - GJS_1_30_0 - GJS_1_30_0^{} - GJS_1_30_1 - GJS_1_30_1^{} - GJS_1_31_10 - GJS_1_31_10^{} - GJS_1_31_20 - GJS_1_31_20^{} - GJS_1_31_22 - GJS_1_31_22^{} - GJS_1_32_0 - GJS_1_32_0^{} - GJS_1_33_10 - GJS_1_33_10^{} - GJS_1_33_14 - GJS_1_33_14^{} - GJS_1_33_2 - GJS_1_33_2^{} - GJS_1_33_3 - GJS_1_33_3^{} - GJS_1_33_4 - GJS_1_33_4^{} - GJS_1_33_9 - GJS_1_33_9^{} - GJS_1_35_2 - GJS_1_35_2^{} - GJS_1_35_3 - GJS_1_35_3^{} - GJS_1_35_4 - GJS_1_35_4^{} - GJS_1_35_8 - GJS_1_35_8^{} - GJS_1_35_9 - GJS_1_35_9^{} - GJS_1_36_0 - GJS_1_36_0^{} - GJS_1_36_1 - GJS_1_36_1^{} - GJS_1_37_1 - GJS_1_37_1^{} - GJS_1_37_4 - GJS_1_37_4^{} - GJS_1_38_0 - GJS_1_38_0^{} - GJS_1_38_1 - GJS_1_38_1^{} - GJS_1_39_3 - GJS_1_39_3^{} - GJS_1_39_90 - GJS_1_39_90^{} - GJS_1_39_91 - GJS_1_39_91^{} - GJS_1_40_0 - GJS_1_40_0^{} - GJS_1_40_1 - GJS_1_40_1^{} - GJS_1_41_3 - GJS_1_41_3^{} - GJS_1_41_4 - GJS_1_41_4^{} - GJS_1_41_91 - GJS_1_41_91^{} - GJS_1_42_0 - GJS_1_42_0^{} - GJS_1_43_3 - GJS_1_43_3^{} - gjs_0_7_12 - gjs_0_7_12^{} - tag - tag^{} + time_stamp: 2020-05-20 07:21:25.806789770 +00:00 + raw_data: "89e6cbd6980e5e278391856ff47bff697899a620\trefs/tags/1.39.0\n6effe5a7fc3420ff861921792eb721d3b50d7627\trefs/tags/1.39.0^{}\n6e1328d2c2f4c0ec4ffd114282f74b854299051a\trefs/tags/1.39.3\n0ef269ffa25883e34dc92f5bd11440975a4e9c85\trefs/tags/1.39.3^{}\ncf4a75d38633505d64ef3ac6e7e4a0fc873d4549\trefs/tags/1.44.0\nda97f766bc512dbe44cf3212565a1b22f12dcfbf\trefs/tags/1.44.0^{}\nf64c141d2e770142ec13752dca18fdc6cba811f0\trefs/tags/1.45.3\n8f7b5891f60344787a58e7c445462fae313960ea\trefs/tags/1.45.3^{}\n63b6b5cbc7ba226f3b7eab5a1c463c3dc8fc129b\trefs/tags/1.45.4\n6ce2defb46e15219cc6f855b6530174ce870312d\trefs/tags/1.45.4^{}\nb55e621c3f3a83082769e86000f38dbf9c3bf1df\trefs/tags/1.46.0\ncaeb97adf1f3de02fe5c9d0cd3c1434999a1a6ce\trefs/tags/1.46.0^{}\n966fd645c967f622aa47a7892bccfcd74287507b\trefs/tags/1.47.0\na8887e32286b4377cf9e80568ffbc778a0567af2\trefs/tags/1.47.0^{}\n15e407db6abc46dac63a8f28615f246b8fe44bc7\trefs/tags/1.47.3\ne4ff6c899e8c6c6af804b830728b739c4f9d47a0\trefs/tags/1.47.3^{}\n38a3c4b13d7ecbf017df3841c558cb3af40fa43d\trefs/tags/1.47.4\n8a9fa66535b12b5e7ac7ef07708611ef55354b52\trefs/tags/1.47.4^{}\n9c1b6b20b8d9cd455fe223a348c5ed3aa267dc8c\trefs/tags/1.47.90\ne7651d1e427cd733a7d40335941eafd2a4fb8319\trefs/tags/1.47.90^{}\n6f9eb0edf756d76218715bbb99a3f45e029b5b72\trefs/tags/1.47.91\n03caf6e5446d8d0a386327d5d20c54837d9d51bc\trefs/tags/1.47.91^{}\nb0e7f5107d4c82fd491fe2f04f11ae22c9d41ab6\trefs/tags/1.47.92\n3b15649ec7df6c1ace55adcd1fedfcbda624ed16\trefs/tags/1.47.92^{}\ncd461b1425c3d042abc51c787189df274e3a7d83\trefs/tags/1.48.0\na7bcfb9f3e00ca9849bf44aa82b28b790dd3b66e\trefs/tags/1.48.0^{}\n90c16d3d0b74344105b64d2648b124b553b955b7\trefs/tags/1.48.1\nc418799bff7ee9617e39648b69933ba6f695dee2\trefs/tags/1.48.1^{}\n9b95766005b433ff3a2eec8bf9a28ca7c3e391c7\trefs/tags/1.48.2\n740963c5023763bf468251819b5cc7eced1914fa\trefs/tags/1.48.2^{}\n6bd3496a3c845c981a57cc4f93842169bbd45ff6\trefs/tags/1.48.3\n9e64b210af822883de887916d560a2d7c95a0fe3\trefs/tags/1.48.3^{}\nd61d5f5798cd897f484842fa6416a613c59d1322\trefs/tags/1.48.4\n11b730d84a518326400fd17f7a222b98ff6b6644\trefs/tags/1.48.4^{}\n523035324d01afdae92a9c87f002f49d3b4912ba\trefs/tags/1.48.5\n43c5d7839630dd166372f2c404a9a72c87fd102a\trefs/tags/1.48.5^{}\n9da1d10c773022dfe519b2eecf516a3e81b1a68f\trefs/tags/1.48.6\na9db649304db525ca166ec0845ee7a86cea4bf7f\trefs/tags/1.48.6^{}\n6bb1653d8174b7708c9f502e076df74cff8b083d\trefs/tags/1.48.7\n96a06c8cdf3e2e28d0d77bb7073c004f6ac4c1e6\trefs/tags/1.48.7^{}\n345b632795b5fc582434402daecaf83b45e6f9df\trefs/tags/1.49.1\na00a63e2e0333dac3f23a331d7de3e4eb1d54e50\trefs/tags/1.49.1^{}\nd74c0ab5968449c4d790e24cad694d9ad022ef7e\trefs/tags/1.49.2\n6d63d560fe5692b50815fa7b7ff00a7f9ce45219\trefs/tags/1.49.2^{}\n86dab3b8d06ee07861403a462a88551278320d5b\trefs/tags/1.49.3\n15fe43d4d9691a473c30192536e7510baccca13f\trefs/tags/1.49.3^{}\n126580c7f1a3138688d2e1de41e390521c830276\trefs/tags/1.49.4\ndca17105ebedaa1c04befa4db4a073245af00ae9\trefs/tags/1.49.4^{}\n6bcd9609f0faf423f52bc2fc5babf0816e0ac2c9\trefs/tags/1.49.90\n69862c41c4feeb7b49441b8fd14f105f7e3e688a\trefs/tags/1.49.90^{}\ncb861bdcd244e26de5c48caeab58a8a6c2a684e7\trefs/tags/1.49.91\n61887633dca6d3fcd3b990646958adeddc4f0379\trefs/tags/1.49.91^{}\n9f0c0bd7934b7a6bfb3a5702e18d507d2b565638\trefs/tags/1.49.92\n84e4012e8894ed96638c5d509ff8ae1077643434\trefs/tags/1.49.92^{}\n7cbb46299f7940b54f56928f3326a1caef57c2ee\trefs/tags/1.50.0\nb3e2deba5a96307b5f02fd62906bc0c5bc4c70f1\trefs/tags/1.50.0^{}\n4932a72049dfb21173a4ad550faa0712cae7f681\trefs/tags/1.50.1\nb1b7b14bd54e108fde97eea9247e2636c8d760cf\trefs/tags/1.50.1^{}\n57165b3919efae13e57220ac84d0d10b1538c7c6\trefs/tags/1.50.2\n9a97b89ac410091466961d8430ff4da399b83bbe\trefs/tags/1.50.2^{}\ndec26aa4efc004de418cd07ca3d005283e76c93b\trefs/tags/1.50.3\n292106fea5318171aca450901bffc30a42f4680b\trefs/tags/1.50.3^{}\n73adf3de062e676874ec74ea2bb35ce64bdca0b3\trefs/tags/1.50.4\n08046ea1e25ddc682fb529496898a1153ca2fb35\trefs/tags/1.50.4^{}\nef9207f9a6784532b644bb380d669ca294eeefcf\trefs/tags/1.51.2\n70a7f101829e1f2a0cfb184ca83fb94e7111fc9a\trefs/tags/1.51.2^{}\nfd6e0b24df46e2fb28de21bde4ba9d6cb0a210ad\trefs/tags/1.51.3\n766a8f29811c9fcef84dac8c56ac31673df6e440\trefs/tags/1.51.3^{}\nb2d0e54658dd02cc22a879a7ce0cfec62f717ebe\trefs/tags/1.51.4\nc007be5df0593770c4d7089215f5643900aa322b\trefs/tags/1.51.4^{}\n9d4fbd6badc9261d2519174ade3065a795ed1345\trefs/tags/1.51.90\nf1ca20fbf18f7844942df0f1a7b6829a9a23e472\trefs/tags/1.51.90^{}\ndd4b2a109603df7ab7c1eff9263619f146155ba6\trefs/tags/1.51.91\n542f9b7bb6e84e0a90b1f613ed22cf26f622efbe\trefs/tags/1.51.91^{}\nd702c1c00eadb52fe8d593d399c276e2582087a6\trefs/tags/1.51.92\n5deee85ba0e1a867d045d292715c366ff574309a\trefs/tags/1.51.92^{}\n4f1c42f7b4f6030397d5befdfb928889090d2c9e\trefs/tags/1.52.0\n320268ef1902aa610cf2526d00065261fc90d4dc\trefs/tags/1.52.0^{}\n23f38e5476d08860514ca3a872ea75c51478bb2e\trefs/tags/1.52.1\n73751baa0247cb74791f923ea93017e4d5c12c2d\trefs/tags/1.52.1^{}\nb1b4aa203cdd4cd9970b3142b3980c62139cc7df\trefs/tags/1.52.2\n9a331f9ba850f20734547eb3eaa2f4b1c79bb527\trefs/tags/1.52.2^{}\n562de96dc41f3af21529a534ee2cfd98e27195d6\trefs/tags/1.52.3\n9e63c335e84613a6e499c61aa1afcd5107c36b10\trefs/tags/1.52.3^{}\n4b254b044bdd3ec5641ed95d9280ad3b8c2cf1f1\trefs/tags/1.52.4\n45f3d1b63594c3ac4750e351d814e40c35712247\trefs/tags/1.52.4^{}\n3542362be455487363fcb287e7c20a2b258d0c91\trefs/tags/1.52.5\ndc51d506b930496153b0fdf6429b627831ae7cb1\trefs/tags/1.52.5^{}\nbbde6f24734e82821c45b48507ae610aa458725e\trefs/tags/1.53.1\n3d25722ba12ac55ec3210b610b40ff5c0306bd7e\trefs/tags/1.53.1^{}\n2e68a1c481d1a8d2e4d809d1f25ee122e4da0fad\trefs/tags/1.53.2\n65bcad77425981aa3958403c5455ecb068675c07\trefs/tags/1.53.2^{}\n3cd234e3713f2d95cd4278a8733693f2619ac131\trefs/tags/1.53.3\n9bbbf6ad0e8572fefab80d49b316bcfc5ae23ab5\trefs/tags/1.53.3^{}\nf4fd08de3be79a3654675a4130156575b2e3866d\trefs/tags/1.53.4\n17e8c889c115204fbaa4002a71a56cd854a8ef58\trefs/tags/1.53.4^{}\n5618565e3dd4fb339922ac664144ecf6942f0c28\trefs/tags/1.53.90\n6989c629eef01252e51f40ee7a4b24be1e38d5dd\trefs/tags/1.53.90^{}\na66fe82fc8ef8b84354bb7b6fb4161a191eba8dc\trefs/tags/1.53.91\n136e332a902fdccf091c6bfd2b95b49858f59c6e\trefs/tags/1.53.91^{}\n97b0e257ac7b0e1ff01df0f04e1e07dc3331d58f\trefs/tags/1.53.92\n17b895d359c655bcf491d5abfc1cb063c22ec6cc\trefs/tags/1.53.92^{}\n9ca933dfc933942a331d71cadc68401d74c91e37\trefs/tags/1.54.0\nd8dca63d7d508b858f771d847bee2e99017db2ce\trefs/tags/1.54.0^{}\n8f970d0ce9c32983ec7929c0d2464534573a8d84\trefs/tags/1.54.1\nf9fc622d5fb7f3a85b09de564f1e1c4ccfd47913\trefs/tags/1.54.1^{}\ne12f844dadc590e86a09200c0c493901c9310b92\trefs/tags/1.54.2\n4e81717703b3ebf0b8e85b7f286f92fa4103eacd\trefs/tags/1.54.2^{}\n7ba814a095e7a00a540dbd80a2c2ea6803451802\trefs/tags/1.54.3\n7d5e567b47dce85caf734caa5ba1c9387fdea253\trefs/tags/1.54.3^{}\n51bd6ebe6ad2165b658b1e6b6c22d3fad4a38e12\trefs/tags/1.55.1\n774512efff3377969cfca992c84b898ab8c83b84\trefs/tags/1.55.1^{}\nb79ae72dabc956b0799e0dda62f5ad3c99b3ff23\trefs/tags/1.55.2\n4ea7f25877c8e064f1db6e81b5173cfc05c87530\trefs/tags/1.55.2^{}\n12e76457a1310497f371f8241c452d78cd2a36dd\trefs/tags/1.55.3\n26fff35ff57b5ddb6375c24371fa3757391d5c14\trefs/tags/1.55.3^{}\n4aecf8b1f64cd2691c8e1b4df4034468a7478eb8\trefs/tags/1.55.4\n0e7cac9bc40702f9e4d6d22b7158efa5052e5195\trefs/tags/1.55.4^{}\n7483be9ba37a8d4ec47afc52621c0d5d0f0cae16\trefs/tags/1.55.90\n95830e9a800701566dc517e7fb9412bfc7a92d09\trefs/tags/1.55.90^{}\nbd0cb85cd0077e7dea65cffd51bed20893ddc1ba\trefs/tags/1.55.91\n22de6662c9d3d5d0462d0e2a773808dd63875e35\trefs/tags/1.55.91^{}\n045e749571bceff7068152e9aa171bb7def34c0f\trefs/tags/1.55.92\nb3b36d6d2c38fc8b0c488eb9283ec8db9a05dd52\trefs/tags/1.55.92^{}\ne79f28b29125a134d306b4dd09984396dd4f711c\trefs/tags/1.56.0\n31a0ed59b2c1c621410269e17740b133e73f7334\trefs/tags/1.56.0^{}\n1f133e56f4cb52508fe1f83771e2186e759c56a1\trefs/tags/1.56.1\n2b17ce9519cdac6dc39d04b02900f47384621ac5\trefs/tags/1.56.1^{}\ne872c7b735168f4b8a56d957fad6a3b96fcde838\trefs/tags/1.56.2\n51ebacc5f3ffd46a1ac445aa324ebcdc55975b7d\trefs/tags/1.56.2^{}\n4bf2e3dbc429fc817dc8041c5149b96f4f59d3ea\trefs/tags/1.57.1\n18c7725a145ad936a267d50055f732684d3035fb\trefs/tags/1.57.1^{}\n32816ce58035f156a72caa2529cbbb98064d92c8\trefs/tags/1.57.2\n9d4ec18c8e65109990f97ac026d73c2a9af10330\trefs/tags/1.57.2^{}\nf36e3b4a7819a5f850bd427a0a0bf1b67cf059ae\trefs/tags/1.57.3\n2ef09915d1247a856e8d23f9ca64404ca178fb1e\trefs/tags/1.57.3^{}\nd4531098e056a6c5a3c64e8dc081aae93bbcc63a\trefs/tags/1.57.4\n0e2f4c1cad94e06d67169bc8aa005834fbdeeb29\trefs/tags/1.57.4^{}\n379911184807a41c4145991d70afbb951d9527c8\trefs/tags/1.57.90\n2f78d7355752af2f17a4b2f8c916506a76e87e8a\trefs/tags/1.57.90^{}\n86e67cb80623773f3678520995e7631135bb9b81\trefs/tags/1.57.91\naf14cf59b20e4c1ccc0d30dfe8bd6e8aba474204\trefs/tags/1.57.91^{}\nccc76259061edaf9a746e30c663f796226b72b4b\trefs/tags/1.57.92\n7cf6655f7d35001627d9f45f59dabd3869312739\trefs/tags/1.57.92^{}\n1087ab43d953190c1e7ccf4ec4c129ae8d3adc50\trefs/tags/1.58.0\n4318cc82de60e88b4727e25260a1bd4872093dac\trefs/tags/1.58.0^{}\n3e9a8866d38b2677d235ea0e881961b58d2a4ab9\trefs/tags/1.58.1\nbf2690e35155dbd610e2599b7671cd8a3c416f06\trefs/tags/1.58.1^{}\n979194c41ecf537ffd9d926f23de548195fa0efe\trefs/tags/1.58.2\na0cec7c38f9104dce2fe021c33e9afc0bbaf6bd9\trefs/tags/1.58.2^{}\nd67da34bac79ad7774f0eb83b9ad727b3e61b012\trefs/tags/1.58.3\n0310682cd5edce82ecedf29ef7dbfde5d85876e6\trefs/tags/1.58.3^{}\n92de82aef7a251de13426b3de89788a2df28b9cc\trefs/tags/1.58.4\nfed2bfb25f6ad1ae1f6035353eb298088ce4a9b4\trefs/tags/1.58.4^{}\ne62e2b0a3a596eb20263dfb00ee5ae1d39d65e27\trefs/tags/1.58.5\n680fc377fd4f8a3b87836d6c7a1fa1b5074c4137\trefs/tags/1.58.5^{}\na220ae524abd79e7beb2a37a4e949dfcb5368def\trefs/tags/1.58.6\n800318753a12ca39f2586dda5d9b2fc3129a1021\trefs/tags/1.58.6^{}\n01e756d8af8a5a8aad50b3e3a1aa09fed8195351\trefs/tags/1.58.7\n1e1c0cbd51a89ce21e2ed351713c2551dcab7483\trefs/tags/1.58.7^{}\ncf4b9025e562be28ca4a32f74221918e26749bac\trefs/tags/1.63.1\nfbe27e507e26c38e17f32b9dc43df04ffab3a061\trefs/tags/1.63.1^{}\ne7575475cda32be6b0ab7daf6484b9b859d6a869\trefs/tags/1.63.2\nbfc7a3665ceda4d6b03be9c7d2ef381ddd2e5aba\trefs/tags/1.63.2^{}\n3baef63c3c4bce4d1b402f21fa193af0c4768b7c\trefs/tags/1.63.3\n6b803ad7fdf84394aa18e08f2a53e95b0379e454\trefs/tags/1.63.3^{}\nac06da2c9a3937681a679a9e7b8644410c6117f5\trefs/tags/1.63.90\n59c587a95aad105e318230a828a4695f6e673348\trefs/tags/1.63.90^{}\n07947d4c12d6428fd91206e1a208c72f38e9deac\trefs/tags/1.63.91\n016300e9a2fda5a310b4a42a487355e68491a1fa\trefs/tags/1.63.91^{}\n355eea0b5a8af53b4e4175bfb376d744cc7fd813\trefs/tags/1.63.92\na205430d1f979e7dc36671ac5f515682fb36c413\trefs/tags/1.63.92^{}\nc5b7fd0cb4331bc3804235686be48682f2e67c83\trefs/tags/1.64.0\n4f3cf93effd9f59c6132fd1be1a8d24bbf7acbd8\trefs/tags/1.64.0^{}\n05062b98564eb1a71db5b031cd69c265b98d98e7\trefs/tags/1.64.1\n0b0af102f6f28a8f7cbfa401ed6a9e1c528bb784\trefs/tags/1.64.1^{}\naccb05a9ba8fb5d8adf606dd1c58ffc41b8d69a7\trefs/tags/1.64.2\n85f1c7d1fd9ec984742af7e193e42eb643476607\trefs/tags/1.64.2^{}\n7e45d02f3ffcb68ae27fe928899a59ed81f18a16\trefs/tags/1.65.1\na5044f451880e32499af912cc4e9b3f9403892ad\trefs/tags/1.65.1^{}\na8f1165873c9838f820845e4317725c35170bddd\trefs/tags/1.65.2\n24864a5c8b69af84f1762cd929d99ccb9773b976\trefs/tags/1.65.2^{}\n6066a597db7e56183557b7ab3b90f23fe0975cb2\trefs/tags/GJS_0_1\nc73b00c631109579b0d6f4170508763f31673c35\trefs/tags/GJS_0_1^{}\naed4d55f8dac3723b9fa52006e4885551010932c\trefs/tags/GJS_0_2\n6a03f85b92cca6bab737face5295810cc126a31d\trefs/tags/GJS_0_2^{}\ne14f9e4f7cf1e19b6a3e71bde64389338e349f34\trefs/tags/GJS_0_3\na12ab33e6a0b575d3fa0d17c584d0f4c5bbb9f22\trefs/tags/GJS_0_3^{}\nf8e7e9cf8459f8d26dd0b419ae60ea76629dc91e\trefs/tags/GJS_0_4\n4175f42adf28325c65a6cb3ab8dea625e14dcdfa\trefs/tags/GJS_0_4^{}\n164497f234e5fd65ac9c9aef7c42be7b030838e6\trefs/tags/GJS_0_5\ne556bc8f61bb5f32b95e39668e910506726de9b9\trefs/tags/GJS_0_5^{}\n49e5dcd3f6c9c7c91fb39aa9a76748988cf5be27\trefs/tags/GJS_0_6\n8e7623bdd33e457b55e213e0be464bc11c2088da\trefs/tags/GJS_0_6^{}\n6a2d245eab7c1db225650b6f1c372737680859fc\trefs/tags/GJS_0_7\n1de139d1d811ff86b94c83b5de0ab0248ae6b258\trefs/tags/GJS_0_7^{}\ne9242256a495bb44be973d889b1c66e6eb321bbf\trefs/tags/GJS_0_7_10\n730bd6088f56cd5baf108399f3fa97ad0208b06a\trefs/tags/GJS_0_7_10^{}\n72f0d4e1dc28989e9995dfcad31ee22944bbcc49\trefs/tags/GJS_0_7_11\n7859892af2b6a684b353219165be247fcad5c75a\trefs/tags/GJS_0_7_11^{}\n0d6aa7f9918b19bdc187cd22af078cc17d2db094\trefs/tags/GJS_0_7_14\n6111d99e28a3bb0b695de5c5861ba880e55f9776\trefs/tags/GJS_0_7_14^{}\n44aec53df963529ab02db0726958d16d26a84c3b\trefs/tags/GJS_0_7_2\n2434fa798aea86b16982315afec0cc1e216d3000\trefs/tags/GJS_0_7_2^{}\n53fbca70f0949a34d06bed6162f8fe09b21e873e\trefs/tags/GJS_0_7_4\na27c2c28dc4a16a6ac69742d66ac7d7bc8328021\trefs/tags/GJS_0_7_4^{}\nf519e28250edeb1762991b7179310412a1bac56c\trefs/tags/GJS_0_7_5\nc9f30e1b5f7eefe71d65326341661fc0500200d9\trefs/tags/GJS_0_7_5^{}\nbffb117532925c9d332fb2cb5802b975e6eb427b\trefs/tags/GJS_0_7_6\nac7475244dbdb2e4042ca7c03b71fd307f83db0a\trefs/tags/GJS_0_7_6^{}\nb8c1ae69d0ea68e9498b466d6145815b58b3f24d\trefs/tags/GJS_0_7_7\nec97bfcc192bc807a765c3b20fe2c6e2e22f5b3b\trefs/tags/GJS_0_7_7^{}\ne8fdb68f30bcce1046a2a967e24c24255124e9b7\trefs/tags/GJS_0_7_8\nb7c45e5cf364e618afb1018e189ba0ab0ac0dd8b\trefs/tags/GJS_0_7_8^{}\nb683880b8f03887d721dde460a9fa0a455e22e98\trefs/tags/GJS_1_29_0\n64f78b5810215a12030c25d1ee63003f17113e13\trefs/tags/GJS_1_29_0^{}\n9d5ffeeb35bccfaa49f6dcae6ec9adf2bbdbccb7\trefs/tags/GJS_1_29_15\nfa39da61a7039b9d7b7e73552d95491113604862\trefs/tags/GJS_1_29_15^{}\n83a6a387394eabe5d35ad8a70f0966dbba88c13e\trefs/tags/GJS_1_29_16\n4217cb5e07519ea41fdff9b906b93ce6946c109e\trefs/tags/GJS_1_29_16^{}\nc2ed0320c21fe2b50f8b38189455e873cc36c14d\trefs/tags/GJS_1_29_17\n05096d9234db2c9432af9038b8996412fa86f510\trefs/tags/GJS_1_29_17^{}\n555791c6b2fda605e98d70f944d7d2b044af8d84\trefs/tags/GJS_1_29_18\n059f6a13bb5ed18060aa27bbe900575e6966efb0\trefs/tags/GJS_1_29_18^{}\n79222a11da48c4f178660a9cec74c688dbed8899\trefs/tags/GJS_1_30_0\n77dbcceba7db655c87cf86b4821959bbd3607394\trefs/tags/GJS_1_30_0^{}\nd57fabf537e21813d596945b60b0f1e0be0866b6\trefs/tags/GJS_1_30_1\n65a253dfafe755490a65f6339a9756d43292e630\trefs/tags/GJS_1_30_1^{}\n245b25bed1b3c90b2536ef2c16d7fb590b6bde34\trefs/tags/GJS_1_31_10\n63c744d34dfd2be72265f7e9b7d420f8c08fb080\trefs/tags/GJS_1_31_10^{}\n3616ab1cf6f56cf6e468fdf14d7e5dd3ee56a741\trefs/tags/GJS_1_31_20\n7e030c83c5c4d24275fdf2267a4878320fa648ff\trefs/tags/GJS_1_31_20^{}\n9bfca9677d011532d13ce3adbfe7d20f68430647\trefs/tags/GJS_1_31_22\n41babe6796d55edf4ad4139691a763ec46afe377\trefs/tags/GJS_1_31_22^{}\n1837e945743c4605bdbb1cba9fbc8a54d062b1ab\trefs/tags/GJS_1_32_0\n16c633007461b62baa9b31d742d06b10d205256e\trefs/tags/GJS_1_32_0^{}\n8ff114e030e34e1276a3ebb1ad55446c4ab6a288\trefs/tags/GJS_1_33_10\ncece028d9f1728c424d09eb9f652072275c2982f\trefs/tags/GJS_1_33_10^{}\nc5d5e99f3b1895ad9930910bbee08d714f727fed\trefs/tags/GJS_1_33_14\n6c07b607783abea4d736164670a57c0b2d35f434\trefs/tags/GJS_1_33_14^{}\n57e58803caafaa20e9a7c068d97ffc49c6e21554\trefs/tags/GJS_1_33_2\n9ae8271a798dc6f1d9953839c7ea67be6e3532ad\trefs/tags/GJS_1_33_2^{}\n397c01cff3a73be5346282f6e97f6b4393951cec\trefs/tags/GJS_1_33_3\n63f4f9c00ac0ef39a2b14f96ae367bdf766cc362\trefs/tags/GJS_1_33_3^{}\n4a84d560a2f94e1cd44a0026fc245f7bf74739b9\trefs/tags/GJS_1_33_4\nc0984e27e531aadbd0d0276c9490b663254cdb06\trefs/tags/GJS_1_33_4^{}\ne92c6549e31c6278cf16e0e4045c5621717addad\trefs/tags/GJS_1_33_9\nf890048149a9b774cacb411c674fbb0d73ce521a\trefs/tags/GJS_1_33_9^{}\n7bcd93ffc0ebc0fe8dba07e2ed8d3c4703e0bf0b\trefs/tags/GJS_1_35_2\n55db0d7c074fd96fa68971916d78793267f15c74\trefs/tags/GJS_1_35_2^{}\n13c1b46248d1b41d72eae78454ad4c8fe6a25ab3\trefs/tags/GJS_1_35_3\nf1b60ca867bc2b3decf74972b4c4bd39346a1e43\trefs/tags/GJS_1_35_3^{}\ne375144ec0cfff731b78be83978967d1f521120a\trefs/tags/GJS_1_35_4\ne2606d322f05fc454c110cd4946a39c63680aa0d\trefs/tags/GJS_1_35_4^{}\nd4b2774708ae3b90264d66b3b809c6f387d745ea\trefs/tags/GJS_1_35_8\n8d9d81e5e4efcf96d2bd06712a429240916a3d4f\trefs/tags/GJS_1_35_8^{}\n514ebb683b820b5080e4c390bfea8fb54d4f6fff\trefs/tags/GJS_1_35_9\n3a6c96f72acb25d4ddbdad2002ceb0acafb4fc50\trefs/tags/GJS_1_35_9^{}\ne306283b21f770a1b587b5413af89b04e895fa59\trefs/tags/GJS_1_36_0\n3c001d3851ba5d97ef76dd7d181dcb333cab6e3c\trefs/tags/GJS_1_36_0^{}\n142fbaf48fa372a40a5af9c69a172f6c5d532b28\trefs/tags/GJS_1_36_1\nb21a9ad8e68eb106b341162ed16859ec66961c69\trefs/tags/GJS_1_36_1^{}\nab50e4799fdb71de32dc2fed8c50c05a7c35390b\trefs/tags/GJS_1_37_1\n75dff21ec2f3d85a8d188ab1100cdc76fb85a746\trefs/tags/GJS_1_37_1^{}\n68f35d2a8555018f9c532d79bd18147a34d5f1be\trefs/tags/GJS_1_37_4\n291afb88b4b6c02a2e330032066f32986383327f\trefs/tags/GJS_1_37_4^{}\n4c9eb4da0f02c1dcd96c20b13c28d8b17df60134\trefs/tags/GJS_1_38_0\n49ae623d423655595eafc285a8c7d1c956cae5b5\trefs/tags/GJS_1_38_0^{}\n905dce9f037daaf218f170607ed10a71b9d3cf38\trefs/tags/GJS_1_38_1\nf36e693f13b456c0eddd1377db794bb584d43c37\trefs/tags/GJS_1_38_1^{}\nb56bf625a35cfc300d08f623b2abd147938c2a63\trefs/tags/GJS_1_39_3\n0ef269ffa25883e34dc92f5bd11440975a4e9c85\trefs/tags/GJS_1_39_3^{}\nd7e4813188396eea72613cd7d788b8f8c5551de6\trefs/tags/GJS_1_39_90\n868bc847de711027d7af490f71e02fa5fbe835ef\trefs/tags/GJS_1_39_90^{}\n1b38b843dde82c685fc14a6332aefae6236ec6b2\trefs/tags/GJS_1_39_91\nb01fd5e5d2439363e1d8a322770d8dd325e200d7\trefs/tags/GJS_1_39_91^{}\nb426433d949adb940ad116a7ea4b160189003d86\trefs/tags/GJS_1_40_0\n2b4333df6adf414d36911f04e4532541f2ba8359\trefs/tags/GJS_1_40_0^{}\n4d9fc28976e1a8db08162cd49e8bb962e590295e\trefs/tags/GJS_1_40_1\nd6078d7786c43b2e0fbf551e686be6175810c333\trefs/tags/GJS_1_40_1^{}\n6302b78e1148e1069162974c82c90557dcce591b\trefs/tags/GJS_1_41_3\nbab15b54a3da37b4d54c210e6596f759248cda5e\trefs/tags/GJS_1_41_3^{}\nf1a00fecfb6c8840e35b4c28e487963a8ebe8265\trefs/tags/GJS_1_41_4\n65e05b49fbab47e2d365e6ea19f8568a8b9404e8\trefs/tags/GJS_1_41_4^{}\na57e11a3a17781b36fccea91a9e0661c1669fd94\trefs/tags/GJS_1_41_91\n3d3cfad0379c9c80977f9b56f568352aa24b24e4\trefs/tags/GJS_1_41_91^{}\n68380461f4955a7e7c4da119b1789474e52729fa\trefs/tags/GJS_1_42_0\nc4b2442dfe89192d3220e14c83697ab391eaa2c3\trefs/tags/GJS_1_42_0^{}\n5b57f0b2ce39ffc042951ef1352edfbb2c7525ae\trefs/tags/GJS_1_43_3\ne1974c8f93625c9b412f923c536abaf2ac4dc839\trefs/tags/GJS_1_43_3^{}\n34894e936b97ee66c36d1104ebf811d9557234b4\trefs/tags/gjs_0_7_12\nf1873e72ab8ce80b17903d0d9472615829976043\trefs/tags/gjs_0_7_12^{}\ncf086e5b0677bd6d2a62726779fa14a753e7619f\trefs/tags/tag\n8e7623bdd33e457b55e213e0be464bc11c2088da\trefs/tags/tag^{}\n" diff --git a/upstream-info/http-parser.yaml b/upstream-info/http-parser.yaml index 9830066e8229879406a1ab10571f9a8918b12e52..b532f1c89c20cf3ce9251ed9f7c51bfdaff0444f 100644 --- a/upstream-info/http-parser.yaml +++ b/upstream-info/http-parser.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: nodejs/http-parser -tag_prefix: ^v -seperator: . +src_repo: nodejs/http-parser +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 10:06:39.504198260 +00:00 + raw_data: "a649acc096580a927c42562ec502cecb571f429d\trefs/tags/v0.1\n212f72137d493510cd11f8befef02aa8af35feb4\trefs/tags/v0.1^{}\nda47c13169071e494b5cbbbdf8e4cbd87b04920b\trefs/tags/v0.2\na8f7a3cd78a6727ca3778e3e9be2112d5965bab2\trefs/tags/v0.3\n32c0e1158361b5952bd0cfed2355e33639664bc4\trefs/tags/v1.0\n90a938304babb1bd0d79dd1460b40b218a634d66\trefs/tags/v2.0\n3fb4e061ec106077f5f1a1279c2dcd9c158e009b\trefs/tags/v2.0^{}\n1e15920f88dd356141c27d0c41ae02ac31ca11eb\trefs/tags/v2.1\n80819384450b5511a3d1c424dd92a5843c891364\trefs/tags/v2.1^{}\nfd609ab272f94bb58e65449b4faeaa4abe02b558\trefs/tags/v2.2\ncba704cb2d9f1df80994dd4a791a0fa6cce65720\trefs/tags/v2.2.1\n56f7ad0e2e5a80f79d214015c91e1f17d11d109f\trefs/tags/v2.3\n956c8a054a8d8e8fd8eaca6827aedfaf08911cab\trefs/tags/v2.4\n36f107fa2e62ca1f0fe7087e49f58624c45a24f1\trefs/tags/v2.4.1\n1b315808932486656cfa30e46932a93cbe231b42\trefs/tags/v2.4.2\n39c2c1e5733eb2cb7397a370cf50508ea1214bf7\trefs/tags/v2.5\n39c2c1e5733eb2cb7397a370cf50508ea1214bf7\trefs/tags/v2.5.0\nd8943465e559ca891fd957156fd83c8cfd44feb3\trefs/tags/v2.6.0\nbee4817ebea0eaa592143c7825f5c96f040c84e4\trefs/tags/v2.6.0^{}\n0e0f6263ab676dc67c054e9a575344d75f6d6f8e\trefs/tags/v2.6.1\n678a9e21f11e5ea93e5e17a2302390f88a6a8c46\trefs/tags/v2.6.1^{}\na1d4140b9357775207741290d3de91e3989cee28\trefs/tags/v2.6.2\n5651aea80472bf9a1f7d2718c78c0de08984aa1f\trefs/tags/v2.6.2^{}\n9b0d5b33ebdaacff1dadd06bad4e198b11ff880e\trefs/tags/v2.7.0\n291f3d629390e2ceea8b07c28acd2303416d898b\trefs/tags/v2.7.1\nfeae95a3a69f111bc1897b9048d9acbc290992f9\trefs/tags/v2.7.1^{}\nb9d5c2d5235be1631263b6be73b9ecac746535ef\trefs/tags/v2.8.0\ndd74753cf5cf8944438d6f49ddf46f9659993dfb\trefs/tags/v2.8.0^{}\n208a97b6a5e4f2cd291b88ba2b2d90eec8aef52e\trefs/tags/v2.8.1\n54f55a2f02a823e5f5c87abe853bb76d1170718d\trefs/tags/v2.8.1^{}\n73c01a86d7285be2b7f3af16679d358aa4fc70d3\trefs/tags/v2.9.0\n0d0a24e19eb5ba232d2ea8859aba2a7cc6c42bc4\trefs/tags/v2.9.0^{}\nc5c45636b85e7598223adede6ba2d8cb8fe03ebe\trefs/tags/v2.9.1\n5c17dad400e45c5a442a63f250fff2638d144682\trefs/tags/v2.9.2\na0c034c0c7698c08f8dc8c8d0257305f6280c27b\trefs/tags/v2.9.3\n2343fd6b5214b2ded2cdcf76de2bf60903bb90cd\trefs/tags/v2.9.4\n" +query_type: git-ls diff --git a/upstream-info/hwdata.yaml b/upstream-info/hwdata.yaml index 575f3c1715cd899bfb0dde4c449c5457ec12a46f..69dbc2f9564d8f2eea6db35669beed0d1b9fe074 100644 --- a/upstream-info/hwdata.yaml +++ b/upstream-info/hwdata.yaml @@ -1,4 +1,1241 @@ +--- version_control: github -src_repo: vcrhonek/hwdata -tag_prefix: ^v -seperator: . +src_repo: vcrhonek/hwdata +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 07:22:31.134014080 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/26140059", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/26140059/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/26140059/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.335", + "id": 26140059, + "node_id": "MDc6UmVsZWFzZTI2MTQwMDU5", + "tag_name": "v0.335", + "target_commitish": "master", + "name": "hwdata-0.335", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-05-04T12:18:54Z", + "published_at": "2020-05-04T12:20:02Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.335", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.335", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/25085092", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/25085092/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/25085092/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.334", + "id": 25085092, + "node_id": "MDc6UmVsZWFzZTI1MDg1MDky", + "tag_name": "v0.334", + "target_commitish": "master", + "name": "hwdata-0.334", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-04-01T10:35:16Z", + "published_at": "2020-04-01T10:45:21Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.334", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.334", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/24126898", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/24126898/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/24126898/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.333", + "id": 24126898, + "node_id": "MDc6UmVsZWFzZTI0MTI2ODk4", + "tag_name": "v0.333", + "target_commitish": "master", + "name": "hwdata-0.333", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-03-02T11:26:42Z", + "published_at": "2020-03-02T11:24:25Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.333", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.333", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/23331427", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/23331427/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/23331427/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.332", + "id": 23331427, + "node_id": "MDc6UmVsZWFzZTIzMzMxNDI3", + "tag_name": "v0.332", + "target_commitish": "master", + "name": "hwdata-0.332", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-02-03T09:15:21Z", + "published_at": "2020-02-03T09:13:42Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.332", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.332", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/22551228", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/22551228/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/22551228/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.331", + "id": 22551228, + "node_id": "MDc6UmVsZWFzZTIyNTUxMjI4", + "tag_name": "v0.331", + "target_commitish": "master", + "name": "hwdata-0.331", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-01-02T11:44:21Z", + "published_at": "2020-01-02T11:43:34Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.331", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.331", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/21889114", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/21889114/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/21889114/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.330", + "id": 21889114, + "node_id": "MDc6UmVsZWFzZTIxODg5MTE0", + "tag_name": "v0.330", + "target_commitish": "master", + "name": "hwdata-0.330", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-12-02T09:01:41Z", + "published_at": "2019-12-02T09:00:29Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.330", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.330", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/21184008", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/21184008/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/21184008/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.329", + "id": 21184008, + "node_id": "MDc6UmVsZWFzZTIxMTg0MDA4", + "tag_name": "v0.329", + "target_commitish": "master", + "name": "hwdata-0.329", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-11-04T09:05:30Z", + "published_at": "2019-11-04T09:15:00Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.329", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.329", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/20380074", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/20380074/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/20380074/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.328", + "id": 20380074, + "node_id": "MDc6UmVsZWFzZTIwMzgwMDc0", + "tag_name": "v0.328", + "target_commitish": "master", + "name": "hwdata-0.328", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-10-01T11:06:52Z", + "published_at": "2019-10-01T11:07:13Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.328", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.328", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/19713791", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/19713791/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/19713791/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.327", + "id": 19713791, + "node_id": "MDc6UmVsZWFzZTE5NzEzNzkx", + "tag_name": "v0.327", + "target_commitish": "master", + "name": "hwdata-0.327", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-09-03T10:43:07Z", + "published_at": "2019-09-03T10:43:55Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.327", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.327", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/19012206", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/19012206/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/19012206/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.326", + "id": 19012206, + "node_id": "MDc6UmVsZWFzZTE5MDEyMjA2", + "tag_name": "v0.326", + "target_commitish": "master", + "name": "hwdata-0.326", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-08-01T11:41:15Z", + "published_at": "2019-08-01T11:41:50Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.326", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.326", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/18259290", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/18259290/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/18259290/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.325", + "id": 18259290, + "node_id": "MDc6UmVsZWFzZTE4MjU5Mjkw", + "tag_name": "v0.325", + "target_commitish": "master", + "name": "hwdata-0.325", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-06-27T08:39:25Z", + "published_at": "2019-06-27T08:40:58Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.325", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.325", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/17735655", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/17735655/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/17735655/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.324", + "id": 17735655, + "node_id": "MDc6UmVsZWFzZTE3NzM1NjU1", + "tag_name": "v0.324", + "target_commitish": "master", + "name": "hwdata-0.324", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-06-03T07:46:09Z", + "published_at": "2019-06-03T07:47:54Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.324", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.324", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/17102494", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/17102494/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/17102494/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.323", + "id": 17102494, + "node_id": "MDc6UmVsZWFzZTE3MTAyNDk0", + "tag_name": "v0.323", + "target_commitish": "master", + "name": "hwdata-0.323", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-02T07:10:31Z", + "published_at": "2019-05-02T07:21:59Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.323", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.323", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/16498582", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/16498582/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/16498582/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.322", + "id": 16498582, + "node_id": "MDc6UmVsZWFzZTE2NDk4NTgy", + "tag_name": "v0.322", + "target_commitish": "master", + "name": "hwdata-0.322", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-04-02T10:48:11Z", + "published_at": "2019-04-02T10:50:09Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.322", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.322", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15916289", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15916289/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/15916289/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.321", + "id": 15916289, + "node_id": "MDc6UmVsZWFzZTE1OTE2Mjg5", + "tag_name": "v0.321", + "target_commitish": "master", + "name": "hwdata-0.321", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-03-05T10:50:28Z", + "published_at": "2019-03-05T10:53:23Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.321", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.321", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15751504", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15751504/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/15751504/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.314-8.0", + "id": 15751504, + "node_id": "MDc6UmVsZWFzZTE1NzUxNTA0", + "tag_name": "v0.314-8.0", + "target_commitish": "RHEL8", + "name": "", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-02-25T10:34:56Z", + "published_at": "2019-02-25T10:41:20Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.314-8.0", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.314-8.0", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15350364", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/15350364/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/15350364/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.320", + "id": 15350364, + "node_id": "MDc6UmVsZWFzZTE1MzUwMzY0", + "tag_name": "v0.320", + "target_commitish": "master", + "name": "hwdata-0.320", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-02-04T13:33:01Z", + "published_at": "2019-02-04T13:34:53Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.320", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.320", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/14763150", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/14763150/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/14763150/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.319", + "id": 14763150, + "node_id": "MDc6UmVsZWFzZTE0NzYzMTUw", + "tag_name": "v0.319", + "target_commitish": "master", + "name": "hwdata-0.319", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-01-02T09:11:45Z", + "published_at": "2019-01-02T09:18:05Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.319", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.319", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/14312659", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/14312659/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/14312659/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.318", + "id": 14312659, + "node_id": "MDc6UmVsZWFzZTE0MzEyNjU5", + "tag_name": "v0.318", + "target_commitish": "master", + "name": "hwdata-0.318", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-12-03T11:46:52Z", + "published_at": "2018-12-03T11:47:57Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.318", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.318", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/13773148", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/13773148/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/13773148/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.317", + "id": 13773148, + "node_id": "MDc6UmVsZWFzZTEzNzczMTQ4", + "tag_name": "v0.317", + "target_commitish": "master", + "name": "hwdata-0.317", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-11-01T09:48:26Z", + "published_at": "2018-11-01T09:50:42Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.317", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.317", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/13174587", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/13174587/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/13174587/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.316", + "id": 13174587, + "node_id": "MDc6UmVsZWFzZTEzMTc0NTg3", + "tag_name": "v0.316", + "target_commitish": "master", + "name": "hwdata-0.316", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-10-01T07:09:06Z", + "published_at": "2018-10-01T07:10:19Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.316", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.316", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/12697520", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/12697520/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/12697520/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.315", + "id": 12697520, + "node_id": "MDc6UmVsZWFzZTEyNjk3NTIw", + "tag_name": "v0.315", + "target_commitish": "master", + "name": "hwdata-0.315", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-09-03T07:22:49Z", + "published_at": "2018-09-03T07:24:04Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.315", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.315", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/12218393", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/12218393/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/12218393/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.314", + "id": 12218393, + "node_id": "MDc6UmVsZWFzZTEyMjE4Mzkz", + "tag_name": "v0.314", + "target_commitish": "master", + "name": "hwdata-0.314", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-08-02T07:44:10Z", + "published_at": "2018-08-02T07:46:20Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.314", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.314", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/11734489", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/11734489/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/11734489/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.313", + "id": 11734489, + "node_id": "MDc6UmVsZWFzZTExNzM0NDg5", + "tag_name": "v0.313", + "target_commitish": "master", + "name": "hwdata-0.313", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-07-02T08:28:12Z", + "published_at": "2018-07-02T08:29:22Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.313", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.313", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/11476908", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/11476908/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/11476908/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.252-8.9", + "id": 11476908, + "node_id": "MDc6UmVsZWFzZTExNDc2OTA4", + "tag_name": "v0.252-8.9", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-06-14T08:55:24Z", + "published_at": "2018-06-14T09:00:04Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.252-8.9", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.252-8.9", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/10808637", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/10808637/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/10808637/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.312", + "id": 10808637, + "node_id": "MDc6UmVsZWFzZTEwODA4NjM3", + "tag_name": "v0.312", + "target_commitish": "master", + "name": "hwdata-0.312", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-05-02T07:57:33Z", + "published_at": "2018-05-02T08:00:42Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.312", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.312", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/10364926", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/10364926/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/10364926/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.311", + "id": 10364926, + "node_id": "MDc6UmVsZWFzZTEwMzY0OTI2", + "tag_name": "v0.311", + "target_commitish": "master", + "name": "hwdata-0.311", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-04-03T07:55:20Z", + "published_at": "2018-04-03T07:56:23Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.311", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.311", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/9936719", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/9936719/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/9936719/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.310", + "id": 9936719, + "node_id": "MDc6UmVsZWFzZTk5MzY3MTk=", + "tag_name": "v0.310", + "target_commitish": "master", + "name": "hwdata-0.310", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-03-05T09:29:37Z", + "published_at": "2018-03-05T09:39:12Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.310", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.310", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/9077907", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/9077907/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/9077907/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.308", + "id": 9077907, + "node_id": "MDc6UmVsZWFzZTkwNzc5MDc=", + "tag_name": "v0.308", + "target_commitish": "master", + "name": "hwdata-0.308", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-01-02T11:09:04Z", + "published_at": "2018-01-02T11:11:12Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.308", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.308", + "body": "" + }, + { + "url": "https://api.github.com/repos/vcrhonek/hwdata/releases/8755706", + "assets_url": "https://api.github.com/repos/vcrhonek/hwdata/releases/8755706/assets", + "upload_url": "https://uploads.github.com/repos/vcrhonek/hwdata/releases/8755706/assets{?name,label}", + "html_url": "https://github.com/vcrhonek/hwdata/releases/tag/v0.307", + "id": 8755706, + "node_id": "MDc6UmVsZWFzZTg3NTU3MDY=", + "tag_name": "v0.307", + "target_commitish": "master", + "name": "hwdata-0.307", + "draft": false, + "author": { + "login": "vcrhonek", + "id": 3899106, + "node_id": "MDQ6VXNlcjM4OTkxMDY=", + "avatar_url": "https://avatars2.githubusercontent.com/u/3899106?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vcrhonek", + "html_url": "https://github.com/vcrhonek", + "followers_url": "https://api.github.com/users/vcrhonek/followers", + "following_url": "https://api.github.com/users/vcrhonek/following{/other_user}", + "gists_url": "https://api.github.com/users/vcrhonek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vcrhonek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vcrhonek/subscriptions", + "organizations_url": "https://api.github.com/users/vcrhonek/orgs", + "repos_url": "https://api.github.com/users/vcrhonek/repos", + "events_url": "https://api.github.com/users/vcrhonek/events{/privacy}", + "received_events_url": "https://api.github.com/users/vcrhonek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-12-04T08:44:44Z", + "published_at": "2017-12-04T08:48:16Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/vcrhonek/hwdata/tarball/v0.307", + "zipball_url": "https://api.github.com/repos/vcrhonek/hwdata/zipball/v0.307", + "body": "" + } + ] +query_type: api.github.releases diff --git a/upstream-info/icu.yaml b/upstream-info/icu.yaml index 3f7265c47393f5fd5b1c4b58da0c594b163f01d2..bd75f4ad2915d9fa27a5102ca47d0491dca29332 100644 --- a/upstream-info/icu.yaml +++ b/upstream-info/icu.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: unicode-org/icu -tag_prefix: ^v -seperator: . +src_repo: unicode-org/icu +tag_prefix: release- +seperator: "-" +last_query: + time_stamp: 2020-05-20 07:24:22.543665750 +00:00 + raw_data: "6873ed8e2c27d97bb6d51959973f5ea77b5915ff\trefs/tags/cldr-32-beta2\n9d073eb9205afe87d4437170e7498aed73730a95\trefs/tags/icu-TR29-proposed-updates\nc3c991f3de32ec8fce6e666ab110fb0ee62dc84f\trefs/tags/icu-cldr-1-5-d01\n6735120222f4c03f544a786fe3ac5a3f46b40e41\trefs/tags/icu-cldr-1-9\nf75b03a59f0ce485ef2ac44c66cbeefdfe4a45d5\trefs/tags/icu-cldr-1-9-1\n2796127e4d6b85bc2de0fd172ec92d466f9ecb02\trefs/tags/icu-cldr-1-9-m02\n3cf087ae2b6060de5370be9dd1628ffc96130e5c\trefs/tags/icu-cldr-1-9-rc2\n28988e78709150c0d3be5478e07b29024fc49af4\trefs/tags/icu-cldr-2-0-d01\n80531fd46d17618be56968ddcdfe2d8c14281a06\trefs/tags/icu-cldr-2-0-d02\n449c94916ec49957756e32897f230e57cf721cd1\trefs/tags/icu-cldr-201\n543c5214c31ae3f5236aec035e98c5bd0ba6c655\trefs/tags/icu-cldr-21\n4c2524e3cf41628a7fe9a4ce301d5439f14d006e\trefs/tags/icu-cldr-21-d01\nda87b4a4c29cacbce8893287ba8481de59f3fc0e\trefs/tags/icu-cldr-21-d02\n4a6fd1d1f8d7f15c18e23359a4415944c3549d98\trefs/tags/icu-cldr-21M1\na756773a501e8643b6ceef2e0a5ff3e95bed5c0b\trefs/tags/icu-cldr-22-1-d02\n52541ea5b720bdd09f9e2a8bb31a97c0123a06c7\trefs/tags/icu-cldr-22-1-d03\n5ef487577bb42b6c3f3390ccc215023bff10b0c4\trefs/tags/icu-cldr-22-d02\nd71e8dc2d97e70a5654d8873b213e043260cf78e\trefs/tags/icu-cldr-22-d03\n315bf5d5c3df6f07ff763eb4bd17c3627041ea3b\trefs/tags/icu-cldr-22-d04\neb6b8d99bb5ff7275827d8e1991345fd3094c765\trefs/tags/icu-cldr-23-1-d01\n95b676c866c9e48eeb7c47cb4fc469db6fd6e41b\trefs/tags/icu-cldr-23-d02\ndc3eebf1c6da8c395909c9f93563e9888a38970d\trefs/tags/icu-cldr-23-d03\nfb067900b0f3156d3c33d5f20de1440e92b23890\trefs/tags/icu-cldr-24-d02\ndd54d78d58ba5dfcce68bc69b303af4ecdf151bb\trefs/tags/icu-cldr-24-d03\nae580b966b3fc5478e04096f00bf8fd593783b6c\trefs/tags/icu-cldr-24-d04\nbe3c165ae3b672bd86b0cc88682400ad76b43067\trefs/tags/icu-cldr-25-d02\nabd40e003ecc097ce06980e29e0001cb94777a01\trefs/tags/icu-cldr-25-d03\nbaa990492ff04aabe8164fa38ad7480746306769\trefs/tags/icu-cldr-25-d04\ne8879836fa6652798260913ea03f05b3db001b9b\trefs/tags/icu-cldr-26-d04\n470042e3ddd8cf826d2357f6d3e5d831c0408a42\trefs/tags/icu-cldr-27-d03\n68dc39afca17aa4b5c3ca181c2c7d88f9b016c15\trefs/tags/icu-cldr-27-d04\ne110c26bb8bfd93848dc4c197ff8b6abccd6ae92\trefs/tags/icu-cldr-27-d05\n177372bb183ba277bda1825bfd44b10c4f33a454\trefs/tags/icu-cldr-28-d02\n3262a60d20280978412dac941e6ac2e0b11c665f\trefs/tags/icu-cldr-28-d03\n7626531bfa41238275be745098b92a4ef984bc90\trefs/tags/icu-cldr-28-d04\n0849811fd74136913e0d81848fd505da485c6f3f\trefs/tags/icu-cldr-28-d05\nc6bf394a4affd217ddbcc5ea048cb5510305d55b\trefs/tags/icu-cldr-29-beta1\n7806b4e3d5077e3391eddc9fa6c45410e438f386\trefs/tags/icu-cldr-ICU55M1\n6591e3bbe099a065d493ca9b571fed3bb2c21088\trefs/tags/icu-cldr-ICU56M1\nb066cc379cbd7340dbfba25ec978d6e387bbea22\trefs/tags/icu-cldr-d04\ndd2b2c0fc35d74978c8feca5db0291ddc556ee82\trefs/tags/icu-coll-prototype\nae084ca7e42235638bb8f2e4cc3da27462a61933\trefs/tags/icu-final-update-LDML\n13fde64395a02869f178319e1139a62c5fea0071\trefs/tags/icu-initial\n83182bf8588973bb5d5371f44750ca3060eb1c0f\trefs/tags/icu-lastversion-before-move\n951ebf46a1b7653e290eb877983b837426840783\trefs/tags/icu-latest\n212ad1c12f4dd2c8f1bcda8faf3b839c385ca96a\trefs/tags/icu-ldml-data-01-alpha\nc83fb8e3d10f769b2577006d9fe665b8c1fd686d\trefs/tags/icu-milestone-3-7-1\naf5880061f5be0023cfb5db4f847b3e053d0dffc\trefs/tags/icu-milestone-3-7-2\n9299bdc1aa50e55170697e81ebf470c5f0e9d9b4\trefs/tags/icu-milestone-3-9-1\na7e1865eb8d92eec098dace1c58c1d11d5ae16cd\trefs/tags/icu-milestone-3-9-2\n97f562a76bd93ae6ab3ebabe6231167b17cba462\trefs/tags/icu-milestone-3-9-3\n808b3b157b40e3d89c595dbad67ce06b7609b16c\trefs/tags/icu-milestone-4-1-1\nc14d0962b4dcce58ed772a821d5a3732052fbac3\trefs/tags/icu-milestone-4-1-2\n6a8d6c832b087a75f9d579d2c8a9bd442e76321c\trefs/tags/icu-milestone-4-1-3\n55724b7616d551d9e044738acaa55bf81ecbc13f\trefs/tags/icu-milestone-4-1-4\na94462545a3a9780d8ab38ba71988a4d075c4e99\trefs/tags/icu-milestone-4-1-5\nbe56d3d96d46a04e0ee62ecd5714e9486b5ce4e1\trefs/tags/icu-milestone-4-3-1\n9d60804be7fadf5d811522d970421d68de071dda\trefs/tags/icu-milestone-4-3-2\n2c9c6f2286de1311a35332a6d311b4bece701c2f\trefs/tags/icu-milestone-4-3-3\n7b780e443449afb6700b428409f4f6995b71f493\trefs/tags/icu-milestone-4-3-4\nfead0cdfb1be49902da6e8cda6874136f12a6793\trefs/tags/icu-milestone-4-5-1\n7c80329a84656cb74f42144a890262aa875b2b4a\trefs/tags/icu-milestone-4-5-2\necc3e7205fdfdfbac2f2831934ea7fde5340aee4\trefs/tags/icu-milestone-4-7-1\n5ed398491da42f9ee78ea965e2774ceca4760af3\trefs/tags/icu-milestone-49-0-1\n89d6612a2c5c127dfdfe66ec50f050aecd4deb56\trefs/tags/icu-milestone-49-0-2\na9152ac7e657c70f2a3ac7ec1b344daf88b8bbb4\trefs/tags/icu-milestone-50-0-1\n220ad1c8797b17301fba053d487a8823afb4cb8b\trefs/tags/icu-milestone-50-0-2\n845867d332a09b3cc6f0729fcbf7e1b906e365db\trefs/tags/icu-milestone-52-0-1\n5fa8632993c1ef0e0ffc6fe02d4b0ab3b1772961\trefs/tags/icu-milestone-53-0-1\n04d3ef67f73fe88d154c835e2448968ba1810a80\trefs/tags/icu-milestone-54-0-1\nd5ae6be173814172bbf352bbb5cdc4ade3a134a0\trefs/tags/icu-milestone-55-0-1\n303563a7cfa4310a908b355085bbaaa278711193\trefs/tags/icu-milestone-56-0-1\n47176aead79bfafb3fd7d0daed67b8c8afd03767\trefs/tags/icu-milestone-57-0-1\n133eae716b758103a4265d72c1a500a2af0f3b75\trefs/tags/icu-milestone-58-0-1\n3907b26225fda130e4f2148c330eee000b31f75a\trefs/tags/icu-patch-2-0-2-s\n5211ccae888829578a3e32e02ea99eb5cd444625\trefs/tags/icu-post-cvs2svn\ndcef387cc79d8337ae128de06312d1961dd83e24\trefs/tags/icu-post-cvs2svn-cleanedup\n096381cbf04af8d396cf2c07875fc8d6768e1226\trefs/tags/icu-release-1-0-alpha\nb987cde591a029bb6b6763615cfda31f5017371a\trefs/tags/icu-release-1-2-4\n43bab47338be0719396f150afd4c85964ca6803b\trefs/tags/icu-release-1-2-5\nf7e6c563ee76f7a5054f360adf235ea5f2bfe7d0\trefs/tags/icu-release-1-3\nf899e8bcb479391bb1fd3e1198c718baa6b3af0e\trefs/tags/icu-release-1-3-1\n6f3628bb6774c1ba3bd3572b432e058698bc2435\trefs/tags/icu-release-1-4-0\nfb86cd2b5968ca9c58df3d96f7e538ee8d67aa66\trefs/tags/icu-release-1-4-1\nf8b646242b93214e04716384ed7bef6fa56602b5\trefs/tags/icu-release-1-4-1-1\n123b00a61e479c013f01480e5708b4bcc04874ce\trefs/tags/icu-release-1-4-1-2\nf2be14b3e10790c33adace71bc6ddf889dae9126\trefs/tags/icu-release-1-4-2\n7c8c046ec9695021d11b9ce145ad2bc2e6107539\trefs/tags/icu-release-1-4-2d01\n82e4eb15c508bf1363f266eead61483baa1fe7bb\trefs/tags/icu-release-1-4-2d02\n9a1fd68b29953fbdca7f6d7478864f4150c9071f\trefs/tags/icu-release-1-5-0\n1d93b52288e357c1a68ff84775ad1e58489760ac\trefs/tags/icu-release-1-5-0-d02\nf4e9e5a9f9d919c6ec5ed17053939a4feb29677a\trefs/tags/icu-release-1-5-0-d03\n521e89d87d72fb617e1e14ac5b160c13effb4dd4\trefs/tags/icu-release-1-6-0\n5c699ce01ebc0bb137ec35470519c0b0192c71fd\trefs/tags/icu-release-1-6-0-d01\n5f4b001b63ad067feb53913ecff8af93424351e0\trefs/tags/icu-release-1-6-0-d02\na7d7256303b28da04d6105008afc09ef1ca70016\trefs/tags/icu-release-1-6-0-d03\n1fdcbe84c1b25080b047d6db312b4860c72ff638\trefs/tags/icu-release-1-6-0-d04\nb7b96a3f266b5a3892b4ba1a6118b486dd273861\trefs/tags/icu-release-1-6-0-d05\nd242e069e310c77441149ed9b127e99b2e3b9f61\trefs/tags/icu-release-1-7\n005f8197a122691737ef6e679386f3d92c96269e\trefs/tags/icu-release-1-7-d01\n9f0b9f820d411f933963971d3ba0a7703eed6014\trefs/tags/icu-release-1-7-d03\n8ec13ef683d8210d10bccdc13fcc2fbd278c551a\trefs/tags/icu-release-1-7-d04\nde72a9542fc19d034d16d2be77d2e04beee3edb1\trefs/tags/icu-release-1-8-0\n4eb9e7db5bf7c28d99286081c2ef70a14b7aed96\trefs/tags/icu-release-1-8-0-d02\n80054523fe90493c7777206500669fa934081cb7\trefs/tags/icu-release-1-8-1\n28a912691795fead0928c1210e965bf3b1530ffc\trefs/tags/icu-release-1-8-1-d01\ndbe352279d4f7b1ca955f23e2109c3fdd010f032\trefs/tags/icu-release-1-8-1-d02\n2a2a6c872e6c1a641aa83006e5b41ce8f93c4d1e\trefs/tags/icu-release-1-8-d01\n7bd941aaebe64253482bce2dd58ef606783f9561\trefs/tags/icu-release-2-0\nc48c0380fc0ef0c2eea1c7a41965f9c6b59b702b\trefs/tags/icu-release-2-0-1\n18a6314fcd9e742dce8c4aab971b407e1000b02a\trefs/tags/icu-release-2-0-2\ndadb7f8021819b8464d8618cee5c84da6178b029\trefs/tags/icu-release-2-0-3\n9f3b78909ddb5280a4405ac2ffc4549d8ab53217\trefs/tags/icu-release-2-0-d01\ne7a0bcd03b3fdb6067dcc44e42e8687e3c80d5f8\trefs/tags/icu-release-2-0-d02\n4a26bb0fa8066e51fb7cb18028c81b91faa2744f\trefs/tags/icu-release-2-0-d03\n1f480fdf763bdd9db862158d9887c428c7800375\trefs/tags/icu-release-2-0-d04\n2b7c1941052648baa984e03f1d92217cbcc9f2a1\trefs/tags/icu-release-2-1\n9c097e07fc9651504a539992cf1bd74dbe2f4486\trefs/tags/icu-release-2-1-d01\n2160bf48e65ad04cf518907ff2e2bbf31cd63121\trefs/tags/icu-release-2-1-d02\nadb47c85cb3eabaeaab5035a4f7ee372a3e59f16\trefs/tags/icu-release-2-2\ne8f06cb07fda6075f3d2d3a0fc44fb8532892691\trefs/tags/icu-release-2-2-1\nb61a8609dd9c1cbd71085b5922aa01c640e25cad\trefs/tags/icu-release-2-2-d01\nd78a26430dc9159c7bc7a1f6fe2ec0033d22857e\trefs/tags/icu-release-2-2-d02\n2db8235d0a1ed97b0aedf459b5d32ea1d47124ef\trefs/tags/icu-release-2-4\n15a34afed53a87c2c957a6d0f6b82e3f11c1c0a6\trefs/tags/icu-release-2-4-d01\n733122c6043aab7f6a6bd23d4f8d4dbf423fb623\trefs/tags/icu-release-2-4-d02\nb695d84b179e3089c4eec013b8adcf868be2f799\trefs/tags/icu-release-2-6\n2a10b3107ab861c348a4f4b48695c90f9d3f9cb5\trefs/tags/icu-release-2-6-1\nc1c60ce6ccbe649d27013cc6c017bb9fabecd857\trefs/tags/icu-release-2-6-2\n6e96cce137d213ceb75e0f02e2475dbc24390bb0\trefs/tags/icu-release-2-6-d01\nbfc728fd2909b43dfa2d3d3895e3db0837030e88\trefs/tags/icu-release-2-6-d02\nda0439f23b9cb8aa740282317ca0ffa8caf27893\trefs/tags/icu-release-2-6-d03\n2b27a69f24faf064319bea5839dd750a257d172f\trefs/tags/icu-release-2-8\n15856128fb2bc36b772a647da45d83a8902066ee\trefs/tags/icu-release-2-8-d01\nc26bbb6d9076443852a668a72e9cf47df21d0edb\trefs/tags/icu-release-2-8-d02\n286c6b00af7a7a005ab72b90c925a0d1f8d9e889\trefs/tags/icu-release-2-8-d03\nc97137624c38e97a54f54c31a4b8ed440df966c3\trefs/tags/icu-release-2-8-d04\n958fa7b8e59ce1bd8076cdd6790f0556ca1f7167\trefs/tags/icu-release-2-8-update\nfcdfe039dd4225e44e628041ac4865f203d73644\trefs/tags/icu-release-3-0\n3199b481d966139e83dd5f4c4bd056a43e2b7a6c\trefs/tags/icu-release-3-0-d01\ne56f88e1f10030d690e3fcef4ffa4a878900945d\trefs/tags/icu-release-3-0-d02\na4ad3a92d424e46c296ee65d24b08a0025ea6e7b\trefs/tags/icu-release-3-0-d03\ncc884e1dfe0aeece2f887fb47fcaab3dc399d849\trefs/tags/icu-release-3-2\n0b9179b2ce626e0db2c4ecfc42888d7a9e23dc29\trefs/tags/icu-release-3-2-1\nbc7a67ed58a7cfc6fa73e6ff6240178a874ccb93\trefs/tags/icu-release-3-2-d01\n3c02167c6bf2aa3ac0d8015535ba522b1ccdc7af\trefs/tags/icu-release-3-2-d02\n28d7ae26c99baf18459e5111c0020c8919867b82\trefs/tags/icu-release-3-4\nabcecc25f91858906dae40af9248a245e0b36342\trefs/tags/icu-release-3-4-1\n603dc06d9a783d28a83deac3458630b44dfe6656\trefs/tags/icu-release-3-4-d01\n67dc74143becf8107d999475e919cd1c60656d39\trefs/tags/icu-release-3-4-d02\nfb895d76edf555c9ad8ff3776d3f54ea6c296cb2\trefs/tags/icu-release-3-6\na603c3e5e155ebd9bf742395f952540c6ed7b556\trefs/tags/icu-release-3-6-d01\n6f70faced85cd9b8095fec32eea90c90a2a0e822\trefs/tags/icu-release-3-6-d02\n609c45f17d7def79eb080df41f26b720c387183d\trefs/tags/icu-release-3-8\nb6b0c067b93f74749c72a4af5b35c87743251b0d\trefs/tags/icu-release-3-8-1\n2c53dd9fc16af942f05020318d3f2e11ad974485\trefs/tags/icu-release-3-8-d01\nb0a97c15734cb950d86ccfac26a51933d476e372\trefs/tags/icu-release-3-8-d02\n5f6b4eeb04e985471d850ba4eaeae13da0c7ce13\trefs/tags/icu-release-4-0\nb06ecceead3faa947326f2aa9905330d7522d137\trefs/tags/icu-release-4-0-1\nb983795232b29b5660dc2bab3a88447f72ae6ec4\trefs/tags/icu-release-4-0-d01\n414e3d9e3a8b0695a83f8e60751c76c9d5b2cd5c\trefs/tags/icu-release-4-0-d02\nb943ca8844d5124983936690be71c4de23b5274b\trefs/tags/icu-release-4-0-d03\n5f6b4eeb04e985471d850ba4eaeae13da0c7ce13\trefs/tags/icu-release-4-0-d04\n09c8730f87f69c25fb3db714c493bd4586dfe953\trefs/tags/icu-release-4-2\ncca602b7b61c62b85a7afe4b4ef5c28c8a9cc5c5\trefs/tags/icu-release-4-2-0-1\n2673ddf62e7e1ad6b168e43f05246779767c2600\trefs/tags/icu-release-4-2-1\nf821cf011bceb9c13536c23067929c3accb953a4\trefs/tags/icu-release-4-2-1-rc1\nd4c891b168fb407a2c53693ef61998de95c69d8e\trefs/tags/icu-release-4-2-d01\ne55be6ace5ccd5d1443eaef38bf43e391ce6109f\trefs/tags/icu-release-4-2-d02\n03b4b60b0a0c256f7e95b1f9f7b6e3a812088ade\trefs/tags/icu-release-4-2-d03\n9201820ea046fa1f8251f03e0c2e6b9df8aecaaf\trefs/tags/icu-release-4-2-d04\n56faf05563a111fd974b79af900e298bbaeda92a\trefs/tags/icu-release-4-4\n9c74b7fb47d52edab00602154c591cd18240050d\trefs/tags/icu-release-4-4-1\nf405ecdb9e1bc999fc46921507383ee153eb4d04\trefs/tags/icu-release-4-4-2\n6bfe670bbea644ce31c447d82d382bf9b4a87121\trefs/tags/icu-release-4-4-2-c0-1\ne677d370ba3c6fc667b28c9803e825ed6e382088\trefs/tags/icu-release-4-4-2-c0-2\n4a8d94e841ad27a22f81d6c41b85c7776f9656f8\trefs/tags/icu-release-4-4-rc1\n1d5c76762f0ba2719aa2bfbc225db245e05f8683\trefs/tags/icu-release-4-6\nc6681500a212090ba3d608c4006253e66145bf90\trefs/tags/icu-release-4-6-1\ndd011bb73de64741100c80a258f2027e2b25e728\trefs/tags/icu-release-4-6-rc1\n18e3a34533efc93561fd1ff779c34ec181157fbd\trefs/tags/icu-release-4-6-rc2\na184c4b97a74995807098d253edb03a93d1127eb\trefs/tags/icu-release-4-8\nf40e8ff69ccc43fa8654ca71f61dbf28e4fe855b\trefs/tags/icu-release-4-8-1\n4ef34e66556df17d025da9e83fc7a21b97b93163\trefs/tags/icu-release-4-8-1-1\n8a66246c47d4e939b69d4126a68413dd965b9111\trefs/tags/icu-release-4-8-rc1\n0a365206ae5e35ffb3c357e596ea62d50f5a6601\trefs/tags/icu-release-49-1\nb04834684217b6a007c0b262447f1dec6c957046\trefs/tags/icu-release-49-1-1\nf0b25ada5141d283892042316f87aeb5a9e3dfc3\trefs/tags/icu-release-49-1-2\nf31803070dc82c743a7291c6073cd02860252fe9\trefs/tags/icu-release-49-rc\n121b34e53cf1cebba315668789747787a3f0b5eb\trefs/tags/icu-release-50-1\n8c081420da88e3fd9b349b66769eecab6608cbaf\trefs/tags/icu-release-50-1-1\nf82ec518b404a82d24824441c18549c2130014fd\trefs/tags/icu-release-50-1-2\n0dcdf34b60d67e46f27f6eb3953b976b303770c4\trefs/tags/icu-release-50-rc\n04b4dde369004c48e0ea0e913f855da914baa95a\trefs/tags/icu-release-51-1\n1ba0651a1dc36d0ad05a2d6e8a1b87f8a82bf658\trefs/tags/icu-release-51-2\nb289444653da3dba6517463dfaf7abf3d8575c44\trefs/tags/icu-release-51-rc\n2edeb5798beda4773908a788b1f429c1cec2f63b\trefs/tags/icu-release-52-1\n0dcf827f8e5eb76dcb57d1fa0d699b8d0d64c2e0\trefs/tags/icu-release-52-rc\nb512ec18b6fff8ed7f746f108558ae7ed3d5af65\trefs/tags/icu-release-53-1\n16efd9ec0218c3542f69bf7d56f2aa7e7811fcea\trefs/tags/icu-release-53-rc\n719c62da16020728ef36b8246f8e3d0391b9c269\trefs/tags/icu-release-54-1\ndf63604921c3cc0f5ce83a79ad7e9b48757b6f5d\trefs/tags/icu-release-54-rc\ne603a1faa5c45fd5dae9be3cc594e596f4a6bfbf\trefs/tags/icu-release-55-1\na4502d2e6c4386c586f8c4af19cb7c3626cd24b3\trefs/tags/icu-release-55-rc\nefbedf85b0db42e858c2c9d62917d984e8cd6e99\trefs/tags/icu-release-56-1\nf02692a6613ee454a26c51968c8004eda904ca21\trefs/tags/icu-release-56-rc\nc9a71b26c9b31c8d45a39d99f9175f36ad145960\trefs/tags/icu-release-57-1\n412ed3b74fa43bf30f130369a3e48baa13bc6b84\trefs/tags/icu-release-57-rc\n951ebf46a1b7653e290eb877983b837426840783\trefs/tags/icu-release-58-1\n61cff3dbad238f6c54728d3dc14a8d1665a136fb\trefs/tags/icu-release-58-rc\nb9f1ff56152e0e646cd3ef06ccee8cd14137241b\trefs/tags/icu-stable-2001-05-03\n4c1ed33ae4b38acfbf76afd2fb8cf3f5804a6216\trefs/tags/icu-stable-2005-04-01\nf3710aa8f9f1043ae6d7e9ccf37b4edfa03a2302\trefs/tags/icu4j-cldr-1-5-d01\n358494c1792326e640a6c1eae0734beb97628850\trefs/tags/icu4j-cldr-1-9\n000ff29bdfb16f5ea36e23c33ae3be5e6ee2a392\trefs/tags/icu4j-cldr-1-9-1\na000c29f77849db9d66f656b78b3de94e52a4c2e\trefs/tags/icu4j-cldr-1-9-m02\na1e42fb848936f00a3ffd588f93414e21ec950dc\trefs/tags/icu4j-cldr-1-9-rc\n7702cfdbaef3c24730ddd6e175d813f1011470b3\trefs/tags/icu4j-cldr-1-9-rc2\nfc497302129564f0ebd921f67a068cdaf609f143\trefs/tags/icu4j-cldr-2-0-d01\n229cd9c61009a14b5924d248c98f6e83495cb1b9\trefs/tags/icu4j-cldr-2-0-d02\n2f3f00acc4f044e240c706a4697dfa9a4010b350\trefs/tags/icu4j-cldr-201\n2f8662cc57b9543b9f0cc4f2bd1e2eb566d3f2f6\trefs/tags/icu4j-cldr-21\n1a2969daf543655519b303ddb257a02ff7004f52\trefs/tags/icu4j-cldr-21-d01\n74a0ecc980ee5fd92af0fb452c11ed783daca645\trefs/tags/icu4j-cldr-21-d02\n7198ebe5d18361da6866c3e4873f507c5b647c8c\trefs/tags/icu4j-cldr-21M1\n04f4f45c8db4b67af5fb5ba5ee32199c65acedb6\trefs/tags/icu4j-cldr-22-1-d02\n2810f003a102bc3d1956b8e713ca47bc37c38a9f\trefs/tags/icu4j-cldr-22-1-d03\n8b70df5c674cf9d977fc2e68e48fc8d5024fa31f\trefs/tags/icu4j-cldr-22-d02\n2c501bfad693bc32f5de176a9b60e90b628eb1c1\trefs/tags/icu4j-cldr-22-d03\ndb7fc3e88b647fa3a6deb736b8797ad2efc43fbc\trefs/tags/icu4j-cldr-22-d04\nb6232d949c9111da69288f2cd3a4b1307fbfcf0b\trefs/tags/icu4j-cldr-23-1-d01\nff15ecd85c69ebaa928a887f8fc27d9864dec231\trefs/tags/icu4j-cldr-23-d02\n080db2eb495e6da2e5e7149e44474671d6d3d00f\trefs/tags/icu4j-cldr-23-d03\nb5846c195b71bf5febe0f21eb65a13035d1a2b69\trefs/tags/icu4j-cldr-24-d02\nef56f1db2d00107d449ec4a65ae2fd06ea30503a\trefs/tags/icu4j-cldr-24-d03\ne71e36bce0a46907ef9ca7e5ac6538922e035da9\trefs/tags/icu4j-cldr-24-d04\nbbade0408662a5e2b87803f2fa1c3c997d10448a\trefs/tags/icu4j-cldr-25-d02\n907122719f941f0f19af4b69eba884af0128cdb0\trefs/tags/icu4j-cldr-25-d03\n682c8e4f092b309daa709c3fe7cd5e9598e7a674\trefs/tags/icu4j-cldr-25-d04\n89d5ee3c8afde0183bce043ed3a12d627584da02\trefs/tags/icu4j-cldr-26-d04\n8d178c94380718ad55f79a2bad7900ddeb20a686\trefs/tags/icu4j-cldr-27-d03\n0cd4476acca8d60b5f8233183d86baa816344546\trefs/tags/icu4j-cldr-27-d04\na01b9d26841e44c3c1f6b666ae2e90e7c450adb0\trefs/tags/icu4j-cldr-27-d05\nbc77781771d9539b97bbb779590414c566c3122b\trefs/tags/icu4j-cldr-28-d02\n5c3114c4270f27b9fc139a2c678080ffaf5cc5b8\trefs/tags/icu4j-cldr-28-d03\n6121cedbe855a173c73d66244bd9c8a5142974ec\trefs/tags/icu4j-cldr-28-d04\nc8ac730b22b94a61e9ba6275a0e55534cd59221d\trefs/tags/icu4j-cldr-28-d05\n5dc85666b3c7e8ec8a74645e5fff264c0c37fc68\trefs/tags/icu4j-cldr-29-beta1\n097e8d03561b1229b60f0a966abde0fd74d8e0b7\trefs/tags/icu4j-cldr-ICU55M1\n8df664cdb11caf14836a70e5fe750c40f7a13c39\trefs/tags/icu4j-cldr-ICU56M1\nb139720dd57d3bdc3a3f48f546e06f6c25188b05\trefs/tags/icu4j-cldr-d04\ncd10c021eab4091bf8fe7e7a3e6473976476b878\trefs/tags/icu4j-dev1-0-0\n27f098d37fe5f54ae116ff55e70e843b6fe116d5\trefs/tags/icu4j-jan_10_00\nabc2bab6792ffc8024d218234804b89b83ba7dff\trefs/tags/icu4j-jan_13_00_icu_sync\nd18cc3f6d170f66a7ad41a9096192c0a06d486c5\trefs/tags/icu4j-jan_27_icu_sync\nd6f821f180aa39fa1d3a60c8144fc70544380205\trefs/tags/icu4j-latest\n449db7c4b90244af304e655b57d9756773111488\trefs/tags/icu4j-merged-3-4-3\nf53f41935660ba0f01efdd617b18f9f2b0363ac4\trefs/tags/icu4j-milestone-3-7-1\n514a33ad255b11422c87d7a95eee0a7998c84229\trefs/tags/icu4j-milestone-3-7-2\nfb845093833f931e26f3ecea995d760017fd20f8\trefs/tags/icu4j-milestone-3-9-1\n31c6122902a13a8b04dcfee6da1c5a2b09aff90b\trefs/tags/icu4j-milestone-3-9-2\n65801c8e51ef58990f091950b610e3ddae59477c\trefs/tags/icu4j-milestone-3-9-3\n00f0ec353d53dec45d68f5ac57447ddf268ee100\trefs/tags/icu4j-milestone-4-1-1\n58511329281119ce17faea24c3b25beaaab4c8ff\trefs/tags/icu4j-milestone-4-1-2\nd937398cceb17cd4bc36b67c7fbeba809ab3595e\trefs/tags/icu4j-milestone-4-1-3\n979a9b97736113c46660d6d7552938ed06eeef9c\trefs/tags/icu4j-milestone-4-1-4\nb276191a38b38d86d5e1e7b5a2f85e99413359d1\trefs/tags/icu4j-milestone-4-1-5\nfb538e8b0feda2b6320cfcf60bb41c2cfc7aca0d\trefs/tags/icu4j-milestone-4-3-1\nb9f55395d1f7afc5b0e831dd517d8e6374bedcc8\trefs/tags/icu4j-milestone-4-3-2\n34ef7ce9d7e8556fcc1feef41167d88e2c869529\trefs/tags/icu4j-milestone-4-3-3\nbc1cac0bb93dbc6fbe5fb6d4812aacaeac3cfb82\trefs/tags/icu4j-milestone-4-3-4\n091215d4d29cb2307cb0159dcc7e594aa9ac9ca0\trefs/tags/icu4j-milestone-4-5-1\nfd5d6c546341a71ebbe7245a17e3d198a64a783a\trefs/tags/icu4j-milestone-4-5-2\necd5f0706807def9e06f1b9133e4b307945fa344\trefs/tags/icu4j-milestone-4-7-1\n679dff89a236a98643cb1ddfe61bd75f4c21b949\trefs/tags/icu4j-milestone-49-0-1\n5968524eee4abcaac017d58db085c741931d0b0a\trefs/tags/icu4j-milestone-49-0-2\nbda4344943aaa4b1129649fca6f0b8f822512d65\trefs/tags/icu4j-milestone-50-0-1\n1a3e256908a016439bf4d715c06faede5a491640\trefs/tags/icu4j-milestone-50-0-2\n21372b1144bb01101884e792a926ee91ce849bf0\trefs/tags/icu4j-milestone-52-0-1\n0c72fee668aed0f5a179baa20a1ad989ecca184f\trefs/tags/icu4j-milestone-53-0-1\n9810fbd8acacf948341f3bc93f515230be94a65e\trefs/tags/icu4j-milestone-54-0-1\n7341c6677a4bfd74be80ac805a8e819b840797df\trefs/tags/icu4j-milestone-55-0-1\nd5f55ad62aeff4c52304d70120056704ef82c132\trefs/tags/icu4j-milestone-56-0-1\nf27199858baba397a32d3adb931ab1792a0d05b1\trefs/tags/icu4j-milestone-57-0-1\n78aadcbe9d3b75dacc039a197f8f74bee04bd45e\trefs/tags/icu4j-milestone-58-0-1\n003af1f6f84d2972c708cf3db0128192181c85bb\trefs/tags/icu4j-patch-3-2-0-1\n86dbe68e198a93b2102c2a168f669a9fd021b711\trefs/tags/icu4j-post-cvs2svn\n80b7e4ff4f0976a398a081cd370e456e3a583a47\trefs/tags/icu4j-post-cvs2svn-cleanedup\na5721e8615f73ada65ab09fbfb872bf1609ee091\trefs/tags/icu4j-release-1-3\n529981194d3b5e6f8495201cafd00e78e3d5391d\trefs/tags/icu4j-release-1-3-1\nb4bc5cd89b015a9cdbe54b1883f982b79f046b78\trefs/tags/icu4j-release-1-3-1-d01\n3c7dcb78e3ac954a15264e0aafc5c898c00b3a75\trefs/tags/icu4j-release-1-3-2\nbf84f718cc97c818f1988f6e86902c6596aeea7a\trefs/tags/icu4j-release-2-0\ne15555320fb81b50ecca429f66a0d975d7cfdfe1\trefs/tags/icu4j-release-2-0-d01\n0de8119ad77d9d0d115898b3cfb4b0b0ec9d7c3b\trefs/tags/icu4j-release-2-1\n818fda728f9c82fb9d2040b789e7cf7fef25d105\trefs/tags/icu4j-release-2-2\n826795de5207f1154d2cb0d1a464c56811022833\trefs/tags/icu4j-release-2-2-1\n272caa90b4dafa9d5b44d9172b5ffd04c9845829\trefs/tags/icu4j-release-2-2-d01\nf8798fe68343bdce89ceb3eb76cf3abd386887ea\trefs/tags/icu4j-release-2-4\n99ae78d25dffe0c9bab0175c891eb51b54c6403a\trefs/tags/icu4j-release-2-4-d01\na10fb03c67d4cb43e43e21b68abe245cc54a106f\trefs/tags/icu4j-release-2-4-d02\ndfbe7e8bc734d025b1cb7447522a82982dff16d3\trefs/tags/icu4j-release-2-6\n3c53deaefb018e2249a62259fcbe39a183232743\trefs/tags/icu4j-release-2-6-1\n418e0254e8b3ebe956f347109074721ee1a08d41\trefs/tags/icu4j-release-2-6-d01\ne76f330bbd2c0bd44da1a7c04892860368ecbcd7\trefs/tags/icu4j-release-2-6-d02\nb56ccfbc6469a0da048e145acf09ac681ca6366e\trefs/tags/icu4j-release-2-6-d03\n9d5d4cb52a1b069a549d527dae06deac5d473e2b\trefs/tags/icu4j-release-2-8\n65d249ae6cd9f38252fc3ad791f9b02e20af9583\trefs/tags/icu4j-release-2-8-d01\n82502613038c9f9eb3f8af7139acdab39c5042ff\trefs/tags/icu4j-release-2-8-d02\n05d22ca125c4c25f5e8d5bc384472ae28afc7f15\trefs/tags/icu4j-release-2-8-d03\n15bb5d311217deeb54d4512a68d28ae822ef9d3e\trefs/tags/icu4j-release-2-8-d04\n5329a1976f85690b77c305a9d5a42304e65b68f4\trefs/tags/icu4j-release-3-0\n1d6fef2399c2e160b836afaf24962b28e0a3311d\trefs/tags/icu4j-release-3-0-d01\n1568e2d239301084ab451c597c6c7c5c2effab3e\trefs/tags/icu4j-release-3-0-d02\nefa96a367738ebc4169125c217ce62f9c151b0c2\trefs/tags/icu4j-release-3-0-d03\nd8fed6861d0fce5d735ef6dacc30cbf58defde1f\trefs/tags/icu4j-release-3-2\nc58f517b75e319e4444c531b597d794bd92f288d\trefs/tags/icu4j-release-3-2-0-1\nb53977bb3748db2d56a6d7f6f29a303e7bf6ce2f\trefs/tags/icu4j-release-3-2-d01\ne4366d4600d71c02383360c23313bceb47f25666\trefs/tags/icu4j-release-3-4\n13e890d31f0214ec45e7e53a78a108f988c9baf6\trefs/tags/icu4j-release-3-4-1\n59a5f6de1dd62a12edddc697a2b1be540934b341\trefs/tags/icu4j-release-3-4-1-d01\nfdb56fe3520a355c477acdcde6c9e4cc18569e78\trefs/tags/icu4j-release-3-4-1-d02\n2eacb91581c46722e4e851c1b2869fde46b3cba5\trefs/tags/icu4j-release-3-4-1-d03\nc0c33400ee8d358de2f6bb7f678f9e7c2084f9f2\trefs/tags/icu4j-release-3-4-1-d04\n502b355a4020c747748fbab6dff771a8545cc191\trefs/tags/icu4j-release-3-4-2\n43aa8d75096777f0a823f2d1e989efc47296f92e\trefs/tags/icu4j-release-3-4-2-d01\n4dd07a28a53ab10784155eba4265f400aa10e3b7\trefs/tags/icu4j-release-3-4-2-d02\n049ecb18a38f2b830799e769f56fc3ed2c66c3b4\trefs/tags/icu4j-release-3-4-2-d03\n663fe17c234778cf16eb5a9394f78f2e577afc5a\trefs/tags/icu4j-release-3-4-2-d04\n194e95acece207b3958ab53fef50f13f9a9cbf8a\trefs/tags/icu4j-release-3-4-3\n3f875b8ea41e907228ab909b6e26423560e0f050\trefs/tags/icu4j-release-3-4-3-d02\n589e83280998496140f50d0e83104afae8c6287f\trefs/tags/icu4j-release-3-4-4\ne5f0b38fcb7c6649c4a9ff22b1650fcf59f4af37\trefs/tags/icu4j-release-3-4-4-1\neadd5c6f3f8f93df1305e34a4f9e0943e9849b67\trefs/tags/icu4j-release-3-4-4-d01\n65f30b6cd5a62809a2d0ee45798b278c8b026abf\trefs/tags/icu4j-release-3-4-5\n8cc31ed18f87657df0127947653da6e727253ea9\trefs/tags/icu4j-release-3-4-5-eclipse322\na862de76881bdd5c3adabacca1ed741ae8d159c0\trefs/tags/icu4j-release-3-4-d01\ndae9812dbed83ea883c6bece4c0e7fef42c5807c\trefs/tags/icu4j-release-3-4-d02\n312fe08bd4a02f9f09d3a807a3a64ea607a5245b\trefs/tags/icu4j-release-3-6\nb0c13c95e63978688fa8cb3b64580c3d2cc34fbb\trefs/tags/icu4j-release-3-6-1\n77e743ef26677ebcd56f2839a7d0d0d37b09a995\trefs/tags/icu4j-release-3-6-1-eclipse331-20070906\n6817e687fa38b89243cbdefd8479d63aab35c351\trefs/tags/icu4j-release-3-6-1-eclipse332-20080103\n8cfd64732644abe9c2d5f0e977aa98976f1d5a85\trefs/tags/icu4j-release-3-6-d01\nb6a5bb28708e2d39153af4fb732ec261013d700f\trefs/tags/icu4j-release-3-6-d02\nddcec4ced6a87f02f8be89f5fce19fc3ae2b6f06\trefs/tags/icu4j-release-3-6-eclipse33-20061215\n73e9866cbeb5d31d30692d34daed364d6b560fe0\trefs/tags/icu4j-release-3-8\n281b260d678a921f05b1fd2faace45aa98235b95\trefs/tags/icu4j-release-3-8-1\na3cd1473c862e3dc2410023007a201f0722876ad\trefs/tags/icu4j-release-3-8-1-eclipse34-20080103\nac18b81218a5d4847d201219cf9d870a379784aa\trefs/tags/icu4j-release-3-8-1-eclipse34-20080402\n2c39dbf4a1d40895d352af37477b47e01fa027d7\trefs/tags/icu4j-release-3-8-1-eclipse34-20080528\nb5a4675e1275962d616162a9a0ab214fa6305826\trefs/tags/icu4j-release-3-8-1-eclipse34-20080531\nc906840fe7dcbf1517d70e911af29e42991ae3c2\trefs/tags/icu4j-release-3-8-1-eclipse34-20081217\n504ca0e9b79b54701e7ac3c1a50d7f8ae345cb06\trefs/tags/icu4j-release-3-8-1-eclipse34-20100112\n27113acd5ad1982a8447e5bcc3395aa7ce39be99\trefs/tags/icu4j-release-3-8-1-eclipse34-20100525\nfd1263009deb8abd79cb30cc73c2d6cd404b23af\trefs/tags/icu4j-release-3-8-1-eclipse34-20120406\n65ff39d1565aec84b2ec29ee9469c358263afb64\trefs/tags/icu4j-release-3-8-1-eclipse34-20120530\nce74a951c9b1dfb5947b2b2c417b16d4d0372199\trefs/tags/icu4j-release-3-8-1-eclipse34-20141024\nc897ae9dd95fe482876ca8768462187637b640e3\trefs/tags/icu4j-release-3-8-d01\n4371396e9b587bcd3b5ea09a2d4ddb94b52ff56a\trefs/tags/icu4j-release-3-8-d02\ncbbe62e2c374e2a61e476c20b89f26a5cd369493\trefs/tags/icu4j-release-4-0\ndcc1bb487e8700f9be28b5cc68b1a31e5d1afea8\trefs/tags/icu4j-release-4-0-1\ne066cf86bd64ece32b52e2e94c50f9c3f71ea40a\trefs/tags/icu4j-release-4-0-1-1\n84b1d1974292f9592b7a00ee4230334ac6d89686\trefs/tags/icu4j-release-4-0-1-eclipse35-20090109\na07fde52879c48d13c8b9fa5cc6d95467b58fbd6\trefs/tags/icu4j-release-4-0-1-eclipse35-20090415\n1c68f9c382e2c3723824708d3c446df1f355213b\trefs/tags/icu4j-release-4-0-1-eclipse35-20090717\n747635c52821a27f5c02d9b48fa4dbf881ac8c68\trefs/tags/icu4j-release-4-0-1-eclipse35-20090822\nb404dce403e4d7f1b886208dee067fb7a40935b2\trefs/tags/icu4j-release-4-0-1-eclipse35-20100112\nd8f10d8599d1d2c84b2cb773cf86f2fc5b5ed195\trefs/tags/icu4j-release-4-0-d01\na074bba7dc05a13c57973fbbc22df7f43bb51fd2\trefs/tags/icu4j-release-4-0-d02\n9b27851dd3dc37ec7d869f0702c83a80f2a08c0d\trefs/tags/icu4j-release-4-0-d03\ncbbe62e2c374e2a61e476c20b89f26a5cd369493\trefs/tags/icu4j-release-4-0-d04\n025d48dfbb39a4fb065af137f2e5704603e6b09c\trefs/tags/icu4j-release-4-0-eclipse35-20081201\n78e4232e53e2f0c2c69e4b242967b32e1d4ab85a\trefs/tags/icu4j-release-4-2\nc37f40f23c827989f793cb724d268ffdfbdaed01\trefs/tags/icu4j-release-4-2-1\nf41253942dd8ee04597b4269d30a3ea311f17abc\trefs/tags/icu4j-release-4-2-1-1\n5946bbd19e0f546e1fe73bde86a5b8e8a7fe9c39\trefs/tags/icu4j-release-4-2-1-eclipse36-20100112\n7a17d51626c75271d477f4be0adf2e16a9527a5f\trefs/tags/icu4j-release-4-2-1-eclipse36-20100212\nf41253942dd8ee04597b4269d30a3ea311f17abc\trefs/tags/icu4j-release-4-2-1-eclipse36-20100408\n6604f5a07746e356b6424fefd7ab74c6d1ca748d\trefs/tags/icu4j-release-4-2-1-eclipse36-20100412\nc37f40f23c827989f793cb724d268ffdfbdaed01\trefs/tags/icu4j-release-4-2-1-rc1\n0912bb382453630358b8aa964cdefac49fc246a1\trefs/tags/icu4j-release-4-2-d01\ne7ad5d5a43f89af631ca6f3cd77b52b6f0c29e2c\trefs/tags/icu4j-release-4-2-d02\n8775db551eeb1efd8e8235e1da542a818210da79\trefs/tags/icu4j-release-4-2-d03\n52361aefd705e842edb4d461498d9cadb2d06f9d\trefs/tags/icu4j-release-4-4\n3f7a3bea38da9edc9d0056962eb6a726c5f35aa4\trefs/tags/icu4j-release-4-4-1\nf11fc680d4d2ded3ca0799d08b7695ae64046cc9\trefs/tags/icu4j-release-4-4-1-1\nb398d1ca13de4fb1631cb28f968f231433b75b20\trefs/tags/icu4j-release-4-4-2\n4f183ae98211aa0d01257a6f50f66353a443094e\trefs/tags/icu4j-release-4-4-2-1\ne8b1891da903aa7ef66b12cd036f6531f2511dad\trefs/tags/icu4j-release-4-4-2-2\n64d86f13422e01e5635a97eb0b326cdc307248ec\trefs/tags/icu4j-release-4-4-2-eclipse37-20110115\n433d0d11c35deb7383e5ea4fad7e1368ad931cd9\trefs/tags/icu4j-release-4-4-2-eclipse37-20110128\n2f1b955af591e01aed567837b7bebadcce8a76a2\trefs/tags/icu4j-release-4-4-2-eclipse37-20110208\ne2c81707f74ce5e1402d77d0c9e8eb8aba6647e8\trefs/tags/icu4j-release-4-4-2-eclipse37-20110823\n750d7df86031329622078ee61919785eefeaa3e5\trefs/tags/icu4j-release-4-4-2-eclipse37-20110831\n83bcd1bc1f69be184e223a93514601417917fe3f\trefs/tags/icu4j-release-4-4-rc1\n7f96e02913c31ecc4538cff8160f7d79b6f983e1\trefs/tags/icu4j-release-4-6\nb8d1a2e7371212299abc83e73daf9c7fb9ca0fae\trefs/tags/icu4j-release-4-6-1\nb075e9ec81c54b1eacee9ed8d53fc46fee33adc4\trefs/tags/icu4j-release-4-6-1-1\nb9213554a9d7adc8c245b33956877d9ac0b76b18\trefs/tags/icu4j-release-4-6-rc1\n250512a6703a980d6622893493f9d133300138bb\trefs/tags/icu4j-release-4-6-rc2\n5a8dc8f3b3f3e923f6cc54543b84f6953bdac05a\trefs/tags/icu4j-release-4-8\ne497967f9ee9b0b257696f26dc157c562fb3446a\trefs/tags/icu4j-release-4-8-1\n5c574c78efe6ed1fb956ab3b125004d244df8551\trefs/tags/icu4j-release-4-8-1-1\n4e4d669288b8a8a3de3b307466350af3f0d61f19\trefs/tags/icu4j-release-4-8-1-eclipse38-20120202\n8ff08cef3dec6d544438b211e6bbf10a244d3294\trefs/tags/icu4j-release-4-8-rc1\n7cdac04690328ca61b7f220af9fb66195ad24f13\trefs/tags/icu4j-release-49-1\nf2c3d4856bfe21b0c59721887f75c87a77d61ad9\trefs/tags/icu4j-release-49-rc\nc555b271c8d5b7599872a34c068fccfe8f585add\trefs/tags/icu4j-release-50-1\n00434a55a7cd828bba111b5f73a329f763890ba1\trefs/tags/icu4j-release-50-1-1\n8364ea737bff7dcd75dd58e8ffc17d4b275bb631\trefs/tags/icu4j-release-50-1-1-eclipse-20130412\n0403e5f47caa42ac1e1620219d714d713f5da76a\trefs/tags/icu4j-release-50-1-eclipse-20121116\nd415bb3af49317b6626c749c7c83a2dde9f04df7\trefs/tags/icu4j-release-50-rc\nae26340dfdc59043f272af812630affe891b0812\trefs/tags/icu4j-release-51-1\n77cdc988b5232e0f578c70a75cdd7c82177118f8\trefs/tags/icu4j-release-51-2\n84754217416440c9253f320ea99fd8d4535e8652\trefs/tags/icu4j-release-51-rc\n11f55b171a432048bea20949f809fccc4b06268c\trefs/tags/icu4j-release-52-1\n8a021cfce1fa952daba1c7c3f289038fced92fc4\trefs/tags/icu4j-release-52-1-1\n348506b6b31130650a949d6c1f2d34727fbf990f\trefs/tags/icu4j-release-52-1-1-eclipse-20150113\na7375643670fab3c3a2f7eeb8e15cd4987638fc2\trefs/tags/icu4j-release-52-eclipse-20140218\nc683cc2cad4c5a3a940abec0532e0b7ca2cfaaf5\trefs/tags/icu4j-release-52-rc\n62de81e28606edc35abc33685024c2c00adf81de\trefs/tags/icu4j-release-53-1\n14fe06e6474bf51d510670622d98aa96719b6865\trefs/tags/icu4j-release-53-1-localespi-java8-20150610\nfbfca08f9b22f52b79fac63bef4e274d2412fa98\trefs/tags/icu4j-release-53-rc\nb7c314a7746a4be3bc6c73da986536ecbd06ebf0\trefs/tags/icu4j-release-54-1\n21da65957e4a27f1e2124ecf4b711af5e91ac78c\trefs/tags/icu4j-release-54-1-1\nc87fd97e4fd264563a72823e9c265e332dc1c44e\trefs/tags/icu4j-release-54-1-1-localespi-java8-20150610\n036535963a3cb9fe60a8befe45a3ea8a9c5df1e6\trefs/tags/icu4j-release-54-rc\ncf5fb5dc9640201bda857c1c752ae9e68015f9c1\trefs/tags/icu4j-release-55-1\n82fd711175e2cf4cb4128cee8eb5d7aabc2c22bf\trefs/tags/icu4j-release-55-1-localespi-java8-20150610\n8a6f4c9be1afe7932770d414d6c311280153544f\trefs/tags/icu4j-release-55-rc\ncb57e60b92cf98c184b5b9ea9b8ab2a264f40719\trefs/tags/icu4j-release-56-1\naa2d1404b781c471e3c5aaeeabd5cda99046f739\trefs/tags/icu4j-release-56-rc\n8819e5efb945344c47033b5834ffc5d201773a46\trefs/tags/icu4j-release-57-1\n77c92397121edf439984f0f4de8f94ada77657c8\trefs/tags/icu4j-release-57-rc\nd6f821f180aa39fa1d3a60c8144fc70544380205\trefs/tags/icu4j-release-58-1\n620ad5c09ba95fe19890d3a6b712314af9b9ed0d\trefs/tags/icu4j-release-58-rc\n05841f40c01329add436045fc0d41e09192f0b99\trefs/tags/icu4j-stable-2005-04-01\nc48e370c9dd9a8c75b56a42a4fecdee841c745e5\trefs/tags/icu4j-tag-for-cldr14-util\nff71eaccf75c846d84046176dba49d1ab78271e6\trefs/tags/icu4j-tz-patch-2-6\n0f887df8517d04fe38ef98fced773d8edda6107d\trefs/tags/icu4j-worksOn1_2\n791895b4cf1451be364169fa4a27db61ca65ce93\trefs/tags/last-cvs-commit\n70c0dbe84895aa63e37830c00c8613a9ce60c82f\trefs/tags/last-cvs-commit^{}\nfc70f891e73fb2a86625de25414bd3e4f7efe8f7\trefs/tags/last-svn-commit\nb12a927c9365bb38831afbf76fdd0999f8f33deb\trefs/tags/last-svn-commit^{}\nc3ad2fabfb9275737a3b0c1fea490b2b1a95de10\trefs/tags/milestone-59-0-1\n39312f8fac5c97c223b0f3ceafd38b7f82a16eab\trefs/tags/milestone-60-0-1\nca6a2dd0325f5436487f1028242b66f8c852aa24\trefs/tags/release-4-8-2\nc49438c8a6025afc8b4bc2eada580e27b9070226\trefs/tags/release-50-1-2\n10b3805c9fe212dc0509914bb6fd5c2860246f0a\trefs/tags/release-50-2\n909df9d00b6bea0b971275692c38a9c9cbd12ea7\trefs/tags/release-51-2\n574b0441da4ca3ac91c3a18bdf06a6237538543d\trefs/tags/release-51-3\n7532b172ee963268015cce900f9cf90d13a8a739\trefs/tags/release-52-1\n7bd54e9fa1d1d44f73c259db274d29d44440c9e4\trefs/tags/release-52-1-1\n574e7d9d55760680ea14dbfc4908429a58c5d544\trefs/tags/release-52-2\n630bd3010ea6018d10e3ae91e7ae94ac08d0ebe4\trefs/tags/release-53-1\nba0126468579e2245f1dd3754799cbb1259abc03\trefs/tags/release-53-2\n32d9621614f83d8ea78004254fb4230f5aa2caf4\trefs/tags/release-54-1\ne7322befb7a4a23262f50a1fb3cace75bf9f591d\trefs/tags/release-54-1-1\n434a3b4763af47b8b66f7af6e4092b4feb3c97b8\trefs/tags/release-54-2\ndd8356c7545a570b56136d3e44c62f7efdf5495f\trefs/tags/release-55-1\n4cc636cb8e12794b2b2d695cfbb02135f5700f3f\trefs/tags/release-55-2\n24c90c0693a0ba7aea00986c34676b55f766cfac\trefs/tags/release-56-1\n74be8178cdef930f5041609e20e5685854472c2d\trefs/tags/release-56-2\n0c5873f89bf64f6bbc0a24b84f07d79b25785a42\trefs/tags/release-57-1\nb7c2034642ce01ba6ffb9418f26234efb2549d08\trefs/tags/release-57-2\n4f4208391a67752287ff4c73238bb91d33917c23\trefs/tags/release-58-1\n409ddcd4596f13863e7c9ec20f48f2fc0021fffc\trefs/tags/release-58-2\ndd5d75d17ec303c8f978a3e9c3a169e9b0cbd019\trefs/tags/release-58-2-eclipse-20170118\n9248183bc6ab67503d03d4a6b4c842e77e3fd1b8\trefs/tags/release-58-3\n906906c3d9ba7f5292ed0b44a017fe16e0440aea\trefs/tags/release-59-1\nc8bc56ee0cda8803dd820252917434304a37d66c\trefs/tags/release-59-2\n9c4ef576779222bc812ed08c5b265a22f9a08e52\trefs/tags/release-59-rc\n89bae57bd0570109ca997e8b6b887f851b9c26e0\trefs/tags/release-60-1\ne387c69929ca8efd74b18c003818eaf1aa72796e\trefs/tags/release-60-2\ndcae2a648060dce170fc47f37dbe40e1ec9db394\trefs/tags/release-60-3\nbb430ebdf1b0aeadbadb5f926f9c8272137f2975\trefs/tags/release-60-rc\nb3054b334d8cf84dcae12df7e1a4f1f5c0997445\trefs/tags/release-61-1\nb7e6e9b84b7a210fb3a541ffef792a744c45d20a\trefs/tags/release-61-2\n8da6ef17765ec98742186ad8a6b8379cfb74dd81\trefs/tags/release-61-rc\n4a3ba8eee90ea1414d4f7ee36563e6c9b28fda96\trefs/tags/release-62-1\n7c7b8bd5702310b972f888299169bc3cc88bf0a6\trefs/tags/release-62-2\nc0f9d2eeefd6c979cd4a178f6fdfb924d7fd2bbf\trefs/tags/release-62-rc\n46895456ad1b6660d17eaeba2c101600ad8d8eb8\trefs/tags/release-63-1\n4f715ae124c418a15a3fa4d8fb14f406576a7ee5\trefs/tags/release-63-2\nbcd0a4165cec39e15cee45b1ea81c669974514e9\trefs/tags/release-63-rc\n2f2aec5f91cffe49b7526d9b0d18a9acbdd0cc89\trefs/tags/release-64-1\ne2d85306162d3a0691b070b4f0a73e4012433444\trefs/tags/release-64-2\ncc8946607a5ae93e919b76001afa0506785996a8\trefs/tags/release-64-2-rc\n099ec53635af00c49084066c97d32887e7e4ac18\trefs/tags/release-64-rc\n9ab87941f3768826a1e054fae650174128a0bcb0\trefs/tags/release-64-rc2\n67d218f2476ac543de2ed843fa080892972c604a\trefs/tags/release-64-rc2^{}\nfd123bf023882f07bfacf51c39111be2f946d8f8\trefs/tags/release-65-1\n417254f66a39319591aa03626cc000fce99619fa\trefs/tags/release-65-rc\n5f681ecbc75898a6484217b322f3883b6d1b2049\trefs/tags/release-66-1\nffbc8cf85f1379a1461b6928d40cfd6ae2464694\trefs/tags/release-66-preview\ne1aa9119ad37ff1ea727ee42afb13c64d7f14170\trefs/tags/release-66-rc\n125e29d54990e74845e1546851b5afa3efab06ce\trefs/tags/release-67-1\n628a935488a8ff9ca26fcb0b02da1b0bd2b52a94\trefs/tags/release-67-rc\n98c4ad90f66722a4c3f1ebd292ec42ec56bb5aec\trefs/tags/tools-milestone-49-0-2\n9faf4228400cf33a053311289fc960055f8cbe0b\trefs/tags/tools-post-cvs2svn\nab70952faf12d32bf8284f03d31f1356519f329c\trefs/tags/tools-post-cvs2svn-cleanedup\n65a70a4a2dfc9724b49166372f989d1570db1ce3\trefs/tags/tools-release-4-6\nea68faad747db5c1c1ebb3fb123b8cac546a5e5a\trefs/tags/tools-release-4-8\n105626f0f7e89a7a7e7d9f2fb748a0865e6a4dc8\trefs/tags/tools-release-49-1\n61898749088a9f66efcfbea16e6b24f7c97cbaad\trefs/tags/tools-release-50\n52762fcad5bc353e5024007cd6208942e1172a01\trefs/tags/tools-release-51\n7acc03d8d522debbec9c4217c00cdfab4063eb5a\trefs/tags/tools-release-52\ncb88896dff9bae51a29e8fa16cf45d31b8579310\trefs/tags/tools-release-53\nf687a15b9592f98e6ae6537a5bb7c055af9423d5\trefs/tags/tools-release-54\ncd1851be466374aa9090cff134db255454acf233\trefs/tags/tools-release-55\nda93ebafda7e722d488bc9d5ce734216f339b393\trefs/tags/tools-release-56\n3d2a24da5b9a39ef614a832c77aae8fb93d5cb85\trefs/tags/tools-release-57\n56b8004cfdf5da18ef6420258b3ed4401d96f958\trefs/tags/tools-release-58\n86d89f0c5c459003e3616c90e48353894e546193\trefs/tags/tools-unicodetools\n" +query_type: git-ls diff --git a/upstream-info/jansson.yaml b/upstream-info/jansson.yaml index dac1e2629e2b15e8ac509c621f4abb344c1afa4d..7a8572111ebd017308aae01e50b9206815887991 100644 --- a/upstream-info/jansson.yaml +++ b/upstream-info/jansson.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: akheron/jansson -tag_prefix: ^v -seperator: . +src_repo: akheron/jansson +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:27:26.904622040 +00:00 + raw_data: "8cb64a45ec605adf73d50f394bc0d0b3e2f6df4b\trefs/tags/v1.0\n6b70406bf491c3b02f34a1893b2c61240c81a55a\trefs/tags/v1.0^{}\nb78b0750ffcb1334cc06a7f5f101c54a4eaaf74b\trefs/tags/v1.0.1\ne4be4a4a288f2308c8f742da9127a6339fe36765\trefs/tags/v1.0.1^{}\n95a6edc20fa674081d28a1df0d5805066995877f\trefs/tags/v1.0.2\n827a01937f480bfc388da0fe5a5e2242fd2ec1c4\trefs/tags/v1.0.2^{}\nd75a4c001d2cc1c5f6a6f33d229ada0751f140f8\trefs/tags/v1.0.3\nb7bf96996f4db14c75499ddb529d5017893ad294\trefs/tags/v1.0.3^{}\na5adfd13e7f43d880ca9dafb66e6411fb65bd653\trefs/tags/v1.0.4\n12cd4e8c093476b596012a7f5f4840fac69d1605\trefs/tags/v1.0.4^{}\n4cfb462ccb912960d8aa5c156df7044c23a3d87f\trefs/tags/v1.1\n325101e525087a24fcdf34da0fe0d4a6c9756d28\trefs/tags/v1.1^{}\nc1c3c856110dddc86cecd570b96719088eed3322\trefs/tags/v1.1.1\n15d992cb6a6eeab8c2f4c7d00fa06a52fca62287\trefs/tags/v1.1.1^{}\nf1a21ff697afa875881f14f548832b4acbc8ef12\trefs/tags/v1.1.2\n842bc2128b70e5390cacf83a24375cd5c0d0341c\trefs/tags/v1.1.2^{}\n6f5c4f692b198a3aa57f6d1feae7f6adaabe641b\trefs/tags/v1.1.3\n34fb97998cfeb4ae6f4bc9450c9144bd7572c1f6\trefs/tags/v1.1.3^{}\nc099777f5f665e0e585cff88c947e581fb43422c\trefs/tags/v1.2\n8c2ca3fae650349a31d5e0c7ff3b7649ff8ee804\trefs/tags/v1.2^{}\nb137419641c7b3b1763366e56d5134cfed0144e3\trefs/tags/v1.2.1\n047a1417fb4f09f995eb2671ee52253f7f1e1e76\trefs/tags/v1.2.1^{}\ncfe42f42a90e646f660a28402c56029697be74e5\trefs/tags/v1.3\n2caac965d4f675b51815be4a5ae1f305587be911\trefs/tags/v1.3^{}\n48b8a17b5575b6f3749c9ce3cb689d2211e519af\trefs/tags/v2.0\ncf9b384bcbd2fab0bfb44e0165368d3abc965f32\trefs/tags/v2.0^{}\nd11ffeb298e714a9d1b689ba88e482cf7b037384\trefs/tags/v2.0.1\n1c0a3b2a556be9800e307413d41d4f040d1db062\trefs/tags/v2.0.1^{}\nda325f9f97b92ec72f6d2cd2f33199fac078a56f\trefs/tags/v2.1\n86d17a8dc21ab9bc5775e1611bc90c64e2bbf22c\trefs/tags/v2.1^{}\n1551cb5a06a9f4d57c474ce7a1dfb89aaff63a36\trefs/tags/v2.10\nb23201bb1a566d7e4ea84b76b3dcf2efcc025dac\trefs/tags/v2.10^{}\nd311e03ab1c0ae4fd9dcaf4fbf91486846ac0fd7\trefs/tags/v2.11\n6dddf687d84306ea5d4ff9b13a28dc22282c77e6\trefs/tags/v2.11^{}\nf92e15deddb703ded3c74d7e86b00d261d1d16eb\trefs/tags/v2.12\n71c4e8ec215afa225ac20eed269a14963cd37b50\trefs/tags/v2.12^{}\na1fa9b03c993820d367974ea356c3e20002ca70a\trefs/tags/v2.13\n2882ead5bb90cf12a01b07b2c2361e24960fae02\trefs/tags/v2.13^{}\n8792acb1670a5b879ecd5ad7f853936fa13992b8\trefs/tags/v2.13.1\ne9ebfa7e77a6bee77df44e096b100e7131044059\trefs/tags/v2.13.1^{}\n04418c1a82b970f99666e76eb07f55ec8dca09ec\trefs/tags/v2.2\n889f2959581f6aba4ed7b1afa1bc7961c3c78c43\trefs/tags/v2.2^{}\n62ff9892a6716080ba417ca5a8375e76bee0beec\trefs/tags/v2.2.1\n9c6cb42f17fa1fb95edf766e2b44b128d1ebd08e\trefs/tags/v2.2.1^{}\ne4472f3ddc1cebb7650a91c50f9655f56a32d232\trefs/tags/v2.3\nf227483846e6febf7f43398d8cfa27cffc79e4b4\trefs/tags/v2.3^{}\nd05abead859d917bca245d17a88566e8dce48b7d\trefs/tags/v2.3.1\nff6e6ee293fc31df0ad6f0b74c4a61294b370df0\trefs/tags/v2.3.1^{}\nd354ba3f0c98b22477617b835495bed5c90a139d\trefs/tags/v2.4\n3279aacdeed2aac96741c02e2ddecbb5ae087ff8\trefs/tags/v2.4^{}\ncc81b58505d25e6c92bcab76b3b8a8070e81c5cd\trefs/tags/v2.5\n641002da378d922539d655a8017ee2ee0f6b940c\trefs/tags/v2.5^{}\n7b5ad0e97d5f92a73a7bcb107ebb6c18c2fb507f\trefs/tags/v2.6\n1dc87ed5a10e0268eb253f5a2f282e1cc57d63e5\trefs/tags/v2.6^{}\n19da8ce0b6b018e6b02d0b893c1ced0e713aadb2\trefs/tags/v2.7\nee27b7e3ddf6853a698af163c8e0627fa295091b\trefs/tags/v2.7^{}\n121b1d7664e04bbfd988e7437191c5c4c99f8feb\trefs/tags/v2.8\n012c5f0ecac48db286d4d737133b6d64d128939c\trefs/tags/v2.8^{}\n321cb8983641443b03cb1517456a2dda387db0df\trefs/tags/v2.9\nb02db4788145bb15ae0813fa876426c26184a6da\trefs/tags/v2.9^{}\n" +query_type: git-ls diff --git a/upstream-info/java-1.8.0-openjdk.yaml b/upstream-info/java-1.8.0-openjdk.yaml new file mode 100644 index 0000000000000000000000000000000000000000..47259eb03f4acfb7d5b281c3e5e545fe8907df43 --- /dev/null +++ b/upstream-info/java-1.8.0-openjdk.yaml @@ -0,0 +1,8 @@ +--- +version_control: hg +src_repo: http://hg.openjdk.java.net/aarch64-port/jdk8u-shenandoah +tag_prefix: jdk8u +seperator: "-" +last_query: + time_stamp: 2020-05-13 06:16:02.697672590 +00:00 + raw_data: "tip\ta81bab074ce9d55b2fefca7e9b6364600a367ae7\naarch64-shenandoah-jdk8u262-b01\tc55a600d3c280c7fb63d93b0bbf51b40c510e12d\njdk8u262-b01\t3cf8935494d6ac06c3ecb495bf356fde94060496\naarch64-shenandoah-jdk8u252-b09\tf7a3866daaa4801fbf03406c72f1bf35dc774580\njdk8u252-ga\t343c4ea489d5d3b058c5e00339868e4f66c4995a\njdk8u252-b09\t343c4ea489d5d3b058c5e00339868e4f66c4995a\naarch64-shenandoah-jdk8u252-b08\t259807b2eafcd34965937536d6cd0619669bc268\naarch64-shenandoah-jdk8u252-b07\t57a11875546a36f158a1601e0cecf5270ae489c9\njdk8u252-b08\t72a6d93679e5bee5d5192234b8421024233cf616\naarch64-shenandoah-jdk8u252-b06\t8cdf46c368eef149e352697b9063f13099544952\njdk8u252-b07\t746815de8b5b0c661aa6a1fa9476be758cc51e17\naarch64-shenandoah-jdk8u252-b05-shenandoah-merge-2020-03-06\t8f0a4b79e0823abf1a4a87acd585d84e3c203db0\naarch64-shenandoah-jdk8u252-b05\t8f0a4b79e0823abf1a4a87acd585d84e3c203db0\njdk8u252-b06\tbb464170d34478503661419d2f2864af7553d696\naarch64-shenandoah-jdk8u252-b04\t31dd5a9bcd79f209c68003635b05a2aa92999cb2\njdk8u262-b00\t62c9a2725c6cbfcbd4c2d47c3751dbdecc2610ad\njdk8u252-b05\t62c9a2725c6cbfcbd4c2d47c3751dbdecc2610ad\naarch64-shenandoah-jdk8u252-b03\t1bf9055ae261bbe829e7d831085531be45251596\njdk8u252-b04\t6383ac7b39e4d10c1fa6bf174855bc259dd9cb22\naarch64-shenandoah-jdk8u252-b02\t3c9565d879d65c230e5dcc96941328e1844e41d9\njdk8u252-b03\t9fb3e77d22d6a616c33ae6feac9a847764968bc3\njdk8u252-b02\ta013ce3462fc144cc83347be67109c4e4e4b26ff\naarch64-shenandoah-jdk8u252-b01\td479de9aa3cb6c159300b0be06eab7984ff302b0\njdk8u252-b01\t5f55e79422a0246076db7d3f2a2c44cb36e0e271\naarch64-shenandoah-jdk8u242-b08\t66217c782626f2e0650a84fb4d063b0dfecd9c8f\naarch64-shenandoah-jdk8u242-b07\te49ae4001fcbb75031046b08bffdd0d982a2e291\njdk8u242-ga\t5b17d1f49219624f122ea2b05ec1c9f1adff8c64\njdk8u242-b08\t5b17d1f49219624f122ea2b05ec1c9f1adff8c64\naarch64-shenandoah-jdk8u242-b06\t5c2caeba9d6915cca8056dba47a703ff8a6084bd\njdk8u242-b07\t8ca5f59e3042b7353b64c131be6bb970ba489ce9\naarch64-shenandoah-jdk8u242-b05\t73565137800f18e7480b700b790a66e727c4208d\njdk8u242-b06\t72443ad60b1e685bd50e7ec8f21adf66786863d1\njdk8u242-b05\tbb4532c15611d35d3136eeb287049da79ce01ebb\naarch64-shenandoah-jdk8u242-b04\tf0c16433e7c9e6821336e5467b38823f19495a3c\njdk8u252-b00\t30768a181ad0f4ba3d37f00bf23d76c875cb043a\njdk8u242-b04\t813d61736302c853dd0ef1b1e92b8fd0ca0af123\naarch64-shenandoah-jdk8u242-b02\t3b1e9620d49002c1cc8ada8c01e6af17f44bad3d\njdk8u242-b03\tbe3a6b2c79821f056a9ca1efde037555d829ccb8\naarch64-shenandoah-jdk8u242-b01\tb7b59f2e50fc5375f3f624a6559aab790421b748\njdk8u242-b02\td2079934980013fdd8e63e31897011edae1a1188\njdk8u242-b01\t34aa7bcd731f29c1a37aad70a5f07272a3fa9ca7\naarch64-shenandoah-jdk8u232-b09\tec04e0be7de457894fc75bea0e86e8dd36c1c2a6\naarch64-shenandoah-jdk8u232-b08\t2c4777a60313d1b37a5642ae824bc053498a88af\njdk8u232-ga\t6b9f309807a227d32bfcad2ab36cdbccd71d38ca\njdk8u232-b09\t6b9f309807a227d32bfcad2ab36cdbccd71d38ca\njdk8u232-b08\t7aea873d47e1d93c7ef4902e758417e5afc19d9c\naarch64-shenandoah-jdk8u232-b07\t7e0f721cbb68bd0adf4ff3c53e1ed26a6a2c7ab3\naarch64-shenandoah-jdk8u232-b06\tc1f5571869c8ad617f7c2e78d816a81937c6818b\njdk8u232-b07\t54af8189b95d47ea2cf8bdc9d90fb02d46a1fd38\njdk8u232-b06\taa1559aa1f70d79e8bd4f3de9ab9a48fe1c0cc78\naarch64-shenandoah-jdk8u232-b05-shenandoah-merge-2019-09-09\tf66b886d7e954002e0cfbac9ce4486d37bbdb6d4\naarch64-shenandoah-jdk8u232-b05\te13d6e0a18a89ca948c79d039e73b9a7ef065f27\njdk8u242-b00\ta29e19e1c0ee5eeb9c46c9158b395b4c10735157\njdk8u232-b05\t2cd484c5b7f8463f5db0a73da92199255c212810\naarch64-shenandoah-jdk8u232-b04\t4a2254b8eaa975e08d6a5a62e75981f9794f3a72\naarch64-shenandoah-jdk8u232-b03\t95a4de8376e2b21c4e6b36b398906c5d6a404fcd\njdk8u232-b04\t9611ccdff5fe10bb27e5aa34cde295562d13a29b\naarch64-shenandoah-jdk8u232-b02\t3f7302a81ad2feb606c6d051d866534966add524\njdk8u232-b03\tc5ca527b0afdafb0072f5e0810de13ec326e4b57\njdk8u232-b02\tef851705e3e17fd968b9c8d2fd4bc04be34f0c5c\naarch64-shenandoah-jdk8u232-b01\t84a12886fd4c79841108d2002e598230728308a6\njdk8u232-b01\tef88239d3d16c5b6817e44c4aba0749620fc79ff\naarch64-shenandoah-jdk8u222-b10\t0e2d2ded41b7d89ca0d23493705f85f0ca32203d\naarch64-shenandoah-jdk8u222-b09\te08553edfcc8e2a8c31610f2094b282f38c06215\njdk8u222-ga\teeeabadc6bf04d70c2fb8e0492abbf30143d26f0\njdk8u222-b10\teeeabadc6bf04d70c2fb8e0492abbf30143d26f0\naarch64-shenandoah-jdk8u222-b08\t7bf6f9e90d827f649ae248aa748f5dfb0ffe19a7\njdk8u222-b09\t81dd104fa95943fe02bc013d36155b5f4d54210d\njdk8u222-b08\t945f4ae40e436792154bfa77336e1d466606ae00\naarch64-shenandoah-jdk8u222-b07\td792db37c3ad04804ca51193e55d9f6843264345\naarch64-shenandoah-jdk8u222-b06\taad9e60507f862597a98519e3f9fcd1f5f333a93\njdk8u222-b07\tf321c0bb9fb3124dc35c98d5114c1a8cf4b3d498\njdk8u222-b06\tf0f617923cebf0b6dfc1c4cd61467fea847b028d\naarch64-shenandoah-jdk8u222-b05-shenandoah-merge-2019-06-13\t2d1e2f44d10a8a6494038d5eb09fbfd3b556a9f1\naarch64-shenandoah-jdk8u222-b05\tcb8ab499186e5cb2bfb3e4abc963e29b2bdda24d\njdk8u232-b00\t8f29b4acc5d2ee4131b1f13d8c3e57be3dcc63a9\njdk8u222-b05\t8f29b4acc5d2ee4131b1f13d8c3e57be3dcc63a9\naarch64-shenandoah-jdk8u222-b04\t7eb7b664676efadc8c1c9c5e8624384ca90bb2f0\naarch64-shenandoah-jdk8u222-b03\tafd208f49380947709da3ae18a7529cfed5b5935\njdk8u222-b04\t4e53c50e441a3b4a2904d8895c50a77bf558b9d8\njdk8u222-b03\t2618046271a463d595918d176ec50cce563448ba\naarch64-shenandoah-jdk8u222-b02\t771de19e5f51f45310fe812a8a5a74545912a37a\njdk8u222-b02\t3a2c8d0a600d5cf404ed1783036b3fb5b0f9c53d\naarch64-shenandoah-jdk8u222-b01\t1655c4f62e9db23a276105d6f8f359d661793ead\njdk8u222-b01\t84adf64edebbcb31edf2e8ac20a3f601cdd80e1f\naarch64-shenandoah-jdk8u212-b04-shenandoah-merge-2019-04-30\t1dd3e61c5c50abb7f216cc4ef80113ef50380cdc\naarch64-shenandoah-jdk8u212-b04\t3f99976b0cd89fad01aa939afa4c79ec8f5f621e\njdk8u212-b04\td43cf567cf721406472abc52d12980a25b886577\naarch64-shenandoah-jdk8u212-b03\t7611bc5f37b2b159ba05e1dd9f2a2cf0b3fa0b51\njdk8u212-ga\t5218ef8ea6c355b5f3294a21675dfb6d372c02f4\njdk8u212-b03\t5218ef8ea6c355b5f3294a21675dfb6d372c02f4\naarch64-shenandoah-jdk8u212-b02\tdc44b1f03deb09c6235162fa9034503c203a1b6f\njdk8u212-b02\t7480582c7fdcfc86b5541a1887289a8416ef7f7d\njdk8u222-b00\t5af73acc6b6c7097ce916c860fd85c45459ea19a\njdk8u212-b01\t5af73acc6b6c7097ce916c860fd85c45459ea19a\njdk8u212-b00\t3a2209a0e9c9192bc803a95fa72510a79847bf15\njdk8u202-b26\ta8b6e38ee409be0fb8fc931a4762f9d04f2f2da0\njdk8u201-b26\t52cda73a68eb5b415994dc5ff59ca1d18dfd2283\njdk8u202-b25\td194c1e53bdb78a6d546263de88a7a0c939f45ba\njdk8u201-b25\t7c2db1a58ed1b23ea065eef214fb438a98814b5e\njdk8u201-b79\tf12674350119c3608e21a4d047333d9b4601e9d4\naarch64-shenandoah-jdk8u202-b08\t7354dfc852d8ebbaaadaabc57816875de4049314\njdk8u202-ga\t0ea872ce75502739f90bacf092d471889673c757\njdk8u202-b08\t0ea872ce75502739f90bacf092d471889673c757\njdk8u202-b07\t3be6b6bece51fdfa8c76220a7f60f157938659c7\njdk8u202-b06\t10c71c9fba23cc8cc2400a6a277bf912cd7a8e5a\njdk8u202-b05\tc4b0b4f1b76628c22772e23d9203405b7ce260cd\njdk8u202-b04\t6d61c1839543b306037c0a786c6161418c11842c\njdk8u202-b03\tcfa6347c891bc34c27901db9f368ce977ab3c714\njdk8u202-b02\t1c0d5a15ab4c9dcea8aed752ecdfe159ed8f3e29\njdk8u202-b01\tdc92f24722a6ae95aa4d71b80478ef4ada047c02\naarch64-shenandoah-jdk8u201-b13\t8c813b474805cd6296f9411b7fb3be67c121c5dd\naarch64-shenandoah-jdk8u201-b12\t44b0de312e79a9b7003080be04d139261d13d9f1\njdk8u201-ga\t9250f69171139724ac2887ba6ba258d710d604d3\njdk8u201-b09\t9250f69171139724ac2887ba6ba258d710d604d3\njdk8u201-b08\t4b734c44eee9ca06bf1b0078aab8e0d248b10ad4\njdk8u201-b77\t97ecc454983b0f4bcde98ade9b1b6c2afe4f1dd6\njdk8u201-b07\tfb2d87afd9f84753f1b4c052737823e1003a82bc\njdk8u201-b76\t065b4b9247bd820061f750e49ea4369418a94ea2\njdk8u201-b06\t6815d9894b3070506afa32b86a9239975ccf8044\njdk8u201-b75\t3ce64f831a362e1fd41513882d859fd826fd2065\njdk8u201-b05\td5f2a8d71e5096ab2c1abe24712b31843d2cd8d7\njdk8u201-b74\t93019419c535620bd8be589079bfa1bcb5b56ac0\njdk8u201-b04\t0506fb60784e2ca0dc60561cd84f2a99a092a497\njdk8u201-b03\t09dcb0ab23d07492437faad66fcafd6b6cc91250\njdk8u201-b02\tdf6617cb20387a493cf8202ec3fdbee909bb36fa\njdk8u201-b01\t6b45574a5596e814463844e2175b7cb4730206ae\njdk8u181-b37\t6be7467c0f3b0921eb85eaf7384cc918215d694b\njdk8u181-b36\tf5e8607118bad66d200f7d440e4c83fe6f7c0396\njdk8u181-b35\t56562c6fe999746dc706e2e79f2315c88899ff4b\njdk8u181-b34\t2d56732bb1b83e698fd082f09d091df0f29ddd38\njdk8u181-b33\tf15cbd32f132b25f16ecaf9c203612a1107a0042\njdk8u181-b32\t0296aef8d561d049ba4a18496e8f0d6c1da9b0bc\njdk8u181-b31\tfbe47c49e7ee48e42b3a08a877983dd4e1a7b672\njdk8u191-b26\t3322b7fdc03fcbef2ee5328ef75f613a1f71e340\njdk8u192-b26\te131417abf593b920e685f83a744029b340a637e\naarch64-shenandoah-jdk8u201-b11\td6a89862f1cc73e61306f12cc0dbdd6d9d2d3e11\naarch64-shenandoah-jdk8u201-b10\t723c3b108096864f25b7f1602641f86f4321eaa8\naarch64-shenandoah-jdk8u201-b09\t931719aa2469673c0aace36b3cfa146f1f6b1d96\naarch64-shenandoah-jdk8u192-b13\t88f9ef754ed8f95734e9200184d437c04d987edd\naarch64-shenandoah-jdk8u192-b12\tca36738bcfd38f0a6411d8e8d0bd9e7c0cf00a3f\njdk8u192-b12\t4d3fefdd2f98b55eaad22525ccf10b9d437b6cdb\njdk8u192-b11\t5d4431231254f3ee61ae17c22fcb2b6ca2a09aa3\njdk8u192-b25\t940952a0d50ffb71692f6a4bc03987296e89706e\njdk8u192-b10\t15cc8dfafe99078995d306cbafdbce8c218d4d8c\njdk8u192-b09\td7057bcda329b0b4368d34465caefef5b3b15f0b\njdk8u192-b08\t8f51ed70d93378f70d0288f8795f0bb0c64a6283\njdk8u192-b07\tb96c7dda62dae179c8b885942d51b5f5f1e0905f\njdk8u192-b06\tb88b6acd0e11adba0de591e562ca14d1d3d4347a\njdk8u192-b05\t8ea6a32042c67c34e5cfde7f97184d596602e7b6\njdk8u192-b04\t866ed739fa56f9c9d807c70078d28e2e5f52bdcb\njdk8u202-b00\t6d8d269ee313fb1420375c2a81dd71c0b660a65f\njdk8u192-b03\t6d8d269ee313fb1420375c2a81dd71c0b660a65f\njdk8u192-b02\t1380ce862bbd0b65c619bfcea454d612b240e332\njdk8u192-b01\t7abd14dd301d8a927450a7623c2e5913a5bfa891\njdk8u192-b00\tdcfe85bcd9017741198b4e4a2045fdaaab212c74\naarch64-shenandoah-jdk8u191-b14\t8b079acbe2611072590c6e8fc9a334f8642319fc\naarch64-shenandoah-jdk8u191-b13\tbfcdd9363e451cdfcffaff9b901525580ecdc3c0\njdk8u191-b12\t6432b2dd408c2e31cbf02acd41e87e4c63f4c69a\njdk8u191-b11\t2199d624d9e577744d843aa0f25f9b7ebb09d566\njdk8u191-b25\t58ce5d3a1323f868c1a7fa007bd89fc69871c99f\njdk8u191-b10\t7d04f40e401d762c5a35e932fd9bc22c8448ab96\njdk8u191-b09\t4c2d3b4689ab5d92c42a4d1e1fa79db16de7bf06\njdk8u191-b08\te5404b63db4a10aae7fa4a5639af5e08518c31e7\njdk8u191-b07\t2b457fbca0fc5bdf8e19cc0435fb989edcc15b36\njdk8u191-b06\ta8e49c4cae5e46b748ac9ddbc0befc87fea2a7d1\njdk8u191-b05\t9eb563f6079523a5e99d44e2d9fe5158d7474186\njdk8u191-b04\t25e7fdd40996864b76cce08ba688f6e8281097a6\njdk8u191-b03\t99395ddbb670d9621c9755afa330c579a57dfd9b\njdk8u201-b00\td6007fa4ffae140f4c4ad551a1ee290a0704a094\njdk8u191-b02\td6007fa4ffae140f4c4ad551a1ee290a0704a094\njdk8u191-b01\tc87c3a9a789e8bad94fb39bc3c2c7c4a532f7330\njdk8u172-b37\t25b4e9a6bf41f0b614bfb90c71130aeb6ddada3e\njdk8u172-b36\t22943cc23d71510d79562c95570eb797c5e198ca\njdk8u172-b35\tda93fac3ac5f62f74f71c8eecb0619ddb815c8a3\njdk8u172-b34\tc4b95b1dd0c7841a2e51114f2c469896c8b95700\njdk8u172-b33\tf4698fa3bdce5852b30efaddb22b904f27ce5d41\njdk8u172-b32\tea4cf13643e9816fa7a65ff71879b8a857338910\njdk8u172-b31\t573414d6be0c77e09b4f50553f5d833c6fd7bf0d\njdk8u162-b38\t2b939db00d3b3403aa2c755d22a35e358d491a6a\njdk8u162-b37\taa85fe4a8d6932cdf0c2db76ee5183c14e6febbb\njdk8u162-b36\t539957b71bf6f416e16f9509c385eeca0a4e796b\njdk8u162-b35\t6b0ed08eb07843e581354b94c2b48bf0bac59161\njdk8u162-b34\ta916a62cdb9cbdd7fd6ef5fa2e69092454f4fbab\njdk8u162-b33\tf8f11c61855441c2d2ec1f87ba76e379fb371cd5\naarch64-shenandoah-jdk8u191-b12\tb78fee92e8c2f5dc97125fc028b21a20a0cc3f88\naarch64-shenandoah-jdk8u191-b10\tecfad3b1de5ea1c4ab5e0d1f2be5f7f5444f5ed7\naarch64-shenandoah-jdk8u181-b16\t465f1a149e917a940378dc4b3aaf9f5cc5b83211\naarch64-shenandoah-jdk8u181-b15-shenandoah-merge-2018-09-19\t5a336d0329c7541c5c034b45cf76eddeaf092987\naarch64-shenandoah-jdk8u181-b15\t06341a128b47c658a7e0640e1db594523ff9923c\naarch64-jdk8u181-b15\t10a1df824b68bbe423d98f190da25097b41ed1b0\njdk8u181-b13\tead7f893fb2c4a919820497f39a51fa640f4753e\njdk8u181-b12\t760af13b89232fe5387667f3848be95cfead953e\njdk8u181-b11\te19e26e852d6250739f4ce4de92d4a5bcdd56926\njdk8u181-b10\t750c73f24a38dc0e65d8572576a0d21032c7c4ef\njdk8u181-b09\te92c9d021a1261d713f5a5bdb4cb65d66129d9a5\njdk8u181-b08\t50e970e3575e364bd1f6260685ee280162fbb04e\njdk8u181-b07\td463bfda7eda282250baa0e46d2359db9442c5d0\njdk8u181-b06\t685d529a725cd5f820d532e1b8f890707310833e\njdk8u181-b05\ta3d84a257447e53c136d06a2da427cb9b5699cb6\njdk8u181-b04\t0e936c8f9a27e7841934bcc729b7a371ab701fa1\njdk8u181-b03\t71a97231f84e45bc8139dc709807204f3f8bfd8f\njdk8u181-b02\ta0101c7abbb958c25082a6781e54ce7799178b3e\njdk8u181-b01\t031aebc4b792ba53dbc384f68bca53c839e8c397\njdk8u191-b00\tdda7b81e20a3bb3ea6877d93dd6145381b52b6e4\naarch64-shenandoah-jdk8u181-b14\td8050bea9579117bc12d47eb7aefbc8b3b0acd73\naarch64-shenandoah-jdk8u181-b13\tc3a95213258da74ab6793ffc2fe9b8d85710f924\naarch64-jdk8u181-b14\t6d0914e36c4abc2c64727f781b3447a6f7a331b9\naarch64-shenandoah-jdk8u181-b04\t32fe57c945cd613f3a3e4c107df39a1ba747791a\naarch64-jdk8u181-b13\t738d89f1215251bbe52e467d56858904108f8cea\naarch64-shenandoah-jdk8u181-b03\tebc0645ffc05428598a7ce14ac9038eb16479504\naarch64-jdk8u181-b04\tbec4e55ed6efed2154da590d4f420e02f83a9ddc\naarch64-shenandoah-jdk8u172-b11--shenandoah-merge-2018-06-21\t6a4e0561f7f1fff433907a7eeb01ea5a1148ada9\naarch64-shenandoah-jdk8u172-b11--shenandoah-merge-2018-05-15\t19bb37bae005f71d794919168e1772c14d7b4cc6\naarch64-shenandoah-jdk8u172-b11\t2417fb2d90612a55d3d211bcf28d663b058703ac\naarch64-jdk8u181-b03\t74564d40b0d6ec9fde48dae643c87e3d7a309388\naarch64-jdk8u172-b11\teb1497eaa512f3c2f4c048a74a2bd086dcb4b206\njdk8u172-b11\t4d038b84d11353246e218d8f8dcd04637e09ee6d\njdk8u172-b10\tff9f47b14b8a0302a90ad9a4d793073205de52e2\njdk8u172-b09\t9361e8414bf1b1bbba36ecf4b81687ae254c1e63\njdk8u172-b08\t20086fb0be29b3e82a3841d3c1829f1437976f27\njdk8u172-b07\tc3d51ddc22653f63cd6c06e5f2c5b1e7192194e6\njdk8u172-b06\t7a95a1d55d534d0bb8ea398e1eaf85721766a63c\njdk8u172-b05\tc6ca716659af42fa850dc3fdf0f5d0ae2d6951af\njdk8u172-b04\ta80949c226a2d13ad5d8dd63b200a999538fa2c2\njdk8u172-b03\t7204958a8c003cc1c79d520d9e7a5c0157e783b3\njdk8u182-b00\t3b5b53db61f2aaa5a94fd9ca51162d83565faabe\njdk8u172-b02\t315185c9100a22c0f881de8014623dd352eaf6f5\njdk8u172-b01\ta0672a294b9aff852f35336932ddf3d46465f28c\naarch64-shenandoah-jdk8u171-b13\tfd396c6cf86f0a32f032c5c1e843cfd45010e0e8\naarch64-shenandoah-jdk8u171-b12\t438352ed7c539fa5dace370b8e09039b75271f63\naarch64-jdk8u171-b12\t153ab037cb2dd0ec117fc9139ab1e520c71fe170\njdk8u171-b11\t8b40342cb58017b3fc88384d62f080d491eb234e\njdk8u171-b10\t3578bbdd41735fc6b5f0e326c68beb91b3175ce7\njdk8u171-b09\t899066aa28cfcd42c710e4f6ef4bebde36e5efa8\njdk8u171-b08\tf967870393dc0a76c47702a90b1bb0bc70bd58a8\njdk8u171-b07\tce90929d876af4963b6e5f685bbb976b0fffd671\njdk8u171-b06\t8c72310b2f39cf135812cb8f2234774dd7f0510e\njdk8u171-b05\t0efc15ed66b0c26b9434427f7db59d99b2669dc2\njdk8u171-b04\t86b50f26a9d10245a7df1b4e0ef1189f1dfd1b25\njdk8u181-b00\tf2d13f7195163a34af334e0613c953ddec40e115\njdk8u171-b03\tf2d13f7195163a34af334e0613c953ddec40e115\njdk8u171-b02\t28f638905f78913e5b6dc89dd88e37223984a105\njdk8u162-b32\t2c309abde14fbef07fe07304f493f770da0f5564\njdk8u171-b01\t6e7e84f6107b55b5cb98f5ac5e3bffa3e4b8892f\njdk8u162-b31\ta127ef57877d806f0840ccd6e7a2be337692fe6e\njdk8u152-b35\td3482f9133758406d0df926dfe8ebed45c91dac3\njdk8u152-b34\t5ce629d390aab0d9bb8018f9ad873260654be58c\njdk8u152-b33\td988f1e20caa1bd03e04374ebbacbb9434026641\njdk8u152-b32\t54a2665aef21b20d7e436bd615a3e722649accb1\naarch64-shenandoah-jdk8u171-b11\t9a6d58cb54332097beed150730f8d7df9e9c9061\naarch64-shenandoah-jdk8u171-b10\t3cea13523e78b03907fd288badfa690d64340730\naarch64-jdk8u171-b11\t58bf8f7f184d6e3afb351dc07860d32ebb65399d\naarch64-shenandoah-jdk8u162-b12\td6078500e7ff392ec23b9125a6af0a8fc029629c\naarch64-jdk8u171-b10\tf8e58f4c29aecbadcd7f1ee0e28a4ab8c8a7e3b1\naarch64-jdk8u162-b12\t7c0c6150a2a7d10ab91b8648bae0e2a6274d4b7a\njdk8u162-b12\t173b2b978c05e59aa471e82be9013955ebd6b4de\njdk8u162-b11\t3b37f1a6ba6b98a8aa9b0b43e96b374a22a21b99\njdk8u162-b10\t9c40d1fac7fced8f769efc7ed3014ab77ba65e36\njdk8u162-b09\t0601c290e21e7dbd4cac57595b7deb3302e59cb9\njdk8u162-b08\t0397256c7d63c5ef6ebfe28fa70e2b53d36583d2\njdk8u162-b07\t0e88e7510c38e95240d7c6ba2f230a695e4bcaae\njdk8u162-b06\t992352c94cd4e6b2013ca8098277ed5c8cc542e4\njdk8u162-b05\ted547a111629a65b133414d8fe0032ee6cb9c646\njdk8u162-b04\t2230ef5ab4614caef2f52539d39b02295dd8b807\njdk8u172-b00\te91f5717d8a5df396c8646da9b5a7bcd526bf288\njdk8u162-b03\tc6c15bd2fa2092f5914d0adf96a4733aa559de9c\njdk8u162-b02\taf980289e0dfe499238386146600de662e84b5d5\njdk8u162-b01\t6d91dff0d6f13d08e4c68388ac6c65cf84a5f9d0\naarch64-shenandoah-jdk8u161-b16\t548817670b8d0159eea66a7ebfb20b8374a9ae90\naarch64-jdk8u161-b16\tdcbcd00ae3fc5a95673e1a4027c090d54c553fa7\njdk8u161-b12\t91668c6c669851b7ced30db06392d26d9325344a\njdk8u161-b11\t89f84abd0219b7576fe65abbc51ac0fbcf0d5284\njdk8u161-b10\tfff44bb7f1db7d141b0039064b86340dac338d41\njdk8u161-b09\tff7dd95280fbaf4aa23b20f50a920dbdef561d12\njdk8u161-b08\t670b9c20ae50ab3fcffcb9ac0867e3ac59714303\njdk8u161-b07\t430b63960a8164704c76866584db14d64074d87f\njdk8u161-b06\t25d390a136a346a949156772d0c0c986f815b227\njdk8u161-b05\t3024b7c1ddb2be1a3c5cfaf454226999615967a1\njdk8u161-b04\t7b4e91fb47c3ea83ca920a0e0701a5b793674d7c\njdk8u161-b03\t33f1ededc6f79f4c1d476d63f650d020d1a68d20\njdk8u171-b00\td66f57333c7fcc735f87eb0903ffdc0aaf899b32\njdk8u161-b02\td66f57333c7fcc735f87eb0903ffdc0aaf899b32\njdk8u161-b01\t6e53d489c0a58cb548a65396ae8383a9f2e298d2\njdk8u152-b31\t2093adf5331251080398d5a2f0f2cf58cffcb0a1\njdk8u144-b34\tfe4076d1d773f63ab4ff9cc9cfc605c174a7b156\njdk8u144-b33\t9a2e03172d83689006df0a86d89cc84cf82b7b12\njdk8u144-b32\tb032efb8a72675cfded271b99ad84602189f7849\njdk8u144-b31\t21446f3c909e3ed750def8b4dacbec6074606ed3\njdk8u141-b32\tf1021394489da9a3621ba92fd427572abb32413f\njdk8u141-b31\t123326194347f1778bbd124594bcddba8181d23b\njdk8u131-b34\te0c72f33efb916a8eafbca328f3f848b87383cc4\njdk8u131-b33\tff0e5fb867ed031ee8d629e6ddc637f92f03dc17\njdk8u131-b32\tcc52a119d110cc633dce64629d4d25b3e1cc3b67\njdk8u131-b31\t26016f048003d216cdf83e1b0318b6fc988a4ca8\njdk8u121-b36\t6b5494fc6df0c6608fe869275b188c41fe47cfdb\njdk8u121-b35\t041abd76a482e3df5dffe1b303853dae1fa52c7a\njdk8u121-b34\t31e1a5ba68cd0f00585c4adea6b405d8bc166361\njdk8u121-b33\t77581d764b55726370f40552b32d8bdc3a12f285\njdk8u121-b32\t6838c13eb094eeb3119decfd952dedc2f51427ed\njdk8u121-b31\t7cc899fc144561be76c4286b3e9ee06b1facef32\njdk8u112-b33\t8e27761a403ff4b237219cfb22731e127a1d1744\naarch64-shenandoah-jdk8u161-b15\ta604ee21a020a323c90cd5e7af5094512d07b472\naarch64-shenandoah-jdk8u161-b14\tc537b37974e878bd3aef653614da766d48524a62\naarch64-jdk8u161-b15\t00e3e3dd8c657b91392d88c2e80bdb0992b85d8b\naarch64-shenandoah-jdk8u161-b13\ta5b38cdec7b60922217f240eaa5f320bdf3acecb\naarch64-jdk8u161-b14\tc9b37dfac64841b0d7776a0497ac8d480df5f89a\naarch64-shenandoah-jdk8u161-b12\t357be1085c1947a00200096610a764f1c52a1a44\naarch64-jdk8u161-b13\td1b434e01e9aee6631ee66e8c5b0c436a143a387\naarch64-jdk8u161-b12\tcc556d4b6520de77175b6e4f9e7d24da1251757f\naarch64-shenandoah-jdk8u152-b16\t75c2e2007ccf9ef3065786586e6df84dfbc180af\naarch64-jdk8u152-b17\tde55c07c0617b80b73b54adc2a4bfae4eb5d2da4\naarch64-jdk8u152-b16\tb071fdbf85449e4f10e614a69d9857d4bb547627\njdk8u152-b16\t7a25d12cd94fa7a881f064dcb35f0e88ed073c45\njdk8u152-b15\td680e12deacbc531fe647d356540384efe625223\njdk8u152-b14\tc425fe56b8fb34e21a798be796305f51d648f11b\njdk8u152-b13\tec86194825dd0c2fc3d6ee88b287650e1c8e24c9\njdk8u152-b12\tb6d513f3cde1d8a7b81f769926e3d55b514696b2\njdk8u152-b11\t075ea12bcfd50b6567f8fce95bfaec952dcdbda7\njdk8u152-b10\t336862c1e889840a37fe3b07eae2cd328382782d\njdk8u152-b09\t88df79df1243571bbce3a8d4935ff7f25b9ade78\njdk8u152-b08\t8f1aee9f3d074e074b74fdd4c63d21c554295443\njdk8u152-b07\tc0a2f84796bc8a55bb686069114de60a7cc2c875\njdk8u152-b06\tff59566476c79e8143bf18eefb79196cc3a12994\njdk8u162-b00\tccac71a8778d18186967618df12bd2612d758f4b\njdk8u152-b05\tc23b7c1c24bf06ffa1bd52f19d541a56cdb1b350\njdk8u152-b04\tea8d7d26cccae878ffed38eaa3f3c49d74c891fd\njdk8u152-b03\t0414b34a471e1c3d277a5b0e583c6bfd9708305c\njdk8u152-b02\td7045c4d4eab5eb23ed9e43a351ff1a497ba7a7e\njdk8u152-b01\tb6446826930c8577c7a90009dd472b7eb813e495\njdk8u152-b00\td15b51f1149bd1b7e87f4ec6a1bc5678c15275ef\njdk8u132-b00\t1e501e6d58a962a1ef5dd933dc4cce56a5358a98\njdk8u122-b04\t6dd80b19838ded52371aa280cb8a68ad80aed22d\njdk8u122-b03\tb6e27dc2775764b59755eb054c66fbec9b2684b7\njdk8u122-b02\t89062b8ff53bfc62689c52373f5564369cd61609\njdk8u122-b01\t73494e6ff8e5a5a66cb87445d6c5a0a8acab3409\naarch64-shenandoah-jdk8u151-b13\t95dec4dd3accb3fa1d3889a8b17e93557b463947\naarch64-jdk8u151-b13\te18e8c3fe8ca2223533e0d32d4ae8319b3d3b212\njdk8u151-b12\t27cf3b1673624b3b9e246e526ba7848fa5f98400\njdk8u151-b11\tace131d990fdb75a6616f18265b2c4ecca2e3f5d\njdk8u151-b10\taf89399e4d1190c42e23b95da79800da51b40808\njdk8u151-b09\tdd863a7bde3f0a335b99c9205af84a404fc55488\njdk8u151-b08\t1be5e74bfdf0c42ef5746b63b39a8ac139a063f7\njdk8u151-b07\t9f271942852d8bc7de6c282307ffec3c92518f7d\njdk8u151-b06\t2edf82f6996ed27adb82dec2e3ce880134a98cc6\njdk8u151-b05\t6d4ab2046f26035e500924bffb49934d66aa64e3\njdk8u151-b04\t6e00c7da6a32c0f750ccfbe4c71204eeb6cccc14\njdk8u151-b03\t66a82078ad5463ff048ec7b21405da3b5f62214a\njdk8u151-b02\t9408ef2c7b205185aa5f9079fc44424328c64156\njdk8u151-b01\t0504d5c1c32696240cd1973bc79ab0dfcc59ee85\njdk8u161-b00\t00790ebdff1c5bc4cda000073b24f94dcc96e14f\naarch64-shenandoah-jdk8u151-b12\t398611dfd7003a5769e14ee342e4309678d6fba2\naarch64-jdk8u151-b12\t3f28330a2f0b2dc465b04746fbd29bae3bedf7b3\naarch64-shenandoah-jdk8u144-b02-shenandoah-merge-2017-10-02\t6cd26459fb2f6222f72d81e61631e3055111b517\naarch64-shenandoah-jdk8u144-b02\t768646fd57455b21c3396dbdcbeb30bcf74da4ef\naarch64-jdk8u144-b03\t8803133b679b2733097a6affdfec1683c68c8241\naarch64-jdk8u144-b02\t461c9270383a027d3afbca0a48408f26059e2369\naarch64-shenandoah-jdk8u144-b01\taf8d8e6201caa52ad6a383690ea789057c940d12\naarch64-jdk8u144-b01\t56116fb0cf9d077629a640b0f1fa4d59225b7be9\njdk8u144-b01\t57a5aae91b8bdccc4e1910cf373f13598429f03e\njdk8u144-b00\t9a342a4d909784cccb664f2293c8cb1463c3ac41\njdk8u141-b15\t48a5a43b31970468f4fc0dc67b81e4ddeac1585f\njdk8u141-b14\t68a5871a5dd3ca652cf4623b686aacbb1da0a93b\njdk8u141-b13\t1d97fc4da695a5ada6fe0174ab45e5ea8b9cd9d8\njdk8u141-b12\t96264dd0d57d3d4bc6b66678f44b62eb2776bdcc\njdk8u141-b11\t620749a305c56ded1d05c5827a8e234faa7eb671\njdk8u141-b10\t0cd23baf44e67d3a5989626d289537857f2b077d\njdk8u141-b09\t03787c23faa8deda8f43efa5fbbdedeee21d50a1\njdk8u141-b08\t2668825b159c51d12291f78b12a64385e79a6558\njdk8u141-b07\t6c30edf90d2fe8efe14d264e36a0d58f4580bc28\njdk8u141-b06\ta4df4fcf824df487488cf2c6e8e8236116f4723f\njdk8u141-b05\t5346ed81542f2907b6d740ee22c8f1671c9d434a\njdk8u141-b04\t571e02a10797c3d291054eca55ebc53bd12e3994\njdk8u141-b03\t68b47161333dea25ec15a302eb22749a85b07c55\njdk8u141-b02\t3036128430bcd058d81fe4b5bf18dc7beabd6449\njdk8u141-b01\tb174b1474d36381dadb65391ba67f8e44d14e2f6\njdk8u151-b00\tb85ec4e74ab5149adb30d993afbd517bd3df2a51\naarch64-shenandoah-jdk8u141-b16-shenandoah-merge-2017-07-27-02\t86139a368136bfa81133f63776747ee56ae57a61\naarch64-shenandoah-jdk8u141-b16-shenandoah-merge-2017-07-27\t23495348365e043db86818bae6c70e5e2229af78\naarch64-shenandoah-jdk8u141-b16-shenandoah-merge-2017-07-26\t9562828015251ab69cb1668d1a7a9c0f16eadbec\naarch64-shenandoah-jdk8u141-b16\t5f86e0468eb4f669a6f0313939019abb29b62dbe\naarch64-jdk8u141-b17\t1934a22b486f18e2bb5ba2f13eb4aa4db6974353\naarch64-shenandoah-jdk8u141-b15\tc85be9cc7d9d23713d6171f4b70d27c2e8565dfa\naarch64-jdk8u141-b16\t27391bec6a47aa1035e639285d868a6076bc31a9\naarch64-jdk8u141-b15\tc6691fcd22ff0162b27ed41f6f262043db676d86\naarch64-jdk8u141-b14\t24d8cd91b04a962433f60957cda22ed514a1608a\naarch64-jdk8u131-b14\t6810f3e1504d96a12970948eeb3f39fa5739c7db\naarch64-jdk8u131-b13\t9403a40a59f661fe6b46a42559f3322d5dd7fe5a\njdk8u131-b11\t94b1198760284f6b53daa4c3361261a0a5207150\njdk8u131-b10\t725620ca52fbc260782c522845e310b9c9aed59a\njdk8u131-b09\t1e9f98c8e4f5e49d1c240d2a92ad0e00f1430040\njdk8u131-b08\t2779c104bd7cb350647deff4907d45466d6d1c45\njdk8u131-b07\t18c2b77c693c7d3687b84ed4178726ed57e0a92d\njdk8u131-b06\t02ba46d6606c1d76d506530bf68f74f463d4df97\njdk8u131-b05\t2420a414f817778a66c35d48c49d3e27841cfece\njdk8u131-b04\t05964a39d7112ceec6897a15955b1099e2996e97\njdk8u131-b03\t390fc505918ebe068c1a89c3fe2669e7eadce81c\njdk8u131-b02\t66811607997db903aae54676f43974c7f918da10\njdk8u131-b01\t8d1b3d2482437ec6a0bfae10e1475fd80916ab7d\njdk8u141-b00\t756ee32cd629989dfe63c5e11dfcf2d3598543f0\naarch64-shenandoah-jdk8u131-b12-shenandoah-merge-2017-04-20\tf046a4cc0af9d146144b8bccd9677d1e34dab113\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-04-20\t7e7905cd2090e6ffae4a03eee3c66e5f723b9f66\naarch64-shenandoah-jdk8u131-b12\tb71759188fca1cfa379da14869dcf2e204f8440c\naarch64-shenandoah-jdk8u131-b11\t7245cfe40f3937b5660708e80130e2a72d02d8b3\naarch64-jdk8u131-b12\t8e5c7286cd854925e72550bfc50672f095ff26c9\naarch64-jdk8u131-b11\tf440db50782f5f9b6cf34e7432b71bd587b0e7da\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-03-23\t2a45868274929f158183c0710326609afa74e994\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-03-09\tb03b87e66f291ef2f7fdc0eec73a3424a31e0d8e\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-03-08\t6e0541180a0439d3c40266cd76ae322746d18955\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-03-06\t67320969f73b128cd1cf43f6beaeaf4827c8e47f\naarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-02-20\t7c446a7126f355383e7732b58ea22045e97c43e7\naarch64-shenandoah-jdk8u121-b14\t81fa8bc9916a3c6a481767a8dbb38d6a42e8c305\naarch64-jdk8u121-b15\t0ea0e60bbbfa9fa7a5b3faffc7a79a7f2cb24c4b\naarch64-jdk8u121-b14\t0ecc94005f980fbd58cfdf310eb8473e45f857e1\njdk8u121-b13\tf2b5b6ab1f5544b92074adb5bb80cc031649d0e7\njdk8u121-b12\t97c858f7f7c827730d05eb69134ac89e156f8685\njdk8u121-b11\tbfe05759587ddc30a32c00637180588cec309ee3\njdk8u121-b10\t51c053cb4468768757cb25e687edd8e021ff2eb3\njdk8u121-b09\t6eb8178c697ef3d55d99f222121093e6ad0363c4\njdk8u121-b08\tb9e523138b2dc4e8456c3ac295f9bb57d21f1f77\njdk8u121-b07\t22eb8db7bf5b140e5d84fd91c7ea16c02736cd13\njdk8u121-b06\t7fdb1ca64ac7f62e3b17c699e493568da38ea4f3\njdk8u121-b05\tee85a5feaf10020ca74f071c609f44d8c4b2866c\njdk8u112-b32\t911c506096560e49442a4c8f598f7f43c2339720\njdk8u131-b00\t986503d59e09ac8f61bac904b0875abbe869492f\njdk8u121-b04\tc14b6b6d51d86fb36c8af1021e0bdf55f9cf7440\njdk8u121-b03\t863cc5f631621da7026ae42828016a8070a1056d\njdk8u112-b31\t1a7a5fe22a028e438a724d909d27da2ea96c6d86\njdk8u102-b35\t39483f225bc2a196d07a500940e74b3b2e13f9c3\njdk8u121-b02\ta2aa2e98905609a0b5809a38163239a7c97d31c1\njdk8u121-b01\ta2c5309f998f8aa207a6e381464263e9a7dd50e0\njdk8u102-b34\t57cbdae98283951a2e2fc382223c5736a9d8d57c\njdk8u102-b33\tb8ca429448f7d3dfbdea3a6c349a7a3850fdd27f\naarch64-shenandoah-jdk8u121-b13\t44c73b74d1639ff6928820b18c59ecb1bc17d51b\naarch64-jdk8u121-b13\t4ac8e58e26e250c7cf0bde68c386c66109cacb1f\naarch64-shenandoah-jdk8u112-b16\t111e3ebb9ead4ff3b961acbb4bac5130ac9ff7f8\naarch64-jdk8u112-b16\t1262d9f1f3f60fb38b5e82aae32ad304f648911e\njdk8u112-b16\t14388b14d4847c3eacce677eae37980e6fa545cd\njdk8u112-b15\tbfb88850a367a747e77f4cb164a12ea54ec8e8da\njdk8u112-b14\tb4441c5520688b42c52caa36861744429ec4385a\njdk8u112-b13\tc7043839334d65f6cefd0f7d54705cbb61e40377\njdk8u112-b12\tbbde0cbbfc1b4f7260162a738ea1e9018ddea413\njdk8u112-b11\t3360efec9958585e54a54a738636433b92e81b46\njdk8u112-b10\t78a5e7d66e4f84a6bf6cc74c7ecafc3ff62d0fad\njdk8u112-b09\t9eca585fba8b8dbdca3320d20bf6eaddd0a9081f\njdk8u112-b08\t00809b3e07ee374850dd61ade9432b0d9716ebfc\njdk8u112-b07\t29e1388fa1cafeb05d9c337226c505916c6586b9\njdk8u112-b06\te1418dc5266e03bf6b06a193da6cdb99ca309f75\njdk8u122-b00\tb94f31b809debc683b996146ac20acbb269381f9\njdk8u112-b04\tb2a03d93ed533a0459f27dc109a8be1f7d2f1024\njdk8u112-b03\td1d3129671c90db26f04ed837e2f105ee9586bef\njdk8u112-b02\t817d9fb584baecae7c989dfd7009a7f0ac7c6360\njdk8u112-b01\t37bd26595d994939ccf98d8c444e692c4fdfff55\naarch64-shenandoah-jdk8u111-b18\t6cbb265b0ea0f87418eeff1ac40310d4a2077e79\naarch64-jdk8u111-b18\t7dc91fd237281aee4262e6ef4b1b6e561ef54259\naarch64-shenandoah-jdk8u111-b17\t0e1a357781562e367d25718b7db9a193fbf0a819\naarch64-jdk8u111-b17\te2b2d2930b41ce4c93862bbd6b63722306f23822\njdk8u111-b14\t07c7b5880ac35b894978c3313e6e40a487d4756d\njdk8u111-b13\t7b105a10b1a3e656939e47e87fcf9e8066fa78f0\njdk8u111-b12\t5b64df33d63a60d21edd5094173a21b1f2431b0a\njdk8u111-b11\tfc69426e3eeb88652a433088ddf715ca100606d2\njdk8u111-b10\tc715ad822dda1ff956bb7210814ad4f23d561f29\njdk8u111-b09\te96502b0b33aedfa4ad62a80d358b042fb9cfca4\njdk8u111-b08\t85cd32cbf2c8a66e1ab5470f5d47c8210d9e7c94\njdk8u111-b07\tb4dbbfe1b5fe3e095dc62a25e14688820336a968\njdk8u111-b06\t8a2538bb35f96ff56a5877fa77119146ad8c11b3\njdk8u121-b00\t58ac6fce1d10c1fba366ad58950a6a54b27a5bcb\njdk8u111-b05\t58ac6fce1d10c1fba366ad58950a6a54b27a5bcb\njdk8u111-b04\te64a88d7d60f1756fe816f3e996b45433df25434\njdk8u102-b32\tfb4fc26136253424c0a4f4f5a10dc54f612b64fd\njdk8u111-b03\t193aed1bc403b1960fbced8630ac0104f03eb480\njdk8u102-b31\t3a3064f9363c79f70a0d9b2201342acc880e1e76\njdk8u111-b02\tb363f4507ef46d86951d7d00eff4fb6624ebb728\njdk8u111-b01\t38fc232c37019c1e3fdf87495ca9b6e689a08a34\njdk8u92-b34\tf8ea719757e3bee133e59c7fd69589e190785292\njdk8u92-b33\t5e69844e2c69d21e6f139845451ad8c5acdef709\naarch64-shenandoah-jdk8u111-b16\t076ae39db5848c83a49e868863c5e875c2eb12d0\naarch64-jdk8u111-b16\t8cbffeff737257af8e315f81d17ecff6feb4f488\naarch64-jdk8u111-b15\t6a403f9d63c7fa3ae48ae673c31683ecbeef91d3\naarch64-shenandoah-jdk8u102-b14\t548a55e1648badd215eca0261f8755aadebe3209\naarch64-jdk8u111-b14\tbcde15a2c6b30cd7006077451f8db9e9b61882bf\naarch64-jdk8u102-b14\t0e011de8502ccc8ff14a2fb70cc9babcc4d60566\njdk8u102-b14\tdaafd7d3a76a0c448e4982afd7c4e9471ab1c916\njdk8u102-b13\t04471bfd1cc2e8f4d8d198e79b21e64dd4499db8\njdk8u102-b12\t163dc486915300b020f203e89fdf1985cc3c4814\njdk8u102-b11\t5839c5f4292a8755a4c102cb0f983536f5bfe8be\njdk8u102-b10\t96dac192aa74ccefa6fe7a7984ac3f8acabe5dc2\njdk8u102-b09\t3489cf2e35b743ab5d122136e7af46895bb9739c\njdk8u102-b08\t6bef5f85b095d712cbab5c8cbaf8330036e8593b\njdk8u102-b07\tf428f6a9060b1ac1dad41ee8a3850efdeb564bc4\njdk8u102-b06\tb1de940771d47cbc7b9702fea16efda94b7fa654\njdk8u102-b05\t9c5541aa49f4a6bd7206085be175bf4d6a5294e9\njdk8u112-b00\t31aca84184b4d54890b4fade1c614927203051b4\njdk8u102-b04\t067570c5c0b2604ff422d2eee6f07dfc4953e44a\njdk8u102-b03\tc3596cd9b5c8a3774e6f200ac8d055b031a5e25b\njdk8u102-b02\t914eb7d20df00012875ddd3a26c2452671c6134c\njdk8u102-b01\tc0b0fb35c047fe3a654c5899e7204e9c68de532a\naarch64-shenandoah-jdk8u101-b15\tabce6d06f308161f277956232c4519683f5169bb\naarch64-jdk8u101-b15\t027df58e6e7f294629f450aaa187da4079545cc6\njdk8u101-b13\te983a19c64390d18004d1d0c7907394714e697b3\njdk8u101-b12\td6f920823feb4d44e67cec383d8c6e4a5dba9d76\njdk8u101-b11\t81cdb3e279f8f245f740e7d3e79a1629b6599325\njdk8u101-b10\t1db5081d8ee77caffa0f534496af5fb908e9b61f\njdk8u101-b09\t0b1358bc93ca7a30bab6cf2d7da09bb5a11f5a93\njdk8u101-b08\t7ede5c151d790625552ed9c683844be820d9277b\njdk8u101-b07\t93e821287367a5bccbae1cfef8d3ce6c8f632d03\njdk8u101-b06\t1babb07d0e02471f947b9166f869720e3ae805ab\njdk8u101-b05\t9c51e0213472d584b91cf42c4c454c1caf7dbaf4\njdk8u111-b00\tfe901996777f50198be2c785cd7e3b8198692bbe\njdk8u101-b04\tfe901996777f50198be2c785cd7e3b8198692bbe\njdk8u101-b03\tfe138c6f5aa8455ee704e58d7d7ffc90fdd230c3\njdk8u92-b32\t7e728e8e6120e276d05f82c1a01c3d8fe4a63584\njdk8u101-b02\t18e1f0ee965b0565514027543546348ed99bf4a4\njdk8u92-b31\t9005b6faa5f616a8b403ea3aa660b963a7cdde24\njdk8u77-b31\t08dc508915433fdf3d970ea4d2fd33b4dffd67ca\njdk8u101-b01\t534d4e07c81fc8656cdb0856e22aafbdc54e474a\njdk8u74-b32\t9d7c49d756f01acbcbe8d0d3c5d5d4e92a7cf119\njdk8u74-b31\tfd813938f2dd5f8e9d7caa2c1628af6da6683831\naarch64-shenandoah-jdk8u101-b14-shenandoah-merge-2016-07-25\tda41e334aab1651e2aa8cb0621d4105bf47a6f36\naarch64-shenandoah-jdk8u101-b14\tbe33dc1db383d90283f87d5762f7818ff0b98d18\naarch64-jdk8u101-b14\te3330306192aec43cc2dc32719f72a3995a2af19\naarch64-shenandoah-jdk8u92-b14-shenandoah-merge-2016-07\ta8f1b1dac2bb9189b5d03a71d74e88cba177bd8c\naarch64-shenandoah-jdk8u92-b14\taa0ab266e8bb8201c8c05e03c6427978ddf1c398\naarch64-jdk8u101-b13\t59d5dc6a0d95454717f70d07e4745009773782f8\naarch64-jdk8u92-b14\t463cc2c49fd5f0032e0310cfa7a67b88bd35d907\njdk8u92-b14\t51f64c980bcdef152a6eb043aaa5d04cc08c6624\njdk8u91-b15\tdca1ae1fd0fdb55a4fa12f58726a1fa7086e7ae0\njdk8u92-b13\t94158f2e5cbdff8956b8e643e0305ca178d856e3\njdk8u92-b00\t118aba9e37f0264a7cadb20ac0438eaea4180998\njdk8u76-b12\t9f2404d26c945178219c4f826fee5a084896ba55\njdk8u76-b11\t94746373e4d5590536bacb0df4a19188e4d1bdd8\njdk8u76-b10\t2377ea341a26d0a6875f148dc555811bdf2e9533\njdk8u76-b09\tb5e3d2c78818af23d855cb10bac51fab5b7b2884\njdk8u76-b08\tca4f552fb08f4420f478d7a86098e540ddf91b31\njdk8u76-b07\t62e05c53156767c2398381d527e4e204d09dfa40\njdk8u76-b06\t3614fb87088c7c5990daff20dd39845d58c86b1e\njdk8u76-b05\t7cc0806883e51bdf966e155bb4bb5397bf7005fa\njdk8u82-b00\tf6d50bd27913fe801a6ec445437d7503b458a422\njdk8u102-b00\tf6d50bd27913fe801a6ec445437d7503b458a422\njdk8u76-b04\t120282f77af0321604f51edcbcd368aff23b42b7\njdk8u76-b03\t4db8c011697524c7ba76fb317763940d85af0c12\njdk8u76-b02\t0861105394355ad24c07cb2ff58a731ef91502a8\njdk8u76-b01\t832508a6165c877aa1de03ca9b6520c7bfe5a28e\naarch64-jdk8u91-b15\td3b8a866433375946cb280837b6923dc1d9b7658\njdk8u91-b14\t5744173381186940733aecf7904053ba6e83180e\njdk8u91-b13\t0c798868f18548af144de0f0ab69f09a4c968cd2\njdk8u91-b00\t4c41657db1862352b0e107b910be32c86eb5b1ff\njdk8u75-b12\td8708cd521ff11851b259cd1171e8f18b90564a1\njdk8u75-b10\t9da1d3f8905be682e33579857dd7b176f847e938\njdk8u75-b09\t22ba4f1ad75c80bf78539f4c80b9867d227184d3\njdk8u75-b08\taf84471ad4fd4e474ce984440718d87a386df4a8\njdk8u75-b07\tab064675c0669fd31bc7c424611686fe73c1509f\njdk8u75-b06\t9ea73143a5184a4034a1276733a9f9f356b67278\njdk8u75-b05\t57f1232cccbdfb8716f7258bc42982eb3e236e51\njdk8u81-b00\t722fc7e276ff8b4b6460b399e4eb65da518435f0\njdk8u75-b04\t722fc7e276ff8b4b6460b399e4eb65da518435f0\njdk8u101-b00\t722fc7e276ff8b4b6460b399e4eb65da518435f0\njdk8u75-b03\t53dc743a34f164a9eb4e336f90cb21a58291a0b1\njdk8u75-b02\t320f984ac52b56da66aff581a2c4830eadc0404e\njdk8u72-b31\t928374287059bb10b87dade1c2d984f8c4df01b3\njdk8u75-b01\td63a77fb06149b75dbb043a175a9c4a906ac26ef\njdk8u66-b36\t07707d0f0c781e37bc6897e9d89136e869840969\njdk8u66-b35\t1719690a0ee77b273a487bcc4a38a721cee3785b\njdk8u66-b34\t2a363653a0918df1eb369f6dc637258afeb6f7d1\njdk8u66-b33\t75d6658e00b4115648b643dcad86a6879c9c94f3\njdk8u77-b03\t3fbef9f4cddf934f9cc0e06f61e641b5b845b901\njdk8u77-b02\t7dd1be8bd46cd4c80526671607e8035c3c671c14\njdk8u77-b01\t6683e1d7422d0b6fc6566a1454604ca1ba7e86d9\njdk8u77-b00\t417ff12d11d60c7f2235b498fdea9ef85514fc75\njdk8u74-b02\tbee679b986f51fe4d65d6df11fea93d1543b6502\njdk8u74-b01\t33b310c85259e0d7ed112ab2e01008228e263371\njdk8u73-b02\t6aacbee7e4c84a30761faf58a682b07b8bdf54da\njdk8u73-b01\tfc0ed68cbc5cbdb2efdb75f3309b5de2a64f5a57\njdk8u74-b00\t87614decb34cd6076f136b6d51be83f13e3e6aed\naarch64-shenandoah-jdk8u71-b15-beta02\ta633c1615f399104576fb795dc162f8a118590c2\naarch64-jdk8u91-b14\ted73b014b78b952a648beeac0293d18862efdcf4\naarch64-jdk8u77-b03\t86030362b0c58a132152439f3737ffa95a6aa8f6\naarch64-jdk8u72-b16\t92af9369869f43a5c4ebc289d32b1d9427772398\naarch64-jdk8u72-b15\t618f7e7b68f43286ae1585f1cbbf65eb98b498f8\njdk8u72-b15\tfff0c11d2811deb70bef213d6d8478b3e3796658\njdk8u73-b00\t443abbc4e048b13e075486a86ddafca520257fdf\njdk8u72-b14\t6cbd347daa9367b78e385f2e8eba222a30b3bea1\njdk8u71-b15\t2e46e952ddd80370beee2f4f1b77efd0283d4049\njdk8u72-b13\t8f5ca46a90af013525cbdf3b023727450cdb8119\njdk8u71-b14\t1397b1bae600666de90459de7fba3576bb99eeb8\njdk8u72-b12\te831ce671fb072501670ee593e1080659cbc9804\njdk8u71-b13\t4f9e7b1a4e04f2ae44c1f6501e4444b82c45afff\njdk8u72-b11\t3b454f1fb441a71836666b6727274a937249ca92\njdk8u71-b12\t4d09473111deb8fd6323df6f9e9536084cae2844\njdk8u71-b11\t4ad71baca90cbe089c121457a80f6693aa80b4e6\njdk8u72-b10\tbd25b660575f8ac3567b5ae2ac1e7f6b31df583e\njdk8u72-b09\t178589d241af764add3d4cbf6977945f65859c1d\njdk8u71-b10\t5b9d5e755832e86824826fda37c8e6ee4ed064f5\njdk8u72-b08\t55c885702381d47704589a37f05c0f7045be4e36\njdk8u71-b09\t4231747bc5013bbead0cefa37ae4d2a390f2d446\njdk8u71-b08\t0ed543b92df44dfcfbfd074b9d6461a50e5f198f\njdk8u72-b07\t98f42c9df8c121347367164776eff3ebd50cb91e\njdk8u72-b06\t8c0ad72a45012464c18b4a74fdd711fe82e8842d\njdk8u71-b07\t9b1bb13cc10cae3379849f341ccd0f21600de863\njdk8u71-b06\t2c05fc89cda0befb802e838b442fc27d5b83980b\njdk8u71-b05\tc70fdd779a6775bc5f90d60ff1feca2c90e3c2b7\njdk8u71-b04\t1c87b989c16309652cec988e645dc7f277cfb56d\njdk8u66-b32\tb0bbac715f3bcefc57350b653decd9806144288a\njdk8u66-b31\te6361dcd087eef288fdeeaa17c2dbf9aa4793d5d\njdk8u75-b00\tac4e9dfd23236821432786b27566fa2f800aa3d4\njdk8u71-b03\t3ae95bcc5c89751e50c9181be12887ed6931e615\njdk8u71-b02\tb9c864410397ae0e23219b8ab218c33c9859c592\njdk8u71-b01\t1956eeeaed470cc9b46addabceb91c9900f2f83a\njdk8u60-b32\td7f8f147ff1d78987a4d963b2eda1477804cccec\njdk8u60-b31\tcdc5223800ccf9607e19740d41429dacca03c623\njdk8u51-b34\tad2f7ed088f1ce14564e573611c2d10635fbfab3\njdk8u51-b33\t586cfdfb13dd3f3b787d4fc1de7a03abd3a2457d\njdk8u51-b32\t3dcabe6d7fdd37e73ebdd82d414c4939a50b58b7\njdk8u76-b00\te8bed1496ff254d91d52c8da7c6d8d361862d773\njdk8u72-b05\t674a69ec28a9e62b1adc90b138a4957bbc82946c\njdk8u72-b04\t19bf2975a37001daa2d45c171f65ae4e12d639df\njdk8u66-b18\ta482cd45f31d7bf4ffc77acace705a0b9f888489\njdk8u72-b03\t4270b7d818b26a67f9704b1575208876ab07f45d\njdk8u72-b02\t2ffdd22b85317d3ba5ab28e34bcd288a5f18d998\naarch64-jdk8u71-b15\tb6614193446049c1000425283f922ff2415c3ae9\naarch64-jdk8u66-b17\t6923303c86a9d22a4a283a401251618874cf8b1a\njdk8u66-b17\t6eab3ce957aa560f8f9080a2c9535d1ee70fc834\njdk8u65-b17\tc684352da3e3c0df6a219796019142748d593fe5\njdk8u66-b16\t5f29f2da7993f09564f6a5cb34e2799981ea96bb\njdk8u66-b15\td45e1dc28a6ee6fd03348ee170d9895957888124\njdk8u65-b16\t170b44557b27ba97d12f45e2b94b7709a1bf8b54\njdk8u66-b14\tb5c54b2e12c3fbc54c7d7e0f22187fa601feb749\njdk8u65-b15\t3b1c03ea5649b2e317f327c0b4d949d49504a591\njdk8u66-b13\t62c53803e364fb3862c5529795d822b9d0410da5\njdk8u65-b14\t0787e2c3160eeaea4183bcc9e3ffbd7adbe0d345\njdk8u66-b12\tdc7aab86502475a30bca3c96cb1b153aa31e1fff\njdk8u65-b13\t0e84a03d4afde812ebb908b8ee43735d9ed0c3e5\njdk8u66-b11\tb64faa91edc386aed8d41f0131a8f9dcd8afc2e4\njdk8u65-b12\t371fb189b6948aff2641574f4e82bda2eeaf2cc8\njdk8u66-b10\tbcf0cbfa9e3f5642ef2e88b45b8866cc689fffc2\njdk8u65-b11\t7ed61fe56605812844c02bf8921cc256e0d62eb8\njdk8u66-b09\t2c1cbf1288f502baf0d9810c04db0c25849131db\njdk8u65-b10\tc357526ce049e246f096e4cf0395635fd90d9f5f\njdk8u65-b09\t2a9aa9c38c69fcacc9bc90a109964988ab77e108\njdk8u66-b08\t7c16434480a17a2ac608e1b7e99f99367e361370\njdk8u65-b08\t9878eea65684af2d5d3454c0e16e8f0f8852708e\njdk8u66-b07\t5a6bbf54c3fedb8a9a1a1d942cf0935f2f924ef0\njdk8u65-b07\t2b2d10e6b9bf2702b934140fb8ff2e1509b20daf\njdk8u65-b06\t350f9114b53d85ece93ca95d6a277d0b1503f3f1\njdk8u71-b00\tab2d570584a2bb01a6fedf7bd483443fdfc3d799\njdk8u65-b05\t5476dd40852d9d38afa4850edb78a951e91c14dd\njdk8u65-b04\t62625c423592073a935388bf46a78a3747c6fbe3\njdk8u65-b03\t159ed2ae97c93d024bc0212595a09e8cc9b08958\njdk8u51-b31\t58f6ddf5d59fffc52d190d82890ba25698fb80e3\njdk8u65-b02\t760c71b8c3f4e5d2c1b52bd165149621d4ac8b98\njdk8u65-b01\t566b0467f9b3dc7053e3a998b1ddec2243ee09d9\njdk8u45-b37\tac6b7b573c39e6a9b95c599c2ddecf1858e3fe88\njdk8u45-b36\tf85b9174094cfa8f250b115e591601602f142f76\njdk8u45-b35\t8f4dba55bb2a4a767067a89523346b54f0be9e19\njdk8u45-b34\tebebf3d201322c5ac421a4b97ce14293c3963c2a\njdk8u52-b07\t2b07cd3f89aab19a2f7f119f3d885b776342efcc\naarch64-jdk8u65-b17\tc2f56786db324244487eef8436acc10e5100ec85\naarch64-jdk8u60-b28\tf4adb73961672be5d25952d832127ea333860e1b\njdk8u60-b28\t581a6452226f60b7e5d78c1bb0a5f294bd7c0b83\njdk8u60-b27\td50c3672fd185a4ca074c43d261edfcb1df7bc54\njdk8u60-b26\td3bdbc19827e1a97e046b65e39cb9c7255d4603b\nAfter-aarch64-import\t4da14c82f9e6e31c6f84c97b5a4bff2cd54c3640\nBefore-aarch64-import\t7662dae02a85509d770c0d7589b4f680c51df8c5\njdk8u72-b01\td0afaafe3790d446d24ca35ddf61380457362b39\njdk8u72-b00\t31a6e29ec33a9a3c6ac13ce66d3b96196700841c\njdk8u66-b02\tdc132a110960e6b9feff81f0616f7a40a97f3f0f\njdk8u66-b01\t0ca005b45d10fc8b93852670136a3992038c3722\njdk8u60-b25\tbe2ddf520d263ea27a075f895d93adada6702027\njdk8u60-b24\t280834e00e6267fae1ae2a86a8bd7d1fdd160cba\njdk8u51-b16\t3ee37a71b2ab50e1e47febab6b69771b6846ba6b\njdk8u51-b15\t54b6481aa9e2f39699a96a4572b825b6d81f434f\njdk8u51-b14\t5a2078b398485d21fa6577cf9481aa488d2e28d0\njdk8u51-b13\t6ef21f3e0946aaab8dc1f4e9cad21dacb97c4f8c\njdk8u51-b12\tf07a9ef02d513435e19fd70abcce2871d1c91342\njdk8u51-b11\t29612174658436601ba833993227ae96117f632c\njdk8u51-b10\td99f3f935397fdc65dcb776a97110e8ff5cc519c\njdk8u51-b09\t3a95f1e13da9720a6243c0bd41688544b037e182\njdk8u45-b33\t5d158dedeb68fdcb58f3c66ff61d64d5d1ea47c3\njdk8u45-b32\t4597cb5171773416c4b2e1843db8592a69ff7a99\njdk8u51-b08\ta96b442d99131e87c7c974a0fa277a5f971732c6\njdk8u51-b07\t2c7a34442763e809d2cf1459d5b8d6d5528f6494\njdk8u65-b00\t45d4ff3a4f04fd676140bfe0a1b152618d684c9b\njdk8u52-b06\t45d4ff3a4f04fd676140bfe0a1b152618d684c9b\njdk8u51-b06\t7875bd6e35fb6af4b150dda213d7812bdb9fcba1\njdk8u51-b05\t046d1cfaedc892bfd49570d42dd655338278d476\njdk8u51-b04\t1d29a8f9bd262c4f3556e0250db80d8dc64d95d3\njdk8u45-b31\t5a4ccc33ab26b635f91ddd424742b0009a37bcc0\njdk8u40-b33\t8b3c10f939d77adacf2a3ff7510de66bd024cfe4\njdk8u40-b32\tb92f3d486e47d29dfb1ea2096db295077328368e\njdk8u51-b03\tdf8e9cbe5a8a7ce9cf2e0a78910302d08e2dbb53\njdk8u40-b31\teee2ebbb97f136cd458d4f3a825ee40d0046f425\njdk8u51-b02\t4dee64570ad013eb5e1cb16304f9eff558c1c5e9\njdk8u51-b01\te04f2ee2d03d9927d2012286a9bcbf511eb887ae\njdk8u31-b34\t685af74060e723783f83c84040c04902674e2e1f\njdk8u60-b23\t91e6153db0df9245c4b60197c78f72e510026b2c\njdk8u66-b00\t01bb22b4ebb6348efa14726ba139858d6defefcd\njdk8u60-b22\t01bb22b4ebb6348efa14726ba139858d6defefcd\njdk8u60-b21\t99d323d5830fad8551038da15113639d8518a8e6\njdk8u60-b20\tc641f979dff0d28dcdc4f303e9d93dda3079a456\njdk8u60-b19\tff2ddaa4ea3292e2f0931a9a0c3feb33288d7d7f\njdk8u60-b18\td1d9eb953fbbe1f63a6badb0742508ae5f0d3ab5\njdk8u60-b17\tec24cc303a2cfeb10ff0a5fb7b3d49ef47bb66f7\njdk8u60-b16\t08a417ec9b3eea2f02eb02c7b7635f9701813f65\njdk8u60-b15\t7ed130e10665ae5bed82aa8c4cdc18373292a6d7\njdk8u60-b14\t455a74ebdf59e91116e58d1545b15fd143624e36\njdk8u60-b13\t6ff963c0dd414da5973a00c59b9ce7feb327a8ed\njdk8u60-b12\tba0772198525025803b0fddd6a628fc2416b3b85\njdk8u60-b11\tdb15b96c78126b2c8a8e19dcc65cdd0b246bd12b\njdk8u45-b15\t438cc91b51330a61a790f0a0ac64816b565d25f0\njdk8u45-b14\t15b679d327da9ee99c05d7ddd75512ce335d5994\njdk8u45-b13\t6b2f1bf5c72873d01b37103fc20ac7a63e7881dd\njdk8u45-b12\t54709b761404dd3bc1b58acf5582fa9bd70ff59a\njdk8u45-b11\t6738b8755c80905e3eecedf94e27f03d23f02ba9\njdk8u40-b27\t12deacac825756e266e91a906db9edab73c4c90b\njdk8u45-b10\t9a343fd13810a8f09d3dd4a9e2e20791bb866166\njdk8u45-b09\t733d16eb42cb105749588c9b93cc408155ed99ad\njdk8u45-b08\t0c10bc33556383b8e665998c62145a8398e7f7ef\njdk8u45-b07\t74ef61db0fe02e3eaa5156a7bab9f00f2a2143de\njdk8u45-b06\t9a5843fdd2cf8120515d98572440c5c35118254d\njdk8u45-b05\t45f8fc9d30021026a5101c8946af98f7c079b537\njdk8u45-b04\t3d79ef8a102ffe22b083d07649a1d9e22cf784b6\njdk8u31-b33\tcf4ebf47413902376f66d2cddaf0282d49699ba7\njdk8u45-b03\t7d11a7eee8c0512fa15d3ed2dcded5391b0c091d\njdk8u31-b32\t99c79d83152585991682bd86e21fdcfe6f6ab9b2\njdk8u51-b00\ta1682688c9aec33c172146ce4be8d3969e7d76bb\njdk8u45-b02\t801c65bb74b770600a2d48189764e416e5cfe265\njdk8u31-b31\ta198f93b1e0be5edce7a351b1399cb5c4e64c8f4\njdk8u25-b33\tec5219b942d277059d89063fb3702bc5e076dfd0\njdk8u45-b01\t635ba0c81b894a88ff737fefc9d7af398f761643\njdk8u60-b10\t39cd90aa447ae87ed3b2968dcf1a90d08fff964d\njdk8u60-b09\tda6d0717c74a1e2ae4498bf4dc230e20686517ed\njdk8u60-b08\t0785e45b19c864264f2054a8130c49fe6f70925c\njdk8u60-b07\tea714a39e902fb8729f71f2d0f634855646e297d\njdk8u60-b06\t74dbdbcb6aac9fd62f3599ad4e0a1f930b1e9ac1\njdk8u40-b26\t7a552439756eaad0618ae82a94c034edb65f5d7e\njdk8u40-b25\te26f15704e37f28acebb22378c4785891aaec637\njdk8u40-b24\t5b37e6757d7c95c9c58b07fb3c9eba234567385a\njdk8u40-b23\t5dd2ad6c7911a1e21f15a28f13ffad662378a3be\njdk8u60-b05\te532f3672f635bd83c673c349b7563db6dd470bb\njdk8u60-b04\td8d408861c2094c24e9757a67bf2941ed37ce01f\njdk8u60-b03\t590cc3ca1fec083de3543b18b0062651b597e376\njdk8u60-b02\t2ca2e2430370d441cbe7999b76b57cadf0060327\njdk8u60-b01\tacf81f6fb265c1564b16fd8202a324a9022e204b\njdk8u40-b22\tb6d03a810a61116268fea08517a9632bd66a7363\njdk8u31-b13\tfde671d8b2537b6be61f67e583164b5b8b33ac5b\njdk8u31-b12\tca98e3e9727ffdcde2c9980668d0c7f344261938\njdk8u31-b11\tec85d5d0e3c05b0b6d61f4fc3f41313448ed9b05\njdk8u31-b10\t01a98532348477a84b6e3c322fdd12dfed28d96d\njdk8u31-b09\tea4b31ec437d74c62b844bd8b35f0bc3a27915b4\njdk8u31-b08\t4cec543118e7720d6105f25b60742d25a458cab7\njdk8u31-b07\te9cbffb6c1119f3ef39c68db53c36c5e544c0d3c\njdk8u31-b06\tf1b61760d01de6ad8d360227ac6c2122765680a2\njdk8u31-b05\t97de4d73edf1435c9b87d765d2ad91bb16c8d913\njdk8u31-b04\te2d32fe85fb93ce5179c25f5bfd49750a85c9342\njdk8u25-b32\tcc8541804eb47d86b30c5b005c6fa6ecb6a53538\njdk8u25-b31\t1a0b4ec68abc4e9248ca6041fff04612674a9b9f\njdk8u45-b00\tec4bcc6e4dcf190a165106627ed3eef1e7d94d0c\njdk8u31-b03\t886ace09d0934d5410572764685f13119d523823\njdk8u31-b02\t4898a7460ae620ac5356cb224e1fdf3c29312533\njdk8u31-b01\t85792859f3bdd6a2c1bdfcf2828bb2730e06ac3c\njdk8u20-b32\t9955a899edb359f2dc1704ea86044e9819cb805d\njdk8u40-b21\t765a17e75fd622f7b892381e23c9b2c531d416f0\njdk8u40-b20\tb31a07adaef50dacba20e376cff6f1096e745092\njdk8u60-b00\tae4980d195b64eec58884b233d7efd312205bac8\njdk8u40-b19\tae4980d195b64eec58884b233d7efd312205bac8\njdk8u40-b18\t83d1d42c3df409c87ef7cb0126343a009857ca71\njdk8u40-b17\te1c506c8e1db7356d120dd7d22b2c50276b6bcee\njdk8u40-b16\t64790e9792f88fadd9d25eaf4dcba7e6e96664de\njdk8u40-b15\t60d2bf063f7d8baa4e0954b6400aa6d30f9064f9\njdk8u40-b14\tdf659b8b0bc82214358e2f0ef340612011d5ed3b\njdk8u40-b13\t43ccc2b9d5b7c06baca33162c6aff8900fa76b65\njdk8u40-b12\t3e6d3c8810ee495ba599443e29b0dc72c0dd53fd\njdk8u40-b11\t2ffefbac794be27e0c60d7e5f2cb598f04ec2411\njdk8u40-b10\t1053aeab6b12d5cd4e063bf9ee37f20811450084\njdk8u25-b18\tefac90a2da447c2b2d43ee1b1e20c0828659f9c5\njdk8u25-b17\td117f01bfb4f34668ac216c9837e88acead14dce\njdk8u25-b16\tf0a48c214c46b7351ff8e6d6b6dc533463a4be21\njdk8u25-b15\t09eaef69f384ecf8ec0342b87a8b150740941140\njdk8u25-b14\t4429ea47ee6eca6b8a1dbda1950566ee821ba19d\njdk8u25-b13\t5d990a43c996ef039c6619e55215d589e09d1022\njdk8u25-b12\tc35e73e4acd8ed03e77e8e20023bac115c7dfe38\njdk8u25-b11\tcc5ab3e0fe815ae80bb52fa5affcb35ee0f51cff\njdk8u25-b10\t0c5d41165be3f4bb989bd84283c2df3e37b9845d\njdk8u25-b09\t1249614d7f1d9bf8443f0abd0622b4d2a3ab0638\njdk8u25-b08\tc2a5ad21d01c5d921c4e928edcb14cc3d61eb62b\njdk8u25-b07\t561d066eaa6428088b4f7e273a8caed90e8f6073\njdk8u31-b00\t6db0898d3f90ad9eae2f017299314b88766446e3\njdk8u25-b06\t69d17ee59c0e77033aca293501a642d0abc20c85\njdk8u25-b05\t6de13ae93be20b97f53e3837739947d59fb4fd65\njdk8u25-b04\t64e7567a8539078a678853a384340eee469168b0\njdk8u25-b03\td3df54be114a5c41d4881b61cd42fbb0e52aaf4a\njdk8u25-b02\tb4d29a751077e5500e766b8104dd1cb7148a550f\njdk8u25-b01\tc4cfb4376f5916c5d7eb1f39a0e23402de0d9818\njdk8u40-b09\t0958d0a9f44efcebe30b17b07240abaa42a2112b\njdk8u40-b08\t515a912fb5a9a61774fa2afa10f4472589be5602\njdk8u40-b07\tcf9afcfcb7a41b892fc896c1dbf245d5dcc42395\njdk8u40-b06\t8881a63f7f00a4a5611800db7715aecc8f6b3601\njdk8u40-b05\t7e286a0c90fb26766b91e3a19467848f39d1f973\njdk8u40-b04\te9473185d77a9278e47fc916a255c4905aa74d98\njdk8u20-b31\t3229d7b76babcf6710b3a965a2eda3f3bb2aa972\njdk8u20-b26\td1a7ea2c3e1091e0df1285963328a96f475f240d\njdk8u20-b25\t1710841b0229403f4af85eac8b68ea5065a26c81\njdk8u20-b24\t1710841b0229403f4af85eac8b68ea5065a26c81\njdk8u40-b03\ta0224ac4135108efdbcf316c7c4b02f8a93c35fe\njdk8u40-b02\tb6a148730f2b14193c308bc9c866c36ee6c08ed3\njdk8u40-b01\tf8736a40a35df0c8055c8a94b96e5381b381ad33\njdk8u20-b23\tb14daf2459c5430dfe5d435483d6f424cff09584\njdk8u11-b31\t66b17e2403b04cfe98dc1cce270f15ed817d0336\njdk8u11-b12\te85bf9b28eb7f4098eeb25ba0e3afed34058ef09\njdk8u11-b11\tf0b9fee1d40a6aae31be4780f70aba02148ec54c\njdk8u11-b10\t6d324f36e2448f486d0caa67f70e5a6cf5ac6c0d\njdk8u11-b09\t390084098df7bffecd0eb2318facc6f0f9a46b70\njdk8u11-b08\t81f3392f551c45578cabe29552c670b87170d325\njdk8u11-b07\tfe460afb120e2312769454f4630cccd406ded3f6\njdk8u11-b06\t5ea1a19659427ea813ae4a00ae9d54338c7faec6\njdk8u25-b00\t97c6d6a8e5bb3dfc24b9a32711aa0906ea110e23\njdk8u11-b05\t97c6d6a8e5bb3dfc24b9a32711aa0906ea110e23\njdk8u11-b04\t7be4371ce4ed33cf779606ef3b6256f316898e08\njdk8u11-b03\t3078ab9b8d4ad37cf18bf6a1ed49c8015e70ec73\njdk8u11-b02\t6ffd41be920a3e63c5767f36ac725e9e3bf5ec50\njdk8u11-b01\t397902f53444be14aa4e261cd47064fac82919c9\njdk8u20-b22\t6c1fb59fa5d7095d93a023553a949f873f324c6b\njdk8u40-b00\t0dccc4aca1859b1ff7dca9db214f7f38c4ddbbce\njdk8u20-b21\t0dccc4aca1859b1ff7dca9db214f7f38c4ddbbce\njdk8u20-b20\t5b76ecd0cdcf899261da2c9965862771f6da4e26\njdk8u20-b19\t2f40422f564b892a26cb04c62885bb5bc85984e3\njdk8u20-b18\t1695032e51faa36ed9c39b2817baa374ca361513\njdk8u20-b17\t3a49a08a2e3991a10e6bec531e9dbfa7c503fcb4\njdk8u20-b16\t4095a7a49a9ea95f4c59f936acf45ca1f87b8fff\njdk8u20-b15\t12a1fd80b05aa9c5daab22ca5fab8e2c9c3df61c\njdk8u20-b14\t548afd2496385263874c0ce970158764166b1156\njdk8u20-b13\t26764db977ecb590cdee637d27996a87cdd9507e\njdk8u20-b12\t2feecdcd7b677f3baf9df6e8ea46f7e08c7e4411\njdk8u20-b11\t61291eee163ab5bbe0b38b37b77673bac9bf5310\njdk8u20-b10\tcc4ca2ff0afcfb932da6fa4fffdd01f08e4ff71b\njdk8u5-b31\t19dd42ebf97c187fbf53884f45dca84274909c3e\njdk8u5-b13\td81e301cae70f1f95f4bb976ec053c915dee503a\njdk8u5-b12\t3e05b6ae0a1e2bd7352462e9bf8e7262246fb77f\njdk8u5-b11\tdd3bd272ceedbd69fabafc531b6b1e056659f733\njdk8u5-b10\tfae51c73a06d71304c9dbff22984ee501812b972\njdk8u5-b09\te5403ff707fbd828e56bf390931f236028f9617b\njdk8u5-b08\ta445d4130af79027fd9d6675b1ad7a8990225749\njdk8u5-b07\tb1585984f29320737ca0da5af029b1225a75c476\njdk8u5-b06\t75cdae18810a479cc3c0fe8eb9055d968ae31c63\njdk8u5-b05\teb537d7c31e069ac10de0901727515743f7535d2\njdk8u11-b00\teb537d7c31e069ac10de0901727515743f7535d2\njdk8u5-b04\tc200d6cb184056e44afe7102913004b717896aa3\njdk8u5-b03\t794b4365b6884e9a15f0840792539f5821814127\njdk8u5-b02\t6f3357d3dbf83c1ef0098bcb853e3aa3b26f4cb8\njdk8u5-b01\tc41935d79b8744af8b7b56cd4d4ab781027fb22e\njdk8u20-b09\td420eae635c42be98b166e1ce9c64fc0a8825529\njdk8u20-b08\tb7750b6ee1578fd5b2b1f6758f905b332503d8ed\njdk8u20-b07\t6403ef94cb0db32d9221a5e8f09f3664cd7744dc\njdk8-b132\t2a8f4c022aa03e7916223f3291517dbcc38e07cd\njdk8-b131\t0c38dfecab2ad9f9b5b5edf54b991602147cd040\njdk8u20-b06\tae6a3aec6aa29509a0fd5f53709889b99b1e27da\njdk8u20-b05\t69e0af208dad70fdef65a89ab2c4c468ed9e24b8\njdk8u20-b04\t7e1b01df280fb065c5953c48f54ac9d619ecbf1c\njdk8u20-b03\t6a3d3b7feab4d4a8252c63b4ce7d0fab106cf2f7\njdk8-b130\t839546caab1285c7699a9c2aa1467f57c9ea7f30\njdk8-b129\t1e5fe865491300cd0c63261ecf8d34e621e1345c\njdk8-b128\t101e42de46869e6604fbf095e1666fbf07fcb93c\njdk8-b127\t2e2ffb9e4b690c63b32142861177390e0f2c40e9\njdk8-b126\t9ccce5bf1b0ea0d3f3fb871be069f305f9cea530\njdk8u20-b02\tcc868070f1959b849c8c3b867771fbdb07b9ba05\njdk8u20-b01\t78abb27c27d988a86e6c82b2cce03cdc04211127\njdk8-b125\t790bbd46b2015e69ce301dae194c2b4141011f2d\njdk8-b124\t790bbd46b2015e69ce301dae194c2b4141011f2d\njdk8u20-b00\tc330fa67c4daffdc86527f1a24941aa5a3500098\njdk8-b123\tff1478785e43718146ffbce97e007f39c3bcaa32\njdk8-b122\t347009c5881668b1e44f64d56d4a96cb20a183fa\njdk8-b121\t1e1f86d5d4e22c15a9bf9f1581acddb8c59abae2\njdk8-b120\tcd3825b2983045784d6fc6d1729c799b08215752\njdk8-b119\t9e90215673be68a3e77a9e444e4232076373734d\njdk8-b118\t0a6db1aac998cdc88e52f9adb97d40ca5b0f1da6\njdk8-b117\ta4afb0a8d55ef75aef5b0d77b434070468fb89f8\njdk8-b116\tcbfe5da942c63ef865cab4a7159e01eff7d7fcf5\njdk8-b115\t763ada2a1d8c5962bc8c3d297e57c562d2e95338\njdk8-b114\t4f2011496393a26dcfd7b1f7787a3673ddd32599\njdk8-b113\t6ba4c7cb623ec612031e05cf8bf279d8f407bd1e\njdk8-b112\t547316ea137d83d9c63083a9b83db64198fe0c81\njdk8-b111\td086227bfc45d124f09b3bd72a07956b4073bf71\njdk8-b110\t4faa09c7fe555de086dd9048d3c5cc92317d6f45\njdk8-b109\t91f47e8da5c60de58ed195e9b57f3bf192a18f83\njdk8-b108\t9286a6e61291246d88af713f1ef79adeea30fe2e\njdk8-b107\t0874bb4707b723d5bb108d379c557cf41529d1a7\njdk8-b106\t8e7b4d9fb00fdf1334376aeac050c9bca6d1b383\njdk8-b105\t5166118c59178b5d31001bc4058e92486ee07d9b\njdk8-b104\t96c1b9b7524b52c3fcefc90ffad4c767396727c8\njdk8-b103\tb7e64be81c8a7690703df5711f4fc2375da8a9cb\njdk8-b102\t5eb3c1dc348f72a7f84f7d9d07834e8bbe09a799\njdk8-b101\t9f74a220677dc265a724515d8e2617548cef62f1\njdk8-b100\td2dcb110e9dbaf9903c05b211df800e78e4b394e\njdk8-b99\t59dc9da813794c924a0383c2a6241af94defdfed\njdk8-b98\t0d0c983a817bbe8518a5ff201306334a8de267f2\njdk8-b97\ta1c1e8bf71f354f3aec0214cf13d6668811e021d\njdk8-b96\tc156084add486f941c12d886a0b1b2854795d557\njdk8-b95\t785d07fe38901ecc1b7e0145e53e1c3da9361fee\njdk8-b94\t50d2bde060f2a9bbbe4da0c8986e20aca61f2e2e\njdk8-b93\t27c51c6e31c1ef36afa0e6efb031f9b13f26c12b\njdk8-b92\t3a36c926a7aafa9d4a892a45ef3678e87ad8359b\njdk8-b91\tcb51fb4789ac0b8be4056482077ddfb8f3bd3805\njdk8-b90\t69b773a221b956a3386933ecdbfeccee0edeac47\njdk8-b89\t892a0196d10c67f3a12f0eefb0bb536e423d8868\njdk8-b88\te1a929afcfc492470d50be0b6b0e8dc77d3760b9\njdk8-b87\tb9415faa7066a4d3b16d466556d5428446918d95\njdk8-b86\tdf9b5240f0a76c91cfe1a5b39da4d08df56e05be\njdk8-b85\t7fc358f5943676b82f1dccd3152b1ac07d92e38b\njdk8-b84\t01f631f89fa392b4e484d0812c40ea8f9d2353aa\njdk8-b83\t466685ba01bfb7bc1e1ac61490fd8c0f3cc18763\njdk8-b82\t29153d0df68f84162ffe8c2cf4f402a3f2245e85\njdk8-b81\t145dbc56f931c134e837b675b9e6e7bf08902e93\njdk8-b80\t907a926d3c96472f357617b48b6b968ea855c23c\njdk8-b79\t91d35211e74464dca5edf9b66ab01d0d0d8cded7\njdk8-b78\tfd1a5574cf68af24bfd52decc37ac6361afb278a\njdk8-b77\t3933eebc659d58c597aa8cb4b3e58f2250ce3e1a\njdk8-b76\t278af9fc67e7eba2884936b49ec07345f423aabb\njdk8-b75\t2a713921952cbd77a1e699626976cb6cdfe3e57e\njdk8-b74\tb43aa5bd8ca5c8121336495382d35ecfa7a71536\njdk8-b73\t93b9664f97eeb6f89397a8842318ebacaac9feb9\njdk8-b72\tc1be681d80a1f1c848dc671d664fccb19e046a12\njdk8-b71\t51ad2a34342055333eb5f36e2fb514b027895708\njdk8-b70\t105a25ffa4a4f0af70188d4371b4a0385009b7ce\njdk8-b69\t6ee8080a6efe0639fcd00627a5e0f839bf010481\njdk8-b68\tcdb401a60cea6ad5ef3f498725ed1decf8dda1ea\njdk8-b67\t9a6ec97ec45c1a62d5233cefa91e8390e380e13a\njdk8-b66\t13bb8c326e7b7b0b19d78c8088033e3932e3f7ca\njdk8-b65\tb772de306dc24c17f7bd1398531ddeb58723b804\njdk8-b64\t1c8370a55b305d35353346202bde042ba9e8a9fd\njdk8-b63\t3229597524cab4239325bc3602df6c486397a511\njdk8-b62\t8a3fe0ae06a8cc21347da5a18384b0aa6c2349f5\njdk8-b61\t20ff117b509075c3aec4ee3a57990ecd5db5df9c\njdk8-b60\te07f499b9dccb529ecf74172cf6ac11a195ec57a\njdk8-b59\tdae9821589ccd2611bdf7084269b98e819091770\njdk8-b58\t9367024804874faf8e958adeb333682bab1c0c47\njdk8-b57\t522dfac8ca4d07c0b74025d4ac3b6e5feefbb829\njdk8-b56\t76844579fa4b30929731115b237e477181a82394\njdk8-b55\tb85b44cced2406792cfb9baab1377ff03e7001d8\njdk8-b54\tc1a277c6022affbc6855bdfb039511e73fbe2395\njdk8-b53\tfebd7ff5280067ca482faaeb9418ae88764c1a35\njdk8-b52\t8d24def5ceb3b8f2e857f2e18b2804fc59eecf8d\njdk8-b51\t57c0aee7309050b9d6cfcbd202dc704e9260b377\njdk8-b50\t2fd67618b9a3c847780ed7b9d228e862b6e2824c\njdk8-b49\tc97b99424815c43818e3cc3ffcdd1a60f3198b52\njdk8-b48\t3f6c72d1c2a6e5c9e7d81c3dc984886678a128ad\njdk8-b47\t1dcb4b7b9373e64e135c12fe1f8699f1f80e51e8\njdk8-b46\t27fa766a2298ba8347dc198f0cf85ba6618e17db\njdk8-b45\t633f2378c904c92bb922a6e19e9f62fe8eac14af\njdk8-b44\te4f81a817447c3a4f6868f083c81c2fb1b15d44c\njdk8-b43\t661c9aae602bbd9766d12590800c90f1edd1d8dd\njdk8-b42\t1ce5dc16416611c58b7480ca67a2eee5153498a6\njdk8-b41\t1a8c7c530f8a9b7f5bdb9b0693b2f5435ca5205e\njdk8-b40\ta2b2d435f1d275fa8010774c653197c64e326d3a\njdk8-b39\t8927dd68aee3fa54a1a698e2980e1b2f6c7c12c1\njdk8-b38\td939bd0ab13c16647ffa38cc4b64fb31b7d44e10\njdk8-b37\tb2972095a4b1e2a97409b7c3df61f3b263a5ce14\njdk8-b36\t6a6ba0a07f33d37a2f97b1107e60c6a9a69ec84d\njdk8-b35\t5285317ebb4e8e4f6d8d52b5616fa801e2ea844d\njdk8-b34\t894a478d2c4819a1a0f230bd7bdd09f3b2de9a8c\njdk8-b33\t42f275168fa5d9e7c70b246614dca8cf81f52c2e\njdk8-b32\t88176171e940f02916a312c265a34c32552a8376\njdk8-b31\t0b66f43b89a6c0ac1c15d7ec51992c541cdc9089\njdk8-b30\t6cea54809b51db92979c22fd8aa8fcb1cb13d12e\njdk8-b29\t41460de042580bc4a4ce3f863779c66f39cb8578\njdk8-b28\t6e2541d60f4e342b5b67140271d7611643929dc3\njdk8-b27\t1533dfab9903e4edcfead3b0192643f38c418b9b\njdk8-b26\t2accafff224ae39caf5f532c305251ba624bf2c0\njdk8-b25\t221a378e06a326f45e5d89e2123cd6323e0181d1\njdk8-b24\t1a5f1d6b98d6827cdb529a4abe6e52a886d944f4\njdk8-b23\t60d6f64a86b1e511169d264727f6d51415978df0\njdk8-b22\t7ad075c809952e355d25030605da6af30456ed74\njdk8-b21\tcc771d92284f71765eca14d6d08703c4af254c04\njdk8-b20\t5a5eaf6374bcbe23530899579fed17a05b7705f3\njdk8-b19\t237bc29afbfc6f56a4fe4a6008e2befb59c44bac\njdk8-b18\t7010bd24cdd07bc7daef80702f39124854dec36c\njdk8-b17\t4e06ae613e99549835896720c7a68c29ad5543f5\njdk8-b16\t4e06ae613e99549835896720c7a68c29ad5543f5\njdk8-b15\ta4f28069d44a379cda99dd1d921d19f819726d22\njdk8-b14\t23aa7f2c80a2fa354c80decf03e7c2018177ef4e\njdk8-b13\t26fb81a1e9ceb9baffba216acd9ded62e9e9d5ab\njdk8-b12\t8e2104d565baee473895d5eba20e39f85ab4bf9f\njdk8-b11\t1defbc57940a56f0aa41e9dee87b71e8c8b71103\njdk8-b10\ta6c4c248e8fa350c35014fa94bab5ac1a1ac3299\njdk8-b09\t8adb70647b5af5273dfe6a540f07be667cd50216\njdk8-b08\tfb1bc13260d76447e269e843859eb593fe2a8ab2\njdk8-b07\t0db7ae9f2b1017124c779bccd016c976928859a0\njdk8-b06\t28cf2aec4dd7c3c75efc1c15078522467c781a6d\njdk8-b05\tb910aac18c772b823b1f7da03e2c6528725cc6de\njdk8-b04\t0b66a233bfb9ba2ebda1e5cdfdb0373d6c1e3c69\njdk8-b03\t587bb549dff83131b65f40aa51864f69562f34a7\njdk8-b02\t69f592185747226a9c765a9fe139c1d34d616f9c\njdk8-b01\tf42e3d9394b40a423d345b8da22687b5462e5f25\njdk7-b147\td91364304d7c4ecd34caffdba2b840aeb0d10b51\njdk7-b146\t2d38c2a79c144c30cd04d143d83ee7ec6af40771\njdk7-b145\t55e9ebf032186c333e5964ed044419830ac02693\njdk7-b144\t7203965666a4fe63bf82f5e4204f41ce6285e716\njdk7-b143\t14b8e7eee1058fd4ed5a2700a2ce14b3616278f1\njdk7-b142\tcfbbdb77eac0397b03eb99ee2e07ea00e0a7b81e\njdk7-b141\tc6569c5585851dfd39b8de8e021c3c312f51af12\njdk7-b140\tdcfe74f1c6553c556e7d361c30b0b614eb5e40f6\njdk7-b139\t7ed6d0b9aaa12320832a7ddadb88d6d8d0dda4c1\njdk7-b138\tfc47c97bbbd91b1f774d855c48a7e285eb1a351a\njdk7-b137\t7654afc6a29e43cb0a1343ce7f1287bf690d5e5f\njdk7-b136\t2fe76e73adaa5133ac559f0b3c2c0707eca04580\njdk7-b135\t783bd02b4ab4596059c74b10a1793d7bd2f1c157\njdk7-b134\tddc2fcb3682ffd27f44354db666128827be7e3c3\njdk7-b133\tc6f380693342feadccc5fe2c5adf500e861361aa\njdk7-b132\t0f62a65fb666b337caa585015ab6ea2e60e709ca\njdk7-b131\t5d86d951426aaf340b1ba84ae2d5ab5da65a71e2\njdk7-b130\tcc58c11af15411042719e9c82707fdbef60a9e0f\njdk7-b129\ta6b015b59fbc2518762c17ccc35702f03ef7713a\njdk7-b128\t57d702105b23fb90e40beaf00f8f8aeae5e249e7\njdk7-b127\tbd70f76b0309068f157ae759c36eac8f2c6d098e\njdk7-b126\tb566d490905691787f8931f69947a92c67c6d5e4\njdk7-b125\t5c4df7e992775c102f08e9f1c0a124b324641b70\njdk7-b124\t024a6755895bf91b5a3c98984c89ee018efbf538\njdk7-b123\ted6950da30cf1e8904b4bdb034d471647942271f\njdk7-b122\tf1591eed71f64f6eba79fb7426f5616cc4dfea73\njdk7-b121\t2c2d4f88637b488014c37e1a2eb401f68bca8838\njdk7-b120\t366ff0b6d2151595629806b033e2e1497e3a55d4\njdk7-b119\t661360bef6ccad6c119f067f5829b207de80c936\njdk7-b118\ta12a9e78df8a9d534da0b4a244ed68f0de0bd58e\njdk7-b117\t7220e60b097fa027e922f1aeecdd330f3e37409f\njdk7-b116\t94e9a1bfba8b8d1fe0bfd43b88629b1f27b02a76\njdk7-b115\te8ebdf41b9c01a26642848f4134f5504e8fb3233\njdk7-b114\t27985a5c6e5268014d25d55886e0ecb96af4763d\njdk7-b113\tc1df968c4527bfab5f97662a89245f15d12d378b\njdk7-b112\tb852103caf73da70068473777ae867a457bb3ae1\njdk7-b111\t9702d6fef68e17533ee7fcf5923b11ead3e912ce\njdk7-b110\t2a02d4a6955c7c078aee9a604cb3be409800d82c\njdk7-b109\t81dfc728d7bb7e1fff4a4dc6d0f7cea5a3315667\njdk7-b108\t140fdef4ddf52244013b6157dc542cd9f677bb6f\njdk7-b107\t7d396ad455c3b2f68b0d7094891c5aba7c757a6e\njdk7-b106\t43096cccf1cee749c2f4e7714ee71f4e9e0f4d7f\njdk7-b105\t9f96a4269d7727dad68864eaab795eafce270311\njdk7-b104\tf8be576feefce0c6695f188ef97ec16b73ad9cfd\njdk7-b103\tbe2aedc4e3b1751c1310f334242ba69e90867f38\njdk7-b102\ta136a51f5113da4dad3853b74a8536ab583ab112\njdk7-b101\t4193eaf5f1b82794c6a0fb1a8d11af43d1b1d611\njdk7-b100\tb218a53ec7d3d42be61d31d6917a6c5c037b6f56\njdk7-b99\te7f18db469a3e947b7096bfd12e87380e5a042cd\njdk7-b98\t6cea9984d73d74de0cd01f30d07ac0a1ed196117\njdk7-b97\t5e197c942c6ebd8b92f324a31049c5f1d26d40ef\njdk7-b96\tcf71cb5151166f35433afebaf67dbf34a704a170\njdk7-b95\tfd3663286e77b9f13c39eee124db2beb079b3ca6\njdk7-b94\td7f35c61afa092b6357c2c4bce3f298f16620f71\njdk7-b93\t5fc102ff48f0e787ce9cc77249841d5ff0941b75\njdk7-b92\t5f5c33d417f3a14706b09a4a95e65fa7b6fa54d6\njdk7-b91\t97d8b6c659c29c8493a8b2b72c2796a021a8cf79\njdk7-b90\t425ba3efabbfe0b188105c10aaf7c3c8fa8d1a38\njdk7-b89\t7f1ba4459972bf84b8201dc1cc4f62b1fe1c74f4\njdk7-b88\t82135c848d5fcddb065e98ae77b81077c858f593\njdk7-b87\t6b1069f53fbc30663ccef49d78c31bb7d6967bde\njdk7-b86\t433a60a9c0bf1b26ee7e65cebaa89c541f497aed\njdk7-b85\tcf26288a114be67c39f2758959ce50b60f5ae330\njdk7-b84\t2f3ea057d1ad56cf3b269cdc4de2741411151982\njdk7-b83\t6880a3af9addb41541e80ebe8cde6f79ec402a58\njdk7-b82\te1176f86805fe07fd9fb9da065dc51b47712ce76\njdk7-b81\t8403096d1fe7ff5318df9708cfec84a3fd3e1cf9\njdk7-b80\ta3242906c7747b5d9bcc3d118c7c3c69aa40f4b7\njdk7-b79\t20aeeb51713990dbea6929a2e100a8bbf5df70d4\njdk7-b78\tab4ae8f4514693a9fe17ca2fec0239d8f8450d2c\njdk7-b77\t1f17ca8353babb13f4908c1f87d11508232518c8\njdk7-b76\tc8b63075403d53a208104a8a6ea5072c1cb66aab\njdk7-b75\td1516b9f23954b29b8e76e6f4efc467c08c78133\njdk7-b74\t2c88089b6e1c053597418099a14232182c387edc\njdk7-b73\t3ac6dcf7823205546fbbc3d4ea59f37358d0b0d4\njdk7-b72\t0d7e03b426df27c21dcc44ffb9178eacd1b04f10\njdk7-b71\t4c36e9853dda27bdac5ef4839a610509fbe31d34\njdk7-b70\t175cb3fe615998d1004c6d3fd96e6d2e86b6772d\njdk7-b69\t82e6c820c51ac27882b77755d42efefdbf1dcda0\njdk7-b68\te1b972ff53cd58f825791f8ed9b2deffd16e768c\njdk7-b67\tc4523c6f82048f420bf0d57c4cd47976753b7d2c\njdk7-b66\t6bad5e3fe50337d95b1416d744780d65bc570da6\njdk7-b65\te01380cd1de4ce048b87d059d238e5ab5e341947\njdk7-b64\t269c1ec4435dfb7b452ae6e3bdde005d55c5c830\njdk7-b63\t57f7e028c7ad1806500ae89eb3f4cd9a51b10e18\njdk7-b62\tc7ed15ab92ce36a09d264a5e34025884b2d7607f\njdk7-b61\t472c21584cfd7e9c0229ad6a100366a5c03d2976\njdk7-b60\t39565502682c7085369bd09e51640919dc741097\njdk7-b59\t030142474602b4a067662fffc0c8e541de5a78df\njdk7-b58\t59b497130f82ec809c245ffb5e521e3a5fabf8af\njdk7-b57\tffd09e767dfa6d21466183a400f72cf62d53297f\njdk7-b56\tba12117a5e6c918578d6b2a8c693232a33289024\njdk7-b55\taea0ace7a1e43619800931d42bbf69c579361c2d\njdk7-b54\t2ef382b1bbd58a68e668391c6145a4b2066c5b96\njdk7-b53\tc235f4a8559d196879c56af80159f67ee5d0e720\njdk7-b52\t4264c2fe66493e57c411045a1b61377796641e45\njdk7-b51\t0f0189d55ce4a1f7840da7582ac7d970b3b7ab15\njdk7-b50\t5111e13e44e542fe945b47ab154546daec36737d\njdk7-b49\taee93a8992d2389121eb610c00a86196f3e2b9b0\njdk7-b48\t4ae9f4bfdb98f65bd957e3fe72471b320150b38e\njdk7-b47\td7744e86dedc21a8ecf6bdb73eb191b8eaf5b0da\njdk7-b46\te8a2a4d187773a62f3309b0fa265c13425bc2258\njdk7-b45\t99846f001ca214015578d593802d26e27246a802\njdk7-b44\ta395e3aac4744cc9033fcd819fad1239a45add52\njdk7-b43\t848e684279d2ba42577d9621d5b2e5af3823d12d\njdk7-b42\t94052b87287303527125026fe4b2698cf867ea83\njdk7-b41\t541bdc5ad32fc33255944d0a044ad992f3d915e8\njdk7-b40\t44be42de6693063fb191989bf0e188de2fa51e7c\njdk7-b39\tab523b49de1fc73fefe6855ce1e0349bdbd7af29\njdk7-b38\tcc47a76899ed33a2c513cb688348244c9b5a1288\njdk7-b37\t744554f5a3290e11c71cd2ddb1aff49e431f9ed0\njdk7-b36\t4b4f5fea8d7d0743f0c30d91fcd9bf9d96e5d2ad\njdk7-b35\t143c1abedb7d3095eff0f9ee5fec9bf48e3490fc\njdk7-b34\t46a989ab932992b2084b946eeb322fa99b9fee6c\njdk7-b33\tbb1ef4ee3d2c8cbf43a37d372325a7952be590b9\njdk7-b32\t64da805be725721bf2004e7409a0d7a16fc8ddbc\njdk7-b31\t3300a35a0bd56d695b92fe0b34f03ebbfc939064\njdk7-b30\t2dab2f712e1832c92acfa63ec0337048b9422c20\njdk7-b29\t31e08f70e88d77c2053f91c21b49a04296bdc59a\njdk7-b28\t56652b46f328937f6b9b5130f1e4cd80f48868ef\njdk7-b27\t11b4dc9f2be3523ef989a0db8459eb56b3045c3a\njdk7-b26\t9410f77cc30c604d1caf7c9fe3a57fa19e1acbe8\njdk7-b25\tcbc8ad9dd0e085a607427ea35411990982f19a36\njdk7-b24\tcfeea66a3fa8ca3686a7cfa2d0ce8ab0169f168d\n" diff --git a/upstream-info/kiwi.yaml b/upstream-info/kiwi.yaml index afbf7fc036265a909e7b026b1bd2b97a325c40cc..88659bdf423bcc110e18b0bd18f898634ae6b9ab 100644 --- a/upstream-info/kiwi.yaml +++ b/upstream-info/kiwi.yaml @@ -4,10 +4,10 @@ src_repo: kiwi tag_prefix: "^v" seperator: "." last_query: - time_stamp: 2020-04-26 02:54:41.813969580 +00:00 + time_stamp: 2020-05-20 09:33:17.041909170 +00:00 raw_data: '{"info":{"author":"Marcus Schaefer","author_email":"ms@suse.com","bugtrack_url":null,"classifiers":["Development Status :: 5 - Production/Stable","Intended Audience :: Developers","License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)","Operating System :: POSIX :: Linux","Programming Language :: Python :: 3.6","Programming Language - :: Python :: 3.7","Topic :: System :: Operating System"],"description":"","description_content_type":"","docs_url":null,"download_url":"https://download.opensuse.org/repositories/Virtualization:/Appliances:/Builder","downloads":{"last_day":-1,"last_month":-1,"last_week":-1},"home_page":"https://osinside.github.io/kiwi","keywords":"","license":"GPLv3+","maintainer":"","maintainer_email":"","name":"kiwi","package_url":"https://pypi.org/project/kiwi/","platform":"","project_url":"https://pypi.org/project/kiwi/","project_urls":{"Download":"https://download.opensuse.org/repositories/Virtualization:/Appliances:/Builder","Homepage":"https://osinside.github.io/kiwi"},"release_url":"https://pypi.org/project/kiwi/9.20.9/","requires_dist":null,"requires_python":"","summary":"KIWI - - Appliance Builder (next generation)","version":"9.20.9","yanked":false},"last_serial":7038900,"releases":{"8.20.10":[{"comment_text":"","digests":{"md5":"c54d8af695fcf16e01c146cefba310fd","sha256":"9cb8d3eee01499d5301ac210f30307b92f77f20094699d0095b21e608ccb1087"},"downloads":-1,"filename":"kiwi-8.20.10.tar.bz2","has_sig":false,"md5_digest":"c54d8af695fcf16e01c146cefba310fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":963331,"upload_time":"2016-08-25T11:05:23","upload_time_iso_8601":"2016-08-25T11:05:23.428328Z","url":"https://files.pythonhosted.org/packages/b9/ba/c29d0f8dea31088b731afd070f32ea454ea2b31c51033fa9e012f8a149ee/kiwi-8.20.10.tar.bz2","yanked":false}],"8.20.11":[{"comment_text":"","digests":{"md5":"9be8e0499dcec800176225e834783313","sha256":"1f2f57d23a5d8f6a7af323b4ca55e6add7c7f2570dca5a08bfead8d0c89b19c0"},"downloads":-1,"filename":"kiwi-8.20.11.tar.bz2","has_sig":false,"md5_digest":"9be8e0499dcec800176225e834783313","packagetype":"sdist","python_version":"source","requires_python":null,"size":965233,"upload_time":"2016-08-25T12:15:55","upload_time_iso_8601":"2016-08-25T12:15:55.148513Z","url":"https://files.pythonhosted.org/packages/cb/f9/01118ba41bbe57048f0e9360c96934f84f5c2a1531b577916c83888d5075/kiwi-8.20.11.tar.bz2","yanked":false}],"8.20.12":[{"comment_text":"","digests":{"md5":"19ba7f5256400e4a67294391fded1a15","sha256":"f7d09ac9b5ff02bcf5a6911dc652a52972411de5f686e2b64d55f4433aaa1a5f"},"downloads":-1,"filename":"kiwi-8.20.12.tar.gz","has_sig":false,"md5_digest":"19ba7f5256400e4a67294391fded1a15","packagetype":"sdist","python_version":"source","requires_python":null,"size":2090698,"upload_time":"2016-09-12T15:11:46","upload_time_iso_8601":"2016-09-12T15:11:46.080440Z","url":"https://files.pythonhosted.org/packages/de/ae/8e64b8c7adacbe27e5ffc04493c60d782b0fe829dbe3556efd29818e6bc2/kiwi-8.20.12.tar.gz","yanked":false}],"8.20.14":[{"comment_text":"","digests":{"md5":"27e9b0a3afa03950d931b5d6910bbbfb","sha256":"57d1ac2f6f986665dfbb672654314afc6bba33ae2aa188bb3aa7ca4120b199b0"},"downloads":-1,"filename":"kiwi-8.20.14.tar.gz","has_sig":false,"md5_digest":"27e9b0a3afa03950d931b5d6910bbbfb","packagetype":"sdist","python_version":"source","requires_python":null,"size":2089380,"upload_time":"2016-09-20T13:16:53","upload_time_iso_8601":"2016-09-20T13:16:53.390641Z","url":"https://files.pythonhosted.org/packages/49/ac/3253b6a10f5ffd1e444ccdbef8eef253a848e3e5958e87e1b5e3225ab8b6/kiwi-8.20.14.tar.gz","yanked":false}],"8.20.15":[{"comment_text":"","digests":{"md5":"864e0fb46270228df10358270501c8b5","sha256":"59bafeb7fbc5070ec78561684fb676117e566899bb2b5617d307e9a420eb061a"},"downloads":-1,"filename":"kiwi-8.20.15.tar.gz","has_sig":false,"md5_digest":"864e0fb46270228df10358270501c8b5","packagetype":"sdist","python_version":"source","requires_python":null,"size":2095229,"upload_time":"2016-09-20T15:13:44","upload_time_iso_8601":"2016-09-20T15:13:44.259446Z","url":"https://files.pythonhosted.org/packages/aa/26/1aee869da6fd5f9680e8b3174fe8a2aca78cc76bd22b1d7c7a42baa8b9be/kiwi-8.20.15.tar.gz","yanked":false}],"8.20.16":[{"comment_text":"","digests":{"md5":"79625f412a06a0852bb3b6f45633ebea","sha256":"842d999ead8621c0e31b229b3ead14f789fc735289233d77158c212db46c8bf2"},"downloads":-1,"filename":"kiwi-8.20.16.tar.gz","has_sig":false,"md5_digest":"79625f412a06a0852bb3b6f45633ebea","packagetype":"sdist","python_version":"source","requires_python":null,"size":2091211,"upload_time":"2016-09-21T16:11:29","upload_time_iso_8601":"2016-09-21T16:11:29.776144Z","url":"https://files.pythonhosted.org/packages/c7/5f/8361ee75c7e8fa69efc8841e143f92a0f252a2aa1835a64f510cf0a44fb0/kiwi-8.20.16.tar.gz","yanked":false}],"8.20.17":[{"comment_text":"","digests":{"md5":"0776fe59e56eed626ce908057d9750d4","sha256":"84de7fcb8bcf3554f768a282bab8ecac01471cd3d0585ae19508c2f852113c80"},"downloads":-1,"filename":"kiwi-8.20.17.tar.gz","has_sig":false,"md5_digest":"0776fe59e56eed626ce908057d9750d4","packagetype":"sdist","python_version":"source","requires_python":null,"size":2091455,"upload_time":"2016-09-21T17:27:31","upload_time_iso_8601":"2016-09-21T17:27:31.398600Z","url":"https://files.pythonhosted.org/packages/d5/b4/e2365bd840daff5b281c03eaa57c64eb1c009730ccc2e9a5c6571e34d5d0/kiwi-8.20.17.tar.gz","yanked":false}],"8.20.20":[{"comment_text":"","digests":{"md5":"bcae19a6e7fe2c643dff0b505f4c7b92","sha256":"c0c584005113e08fbfda77093bc6d1382e78417e6b8bc52036a489780c08a98a"},"downloads":-1,"filename":"kiwi-8.20.20.tar.gz","has_sig":false,"md5_digest":"bcae19a6e7fe2c643dff0b505f4c7b92","packagetype":"sdist","python_version":"source","requires_python":null,"size":2094165,"upload_time":"2016-09-26T17:08:31","upload_time_iso_8601":"2016-09-26T17:08:31.544200Z","url":"https://files.pythonhosted.org/packages/a0/fd/5f399fed4308dab4a941b6fcff34de36eaa6d8ba26fb5df8f53b74af7067/kiwi-8.20.20.tar.gz","yanked":false}],"8.20.21":[{"comment_text":"","digests":{"md5":"d60aa1db1dfdd638bfdb0ca4cda03fbe","sha256":"f49f542dbd89aaae80996052ca15e07809e74d99a9f82cdd324124d260e3aa7b"},"downloads":-1,"filename":"kiwi-8.20.21.tar.gz","has_sig":false,"md5_digest":"d60aa1db1dfdd638bfdb0ca4cda03fbe","packagetype":"sdist","python_version":"source","requires_python":null,"size":2093667,"upload_time":"2016-09-27T14:27:13","upload_time_iso_8601":"2016-09-27T14:27:13.668439Z","url":"https://files.pythonhosted.org/packages/28/d7/d157692ec7b72f6a5ea268c89e0fbcc3be5fde7bcc5f56f70c1f49af9952/kiwi-8.20.21.tar.gz","yanked":false}],"8.21.0":[{"comment_text":"","digests":{"md5":"122ffce650a7c8b3728ac067cd4f4852","sha256":"ad9b21e0879fca0301fa9f897fe72966028ad5996026b1bbc8c985cac66af531"},"downloads":-1,"filename":"kiwi-8.21.0.tar.gz","has_sig":false,"md5_digest":"122ffce650a7c8b3728ac067cd4f4852","packagetype":"sdist","python_version":"source","requires_python":null,"size":2063424,"upload_time":"2016-10-07T14:07:42","upload_time_iso_8601":"2016-10-07T14:07:42.363976Z","url":"https://files.pythonhosted.org/packages/d1/7b/37de0040027497050c2ce3dc0ddf9a32419cbe30f98082e6fabed45aa40d/kiwi-8.21.0.tar.gz","yanked":false}],"8.21.1":[{"comment_text":"","digests":{"md5":"614cc6caf407bb529b14aea3adc2cb3d","sha256":"85ac0ad4cd210468f02819e0ec4edd63bd5fea480d946890fcf516182f046efa"},"downloads":-1,"filename":"kiwi-8.21.1.tar.gz","has_sig":false,"md5_digest":"614cc6caf407bb529b14aea3adc2cb3d","packagetype":"sdist","python_version":"source","requires_python":null,"size":2062129,"upload_time":"2016-10-11T09:43:24","upload_time_iso_8601":"2016-10-11T09:43:24.930686Z","url":"https://files.pythonhosted.org/packages/e7/9a/064c3145849d1133bf25b15767b64ca0a67de5a0237102b75e6c415d1b50/kiwi-8.21.1.tar.gz","yanked":false}],"8.22.0":[{"comment_text":"","digests":{"md5":"656d20b5253768ec1644098d97f3a54c","sha256":"ca5e6208ad7107bdbe9eaff099f9f5f52bdf924cbe586d4ba4d491bf0b8ccb3e"},"downloads":-1,"filename":"kiwi-8.22.0.tar.gz","has_sig":false,"md5_digest":"656d20b5253768ec1644098d97f3a54c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2139875,"upload_time":"2016-10-18T19:31:39","upload_time_iso_8601":"2016-10-18T19:31:39.717983Z","url":"https://files.pythonhosted.org/packages/bd/88/32feb707a069ff31c46afc8607f048eb7f405289bb3a2b6ea59601e849ac/kiwi-8.22.0.tar.gz","yanked":false}],"8.22.1":[],"8.22.5":[{"comment_text":"","digests":{"md5":"de68a6c1caa9d19176a3c5b7e32f57b6","sha256":"170e403eb65878158375834a200dcc612ac1bfcf85b9c9b926a17b09e7a7e8ee"},"downloads":-1,"filename":"kiwi-8.22.5.tar.gz","has_sig":false,"md5_digest":"de68a6c1caa9d19176a3c5b7e32f57b6","packagetype":"sdist","python_version":"source","requires_python":null,"size":2219809,"upload_time":"2016-10-19T07:13:41","upload_time_iso_8601":"2016-10-19T07:13:41.473228Z","url":"https://files.pythonhosted.org/packages/78/63/ae09955305208d3d7fbc9ca44a320b7fb4ad9bbe25a78f1c8052c8270588/kiwi-8.22.5.tar.gz","yanked":false}],"8.22.6":[{"comment_text":"","digests":{"md5":"7fdc1eba01ccbe4ebdaad4e8e4989240","sha256":"36cab7c6c3ff0dbb232227082256523df5a2889a9a3a97cba627220b38d18dfa"},"downloads":-1,"filename":"kiwi-8.22.6.tar.gz","has_sig":false,"md5_digest":"7fdc1eba01ccbe4ebdaad4e8e4989240","packagetype":"sdist","python_version":"source","requires_python":null,"size":2222261,"upload_time":"2016-10-19T07:28:51","upload_time_iso_8601":"2016-10-19T07:28:51.239330Z","url":"https://files.pythonhosted.org/packages/3a/2b/998bc605fa558bfad8cf5bd8c1eaa76082d1168cc0469332d794ce7e0d19/kiwi-8.22.6.tar.gz","yanked":false}],"8.22.7":[{"comment_text":"","digests":{"md5":"c736230ae8504b77449097a821953563","sha256":"9c362cebeeb667993aaed39169505a68405672ff20387cfd7723c22388292b87"},"downloads":-1,"filename":"kiwi-8.22.7.tar.gz","has_sig":false,"md5_digest":"c736230ae8504b77449097a821953563","packagetype":"sdist","python_version":"source","requires_python":null,"size":2219195,"upload_time":"2016-10-19T07:56:44","upload_time_iso_8601":"2016-10-19T07:56:44.508493Z","url":"https://files.pythonhosted.org/packages/bb/6c/a046a10eb7e8289f8852d132a93bf870b906aa85a5b5cd154cbe17d16506/kiwi-8.22.7.tar.gz","yanked":false}],"8.23.0":[{"comment_text":"","digests":{"md5":"00887ffe8487ce79fb415d1b57924674","sha256":"aaa60f2c73670f6ef0c5c2440bad01c3e81040555de59524172616e92345955e"},"downloads":-1,"filename":"kiwi-8.23.0.tar.gz","has_sig":false,"md5_digest":"00887ffe8487ce79fb415d1b57924674","packagetype":"sdist","python_version":"source","requires_python":null,"size":2819739,"upload_time":"2016-10-24T13:05:33","upload_time_iso_8601":"2016-10-24T13:05:33.500366Z","url":"https://files.pythonhosted.org/packages/ea/4e/5b52e600f0fbce900f5c00d7454a5f82d153dfdd32440be0b42c1ad8925e/kiwi-8.23.0.tar.gz","yanked":false}],"8.24.1":[{"comment_text":"","digests":{"md5":"116cb2b72bee654045d2e5927bec5ed1","sha256":"2dd546f5ce760359f2cb07d8e99eee7ea88f214e51ce0dcbd0cbd8980d610b39"},"downloads":-1,"filename":"kiwi-8.24.1.tar.gz","has_sig":false,"md5_digest":"116cb2b72bee654045d2e5927bec5ed1","packagetype":"sdist","python_version":"source","requires_python":null,"size":2221308,"upload_time":"2016-10-19T18:53:23","upload_time_iso_8601":"2016-10-19T18:53:23.994904Z","url":"https://files.pythonhosted.org/packages/4d/ed/99d41346a885119134a7a010c6bcf3fc1793547e345fdb77151c99a16f91/kiwi-8.24.1.tar.gz","yanked":false}],"8.24.2":[{"comment_text":"","digests":{"md5":"9686ac37d7b5a60366feb501b21a8fee","sha256":"4522f31c65b115f695655a46e11c270d75e08bedb7b903bd7f1e07949bd8181c"},"downloads":-1,"filename":"kiwi-8.24.2.tar.gz","has_sig":false,"md5_digest":"9686ac37d7b5a60366feb501b21a8fee","packagetype":"sdist","python_version":"source","requires_python":null,"size":2903005,"upload_time":"2016-10-19T19:34:08","upload_time_iso_8601":"2016-10-19T19:34:08.891955Z","url":"https://files.pythonhosted.org/packages/c8/0d/6a3af5e6eb45afe7c644d20eb355d6d35146cbe44c15b056238b3d4b62d1/kiwi-8.24.2.tar.gz","yanked":false}],"8.24.3":[{"comment_text":"","digests":{"md5":"db5d1cf5a48cd76995cfc9e46e4beaf7","sha256":"f539e4631e01b342abd785308388be1574d160e61516efe496492317705e187a"},"downloads":-1,"filename":"kiwi-8.24.3.tar.gz","has_sig":false,"md5_digest":"db5d1cf5a48cd76995cfc9e46e4beaf7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2887032,"upload_time":"2016-10-19T20:21:06","upload_time_iso_8601":"2016-10-19T20:21:06.181000Z","url":"https://files.pythonhosted.org/packages/0e/12/2a44474d2b822a69c23f11ea9200168c1b784f4d0200220b3f85a13e192e/kiwi-8.24.3.tar.gz","yanked":false}],"8.24.4":[{"comment_text":"","digests":{"md5":"07d3f002c70125ab0367ba61922b2249","sha256":"57131de6af08859d327832787b9205928a9a782160b4b6a2ee0160bf06312643"},"downloads":-1,"filename":"kiwi-8.24.4.tar.gz","has_sig":false,"md5_digest":"07d3f002c70125ab0367ba61922b2249","packagetype":"sdist","python_version":"source","requires_python":null,"size":2884215,"upload_time":"2016-10-20T14:38:13","upload_time_iso_8601":"2016-10-20T14:38:13.115653Z","url":"https://files.pythonhosted.org/packages/d9/70/c466c912a12462f2be662734b802f57823896568abb8d92dc0ea3d752111/kiwi-8.24.4.tar.gz","yanked":false}],"8.24.8":[{"comment_text":"","digests":{"md5":"8ac0bdcc5bafc349d1dc43afc4f9d37e","sha256":"963282c75a23448c4d9730d6432a6a9e198b4b50d2cae0434ce2574ff2ec0718"},"downloads":-1,"filename":"kiwi-8.24.8.tar.gz","has_sig":false,"md5_digest":"8ac0bdcc5bafc349d1dc43afc4f9d37e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2818192,"upload_time":"2016-11-02T15:25:23","upload_time_iso_8601":"2016-11-02T15:25:23.650870Z","url":"https://files.pythonhosted.org/packages/13/d1/f5492d0d266e9fdf7e33bf9966432100566a214d98ea0f6472e29e46f54c/kiwi-8.24.8.tar.gz","yanked":false}],"8.24.9":[{"comment_text":"","digests":{"md5":"952fd81c19d7f6532954f0bd1702c47e","sha256":"bf5e660d82ede7cbb4abc63744f0a5544c95d785f66b8ceffa65220a34b3a496"},"downloads":-1,"filename":"kiwi-8.24.9.tar.gz","has_sig":false,"md5_digest":"952fd81c19d7f6532954f0bd1702c47e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2815272,"upload_time":"2016-11-02T16:40:04","upload_time_iso_8601":"2016-11-02T16:40:04.802082Z","url":"https://files.pythonhosted.org/packages/a9/fd/8c66b610e54e1f2ca5b6c00f90332700378d6e423b9a754946eac627df18/kiwi-8.24.9.tar.gz","yanked":false}],"8.25.1":[{"comment_text":"","digests":{"md5":"22d8910414254b662835d9e08ad911b2","sha256":"b8b8bbaae560dc9798b542fee397c74e47ed23a7c01512a6cf3ccc2679bbdc06"},"downloads":-1,"filename":"kiwi-8.25.1.tar.gz","has_sig":false,"md5_digest":"22d8910414254b662835d9e08ad911b2","packagetype":"sdist","python_version":"source","requires_python":null,"size":2829754,"upload_time":"2016-11-10T15:03:30","upload_time_iso_8601":"2016-11-10T15:03:30.969122Z","url":"https://files.pythonhosted.org/packages/d8/f5/404c17c1e18e652a65e7c9a540a91b2ce5120c6a67cd080c470c98096011/kiwi-8.25.1.tar.gz","yanked":false}],"8.25.2":[{"comment_text":"","digests":{"md5":"fb8d4f2c0569e91f4c9e8e15a22276c5","sha256":"2f9756e3c58a8636d61732231838a0c98e0b94ed6fe0418ac88cb556c8f367c4"},"downloads":-1,"filename":"kiwi-8.25.2.tar.gz","has_sig":false,"md5_digest":"fb8d4f2c0569e91f4c9e8e15a22276c5","packagetype":"sdist","python_version":"source","requires_python":null,"size":2920287,"upload_time":"2016-11-14T13:48:14","upload_time_iso_8601":"2016-11-14T13:48:14.776723Z","url":"https://files.pythonhosted.org/packages/cf/f0/c22dcacc06393ca2b918f1f24cc5ff7e9d92affab6d9a74c1f19651f010e/kiwi-8.25.2.tar.gz","yanked":false}],"8.25.3":[{"comment_text":"","digests":{"md5":"5b0489951e5f25109ba1ff7d08580107","sha256":"048eccf6c640df26d86bf5a10743a41703cae87d2e3a49b8ec300b616d749bf4"},"downloads":-1,"filename":"kiwi-8.25.3.tar.gz","has_sig":false,"md5_digest":"5b0489951e5f25109ba1ff7d08580107","packagetype":"sdist","python_version":"source","requires_python":null,"size":2816805,"upload_time":"2016-11-16T10:41:14","upload_time_iso_8601":"2016-11-16T10:41:14.237325Z","url":"https://files.pythonhosted.org/packages/a1/ee/18c93f2714aa99884a6032bf71c5fa095f8af7e0057f33a938da8681fb2f/kiwi-8.25.3.tar.gz","yanked":false}],"8.25.4":[{"comment_text":"","digests":{"md5":"b8ec655e1ecc86bed925158a0b12b514","sha256":"18866a51944b068707437d8ee814170f8306d7398768212c8df69aac79252cae"},"downloads":-1,"filename":"kiwi-8.25.4.tar.gz","has_sig":false,"md5_digest":"b8ec655e1ecc86bed925158a0b12b514","packagetype":"sdist","python_version":"source","requires_python":null,"size":2822099,"upload_time":"2016-11-16T16:10:49","upload_time_iso_8601":"2016-11-16T16:10:49.736508Z","url":"https://files.pythonhosted.org/packages/e9/f8/f27a38766eb83dbff1320e82783dfb6fb6a44b570430486b37950e8eb6ce/kiwi-8.25.4.tar.gz","yanked":false}],"8.26.0":[{"comment_text":"","digests":{"md5":"2336a04d3aa2e815d4acb5714222b3a6","sha256":"e5d895f566b0aff87f3c73c6dd1064ca53fd63dbcacde7175159fd34e11d3830"},"downloads":-1,"filename":"kiwi-8.26.0.tar.gz","has_sig":false,"md5_digest":"2336a04d3aa2e815d4acb5714222b3a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":2865931,"upload_time":"2016-11-22T09:06:21","upload_time_iso_8601":"2016-11-22T09:06:21.767686Z","url":"https://files.pythonhosted.org/packages/ca/57/840109dbfb848b12adf0197a8dc5599d847fed394268daa2168cc7a41645/kiwi-8.26.0.tar.gz","yanked":false}],"8.26.1":[{"comment_text":"","digests":{"md5":"c650a4b646561729fe1b335ef78fed95","sha256":"03fce2d9a080160546c22925733d2bb98420d5f8d37215ee577b5650cd3bc214"},"downloads":-1,"filename":"kiwi-8.26.1.tar.gz","has_sig":false,"md5_digest":"c650a4b646561729fe1b335ef78fed95","packagetype":"sdist","python_version":"source","requires_python":null,"size":2814317,"upload_time":"2016-11-24T13:04:44","upload_time_iso_8601":"2016-11-24T13:04:44.330722Z","url":"https://files.pythonhosted.org/packages/f5/99/f8fd2f8c6ded8123a90f4a35cd546f54747000691666294b53bfc83bb420/kiwi-8.26.1.tar.gz","yanked":false}],"8.27.2":[{"comment_text":"","digests":{"md5":"87a60dedd75923ccefe39510bbc62d61","sha256":"6b4c50a76020d118256977447457beaf0fca943ee53b74ac0921bda7d0b6139c"},"downloads":-1,"filename":"kiwi-8.27.2.tar.gz","has_sig":false,"md5_digest":"87a60dedd75923ccefe39510bbc62d61","packagetype":"sdist","python_version":"source","requires_python":null,"size":2827553,"upload_time":"2016-12-05T11:45:07","upload_time_iso_8601":"2016-12-05T11:45:07.708964Z","url":"https://files.pythonhosted.org/packages/9f/6b/68c2d61b149228312eb19ee058452eb3f144223a3c0bb82651f38d49a321/kiwi-8.27.2.tar.gz","yanked":false}],"8.27.3":[{"comment_text":"","digests":{"md5":"f7bd22633a636389f9f19720fa40fd71","sha256":"f7eaa8b400cfc11433294f09eaa197b57adf62f8b926617f71973cc147b19e17"},"downloads":-1,"filename":"kiwi-8.27.3.tar.gz","has_sig":false,"md5_digest":"f7bd22633a636389f9f19720fa40fd71","packagetype":"sdist","python_version":"source","requires_python":null,"size":2845403,"upload_time":"2016-12-07T16:21:51","upload_time_iso_8601":"2016-12-07T16:21:51.317143Z","url":"https://files.pythonhosted.org/packages/85/52/87e019d7491dba73ece566dcc76a9e80170423a0f8797e53040d8b7404d2/kiwi-8.27.3.tar.gz","yanked":false}],"8.27.5":[{"comment_text":"","digests":{"md5":"6b1c7528e6a2e40ba2e0a5e75b72150f","sha256":"4c7b4f092951de7b94bd3e77d94a83140529a965be4fcf901ed0ef94bfaee62d"},"downloads":-1,"filename":"kiwi-8.27.5.tar.gz","has_sig":false,"md5_digest":"6b1c7528e6a2e40ba2e0a5e75b72150f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2959486,"upload_time":"2016-12-13T14:13:55","upload_time_iso_8601":"2016-12-13T14:13:55.670708Z","url":"https://files.pythonhosted.org/packages/83/41/8a958b8b85332795fbf7e464bcdbc787df376bec6090aac19010787bbbcd/kiwi-8.27.5.tar.gz","yanked":false}],"8.28.0":[{"comment_text":"","digests":{"md5":"6ec7894d5abf1400fb6bd5f9dfaae855","sha256":"d705059920d1f9b34ebe55d1eb6a3671b4c1bb57269c622399e8013655c6ef23"},"downloads":-1,"filename":"kiwi-8.28.0.tar.gz","has_sig":false,"md5_digest":"6ec7894d5abf1400fb6bd5f9dfaae855","packagetype":"sdist","python_version":"source","requires_python":null,"size":2859944,"upload_time":"2016-12-15T13:34:47","upload_time_iso_8601":"2016-12-15T13:34:47.798181Z","url":"https://files.pythonhosted.org/packages/77/1d/a0ce454c09412c0054ae545855a2022d9df57d117f582411a7da35a2dc86/kiwi-8.28.0.tar.gz","yanked":false}],"8.28.2":[{"comment_text":"","digests":{"md5":"80b6bd9397b527bbee05875de81240e7","sha256":"bde2355e3706b229ae656264aaaa216a81ddb7d09071166f603efd0ceb0462b8"},"downloads":-1,"filename":"kiwi-8.28.2.tar.gz","has_sig":false,"md5_digest":"80b6bd9397b527bbee05875de81240e7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2849557,"upload_time":"2016-12-19T09:16:16","upload_time_iso_8601":"2016-12-19T09:16:16.866144Z","url":"https://files.pythonhosted.org/packages/19/48/115bbdfafb84d9d910ec2372063c79040357fd0fe302f6e603aa6a76a717/kiwi-8.28.2.tar.gz","yanked":false}],"8.28.3":[{"comment_text":"","digests":{"md5":"d064661785351810949233458478dcb1","sha256":"4063263b0af25c0d172d19e6daa065798518efd17d01264654d1fd18ad59e541"},"downloads":-1,"filename":"kiwi-8.28.3.tar.gz","has_sig":false,"md5_digest":"d064661785351810949233458478dcb1","packagetype":"sdist","python_version":"source","requires_python":null,"size":2864599,"upload_time":"2016-12-20T10:09:08","upload_time_iso_8601":"2016-12-20T10:09:08.680430Z","url":"https://files.pythonhosted.org/packages/5a/2d/3e44e20e392dc69536971feca376557e0430b185531ec0629c6357124d0d/kiwi-8.28.3.tar.gz","yanked":false}],"8.29.0":[{"comment_text":"","digests":{"md5":"2266b27d2d0d254dc767f93436d0467a","sha256":"c5f79940d6320088010a761ccea84dde9b32259b02100dc28f4fb38375e51269"},"downloads":-1,"filename":"kiwi-8.29.0.tar.gz","has_sig":false,"md5_digest":"2266b27d2d0d254dc767f93436d0467a","packagetype":"sdist","python_version":"source","requires_python":null,"size":2677857,"upload_time":"2017-01-10T13:03:43","upload_time_iso_8601":"2017-01-10T13:03:43.788086Z","url":"https://files.pythonhosted.org/packages/d6/16/5362a4655fcb6b6fbb0743c5f145c4c5e16a92995e4b7b3068f034a72f29/kiwi-8.29.0.tar.gz","yanked":false}],"8.29.1":[{"comment_text":"","digests":{"md5":"b93997370d0c9fe4017970b9bd78d781","sha256":"55b8f312b11989bb587dcf963e25ab0b12708458404c4611ccdb6701e6f3bdb0"},"downloads":-1,"filename":"kiwi-8.29.1.tar.gz","has_sig":false,"md5_digest":"b93997370d0c9fe4017970b9bd78d781","packagetype":"sdist","python_version":"source","requires_python":null,"size":2692794,"upload_time":"2017-01-10T13:24:51","upload_time_iso_8601":"2017-01-10T13:24:51.006709Z","url":"https://files.pythonhosted.org/packages/03/4a/ea63d4464bebe4b260ed756e56fc7185334a8100cf597d22287131c32272/kiwi-8.29.1.tar.gz","yanked":false}],"8.29.2":[{"comment_text":"","digests":{"md5":"a4d303d6e010677718a0afab44eb0aab","sha256":"f0aecb0d89a1d4c4972d4eaf34d2795bdc11a0ba2f2666a74df63b6bd092c155"},"downloads":-1,"filename":"kiwi-8.29.2.tar.gz","has_sig":false,"md5_digest":"a4d303d6e010677718a0afab44eb0aab","packagetype":"sdist","python_version":"source","requires_python":null,"size":2801578,"upload_time":"2017-01-18T13:50:53","upload_time_iso_8601":"2017-01-18T13:50:53.452821Z","url":"https://files.pythonhosted.org/packages/7d/ac/aae6e539dcb36dc3a822f85c06341f4ddd90f36c3ba08eb432fbdf5ae3b6/kiwi-8.29.2.tar.gz","yanked":false}],"8.29.3":[{"comment_text":"","digests":{"md5":"33c46d56fc93065642ef795dd139aca7","sha256":"250d2e0acb2b26578f0e464f36af29f116c585846bf5f09b78999ca07178e82e"},"downloads":-1,"filename":"kiwi-8.29.3.tar.gz","has_sig":false,"md5_digest":"33c46d56fc93065642ef795dd139aca7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2811071,"upload_time":"2017-01-24T08:28:20","upload_time_iso_8601":"2017-01-24T08:28:20.940413Z","url":"https://files.pythonhosted.org/packages/10/2b/4db1438d7358f1303dc848e6f8c46d3ffb631d4da011fdc67232e6836113/kiwi-8.29.3.tar.gz","yanked":false}],"8.29.4":[{"comment_text":"","digests":{"md5":"5027f424bda67b3feb21ae6784e945d4","sha256":"a4e42c1f4859ec8ab27a0139a536c9d66c00caf8d33ef2cf69cc19776631e6d7"},"downloads":-1,"filename":"kiwi-8.29.4.tar.gz","has_sig":false,"md5_digest":"5027f424bda67b3feb21ae6784e945d4","packagetype":"sdist","python_version":"source","requires_python":null,"size":2762220,"upload_time":"2017-01-24T08:57:38","upload_time_iso_8601":"2017-01-24T08:57:38.325163Z","url":"https://files.pythonhosted.org/packages/6b/75/c47e9c882fc0d93b5f5a95d8395ba57bbd8c6afa967a832b729b5a401eb1/kiwi-8.29.4.tar.gz","yanked":false}],"8.29.5":[{"comment_text":"","digests":{"md5":"d2d93967e61db379f5cb493549b9b331","sha256":"c41ac78c3bf592d2710cfd1913649d803cbf3d3a6c20332e755f3df1c10ec7ff"},"downloads":-1,"filename":"kiwi-8.29.5.tar.gz","has_sig":false,"md5_digest":"d2d93967e61db379f5cb493549b9b331","packagetype":"sdist","python_version":"source","requires_python":null,"size":2761204,"upload_time":"2017-01-26T10:56:16","upload_time_iso_8601":"2017-01-26T10:56:16.506887Z","url":"https://files.pythonhosted.org/packages/d9/78/4b44a269a0aa5fdd61cac0746a0b4b66c96b322edb8db1955fc936f25c92/kiwi-8.29.5.tar.gz","yanked":false}],"8.29.6":[{"comment_text":"","digests":{"md5":"142b9aebd89294151e028620b5201b67","sha256":"4b04065c4d30f62d81789dc941045ee85d96cb0b8d9776b3cd150a6ba68b436f"},"downloads":-1,"filename":"kiwi-8.29.6.tar.gz","has_sig":false,"md5_digest":"142b9aebd89294151e028620b5201b67","packagetype":"sdist","python_version":"source","requires_python":null,"size":2783482,"upload_time":"2017-01-26T14:33:17","upload_time_iso_8601":"2017-01-26T14:33:17.574324Z","url":"https://files.pythonhosted.org/packages/0b/73/0f137b712cd3e74a00f6fdcbfac35ee2a83a160d770c0ebfaf1af32588d0/kiwi-8.29.6.tar.gz","yanked":false}],"9.0.0":[{"comment_text":"","digests":{"md5":"9a81d95ffcd3e3d62d58a52fa7601028","sha256":"2c7d9a2f5346ad342edd655b7ad0ab025818806ce014735d5ddf52da4cc8b8bf"},"downloads":-1,"filename":"kiwi-9.0.0.tar.gz","has_sig":false,"md5_digest":"9a81d95ffcd3e3d62d58a52fa7601028","packagetype":"sdist","python_version":"source","requires_python":null,"size":2767222,"upload_time":"2017-01-27T13:32:33","upload_time_iso_8601":"2017-01-27T13:32:33.801880Z","url":"https://files.pythonhosted.org/packages/b2/30/80f779332877ed8b7123fdc1d1f68b5220be210c03e4e994a61793bae970/kiwi-9.0.0.tar.gz","yanked":false}],"9.0.1":[{"comment_text":"","digests":{"md5":"ae27131b9c0f1b79874b35b044605b1b","sha256":"a1320ab7c30062d89e86da7766d97365c03f9a50e8cfb74804d9dab7600e658d"},"downloads":-1,"filename":"kiwi-9.0.1.tar.gz","has_sig":false,"md5_digest":"ae27131b9c0f1b79874b35b044605b1b","packagetype":"sdist","python_version":"source","requires_python":null,"size":2775415,"upload_time":"2017-02-01T15:06:22","upload_time_iso_8601":"2017-02-01T15:06:22.742590Z","url":"https://files.pythonhosted.org/packages/c5/5f/e15897be9558bbae224b70b953fdc4d40c68d9f912d0d75f9a2f75d9d9fc/kiwi-9.0.1.tar.gz","yanked":false}],"9.0.2":[{"comment_text":"","digests":{"md5":"d0d50bb333e3188b73a15c855338499f","sha256":"083d832855e0849e75b2f68dc966e1f8339d266f03e985df502056e146d0c90d"},"downloads":-1,"filename":"kiwi-9.0.2.tar.gz","has_sig":false,"md5_digest":"d0d50bb333e3188b73a15c855338499f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2790386,"upload_time":"2017-02-03T14:29:28","upload_time_iso_8601":"2017-02-03T14:29:28.265700Z","url":"https://files.pythonhosted.org/packages/40/53/3f791777bc74ba996bf72d8237f633d84db09c772f48bd0a3dfef77595fc/kiwi-9.0.2.tar.gz","yanked":false}],"9.1.0":[{"comment_text":"","digests":{"md5":"016412ae2c7092df8eaaeb63c830d6ae","sha256":"ae6c850e1ddecde777a94c531d9afab0ea37a21fc6757540c41d724147bd5001"},"downloads":-1,"filename":"kiwi-9.1.0.tar.gz","has_sig":false,"md5_digest":"016412ae2c7092df8eaaeb63c830d6ae","packagetype":"sdist","python_version":"source","requires_python":null,"size":2763619,"upload_time":"2017-02-10T09:03:13","upload_time_iso_8601":"2017-02-10T09:03:13.536119Z","url":"https://files.pythonhosted.org/packages/f8/10/b41a5b8eb041443203e46cdb1b9ac7de189badc83472b07b1d6c254cb998/kiwi-9.1.0.tar.gz","yanked":false}],"9.16.0":[{"comment_text":"","digests":{"md5":"2323570d56a8d39aa61ddf9faa345386","sha256":"58270823be1d4c25201a13924b818f1d5359f773a4fb6bb7e10a6f5152a76faf"},"downloads":-1,"filename":"kiwi-9.16.0.tar.gz","has_sig":false,"md5_digest":"2323570d56a8d39aa61ddf9faa345386","packagetype":"sdist","python_version":"source","requires_python":null,"size":511052,"upload_time":"2018-06-06T11:42:54","upload_time_iso_8601":"2018-06-06T11:42:54.198896Z","url":"https://files.pythonhosted.org/packages/fa/7a/68701b236450d2ebd5222bb13b8d3e482eb9772815cc59270611a1b78208/kiwi-9.16.0.tar.gz","yanked":false}],"9.16.1":[{"comment_text":"","digests":{"md5":"40f9b9118fbf20dcc4cc4701d10f868b","sha256":"ab1c73d57e36b7534db68ba5670215807d639fe27c90e49ca84eeca01e8485b9"},"downloads":-1,"filename":"kiwi-9.16.1.tar.gz","has_sig":false,"md5_digest":"40f9b9118fbf20dcc4cc4701d10f868b","packagetype":"sdist","python_version":"source","requires_python":null,"size":511006,"upload_time":"2018-06-13T13:07:02","upload_time_iso_8601":"2018-06-13T13:07:02.470263Z","url":"https://files.pythonhosted.org/packages/20/6a/fea9f439ec8adbb5b832fe4b005c76cf8a9ceda44efefc16aa84cbb9479b/kiwi-9.16.1.tar.gz","yanked":false}],"9.16.12":[{"comment_text":"","digests":{"md5":"bd780d98cfb65bcd07e0ea9c24197f94","sha256":"b8a97206a7da2af97ee788e98559a1a732f41e237159694af3720130f4928152"},"downloads":-1,"filename":"kiwi-9.16.12.tar.gz","has_sig":false,"md5_digest":"bd780d98cfb65bcd07e0ea9c24197f94","packagetype":"sdist","python_version":"source","requires_python":null,"size":522185,"upload_time":"2018-08-20T20:54:45","upload_time_iso_8601":"2018-08-20T20:54:45.806252Z","url":"https://files.pythonhosted.org/packages/99/7d/8267851a565bd31666684817955003ef4dd0fb1b4fb22b4ce60194cea5b9/kiwi-9.16.12.tar.gz","yanked":false}],"9.16.14":[{"comment_text":"","digests":{"md5":"741f510ce11919d36cecbe43859a2e76","sha256":"8d8894978de286ede070c9301a86ae22350d6a4f7292f65f0fbee6e98afe2669"},"downloads":-1,"filename":"kiwi-9.16.14.tar.gz","has_sig":false,"md5_digest":"741f510ce11919d36cecbe43859a2e76","packagetype":"sdist","python_version":"source","requires_python":null,"size":523137,"upload_time":"2018-09-14T09:49:48","upload_time_iso_8601":"2018-09-14T09:49:48.337702Z","url":"https://files.pythonhosted.org/packages/6d/14/3331f12551ebdd6bdce440af03011c0e691eb4b639dc98cdc5f015159261/kiwi-9.16.14.tar.gz","yanked":false}],"9.16.15":[{"comment_text":"","digests":{"md5":"0b0409dad0d681146eb9831baa0ba6a6","sha256":"06606daf908abc3bad4238812645825d4d714b23cfcebd93c69dcfd0eb5660a3"},"downloads":-1,"filename":"kiwi-9.16.15.tar.gz","has_sig":false,"md5_digest":"0b0409dad0d681146eb9831baa0ba6a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":523825,"upload_time":"2018-09-26T10:40:07","upload_time_iso_8601":"2018-09-26T10:40:07.522155Z","url":"https://files.pythonhosted.org/packages/00/32/5eff9fbeb945c9b023ef197205f3ac7667ecd2dfae2de65791c1e4655c91/kiwi-9.16.15.tar.gz","yanked":false}],"9.16.16":[{"comment_text":"","digests":{"md5":"60b196d97dd0c0f5ffeffd3aa78478d6","sha256":"a8b611d6bf3ecdd0b8bb825ccc4507cfcb80adbd66417e04d2280db0fcd77199"},"downloads":-1,"filename":"kiwi-9.16.16.tar.gz","has_sig":false,"md5_digest":"60b196d97dd0c0f5ffeffd3aa78478d6","packagetype":"sdist","python_version":"source","requires_python":null,"size":523847,"upload_time":"2018-09-26T11:56:40","upload_time_iso_8601":"2018-09-26T11:56:40.113551Z","url":"https://files.pythonhosted.org/packages/7e/63/fcd5f815648b8314c15171c58edd260b796f1e60c4f5aa0a10f47f3073f2/kiwi-9.16.16.tar.gz","yanked":false}],"9.16.17":[{"comment_text":"","digests":{"md5":"861f787ac29d46b6904d29b7b42799a6","sha256":"a5f3f9da9e03c54b8c94c6148378380adfd4999a474b54491653941f05303de1"},"downloads":-1,"filename":"kiwi-9.16.17.tar.gz","has_sig":false,"md5_digest":"861f787ac29d46b6904d29b7b42799a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":470502,"upload_time":"2018-09-26T12:02:34","upload_time_iso_8601":"2018-09-26T12:02:34.072165Z","url":"https://files.pythonhosted.org/packages/5c/85/2cccc2c3fa1aa0ad7dd0dffbf4a89f51c14205d5c9b2368021ac8fbf0efe/kiwi-9.16.17.tar.gz","yanked":false}],"9.16.18":[{"comment_text":"","digests":{"md5":"b6664fe8217a61c090ba657a6f517097","sha256":"0a6302263c182634fc092cb4e125c996aa27899193247d98d8416481ae104770"},"downloads":-1,"filename":"kiwi-9.16.18.tar.gz","has_sig":false,"md5_digest":"b6664fe8217a61c090ba657a6f517097","packagetype":"sdist","python_version":"source","requires_python":null,"size":470445,"upload_time":"2018-09-26T15:12:13","upload_time_iso_8601":"2018-09-26T15:12:13.127551Z","url":"https://files.pythonhosted.org/packages/50/58/3112dbda498a1a66677ab987f0bcd6c14a3d015ce11390819957eada9c24/kiwi-9.16.18.tar.gz","yanked":false}],"9.16.19":[{"comment_text":"","digests":{"md5":"c6d06a2148202ddd3f230ffbcb7e605a","sha256":"6a597839e1d05f76a3c117136ef75b4d5cda2c77ba484367a8ed41bfd9402f89"},"downloads":-1,"filename":"kiwi-9.16.19.tar.gz","has_sig":false,"md5_digest":"c6d06a2148202ddd3f230ffbcb7e605a","packagetype":"sdist","python_version":"source","requires_python":null,"size":470955,"upload_time":"2018-10-05T15:23:28","upload_time_iso_8601":"2018-10-05T15:23:28.582649Z","url":"https://files.pythonhosted.org/packages/0d/03/44bcdb48f0a68aec726b8b1f4a16c0fd39f21c81ebf24531d3b50d2d23b5/kiwi-9.16.19.tar.gz","yanked":false}],"9.16.2":[{"comment_text":"","digests":{"md5":"908e38491b1efed4bfe4f17e119bc5ac","sha256":"0608f620582d679cc1618f771325aea03112742b200d4a392a40e62069555085"},"downloads":-1,"filename":"kiwi-9.16.2.tar.gz","has_sig":false,"md5_digest":"908e38491b1efed4bfe4f17e119bc5ac","packagetype":"sdist","python_version":"source","requires_python":null,"size":512130,"upload_time":"2018-06-20T13:38:30","upload_time_iso_8601":"2018-06-20T13:38:30.490671Z","url":"https://files.pythonhosted.org/packages/2a/3c/67553517bb0ab6d71a4028ceb6eb6f8f64c1aa3885f6418ab248d1458a77/kiwi-9.16.2.tar.gz","yanked":false}],"9.16.20":[{"comment_text":"","digests":{"md5":"f393b6c81cb161141e8b3821546f3014","sha256":"c6422117a237209d236dab7d31aba760bf72de2069f87eac50e548ea9d71fe26"},"downloads":-1,"filename":"kiwi-9.16.20.tar.gz","has_sig":false,"md5_digest":"f393b6c81cb161141e8b3821546f3014","packagetype":"sdist","python_version":"source","requires_python":null,"size":471647,"upload_time":"2018-10-09T07:48:33","upload_time_iso_8601":"2018-10-09T07:48:33.005297Z","url":"https://files.pythonhosted.org/packages/5f/08/d12aaca14e4f6134c174967bd285680db897377d9815b2d5f030a63d21fb/kiwi-9.16.20.tar.gz","yanked":false}],"9.16.21":[{"comment_text":"","digests":{"md5":"f6f0d708b2bca015ee0eb059fabc6824","sha256":"bfb768ff8d54646b150e911976f637671a3729485a5dbcdb4b59429668d3fcf5"},"downloads":-1,"filename":"kiwi-9.16.21.tar.gz","has_sig":false,"md5_digest":"f6f0d708b2bca015ee0eb059fabc6824","packagetype":"sdist","python_version":"source","requires_python":null,"size":471792,"upload_time":"2018-10-11T15:24:53","upload_time_iso_8601":"2018-10-11T15:24:53.842611Z","url":"https://files.pythonhosted.org/packages/00/06/075290a914c2d43c4481af6b8bebb32021c1a4d5cd2c3e6f7d3252f298ab/kiwi-9.16.21.tar.gz","yanked":false}],"9.16.22":[{"comment_text":"","digests":{"md5":"9120f401935eebd84a33fe818fe73ce6","sha256":"757da3219362c4ab74278b58f0fbdd322983fd73e412b64ef46850a69e144fc4"},"downloads":-1,"filename":"kiwi-9.16.22.tar.gz","has_sig":false,"md5_digest":"9120f401935eebd84a33fe818fe73ce6","packagetype":"sdist","python_version":"source","requires_python":null,"size":471697,"upload_time":"2018-10-11T15:48:12","upload_time_iso_8601":"2018-10-11T15:48:12.058860Z","url":"https://files.pythonhosted.org/packages/e4/d9/8fe8983b5d3a727d9da1ac08eafd4fdc3fe8785ebab3883140cb99cc1f63/kiwi-9.16.22.tar.gz","yanked":false}],"9.16.23":[{"comment_text":"","digests":{"md5":"8e44296e139af2aa249438788dd63ea7","sha256":"dbdecb7451829e9c05999bbd32af4ed6610fa0cb37465482ff69334477b4f982"},"downloads":-1,"filename":"kiwi-9.16.23.tar.gz","has_sig":false,"md5_digest":"8e44296e139af2aa249438788dd63ea7","packagetype":"sdist","python_version":"source","requires_python":null,"size":471713,"upload_time":"2018-10-15T08:08:49","upload_time_iso_8601":"2018-10-15T08:08:49.534285Z","url":"https://files.pythonhosted.org/packages/e5/03/d0534ba281597e88a3de97418990965077ab5b109eeb02d65058adc13ed1/kiwi-9.16.23.tar.gz","yanked":false}],"9.16.24":[{"comment_text":"","digests":{"md5":"16f4d28fb5adeabda24105dc32fc0290","sha256":"edb5dd71ab17e6232baca1e460ac244a7f91070b95aa352df3c37a854cf39d00"},"downloads":-1,"filename":"kiwi-9.16.24.tar.gz","has_sig":false,"md5_digest":"16f4d28fb5adeabda24105dc32fc0290","packagetype":"sdist","python_version":"source","requires_python":null,"size":472131,"upload_time":"2018-10-16T15:11:33","upload_time_iso_8601":"2018-10-16T15:11:33.523617Z","url":"https://files.pythonhosted.org/packages/94/9d/4c2d0d0d9ff474a5f79e765800cdd945b6e77d7206c1ebd8f11e7bb0394d/kiwi-9.16.24.tar.gz","yanked":false}],"9.16.25":[{"comment_text":"","digests":{"md5":"e467fc8c7ed809dea7cfa5eab0d0b78c","sha256":"ab0ed100b7137e5b36fdad13e3b3044ffeb39b2584240ebf6170b918e0a53c7f"},"downloads":-1,"filename":"kiwi-9.16.25.tar.gz","has_sig":false,"md5_digest":"e467fc8c7ed809dea7cfa5eab0d0b78c","packagetype":"sdist","python_version":"source","requires_python":null,"size":472330,"upload_time":"2018-10-18T08:51:13","upload_time_iso_8601":"2018-10-18T08:51:13.521875Z","url":"https://files.pythonhosted.org/packages/81/7f/172dc9f88f62035a98ae0db48c9da45ce0c2deadba8d6827db2ad733d8a1/kiwi-9.16.25.tar.gz","yanked":false}],"9.16.26":[{"comment_text":"","digests":{"md5":"5d535dbe0b9cc9a055d43259fbebb46f","sha256":"5441a4b85b6a620d3b199f55d6af6ee4f5bdb62a247315571cee6afd828d841e"},"downloads":-1,"filename":"kiwi-9.16.26.tar.gz","has_sig":false,"md5_digest":"5d535dbe0b9cc9a055d43259fbebb46f","packagetype":"sdist","python_version":"source","requires_python":null,"size":472915,"upload_time":"2018-10-18T14:48:58","upload_time_iso_8601":"2018-10-18T14:48:58.913886Z","url":"https://files.pythonhosted.org/packages/18/2d/8f07e39774f1662760cd1738d6c25649f3d0082a8374a1a11c7fc302a672/kiwi-9.16.26.tar.gz","yanked":false}],"9.16.27":[{"comment_text":"","digests":{"md5":"79d1d31487f495dc3b708070b3542c87","sha256":"a2bf1547e525af0054c82bef76d3ea5e3edf22ff1f5c4a12aeceb479ea4b2326"},"downloads":-1,"filename":"kiwi-9.16.27.tar.gz","has_sig":false,"md5_digest":"79d1d31487f495dc3b708070b3542c87","packagetype":"sdist","python_version":"source","requires_python":null,"size":472916,"upload_time":"2018-10-19T12:42:29","upload_time_iso_8601":"2018-10-19T12:42:29.198227Z","url":"https://files.pythonhosted.org/packages/16/27/897ec1375344484daa28343e23ff7df005c5837f296653f88a029051b064/kiwi-9.16.27.tar.gz","yanked":false}],"9.16.3":[{"comment_text":"","digests":{"md5":"95f379b3534f01f29c76e1ec51c752fd","sha256":"e5d1280b74b945c9d4d2175824ca661143a407a0772e51922ab4d7a8dc77283f"},"downloads":-1,"filename":"kiwi-9.16.3.tar.gz","has_sig":false,"md5_digest":"95f379b3534f01f29c76e1ec51c752fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":514579,"upload_time":"2018-07-16T08:44:36","upload_time_iso_8601":"2018-07-16T08:44:36.354352Z","url":"https://files.pythonhosted.org/packages/70/4c/1c86592a6d5a127bf0053de4cfb9f040039a27c2de5c2e5549adcc7ca843/kiwi-9.16.3.tar.gz","yanked":false}],"9.16.33":[{"comment_text":"","digests":{"md5":"583e9c0744bc1a9fc437738757e4cb56","sha256":"5ab87157fc1b381914d38a1a34299a7647a19d92afb41d45446850109f68dd13"},"downloads":-1,"filename":"kiwi-9.16.33.tar.gz","has_sig":false,"md5_digest":"583e9c0744bc1a9fc437738757e4cb56","packagetype":"sdist","python_version":"source","requires_python":null,"size":470019,"upload_time":"2018-11-05T15:47:33","upload_time_iso_8601":"2018-11-05T15:47:33.330948Z","url":"https://files.pythonhosted.org/packages/83/65/30db9f5b45ff7dce44a77002c00c32a7ff50400e344dd813bebf989c649a/kiwi-9.16.33.tar.gz","yanked":false}],"9.16.35":[{"comment_text":"","digests":{"md5":"1379575c02ccd6a500f5f2816d4bd9a7","sha256":"7a3c62d7ad42be8d456b061208ae121b6c07762f49d73b6b6f403b34cab42115"},"downloads":-1,"filename":"kiwi-9.16.35.tar.gz","has_sig":false,"md5_digest":"1379575c02ccd6a500f5f2816d4bd9a7","packagetype":"sdist","python_version":"source","requires_python":null,"size":469991,"upload_time":"2018-11-05T21:32:43","upload_time_iso_8601":"2018-11-05T21:32:43.001328Z","url":"https://files.pythonhosted.org/packages/77/e5/b9f740372fd755236358c21f8b932acab77910bf5d839e96cfe70a57e186/kiwi-9.16.35.tar.gz","yanked":false}],"9.16.36":[{"comment_text":"","digests":{"md5":"160ade15cd13548295f8c803c30ae1e1","sha256":"ec151948d91354891f28eccd7648a981fbba49987426e75b1768f5589522745e"},"downloads":-1,"filename":"kiwi-9.16.36.tar.gz","has_sig":false,"md5_digest":"160ade15cd13548295f8c803c30ae1e1","packagetype":"sdist","python_version":"source","requires_python":null,"size":470012,"upload_time":"2018-11-06T09:22:21","upload_time_iso_8601":"2018-11-06T09:22:21.583486Z","url":"https://files.pythonhosted.org/packages/61/81/6577bca770f80b587c850434c2f2a848b88f83871375e729ff87fc7d64c4/kiwi-9.16.36.tar.gz","yanked":false}],"9.16.4":[{"comment_text":"","digests":{"md5":"b69e69b54be8df8990a40e27a03dd7e9","sha256":"3ab33969f9aa87007ded8c9a01b5a76a2fcff19d0843f493705e5d3ebb9e4f83"},"downloads":-1,"filename":"kiwi-9.16.4.tar.gz","has_sig":false,"md5_digest":"b69e69b54be8df8990a40e27a03dd7e9","packagetype":"sdist","python_version":"source","requires_python":null,"size":514449,"upload_time":"2018-07-16T15:33:17","upload_time_iso_8601":"2018-07-16T15:33:17.791854Z","url":"https://files.pythonhosted.org/packages/dd/e0/8f06609f45c84628b969d90b1d5c103cd8fd9712ebff406bf3844bfd06e8/kiwi-9.16.4.tar.gz","yanked":false}],"9.16.7":[{"comment_text":"","digests":{"md5":"b134f5a99ce95346fe2032f8fe747339","sha256":"176487eda89957f730ea97a0df86a17c310edc9908032a4ae87b86bd1da9d8b0"},"downloads":-1,"filename":"kiwi-9.16.7.tar.gz","has_sig":false,"md5_digest":"b134f5a99ce95346fe2032f8fe747339","packagetype":"sdist","python_version":"source","requires_python":null,"size":516986,"upload_time":"2018-08-01T12:36:32","upload_time_iso_8601":"2018-08-01T12:36:32.894759Z","url":"https://files.pythonhosted.org/packages/ca/e1/82825788cd6838a44367f3339c0510fe139dc5419958b462f7aa84530c9c/kiwi-9.16.7.tar.gz","yanked":false}],"9.16.8":[{"comment_text":"","digests":{"md5":"17c68b799724674a21fd852712c18d71","sha256":"e0bba6d3278ab4377a6d96dc045b7335ccc086c9260bbf676849106cf5f1005d"},"downloads":-1,"filename":"kiwi-9.16.8.tar.gz","has_sig":false,"md5_digest":"17c68b799724674a21fd852712c18d71","packagetype":"sdist","python_version":"source","requires_python":null,"size":518493,"upload_time":"2018-08-08T19:49:05","upload_time_iso_8601":"2018-08-08T19:49:05.308450Z","url":"https://files.pythonhosted.org/packages/42/6c/01a8d782799212673608844faad8b2e231fa7587a254f9002948f44942e3/kiwi-9.16.8.tar.gz","yanked":false}],"9.16.9":[{"comment_text":"","digests":{"md5":"b014fb5cfb0f3e4afccb9ac5a13c878c","sha256":"27eafc32203e3ec252a4958a93438de17f57c0042fba8f42717bc9f41905470d"},"downloads":-1,"filename":"kiwi-9.16.9.tar.gz","has_sig":false,"md5_digest":"b014fb5cfb0f3e4afccb9ac5a13c878c","packagetype":"sdist","python_version":"source","requires_python":null,"size":518434,"upload_time":"2018-08-20T15:15:46","upload_time_iso_8601":"2018-08-20T15:15:46.001014Z","url":"https://files.pythonhosted.org/packages/a5/8f/893b7782b4177da4b228976548ed140a0a37122518f57676e5afff8c7f8b/kiwi-9.16.9.tar.gz","yanked":false}],"9.17.0":[{"comment_text":"","digests":{"md5":"214455e15aea092a530468c5b3cc45a6","sha256":"febff953510b8ee3c97f9b51c57346ae9c152ee12b3d940db55b8b1c9f7b27ca"},"downloads":-1,"filename":"kiwi-9.17.0.tar.gz","has_sig":false,"md5_digest":"214455e15aea092a530468c5b3cc45a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":470260,"upload_time":"2018-11-06T15:08:43","upload_time_iso_8601":"2018-11-06T15:08:43.119506Z","url":"https://files.pythonhosted.org/packages/ed/ba/4324f48f4aa87dd7ff15d449da7a3349ff4976468237ffa4bd76a6083718/kiwi-9.17.0.tar.gz","yanked":false}],"9.17.1":[{"comment_text":"","digests":{"md5":"95f1f0fa0d60569453ce9ba12a993130","sha256":"580aa29e4f158d58f9fbeb42e9a96f0839c859f0f0938ff86cad330dd1eb251d"},"downloads":-1,"filename":"kiwi-9.17.1.tar.gz","has_sig":false,"md5_digest":"95f1f0fa0d60569453ce9ba12a993130","packagetype":"sdist","python_version":"source","requires_python":null,"size":471979,"upload_time":"2018-11-09T10:34:47","upload_time_iso_8601":"2018-11-09T10:34:47.701922Z","url":"https://files.pythonhosted.org/packages/fe/87/30917e5deefe3067088c56b139e656e403730ff275a7a7ac6f4ef92464d7/kiwi-9.17.1.tar.gz","yanked":false}],"9.17.10":[{"comment_text":"","digests":{"md5":"d106d3445747247e3ed7e338fe76284d","sha256":"49a7e8bfd280d2acd54a5919527086ea622ced9f4692e2eacfc9c4bc00f8f7e5"},"downloads":-1,"filename":"kiwi-9.17.10.tar.gz","has_sig":false,"md5_digest":"d106d3445747247e3ed7e338fe76284d","packagetype":"sdist","python_version":"source","requires_python":null,"size":481466,"upload_time":"2019-01-24T09:16:25","upload_time_iso_8601":"2019-01-24T09:16:25.096005Z","url":"https://files.pythonhosted.org/packages/24/88/061b80d4ff9a3e4d69fdce268be4e8789c74e6fd498d286f51a1d0212c2a/kiwi-9.17.10.tar.gz","yanked":false}],"9.17.11":[{"comment_text":"","digests":{"md5":"a5090f5ee4898eb17320d6a27dd1cf95","sha256":"7607391de1848d45f7ac3e992b2aee6b6807f13910688f29cabff6f20ae85c7d"},"downloads":-1,"filename":"kiwi-9.17.11.tar.gz","has_sig":false,"md5_digest":"a5090f5ee4898eb17320d6a27dd1cf95","packagetype":"sdist","python_version":"source","requires_python":null,"size":481391,"upload_time":"2019-01-24T10:42:07","upload_time_iso_8601":"2019-01-24T10:42:07.317862Z","url":"https://files.pythonhosted.org/packages/b0/ff/f0a885b7c8a6a4fb19cd799638ec3363d8a3a66fd756f72f7c76b9da8dfb/kiwi-9.17.11.tar.gz","yanked":false}],"9.17.12":[{"comment_text":"","digests":{"md5":"fe43e58b18e620c651c9104e129d6883","sha256":"21bd238639b8b4001fc7ae0cc235bbd979f9cce40de0b752b6b60d7af3a55bd6"},"downloads":-1,"filename":"kiwi-9.17.12.tar.gz","has_sig":false,"md5_digest":"fe43e58b18e620c651c9104e129d6883","packagetype":"sdist","python_version":"source","requires_python":null,"size":482376,"upload_time":"2019-01-28T16:53:04","upload_time_iso_8601":"2019-01-28T16:53:04.730018Z","url":"https://files.pythonhosted.org/packages/1b/4f/0b334ffda33ffd61171dcb2c0a9366b6397a667b9538f7b66e61860beb3f/kiwi-9.17.12.tar.gz","yanked":false}],"9.17.13":[{"comment_text":"","digests":{"md5":"c2a08e67ee0d7bf82d94da3faa7fe014","sha256":"650b37645832270a685d937e3a0c2da3a748812c4e1c98f35fca013618974726"},"downloads":-1,"filename":"kiwi-9.17.13.tar.gz","has_sig":false,"md5_digest":"c2a08e67ee0d7bf82d94da3faa7fe014","packagetype":"sdist","python_version":"source","requires_python":null,"size":482418,"upload_time":"2019-01-29T12:21:49","upload_time_iso_8601":"2019-01-29T12:21:49.202557Z","url":"https://files.pythonhosted.org/packages/df/dc/fa2ce476600a9c74c22268c1ae05402d8c56b6a93f46e24190ab916d2c4b/kiwi-9.17.13.tar.gz","yanked":false}],"9.17.15":[{"comment_text":"","digests":{"md5":"e1bf3c1432b46e7e6d3871fa5e9e5842","sha256":"bc30c1e8d46719f7207876468f38de7aa51d6b8c16e713f2467b29e1126cae06"},"downloads":-1,"filename":"kiwi-9.17.15.tar.gz","has_sig":false,"md5_digest":"e1bf3c1432b46e7e6d3871fa5e9e5842","packagetype":"sdist","python_version":"source","requires_python":null,"size":482419,"upload_time":"2019-01-31T10:30:11","upload_time_iso_8601":"2019-01-31T10:30:11.326777Z","url":"https://files.pythonhosted.org/packages/d5/e0/3c1b330d892015b1eebe6780cac1e352fe93263accef7d4504c0c0442458/kiwi-9.17.15.tar.gz","yanked":false}],"9.17.16":[{"comment_text":"","digests":{"md5":"8f986153bec834eccc18e6f93aba6507","sha256":"fb0b7a69a29ee23812a652b89a1b7284877266c746426d0ea5bb472cbecf9034"},"downloads":-1,"filename":"kiwi-9.17.16.tar.gz","has_sig":false,"md5_digest":"8f986153bec834eccc18e6f93aba6507","packagetype":"sdist","python_version":"source","requires_python":null,"size":484696,"upload_time":"2019-02-08T11:10:09","upload_time_iso_8601":"2019-02-08T11:10:09.088840Z","url":"https://files.pythonhosted.org/packages/10/9c/6ec256d059af1457c74004c61832a5edb1a21503a2b28c12bec04e48b360/kiwi-9.17.16.tar.gz","yanked":false}],"9.17.17":[{"comment_text":"","digests":{"md5":"65d702f27654160f13fee95a92df4737","sha256":"f8354b413e569e5ff967694ed2189e2044a8b2123101c556ef098373bc4dc8ae"},"downloads":-1,"filename":"kiwi-9.17.17.tar.gz","has_sig":false,"md5_digest":"65d702f27654160f13fee95a92df4737","packagetype":"sdist","python_version":"source","requires_python":null,"size":486758,"upload_time":"2019-02-09T15:10:50","upload_time_iso_8601":"2019-02-09T15:10:50.993540Z","url":"https://files.pythonhosted.org/packages/69/e4/e21648cd4f49ab6d8d46174539050f72729966fab9b871630376a29d9557/kiwi-9.17.17.tar.gz","yanked":false}],"9.17.18":[{"comment_text":"","digests":{"md5":"4fa61730114564dabb93bf18c6b0f3cd","sha256":"400f2f63b2c26279a1594893861c5850bf4ed4a7754ced06195edc9e6efa5ba7"},"downloads":-1,"filename":"kiwi-9.17.18.tar.gz","has_sig":false,"md5_digest":"4fa61730114564dabb93bf18c6b0f3cd","packagetype":"sdist","python_version":"source","requires_python":null,"size":487221,"upload_time":"2019-02-14T10:23:40","upload_time_iso_8601":"2019-02-14T10:23:40.098387Z","url":"https://files.pythonhosted.org/packages/a5/55/5071f1a959028d7856fe9be32742f1459e760b1f1fee49933de98b85f887/kiwi-9.17.18.tar.gz","yanked":false}],"9.17.19":[{"comment_text":"","digests":{"md5":"ab502ed4a57bb363e6ff6b57cb14ae90","sha256":"001cdb43a452733694b9e9fc6643b54e1e63b155d1062a55d921e2f534ae6592"},"downloads":-1,"filename":"kiwi-9.17.19.tar.gz","has_sig":false,"md5_digest":"ab502ed4a57bb363e6ff6b57cb14ae90","packagetype":"sdist","python_version":"source","requires_python":null,"size":487216,"upload_time":"2019-02-14T20:38:50","upload_time_iso_8601":"2019-02-14T20:38:50.885216Z","url":"https://files.pythonhosted.org/packages/ca/dd/847776248d40bf68d9e6ef081d955d3f8a55eeaeb89e586d33d7fbc3f291/kiwi-9.17.19.tar.gz","yanked":false}],"9.17.2":[{"comment_text":"","digests":{"md5":"f977453a0685ccdb584ae99f88ca5dde","sha256":"24abbff6a24c58b4238ce8fcf302283f6b319aeefb2355e572508da3b14af04b"},"downloads":-1,"filename":"kiwi-9.17.2.tar.gz","has_sig":false,"md5_digest":"f977453a0685ccdb584ae99f88ca5dde","packagetype":"sdist","python_version":"source","requires_python":null,"size":472760,"upload_time":"2018-11-23T13:44:41","upload_time_iso_8601":"2018-11-23T13:44:41.405096Z","url":"https://files.pythonhosted.org/packages/79/30/bc87f779e8d8237cfa154a6f7fe07f0757404af20535e8a1d5a93d02cc33/kiwi-9.17.2.tar.gz","yanked":false}],"9.17.20":[{"comment_text":"","digests":{"md5":"b51d6a21ae102edd82eb8194595ed76a","sha256":"615033eb8122bdc1e4f718ecd7f3b7a84829689c3d4d356673b8d7e95269e676"},"downloads":-1,"filename":"kiwi-9.17.20.tar.gz","has_sig":false,"md5_digest":"b51d6a21ae102edd82eb8194595ed76a","packagetype":"sdist","python_version":"source","requires_python":null,"size":490688,"upload_time":"2019-02-22T16:11:49","upload_time_iso_8601":"2019-02-22T16:11:49.669995Z","url":"https://files.pythonhosted.org/packages/d9/cd/a2aefc8b9664cefc32cea8641c15fa0afb270dd8af86ca52a6e5be9c2ede/kiwi-9.17.20.tar.gz","yanked":false}],"9.17.21":[{"comment_text":"","digests":{"md5":"324467592b097c8592b952ab36c2c1e5","sha256":"c4f9d0c7b6a28aef3cee702a87add00573f336f85ed15024a2884b8f8e996ced"},"downloads":-1,"filename":"kiwi-9.17.21.tar.gz","has_sig":false,"md5_digest":"324467592b097c8592b952ab36c2c1e5","packagetype":"sdist","python_version":"source","requires_python":null,"size":490735,"upload_time":"2019-02-22T16:23:58","upload_time_iso_8601":"2019-02-22T16:23:58.434230Z","url":"https://files.pythonhosted.org/packages/5d/e3/ca360e723cb497145cf0e3c14c803b57303a3164ff1d326f2c0615956da8/kiwi-9.17.21.tar.gz","yanked":false}],"9.17.22":[{"comment_text":"","digests":{"md5":"447a738843079081f2ffe2e884fe5a8a","sha256":"b4e9fa3beaf861d8595b63e0d8fac656ea4d5214b9578b6e022429683e443c1c"},"downloads":-1,"filename":"kiwi-9.17.22.tar.gz","has_sig":false,"md5_digest":"447a738843079081f2ffe2e884fe5a8a","packagetype":"sdist","python_version":"source","requires_python":null,"size":490695,"upload_time":"2019-02-23T19:56:31","upload_time_iso_8601":"2019-02-23T19:56:31.763990Z","url":"https://files.pythonhosted.org/packages/78/5d/16e2ac7d03353aa4ad73e53dc00b9e8a41ad95ef7182af2d7e6a1298a564/kiwi-9.17.22.tar.gz","yanked":false}],"9.17.23":[{"comment_text":"","digests":{"md5":"d96fe9bfe7b8fdece4336eeea9f818e8","sha256":"5a6ac9d0aa32361e0336278dee941868430a48e411d59bd3f9f3f4dcb469d074"},"downloads":-1,"filename":"kiwi-9.17.23.tar.gz","has_sig":false,"md5_digest":"d96fe9bfe7b8fdece4336eeea9f818e8","packagetype":"sdist","python_version":"source","requires_python":null,"size":491971,"upload_time":"2019-02-27T14:21:28","upload_time_iso_8601":"2019-02-27T14:21:28.012222Z","url":"https://files.pythonhosted.org/packages/ce/c4/5b576af078e61fb2a4c8f76ebed33fc9e4ed8d0125d0a5f19fdc75d6e7aa/kiwi-9.17.23.tar.gz","yanked":false}],"9.17.24":[{"comment_text":"","digests":{"md5":"51a0c88d5c42fbb56d4f0704d8efd0ec","sha256":"6b29822df17c79c9c2c1eb4a256ddc613d2710de0cdbf9df7f8dab3010622a44"},"downloads":-1,"filename":"kiwi-9.17.24.tar.gz","has_sig":false,"md5_digest":"51a0c88d5c42fbb56d4f0704d8efd0ec","packagetype":"sdist","python_version":"source","requires_python":null,"size":492663,"upload_time":"2019-03-07T14:51:46","upload_time_iso_8601":"2019-03-07T14:51:46.170533Z","url":"https://files.pythonhosted.org/packages/b4/2e/a16d632b9d939a56745784a84394b89d7d8030929d1b7f72efbc48ee5bb9/kiwi-9.17.24.tar.gz","yanked":false}],"9.17.25":[{"comment_text":"","digests":{"md5":"874c5083ca5ffb9387f8c7df90ae363d","sha256":"d80493b98896f0a50ff84bec34e2573998738ee7755a5167e074973ee5110fe5"},"downloads":-1,"filename":"kiwi-9.17.25.tar.gz","has_sig":false,"md5_digest":"874c5083ca5ffb9387f8c7df90ae363d","packagetype":"sdist","python_version":"source","requires_python":null,"size":492634,"upload_time":"2019-03-07T15:19:27","upload_time_iso_8601":"2019-03-07T15:19:27.889238Z","url":"https://files.pythonhosted.org/packages/24/db/1d7c0ea648314e3486771355797b71f84100aba28237518fd6223f95a77d/kiwi-9.17.25.tar.gz","yanked":false}],"9.17.26":[{"comment_text":"","digests":{"md5":"70c2a734ca9694a0df31727f24f37bfd","sha256":"9e3ad944f387a126718db7bdf499e54737a0989a26014d53eb712e1362df02c0"},"downloads":-1,"filename":"kiwi-9.17.26.tar.gz","has_sig":false,"md5_digest":"70c2a734ca9694a0df31727f24f37bfd","packagetype":"sdist","python_version":"source","requires_python":null,"size":492728,"upload_time":"2019-03-07T15:53:25","upload_time_iso_8601":"2019-03-07T15:53:25.660353Z","url":"https://files.pythonhosted.org/packages/eb/38/95cf60273e29f1dae54bb0338c4ad5b46fa7736d2b06be4eb6d27c948fd5/kiwi-9.17.26.tar.gz","yanked":false}],"9.17.27":[{"comment_text":"","digests":{"md5":"a3a0c3378d642a2b7d700189811745e0","sha256":"bf9a7196fff61108454472d40766bbe27284ec9da1bba09d8d1b20e5d663ff9c"},"downloads":-1,"filename":"kiwi-9.17.27.tar.gz","has_sig":false,"md5_digest":"a3a0c3378d642a2b7d700189811745e0","packagetype":"sdist","python_version":"source","requires_python":null,"size":492739,"upload_time":"2019-03-10T14:50:59","upload_time_iso_8601":"2019-03-10T14:50:59.163785Z","url":"https://files.pythonhosted.org/packages/49/68/317a5efec4a0d4dbdbec2062ddeb039b46ad8b23c8edab7f1c26dba60615/kiwi-9.17.27.tar.gz","yanked":false}],"9.17.28":[{"comment_text":"","digests":{"md5":"4db155cb3c10f5b3a34fd71b8aa20119","sha256":"e6e62048014f7ca5545201a5094598e0b352572abca9b7cb662dcdcaa8bba9da"},"downloads":-1,"filename":"kiwi-9.17.28.tar.gz","has_sig":false,"md5_digest":"4db155cb3c10f5b3a34fd71b8aa20119","packagetype":"sdist","python_version":"source","requires_python":null,"size":629619,"upload_time":"2019-03-13T13:51:12","upload_time_iso_8601":"2019-03-13T13:51:12.086165Z","url":"https://files.pythonhosted.org/packages/b5/37/1f4353da62a7f1db6b51c6e1cfa99f7f14abc73e88b87cd8503c24919a45/kiwi-9.17.28.tar.gz","yanked":false}],"9.17.29":[{"comment_text":"","digests":{"md5":"524e29f35a82d59001646bac6b3facda","sha256":"950ce1e0c65b9b94e2289508c836e04610f0b28b952dd4df1e13bb3d8f3d025e"},"downloads":-1,"filename":"kiwi-9.17.29.tar.gz","has_sig":false,"md5_digest":"524e29f35a82d59001646bac6b3facda","packagetype":"sdist","python_version":"source","requires_python":null,"size":629736,"upload_time":"2019-03-13T14:02:32","upload_time_iso_8601":"2019-03-13T14:02:32.827952Z","url":"https://files.pythonhosted.org/packages/fd/1e/9c56671a31ea2102e09105e2407a30a8cdd4a38a647f6de8cf2407563b49/kiwi-9.17.29.tar.gz","yanked":false}],"9.17.3":[{"comment_text":"","digests":{"md5":"c169d91baf3f67f0a677907eb6ae1465","sha256":"c9c822a1f0b43d0cb0c3fb399f5b73c44ec2a0943db42220e4a143c13db4173b"},"downloads":-1,"filename":"kiwi-9.17.3.tar.gz","has_sig":false,"md5_digest":"c169d91baf3f67f0a677907eb6ae1465","packagetype":"sdist","python_version":"source","requires_python":null,"size":473190,"upload_time":"2018-11-26T14:47:13","upload_time_iso_8601":"2018-11-26T14:47:13.393349Z","url":"https://files.pythonhosted.org/packages/57/7e/bf504af570992d19cc605156844c9a1bd5740423a18bd45998230abe38f5/kiwi-9.17.3.tar.gz","yanked":false}],"9.17.30":[{"comment_text":"","digests":{"md5":"445cbd16ea81c2f6565ad82f14838b60","sha256":"ca20f566577698772de8ca2159f46f5f41b7d66f1717cf428ff317dce80a44cb"},"downloads":-1,"filename":"kiwi-9.17.30.tar.gz","has_sig":false,"md5_digest":"445cbd16ea81c2f6565ad82f14838b60","packagetype":"sdist","python_version":"source","requires_python":null,"size":630176,"upload_time":"2019-03-14T15:34:10","upload_time_iso_8601":"2019-03-14T15:34:10.033907Z","url":"https://files.pythonhosted.org/packages/13/a0/65a13716842c2be8ebbec731f2ddaa54caa2c2175b805f38675d15093f5d/kiwi-9.17.30.tar.gz","yanked":false}],"9.17.31":[{"comment_text":"","digests":{"md5":"3912ee471c65ef861d6db9eae1dcef2a","sha256":"0b93717a0ee9a5eb31dd11eb1552c4ca2e5c06192e7a0d1f93181520fb6dfe06"},"downloads":-1,"filename":"kiwi-9.17.31.tar.gz","has_sig":false,"md5_digest":"3912ee471c65ef861d6db9eae1dcef2a","packagetype":"sdist","python_version":"source","requires_python":null,"size":714156,"upload_time":"2019-03-17T19:11:29","upload_time_iso_8601":"2019-03-17T19:11:29.185023Z","url":"https://files.pythonhosted.org/packages/5a/24/00413ece15ce2da6d07d02adee89279d51bc18c0549d4b9f9531336cb54a/kiwi-9.17.31.tar.gz","yanked":false}],"9.17.32":[{"comment_text":"","digests":{"md5":"165f3f3ef15b92236182ea7779dde223","sha256":"d80039885e645f09e506b5094d1b039e70e0cb52b86bbc689af84b35da49ed59"},"downloads":-1,"filename":"kiwi-9.17.32.tar.gz","has_sig":false,"md5_digest":"165f3f3ef15b92236182ea7779dde223","packagetype":"sdist","python_version":"source","requires_python":null,"size":714140,"upload_time":"2019-03-19T09:31:18","upload_time_iso_8601":"2019-03-19T09:31:18.400491Z","url":"https://files.pythonhosted.org/packages/4b/f9/bb160bca67fa78efc9aef2df992c2be6c6d96ead248ab209f516924409e7/kiwi-9.17.32.tar.gz","yanked":false}],"9.17.33":[{"comment_text":"","digests":{"md5":"6603916f28c727c68fe693e61a6f6ecd","sha256":"04c31493ec4bd3f021b28e0034836221bb771b2ff15a5fa0d2b383417d2e2dee"},"downloads":-1,"filename":"kiwi-9.17.33.tar.gz","has_sig":false,"md5_digest":"6603916f28c727c68fe693e61a6f6ecd","packagetype":"sdist","python_version":"source","requires_python":null,"size":715131,"upload_time":"2019-03-28T14:50:14","upload_time_iso_8601":"2019-03-28T14:50:14.048390Z","url":"https://files.pythonhosted.org/packages/ab/6d/507bac82d8be4fcc850e20314e766c20661d1741268ddbd8fd2bc9c34fb3/kiwi-9.17.33.tar.gz","yanked":false}],"9.17.34":[{"comment_text":"","digests":{"md5":"4ed105a0a073162864bea2e188e9b7fd","sha256":"a0ed32d4a4d9af8c357b712dc1ba30a3b54478c006ffe9581ee758141b563bc7"},"downloads":-1,"filename":"kiwi-9.17.34.tar.gz","has_sig":false,"md5_digest":"4ed105a0a073162864bea2e188e9b7fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":718233,"upload_time":"2019-03-29T15:18:40","upload_time_iso_8601":"2019-03-29T15:18:40.600158Z","url":"https://files.pythonhosted.org/packages/2c/6a/7c6a05d991c499f6c30e3892dc1781c5288671a05905871dd7c50f1df391/kiwi-9.17.34.tar.gz","yanked":false}],"9.17.36":[{"comment_text":"","digests":{"md5":"f1c499eb2d277798ad9d7b855ea1edde","sha256":"200dbc24029bd6f40e7fca9720fd69b13fa87a36299aff53799d98c73f14e1b5"},"downloads":-1,"filename":"kiwi-9.17.36.tar.gz","has_sig":false,"md5_digest":"f1c499eb2d277798ad9d7b855ea1edde","packagetype":"sdist","python_version":"source","requires_python":null,"size":715117,"upload_time":"2019-04-10T17:07:29","upload_time_iso_8601":"2019-04-10T17:07:29.911666Z","url":"https://files.pythonhosted.org/packages/c3/b9/a0e51df7f1d796a69148f1eac0a4bfa80a24ee06ff1dc7c6eedc98589ce0/kiwi-9.17.36.tar.gz","yanked":false}],"9.17.37":[{"comment_text":"","digests":{"md5":"e5d3426bcaeb270f00f50715f478853b","sha256":"8ccedd0c2a723bee9958fa07005366a418b37e947d604d050abf4f2b5f6220cf"},"downloads":-1,"filename":"kiwi-9.17.37.tar.gz","has_sig":false,"md5_digest":"e5d3426bcaeb270f00f50715f478853b","packagetype":"sdist","python_version":"source","requires_python":null,"size":715333,"upload_time":"2019-04-11T07:58:50","upload_time_iso_8601":"2019-04-11T07:58:50.609703Z","url":"https://files.pythonhosted.org/packages/33/00/970285e9c560b6685f71c5c1c0307da51f3daba521f01348fab28415e29f/kiwi-9.17.37.tar.gz","yanked":false}],"9.17.38":[{"comment_text":"","digests":{"md5":"e8524c34be15324c79d6608f7b9414f0","sha256":"9c4000fce6b5bfbcaa7a8c0af5ac89348c44cce4f4109121f6fcda56636d637f"},"downloads":-1,"filename":"kiwi-9.17.38.tar.gz","has_sig":false,"md5_digest":"e8524c34be15324c79d6608f7b9414f0","packagetype":"sdist","python_version":"source","requires_python":null,"size":715778,"upload_time":"2019-04-22T22:00:09","upload_time_iso_8601":"2019-04-22T22:00:09.398025Z","url":"https://files.pythonhosted.org/packages/f7/28/321c90ad9238198735e9e3f8b621f148919f45a0e1e8eb4ac2d1f2bd1d97/kiwi-9.17.38.tar.gz","yanked":false}],"9.17.39":[{"comment_text":"","digests":{"md5":"ccc31b08249dd0ffdf2402b6e20de53e","sha256":"4177e089884ab0e72c3c07abd5484f8dc7e6da14a934b46856f7edb88e247e84"},"downloads":-1,"filename":"kiwi-9.17.39.tar.gz","has_sig":false,"md5_digest":"ccc31b08249dd0ffdf2402b6e20de53e","packagetype":"sdist","python_version":"source","requires_python":null,"size":717275,"upload_time":"2019-05-24T07:13:21","upload_time_iso_8601":"2019-05-24T07:13:21.837782Z","url":"https://files.pythonhosted.org/packages/82/27/f1ed7abba101975d9fe49b08336c07088be68325c5637bc58786439d84c5/kiwi-9.17.39.tar.gz","yanked":false}],"9.17.4":[{"comment_text":"","digests":{"md5":"4e1844e07f1ca81e5b7f5b62ab4aa747","sha256":"f8f5717d1e12126d9bd858df6f442c4dac59b9e8d9efa781cef1f71b42fadb1d"},"downloads":-1,"filename":"kiwi-9.17.4.tar.gz","has_sig":false,"md5_digest":"4e1844e07f1ca81e5b7f5b62ab4aa747","packagetype":"sdist","python_version":"source","requires_python":null,"size":473666,"upload_time":"2018-12-11T07:34:16","upload_time_iso_8601":"2018-12-11T07:34:16.067275Z","url":"https://files.pythonhosted.org/packages/a3/a7/d963a05f9f282dbc58a95acc3390551fcaf117b0aa214036b78b4074b078/kiwi-9.17.4.tar.gz","yanked":false}],"9.17.40":[{"comment_text":"","digests":{"md5":"a29a14b5fddd20db3a831392341ca5b1","sha256":"d0b5bcf10859e74ecf229692f3747f1a73220944f29c660f282517d8f821075f"},"downloads":-1,"filename":"kiwi-9.17.40.tar.gz","has_sig":false,"md5_digest":"a29a14b5fddd20db3a831392341ca5b1","packagetype":"sdist","python_version":"source","requires_python":null,"size":718500,"upload_time":"2019-06-07T08:34:16","upload_time_iso_8601":"2019-06-07T08:34:16.301373Z","url":"https://files.pythonhosted.org/packages/24/8d/f4f4dd1bc5b18cf9abea612b6c780a20b13b9fda9d4c22ef7866f8bcc080/kiwi-9.17.40.tar.gz","yanked":false}],"9.17.41":[{"comment_text":"","digests":{"md5":"f395dc8e01192d6372ae0ff1c7353828","sha256":"229e6148a6dd9aeaa0bac5217d802ce4b6588dd3353ba67e5298a6ac46eb27d9"},"downloads":-1,"filename":"kiwi-9.17.41.tar.gz","has_sig":false,"md5_digest":"f395dc8e01192d6372ae0ff1c7353828","packagetype":"sdist","python_version":"source","requires_python":null,"size":720282,"upload_time":"2019-07-04T08:35:07","upload_time_iso_8601":"2019-07-04T08:35:07.504457Z","url":"https://files.pythonhosted.org/packages/74/5d/e3ba8524e4ff27a14c43894c9076516539f12ee513c79213e64dabde3387/kiwi-9.17.41.tar.gz","yanked":false}],"9.17.42":[{"comment_text":"","digests":{"md5":"b0ea8799514e358007937c2a76f70948","sha256":"b58f884d562724c4a7d242d5085c56988ea88a37353ae1de9fe45b15a850ee7e"},"downloads":-1,"filename":"kiwi-9.17.42.tar.gz","has_sig":false,"md5_digest":"b0ea8799514e358007937c2a76f70948","packagetype":"sdist","python_version":"source","requires_python":null,"size":721371,"upload_time":"2019-07-08T10:20:48","upload_time_iso_8601":"2019-07-08T10:20:48.238717Z","url":"https://files.pythonhosted.org/packages/09/be/ad94e4d6fc0e154c01064179571dc50c277cc3e63116d02f55d9c82335d5/kiwi-9.17.42.tar.gz","yanked":false}],"9.17.5":[{"comment_text":"","digests":{"md5":"b6009be6097bfe9d22c7e92ad07d3c6c","sha256":"4c188879ed34d47bea48c3a3ed076f094c559db98275b8fdbb517c50cc897235"},"downloads":-1,"filename":"kiwi-9.17.5.tar.gz","has_sig":false,"md5_digest":"b6009be6097bfe9d22c7e92ad07d3c6c","packagetype":"sdist","python_version":"source","requires_python":null,"size":479655,"upload_time":"2018-12-12T11:37:15","upload_time_iso_8601":"2018-12-12T11:37:15.660218Z","url":"https://files.pythonhosted.org/packages/d6/f0/41bee9bb7a60a775b8437cf02bd6445975018e49b91ae20e4099c28b70ff/kiwi-9.17.5.tar.gz","yanked":false}],"9.17.6":[{"comment_text":"","digests":{"md5":"d0d75089fb1fbfd49d327ccc8f157150","sha256":"5585b936a0d95ca639347b070b54bd157c42267e09450af8bfa0f16dffe7151b"},"downloads":-1,"filename":"kiwi-9.17.6.tar.gz","has_sig":false,"md5_digest":"d0d75089fb1fbfd49d327ccc8f157150","packagetype":"sdist","python_version":"source","requires_python":null,"size":479742,"upload_time":"2018-12-19T08:29:37","upload_time_iso_8601":"2018-12-19T08:29:37.337137Z","url":"https://files.pythonhosted.org/packages/d8/65/888d9d25eabfc80bf81aadcab61aeb7af2f94a32d7cf05e8f3d3d5ac19d3/kiwi-9.17.6.tar.gz","yanked":false}],"9.17.7":[{"comment_text":"","digests":{"md5":"54a16517c4db123abcf70caf7a0a53de","sha256":"8322c6b2214f8dbadd39f0a755de83eff3c582cf381396bb127490b4d8820480"},"downloads":-1,"filename":"kiwi-9.17.7.tar.gz","has_sig":false,"md5_digest":"54a16517c4db123abcf70caf7a0a53de","packagetype":"sdist","python_version":"source","requires_python":null,"size":480473,"upload_time":"2019-01-07T10:31:55","upload_time_iso_8601":"2019-01-07T10:31:55.586632Z","url":"https://files.pythonhosted.org/packages/91/0e/f79b72ac97a2df141061c98b0c18ab6163d5137bca92af77ba233419398b/kiwi-9.17.7.tar.gz","yanked":false}],"9.17.8":[{"comment_text":"","digests":{"md5":"175385249cec4f45298065d1bf4845e5","sha256":"e9859e1c4ff9cffcc18f09d7e3b10196f9138d3f53519d949e5425d73e7038e7"},"downloads":-1,"filename":"kiwi-9.17.8.tar.gz","has_sig":false,"md5_digest":"175385249cec4f45298065d1bf4845e5","packagetype":"sdist","python_version":"source","requires_python":null,"size":480878,"upload_time":"2019-01-11T10:12:17","upload_time_iso_8601":"2019-01-11T10:12:17.129318Z","url":"https://files.pythonhosted.org/packages/25/0f/f19c8c2baca5fc2b7bb8427dec786a682a724030aff6cdf701858392abee/kiwi-9.17.8.tar.gz","yanked":false}],"9.17.9":[{"comment_text":"","digests":{"md5":"c2a4352ee19008b9d04096f480f1747b","sha256":"e4b008c430804e7f70af4f5236419c69bddbc424251de3f45e1b6c66488edf16"},"downloads":-1,"filename":"kiwi-9.17.9.tar.gz","has_sig":false,"md5_digest":"c2a4352ee19008b9d04096f480f1747b","packagetype":"sdist","python_version":"source","requires_python":null,"size":481410,"upload_time":"2019-01-17T13:35:13","upload_time_iso_8601":"2019-01-17T13:35:13.270876Z","url":"https://files.pythonhosted.org/packages/27/6c/276ca9a4c88a909bb855eb038e4314c9e6e4017a7f316fef851b9c9d80f6/kiwi-9.17.9.tar.gz","yanked":false}],"9.18.0":[{"comment_text":"","digests":{"md5":"a87560195645b8993d9eea932f33d51e","sha256":"52a82961dc562db78c354e1959bdecd273d98737c9eaeeb0f2c856fde4f099f5"},"downloads":-1,"filename":"kiwi-9.18.0.tar.gz","has_sig":false,"md5_digest":"a87560195645b8993d9eea932f33d51e","packagetype":"sdist","python_version":"source","requires_python":null,"size":719376,"upload_time":"2019-07-11T15:23:41","upload_time_iso_8601":"2019-07-11T15:23:41.032237Z","url":"https://files.pythonhosted.org/packages/33/36/109901c0be471d9ca16d1b04af124a362c494b95bdd0dbabd2bec0feaee5/kiwi-9.18.0.tar.gz","yanked":false}],"9.18.1":[{"comment_text":"","digests":{"md5":"79f8b7e3174e22af60d01971f999ae38","sha256":"436c1696622307cccfe5ec8ead206e4fcfe797c7b07cb576c552a288a024de60"},"downloads":-1,"filename":"kiwi-9.18.1.tar.gz","has_sig":false,"md5_digest":"79f8b7e3174e22af60d01971f999ae38","packagetype":"sdist","python_version":"source","requires_python":null,"size":719352,"upload_time":"2019-07-12T06:55:12","upload_time_iso_8601":"2019-07-12T06:55:12.127499Z","url":"https://files.pythonhosted.org/packages/b6/7b/8bc1fec97900be5e94af1921907eb5a8b53e3efa04556ebdb0af028838ca/kiwi-9.18.1.tar.gz","yanked":false}],"9.18.10":[{"comment_text":"","digests":{"md5":"b37d77465c0fe340188b46b571930af6","sha256":"16d445c0eec374156b04a107cfe277ad09ec1281a7601c8b1de77a14bca37d3a"},"downloads":-1,"filename":"kiwi-9.18.10.tar.gz","has_sig":false,"md5_digest":"b37d77465c0fe340188b46b571930af6","packagetype":"sdist","python_version":"source","requires_python":null,"size":720907,"upload_time":"2019-09-06T09:51:54","upload_time_iso_8601":"2019-09-06T09:51:54.541959Z","url":"https://files.pythonhosted.org/packages/f9/07/5cffb067705a37d779a59666f10c681235f42e0abb8308d86a0d6fe9fa92/kiwi-9.18.10.tar.gz","yanked":false}],"9.18.11":[{"comment_text":"","digests":{"md5":"347a8d06e0c79e9db644c9c35def7eec","sha256":"3ab63796196f8ef77ef20ffd576d38bc2d59859df59505e7047f99d8a0c5f916"},"downloads":-1,"filename":"kiwi-9.18.11.tar.gz","has_sig":false,"md5_digest":"347a8d06e0c79e9db644c9c35def7eec","packagetype":"sdist","python_version":"source","requires_python":null,"size":721020,"upload_time":"2019-08-14T10:16:00","upload_time_iso_8601":"2019-08-14T10:16:00.233725Z","url":"https://files.pythonhosted.org/packages/c7/5c/c637f03fa53d13b13834ee524e8b7dda6e3ab5de4a5f55c6c0f8c319c5ba/kiwi-9.18.11.tar.gz","yanked":false}],"9.18.12":[{"comment_text":"","digests":{"md5":"12d1053436bcb037ecd0c59721abc720","sha256":"98260b734862607c45d51036b963c08e63f362f1e077a1de1002f598168cbcd7"},"downloads":-1,"filename":"kiwi-9.18.12.tar.gz","has_sig":false,"md5_digest":"12d1053436bcb037ecd0c59721abc720","packagetype":"sdist","python_version":"source","requires_python":null,"size":722129,"upload_time":"2019-08-20T08:02:39","upload_time_iso_8601":"2019-08-20T08:02:39.292276Z","url":"https://files.pythonhosted.org/packages/ad/5b/bf8e6d7408584e4aa248e5eac9cd3ac92b7a2713eb082208928d77787112/kiwi-9.18.12.tar.gz","yanked":false}],"9.18.13":[{"comment_text":"","digests":{"md5":"7c96c4f014327de9b0b59c1f8ea23f21","sha256":"0fbdb88c7aa147ef4481a99712ad5cb4613be3f39d181603a8de7ee14a44e377"},"downloads":-1,"filename":"kiwi-9.18.13.tar.gz","has_sig":false,"md5_digest":"7c96c4f014327de9b0b59c1f8ea23f21","packagetype":"sdist","python_version":"source","requires_python":null,"size":722936,"upload_time":"2019-09-06T09:57:26","upload_time_iso_8601":"2019-09-06T09:57:26.101927Z","url":"https://files.pythonhosted.org/packages/6d/8a/6f9307afc0a33c65268ec7d2e945076b8804bf1a138e7e68f21f76e66ece/kiwi-9.18.13.tar.gz","yanked":false}],"9.18.14":[{"comment_text":"","digests":{"md5":"46ebcc0b4a41fa0e9fb7d99f3bc47c39","sha256":"10c4eb3a82e03a94b551e02fd2fe915526473df0abedb22bec5a07a4c7c3c646"},"downloads":-1,"filename":"kiwi-9.18.14.tar.gz","has_sig":false,"md5_digest":"46ebcc0b4a41fa0e9fb7d99f3bc47c39","packagetype":"sdist","python_version":"source","requires_python":null,"size":722961,"upload_time":"2019-09-13T09:22:13","upload_time_iso_8601":"2019-09-13T09:22:13.601022Z","url":"https://files.pythonhosted.org/packages/cf/c0/956eee813820b69cf3fef471c3a871ba7403c273cfe4e53fee6655ad863d/kiwi-9.18.14.tar.gz","yanked":false}],"9.18.15":[{"comment_text":"","digests":{"md5":"db21c82721450c65c749eef43d4743ef","sha256":"d568e2b7158972fe0c195a8a474e2fa2317e98db81951fca5dabaa58418ad90b"},"downloads":-1,"filename":"kiwi-9.18.15.tar.gz","has_sig":false,"md5_digest":"db21c82721450c65c749eef43d4743ef","packagetype":"sdist","python_version":"source","requires_python":null,"size":723093,"upload_time":"2019-09-13T09:27:28","upload_time_iso_8601":"2019-09-13T09:27:28.890778Z","url":"https://files.pythonhosted.org/packages/6f/67/e28d1e054a223c647712421d5c77ce52fdd1e57e9dd3a7fa9b97fcc38236/kiwi-9.18.15.tar.gz","yanked":false}],"9.18.16":[{"comment_text":"","digests":{"md5":"89ad55fa1ddeab1ffe566f624c0efcdb","sha256":"0754461eb1e8d596c02ef934a92acdf4c4110fcde69406e21a36431b17f51ac0"},"downloads":-1,"filename":"kiwi-9.18.16.tar.gz","has_sig":false,"md5_digest":"89ad55fa1ddeab1ffe566f624c0efcdb","packagetype":"sdist","python_version":"source","requires_python":null,"size":723095,"upload_time":"2019-09-17T11:47:22","upload_time_iso_8601":"2019-09-17T11:47:22.341046Z","url":"https://files.pythonhosted.org/packages/56/d4/a233dbd186cadd85566425ab4dac9d22f0f0ba7ff5671bc1d0065a3b91f5/kiwi-9.18.16.tar.gz","yanked":false}],"9.18.17":[{"comment_text":"","digests":{"md5":"4ee21d78ed197c92befacdf598834aee","sha256":"faea7ddf1bbc72058c8f294af6e18aec2aaf170d50e1d563fb6cd93733753d56"},"downloads":-1,"filename":"kiwi-9.18.17.tar.gz","has_sig":false,"md5_digest":"4ee21d78ed197c92befacdf598834aee","packagetype":"sdist","python_version":"source","requires_python":null,"size":723109,"upload_time":"2019-09-20T08:24:02","upload_time_iso_8601":"2019-09-20T08:24:02.314909Z","url":"https://files.pythonhosted.org/packages/bf/e6/ee88b59ad1ee57c8e783f0ef83b4f7d6366be7e68a87d7ce06586b93e4fe/kiwi-9.18.17.tar.gz","yanked":false}],"9.18.18":[{"comment_text":"","digests":{"md5":"a2833f741408ea267858fe88d6966191","sha256":"36dfece8a65a9b622cfd577d6f5d7c9c073757d40f91986ec94b79932a92372a"},"downloads":-1,"filename":"kiwi-9.18.18.tar.gz","has_sig":false,"md5_digest":"a2833f741408ea267858fe88d6966191","packagetype":"sdist","python_version":"source","requires_python":null,"size":723500,"upload_time":"2019-09-25T13:45:54","upload_time_iso_8601":"2019-09-25T13:45:54.779318Z","url":"https://files.pythonhosted.org/packages/56/15/94e217bdd8c0f9e17b3d49d30ec72449904d57707986b79850590e929a8b/kiwi-9.18.18.tar.gz","yanked":false}],"9.18.19":[{"comment_text":"","digests":{"md5":"66f499355fe2cd4923215e392adcea4c","sha256":"0a31028700f4b3e5c6ddc797a7f5e5979f67ac551c3c5ee0bf28f7c6272c6384"},"downloads":-1,"filename":"kiwi-9.18.19.tar.gz","has_sig":false,"md5_digest":"66f499355fe2cd4923215e392adcea4c","packagetype":"sdist","python_version":"source","requires_python":null,"size":723747,"upload_time":"2019-10-10T09:48:36","upload_time_iso_8601":"2019-10-10T09:48:36.806556Z","url":"https://files.pythonhosted.org/packages/3b/5b/bebb5d04ee26a651bebd21885d1fa9caf77956b2b39eb90fcf6eb54b2184/kiwi-9.18.19.tar.gz","yanked":false}],"9.18.2":[{"comment_text":"","digests":{"md5":"80e7979450a55a84a6ad8305384d8b64","sha256":"fccb9e70e9d65048a51ca958b957b18ae404a0ed42db7dec7b493d528f295bea"},"downloads":-1,"filename":"kiwi-9.18.2.tar.gz","has_sig":false,"md5_digest":"80e7979450a55a84a6ad8305384d8b64","packagetype":"sdist","python_version":"source","requires_python":null,"size":719412,"upload_time":"2019-07-12T08:54:17","upload_time_iso_8601":"2019-07-12T08:54:17.637961Z","url":"https://files.pythonhosted.org/packages/b2/a7/38d1d966937ca8882b12ccd905aa2967f3f7926b83cbcfbed1881a1bf1c4/kiwi-9.18.2.tar.gz","yanked":false}],"9.18.20":[{"comment_text":"","digests":{"md5":"94ac328426e5ce672094619afa3285b1","sha256":"c91969f4e2df949e66175dffa688d2713cb0e79669031b3cd19156503d4960eb"},"downloads":-1,"filename":"kiwi-9.18.20.tar.gz","has_sig":false,"md5_digest":"94ac328426e5ce672094619afa3285b1","packagetype":"sdist","python_version":"source","requires_python":null,"size":724870,"upload_time":"2019-10-16T15:02:26","upload_time_iso_8601":"2019-10-16T15:02:26.206779Z","url":"https://files.pythonhosted.org/packages/0c/e2/320f0b22dbe1bf69107813e620f10e0d1112a34124304e300e2bf7aad737/kiwi-9.18.20.tar.gz","yanked":false}],"9.18.21":[{"comment_text":"","digests":{"md5":"ebf3c3968c4defb981ca2b1e8226428b","sha256":"100008589d1e53021984d1c0e4b814622a78d478728b1164534152b332946952"},"downloads":-1,"filename":"kiwi-9.18.21.tar.gz","has_sig":false,"md5_digest":"ebf3c3968c4defb981ca2b1e8226428b","packagetype":"sdist","python_version":"source","requires_python":null,"size":724888,"upload_time":"2019-10-17T09:27:55","upload_time_iso_8601":"2019-10-17T09:27:55.210591Z","url":"https://files.pythonhosted.org/packages/d2/69/297ee7d7bfcfcea42058bc57c183e7f4ccb11e532f37ad9549e5eb6c0779/kiwi-9.18.21.tar.gz","yanked":false}],"9.18.22":[{"comment_text":"","digests":{"md5":"25c5b6e0f5958b893a257f76cf90f542","sha256":"b1ccc66c5501bd1a7d28ba1077972fcf312e38ed324e9e5ddd5fbf45430a56f7"},"downloads":-1,"filename":"kiwi-9.18.22.tar.gz","has_sig":false,"md5_digest":"25c5b6e0f5958b893a257f76cf90f542","packagetype":"sdist","python_version":"source","requires_python":null,"size":725137,"upload_time":"2019-10-17T09:23:16","upload_time_iso_8601":"2019-10-17T09:23:16.028682Z","url":"https://files.pythonhosted.org/packages/d1/91/f6049ec5ce9f6350cdbc4852baad83e2056be19c45260450f50a80089ad8/kiwi-9.18.22.tar.gz","yanked":false}],"9.18.23":[{"comment_text":"","digests":{"md5":"a2fee9bb8128987c90fa2a973890de5e","sha256":"c41afbfdaad659c3f70466daf92915c43d0bca761e294357a2177fa8fd87962e"},"downloads":-1,"filename":"kiwi-9.18.23.tar.gz","has_sig":false,"md5_digest":"a2fee9bb8128987c90fa2a973890de5e","packagetype":"sdist","python_version":"source","requires_python":null,"size":725215,"upload_time":"2019-10-17T13:37:44","upload_time_iso_8601":"2019-10-17T13:37:44.814124Z","url":"https://files.pythonhosted.org/packages/70/46/162d912dbbf951b39b641ff4cef97617f25a30374035ecbed2d1c888cfee/kiwi-9.18.23.tar.gz","yanked":false}],"9.18.24":[{"comment_text":"","digests":{"md5":"906b765779d75e12e73e3404cc99221f","sha256":"9f36449dbbefe9bd2296cf2f12a3d5cee31d9d22d4b890fe701299dd7389067a"},"downloads":-1,"filename":"kiwi-9.18.24.tar.gz","has_sig":false,"md5_digest":"906b765779d75e12e73e3404cc99221f","packagetype":"sdist","python_version":"source","requires_python":null,"size":725227,"upload_time":"2019-10-17T13:32:20","upload_time_iso_8601":"2019-10-17T13:32:20.343032Z","url":"https://files.pythonhosted.org/packages/7c/c2/13dd23608222231db30431fc26e3fa2ba6c237b16171923364adee9137b1/kiwi-9.18.24.tar.gz","yanked":false}],"9.18.25":[{"comment_text":"","digests":{"md5":"b2fbd0f734c74bc9387354d65e476105","sha256":"5285e663737eab37d8a8fdbfc6fe39cc945e117c185cb8a6f9e5d72f89265329"},"downloads":-1,"filename":"kiwi-9.18.25.tar.gz","has_sig":false,"md5_digest":"b2fbd0f734c74bc9387354d65e476105","packagetype":"sdist","python_version":"source","requires_python":null,"size":725488,"upload_time":"2019-10-17T14:54:26","upload_time_iso_8601":"2019-10-17T14:54:26.318869Z","url":"https://files.pythonhosted.org/packages/ac/aa/da2ccafcff17587518545bf66be0dfbbb0380249901687847ce1e3dc9844/kiwi-9.18.25.tar.gz","yanked":false}],"9.18.26":[{"comment_text":"","digests":{"md5":"64c8aab475fe6693a3bb5320fee985ab","sha256":"a14575e5912aa97738a7c60117e7014cbfa9230dd27edb51506c81ac89703fee"},"downloads":-1,"filename":"kiwi-9.18.26.tar.gz","has_sig":false,"md5_digest":"64c8aab475fe6693a3bb5320fee985ab","packagetype":"sdist","python_version":"source","requires_python":null,"size":714836,"upload_time":"2019-10-23T10:43:27","upload_time_iso_8601":"2019-10-23T10:43:27.713473Z","url":"https://files.pythonhosted.org/packages/7a/ad/487d63ebd0091d17b847078bf5a8ce44e1aea70e187397e7472acb44397c/kiwi-9.18.26.tar.gz","yanked":false}],"9.18.27":[{"comment_text":"","digests":{"md5":"2e2b4e2891a4f60d17bdcf6d64555a9c","sha256":"a903c20ae8bd0def33abeaef716bb07ec0d06a5d7af7f2eff67c9f3613c8a198"},"downloads":-1,"filename":"kiwi-9.18.27.tar.gz","has_sig":false,"md5_digest":"2e2b4e2891a4f60d17bdcf6d64555a9c","packagetype":"sdist","python_version":"source","requires_python":null,"size":716500,"upload_time":"2019-10-25T07:47:53","upload_time_iso_8601":"2019-10-25T07:47:53.838558Z","url":"https://files.pythonhosted.org/packages/bd/62/e6642692b60e64e4ac7cd9ba85272256a136abaa61cf5b5a943a84e28f2b/kiwi-9.18.27.tar.gz","yanked":false}],"9.18.28":[{"comment_text":"","digests":{"md5":"bb575a12838e2a212b9f5cd6b4a27743","sha256":"87aa79560f795af477ccb2ee37e2ce14a93545b2fa96c9a2d7b7a889adb54c38"},"downloads":-1,"filename":"kiwi-9.18.28.tar.gz","has_sig":false,"md5_digest":"bb575a12838e2a212b9f5cd6b4a27743","packagetype":"sdist","python_version":"source","requires_python":null,"size":716492,"upload_time":"2019-10-28T09:30:25","upload_time_iso_8601":"2019-10-28T09:30:25.399026Z","url":"https://files.pythonhosted.org/packages/93/37/051368c5ed1413e006e025caef8a1b9f1c72f5f926d64f10b44f22edcad0/kiwi-9.18.28.tar.gz","yanked":false}],"9.18.29":[{"comment_text":"","digests":{"md5":"0a5f5b6f80ae9514ff1606b3110994cb","sha256":"913d9955deaf8e096228021d2263bdc214a4b1fc8fb55dfdc480e85a40edea52"},"downloads":-1,"filename":"kiwi-9.18.29.tar.gz","has_sig":false,"md5_digest":"0a5f5b6f80ae9514ff1606b3110994cb","packagetype":"sdist","python_version":"source","requires_python":null,"size":717682,"upload_time":"2019-10-29T09:21:26","upload_time_iso_8601":"2019-10-29T09:21:26.310068Z","url":"https://files.pythonhosted.org/packages/01/4e/9198319704fd286971faefccdd8cdb072ac2ec5b75039df62f5c29b56715/kiwi-9.18.29.tar.gz","yanked":false}],"9.18.3":[{"comment_text":"","digests":{"md5":"ee0a39406bb1487befcf878c74251e36","sha256":"ee00584f75df6d5f57c0282953aff4a24a9ce770d051064a7069010e6ad90156"},"downloads":-1,"filename":"kiwi-9.18.3.tar.gz","has_sig":false,"md5_digest":"ee0a39406bb1487befcf878c74251e36","packagetype":"sdist","python_version":"source","requires_python":null,"size":719781,"upload_time":"2019-07-16T10:12:35","upload_time_iso_8601":"2019-07-16T10:12:35.397823Z","url":"https://files.pythonhosted.org/packages/ba/3c/ae77a5f167d9aa6f27cfe5f4c6d227dc9bbb17807fdbb0885ecd969d2645/kiwi-9.18.3.tar.gz","yanked":false}],"9.18.30":[{"comment_text":"","digests":{"md5":"8ac37c867557ea5e8ad15dafbdf93fa1","sha256":"8a4193b488b69c7097590c1885c408ff37ebf067a0a14f60aa5311b7ba8c4942"},"downloads":-1,"filename":"kiwi-9.18.30.tar.gz","has_sig":false,"md5_digest":"8ac37c867557ea5e8ad15dafbdf93fa1","packagetype":"sdist","python_version":"source","requires_python":null,"size":717704,"upload_time":"2019-10-31T13:54:06","upload_time_iso_8601":"2019-10-31T13:54:06.540755Z","url":"https://files.pythonhosted.org/packages/9d/cd/d873224b1c70b5f063f98d250c244e61a9327a82d02a5f142faba9460f37/kiwi-9.18.30.tar.gz","yanked":false}],"9.18.31":[{"comment_text":"","digests":{"md5":"d58740bb668ed99352b264b6edb3993d","sha256":"af15e688f0491712cddef4fdbb391eea9ce28402eebc56baec7577ecbf0ccca4"},"downloads":-1,"filename":"kiwi-9.18.31.tar.gz","has_sig":false,"md5_digest":"d58740bb668ed99352b264b6edb3993d","packagetype":"sdist","python_version":"source","requires_python":null,"size":717671,"upload_time":"2019-11-07T15:14:53","upload_time_iso_8601":"2019-11-07T15:14:53.990237Z","url":"https://files.pythonhosted.org/packages/65/51/d610de26409f5704ab0e1b5689881d333dd7f9d5f1be186125ebdd3ed694/kiwi-9.18.31.tar.gz","yanked":false}],"9.18.32":[{"comment_text":"","digests":{"md5":"e67bff346a9a63e2c66324f701e0c9a9","sha256":"45e56fe7ee9ff0c62d5e2a7b483a3ec9a89a8f5889e6950597674492ed4ddc79"},"downloads":-1,"filename":"kiwi-9.18.32.tar.gz","has_sig":false,"md5_digest":"e67bff346a9a63e2c66324f701e0c9a9","packagetype":"sdist","python_version":"source","requires_python":null,"size":717681,"upload_time":"2019-11-14T11:49:01","upload_time_iso_8601":"2019-11-14T11:49:01.033090Z","url":"https://files.pythonhosted.org/packages/98/1b/43fb7c1143e646a5da9545ab2d252bb8fc4fb5473d431aaa8137d2c35b50/kiwi-9.18.32.tar.gz","yanked":false}],"9.18.34":[{"comment_text":"","digests":{"md5":"70e79845cee3c52d0bf8cbaa29f2a19c","sha256":"fa5a6d331bd43e3446c2eb995f88a79f58da9728fba00e476a4383dc834cb2be"},"downloads":-1,"filename":"kiwi-9.18.34.tar.gz","has_sig":false,"md5_digest":"70e79845cee3c52d0bf8cbaa29f2a19c","packagetype":"sdist","python_version":"source","requires_python":null,"size":717791,"upload_time":"2019-11-19T08:16:37","upload_time_iso_8601":"2019-11-19T08:16:37.446099Z","url":"https://files.pythonhosted.org/packages/2a/36/e4fbe31f0bc0ce2cc26e6c3ac0b6b469fd81a2b2655fb61022273dd4c168/kiwi-9.18.34.tar.gz","yanked":false}],"9.18.35":[{"comment_text":"","digests":{"md5":"01b62dc92770800de021bf23b3baf8e1","sha256":"fad729c4cb11c381c1eb42272fa166e18b2a7edd36dabe449812e1d5bf3ce84f"},"downloads":-1,"filename":"kiwi-9.18.35.tar.gz","has_sig":false,"md5_digest":"01b62dc92770800de021bf23b3baf8e1","packagetype":"sdist","python_version":"source","requires_python":null,"size":717751,"upload_time":"2019-11-20T11:52:19","upload_time_iso_8601":"2019-11-20T11:52:19.829568Z","url":"https://files.pythonhosted.org/packages/42/6e/fb7b3f5c814f7bba0de528351dcc974702eaed1e23c02c96bdf99a29f6c5/kiwi-9.18.35.tar.gz","yanked":false}],"9.18.4":[{"comment_text":"","digests":{"md5":"317d15597724a01ca032428123dd67a2","sha256":"48d50c4f20509e690294a90c791a717ea9c692099615ae00af23570ee6db2c52"},"downloads":-1,"filename":"kiwi-9.18.4.tar.gz","has_sig":false,"md5_digest":"317d15597724a01ca032428123dd67a2","packagetype":"sdist","python_version":"source","requires_python":null,"size":720315,"upload_time":"2019-07-19T14:04:19","upload_time_iso_8601":"2019-07-19T14:04:19.138739Z","url":"https://files.pythonhosted.org/packages/ec/ab/15c44338fb7ed8708e38f1ac7e052c0347f0054a033be79fa47706505e63/kiwi-9.18.4.tar.gz","yanked":false}],"9.18.5":[{"comment_text":"","digests":{"md5":"ca88c2153a795b394f176d51ba2d1086","sha256":"9b224fa3d78f2cfbf842d9ba7d9988932c99dc78c0d1b4483f9bafef03ac0665"},"downloads":-1,"filename":"kiwi-9.18.5.tar.gz","has_sig":false,"md5_digest":"ca88c2153a795b394f176d51ba2d1086","packagetype":"sdist","python_version":"source","requires_python":null,"size":720321,"upload_time":"2019-07-19T15:02:04","upload_time_iso_8601":"2019-07-19T15:02:04.742971Z","url":"https://files.pythonhosted.org/packages/c7/3e/d30d9a6292f0168b0690dfa0cffe1a0d76426c349d1a3108e6a06196224c/kiwi-9.18.5.tar.gz","yanked":false}],"9.18.6":[{"comment_text":"","digests":{"md5":"a7948003b8687c3e72416e68f982b210","sha256":"1295b99897a82bbadfc2d797e66e8beb6d3c0dcb9085f9fa6821e21a521630c9"},"downloads":-1,"filename":"kiwi-9.18.6.tar.gz","has_sig":false,"md5_digest":"a7948003b8687c3e72416e68f982b210","packagetype":"sdist","python_version":"source","requires_python":null,"size":720462,"upload_time":"2019-07-22T07:15:18","upload_time_iso_8601":"2019-07-22T07:15:18.636578Z","url":"https://files.pythonhosted.org/packages/85/0c/1113e8589da6ee2ef5b641ad1051cb24f8511324b39d487f67053a7b02cb/kiwi-9.18.6.tar.gz","yanked":false}],"9.18.7":[{"comment_text":"","digests":{"md5":"041be1c1b5cd0fbb49516a8941e2ec21","sha256":"08302e9ffc333c87da9e708952c5add0b3b96588f3d198624756f4768bcddf93"},"downloads":-1,"filename":"kiwi-9.18.7.tar.gz","has_sig":false,"md5_digest":"041be1c1b5cd0fbb49516a8941e2ec21","packagetype":"sdist","python_version":"source","requires_python":null,"size":720454,"upload_time":"2019-07-23T08:09:33","upload_time_iso_8601":"2019-07-23T08:09:33.998331Z","url":"https://files.pythonhosted.org/packages/ad/72/3be2947db4b33442dea79b3c6a6e52b5cf4fb76241eb7d2d19416bb3990c/kiwi-9.18.7.tar.gz","yanked":false}],"9.18.8":[{"comment_text":"","digests":{"md5":"2c7ecfe8b82507b604047f0de42b731b","sha256":"eeec744a801ad25a783a3409f9ee7913e0aab08e0d0abf5b4f30270a1d39c80f"},"downloads":-1,"filename":"kiwi-9.18.8.tar.gz","has_sig":false,"md5_digest":"2c7ecfe8b82507b604047f0de42b731b","packagetype":"sdist","python_version":"source","requires_python":null,"size":720696,"upload_time":"2019-07-25T09:21:00","upload_time_iso_8601":"2019-07-25T09:21:00.530451Z","url":"https://files.pythonhosted.org/packages/5b/1a/b47818e4a4f58deaa459d98dc066844662510d098dde9c4b844264e5b7a4/kiwi-9.18.8.tar.gz","yanked":false}],"9.18.9":[{"comment_text":"","digests":{"md5":"360f793557f4d8226ba5e214beb500c5","sha256":"e37bd5c5f9ee8597131f6becd99d601c41866c8f9d77b43633e418f54a6137ac"},"downloads":-1,"filename":"kiwi-9.18.9.tar.gz","has_sig":false,"md5_digest":"360f793557f4d8226ba5e214beb500c5","packagetype":"sdist","python_version":"source","requires_python":null,"size":720603,"upload_time":"2019-07-26T14:40:37","upload_time_iso_8601":"2019-07-26T14:40:37.741048Z","url":"https://files.pythonhosted.org/packages/5d/08/c32ded2f2aaa612646f51fc9ea27aa03972fd5101db964d60d92860e5ee2/kiwi-9.18.9.tar.gz","yanked":false}],"9.19.0":[{"comment_text":"","digests":{"md5":"92daf5678ce1416cf72e9285a98225f4","sha256":"d6d095404647e0b46fd133e27645293aed1ab75931c2cdf4a26e0e24bc397178"},"downloads":-1,"filename":"kiwi-9.19.0.tar.gz","has_sig":false,"md5_digest":"92daf5678ce1416cf72e9285a98225f4","packagetype":"sdist","python_version":"source","requires_python":null,"size":718716,"upload_time":"2019-11-25T14:33:23","upload_time_iso_8601":"2019-11-25T14:33:23.606899Z","url":"https://files.pythonhosted.org/packages/96/20/4751671d442e81091c13fa414d13b59ee620b37b2c0fdec2b3384b8f4a3c/kiwi-9.19.0.tar.gz","yanked":false}],"9.19.1":[{"comment_text":"","digests":{"md5":"f1286a9c52b989e97a1cd0e898e1d270","sha256":"5adeab746f00b8cc7e2f55c1c05d9e2ad43668deec4ce185ec3ae812d200a72c"},"downloads":-1,"filename":"kiwi-9.19.1.tar.gz","has_sig":false,"md5_digest":"f1286a9c52b989e97a1cd0e898e1d270","packagetype":"sdist","python_version":"source","requires_python":null,"size":718650,"upload_time":"2019-11-25T15:08:47","upload_time_iso_8601":"2019-11-25T15:08:47.425479Z","url":"https://files.pythonhosted.org/packages/57/ae/9ecb43953eb7e1d9f7ebdf5097d49f1a58256ef0db004afd6b60c8f02a7b/kiwi-9.19.1.tar.gz","yanked":false}],"9.19.10":[{"comment_text":"","digests":{"md5":"b2368857c82fee36de9a613b7a487f51","sha256":"8afa2895c2931424f97d8ede3b562eb1fcc1edf4df1b2bc3e7f047c39a2afc67"},"downloads":-1,"filename":"kiwi-9.19.10.tar.gz","has_sig":false,"md5_digest":"b2368857c82fee36de9a613b7a487f51","packagetype":"sdist","python_version":"source","requires_python":null,"size":716765,"upload_time":"2020-01-13T09:24:56","upload_time_iso_8601":"2020-01-13T09:24:56.806730Z","url":"https://files.pythonhosted.org/packages/4d/13/6c069657efec4b6158bf2ee71a72e21fbb13e437d81139fc7d251981fa93/kiwi-9.19.10.tar.gz","yanked":false}],"9.19.11":[{"comment_text":"","digests":{"md5":"cc895839155e3baf8e48d3e43e69d2e6","sha256":"4bcf57d9ae2ee800f6315242d5cd8647f16d0f7425abfe174af2cacbfc271ed7"},"downloads":-1,"filename":"kiwi-9.19.11.tar.gz","has_sig":false,"md5_digest":"cc895839155e3baf8e48d3e43e69d2e6","packagetype":"sdist","python_version":"source","requires_python":null,"size":717639,"upload_time":"2020-01-17T09:53:00","upload_time_iso_8601":"2020-01-17T09:53:00.033443Z","url":"https://files.pythonhosted.org/packages/29/ba/0c446fd90c02414428122990ca59bfb5b666de6e9145302561c2f054f99a/kiwi-9.19.11.tar.gz","yanked":false}],"9.19.13":[{"comment_text":"","digests":{"md5":"3b2d553ef4e765c0eef75e6430cc517f","sha256":"03e4c7f09a0a301488b9621d4f9c18620ec8acfb61e8f28a9625a521c151eb66"},"downloads":-1,"filename":"kiwi-9.19.13.tar.gz","has_sig":false,"md5_digest":"3b2d553ef4e765c0eef75e6430cc517f","packagetype":"sdist","python_version":"source","requires_python":null,"size":717519,"upload_time":"2020-01-20T16:02:37","upload_time_iso_8601":"2020-01-20T16:02:37.242924Z","url":"https://files.pythonhosted.org/packages/8f/78/b87e0b99a6accefa1852464424d1a9b055b023ef0b13ac5a92f0ec4b71d4/kiwi-9.19.13.tar.gz","yanked":false}],"9.19.14":[{"comment_text":"","digests":{"md5":"d1336f889fc17a37e4ed99122144d0d3","sha256":"9004f25fa3c0b7eefc3e12e632d316e26741d4463c74b5c04dec1ff4e187285a"},"downloads":-1,"filename":"kiwi-9.19.14.tar.gz","has_sig":false,"md5_digest":"d1336f889fc17a37e4ed99122144d0d3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717477,"upload_time":"2020-01-24T09:34:38","upload_time_iso_8601":"2020-01-24T09:34:38.734980Z","url":"https://files.pythonhosted.org/packages/b4/bb/82ccdb78e9979658e7999c89fdea752d4f4b617071c443a4fdcab53b3e92/kiwi-9.19.14.tar.gz","yanked":false}],"9.19.15":[{"comment_text":"","digests":{"md5":"96d0e0b32d464c4012e8f2c05d25668c","sha256":"1216f0169fb328d599281f08f093559d2f17d443fa2c5264957eb5bdfa557874"},"downloads":-1,"filename":"kiwi-9.19.15.tar.gz","has_sig":false,"md5_digest":"96d0e0b32d464c4012e8f2c05d25668c","packagetype":"sdist","python_version":"source","requires_python":null,"size":717683,"upload_time":"2020-02-02T19:25:36","upload_time_iso_8601":"2020-02-02T19:25:36.634244Z","url":"https://files.pythonhosted.org/packages/55/5d/4b2953b8eaacf9c9170b8e248eb065bdc76ade3da1bc0f9b2008d3347275/kiwi-9.19.15.tar.gz","yanked":false}],"9.19.16":[{"comment_text":"","digests":{"md5":"0e50272f5500a947037e0d1d2f5db6b3","sha256":"75fc4a4367bef29a1422b69a4b3d71948bfe2f75fef134c431ab6c03d1cc75d3"},"downloads":-1,"filename":"kiwi-9.19.16.tar.gz","has_sig":false,"md5_digest":"0e50272f5500a947037e0d1d2f5db6b3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717694,"upload_time":"2020-02-06T09:19:37","upload_time_iso_8601":"2020-02-06T09:19:37.798007Z","url":"https://files.pythonhosted.org/packages/7f/05/0620570fb5da6eeae95f4ee6ab1ec1e82f8fb41885020ee486493cce60b7/kiwi-9.19.16.tar.gz","yanked":false}],"9.19.2":[{"comment_text":"","digests":{"md5":"91bad697be5dfe75834bcab0e2cb3b1f","sha256":"13f323afcbbb881ffe3828737c0d18b6b89258d50cb491a3493ff3071106e8cb"},"downloads":-1,"filename":"kiwi-9.19.2.tar.gz","has_sig":false,"md5_digest":"91bad697be5dfe75834bcab0e2cb3b1f","packagetype":"sdist","python_version":"source","requires_python":null,"size":718740,"upload_time":"2019-11-25T21:19:34","upload_time_iso_8601":"2019-11-25T21:19:34.632713Z","url":"https://files.pythonhosted.org/packages/b9/7e/3e386b4c70248e2ee238d37c84d6c3af03544ed932442110c3e5c059cf97/kiwi-9.19.2.tar.gz","yanked":false}],"9.19.3":[{"comment_text":"","digests":{"md5":"9bb388150343ba768a109cb8e46db042","sha256":"c903ec88f0cdc5fa7e414a5753e079b0f7db5c84d289a0eab7185b90ded6a248"},"downloads":-1,"filename":"kiwi-9.19.3.tar.gz","has_sig":false,"md5_digest":"9bb388150343ba768a109cb8e46db042","packagetype":"sdist","python_version":"source","requires_python":null,"size":718727,"upload_time":"2019-11-26T09:23:54","upload_time_iso_8601":"2019-11-26T09:23:54.041968Z","url":"https://files.pythonhosted.org/packages/9b/9b/8d9a7a8e311a2128cd78d9b0ab45e4b7abc602edbe3a087f22c86ace4b6c/kiwi-9.19.3.tar.gz","yanked":false}],"9.19.4":[{"comment_text":"","digests":{"md5":"7a978602a2288466bca3ef9a19718df0","sha256":"ccdf1972ab2713beedff8b31b0e8eaa7aa062995094f73a0608b68664422bcf3"},"downloads":-1,"filename":"kiwi-9.19.4.tar.gz","has_sig":false,"md5_digest":"7a978602a2288466bca3ef9a19718df0","packagetype":"sdist","python_version":"source","requires_python":null,"size":718742,"upload_time":"2019-11-26T10:54:06","upload_time_iso_8601":"2019-11-26T10:54:06.346309Z","url":"https://files.pythonhosted.org/packages/71/bd/ce71843e4d5914750e32bbb79d879fbade13bdd81463a3855658b3f5871c/kiwi-9.19.4.tar.gz","yanked":false}],"9.19.5":[{"comment_text":"","digests":{"md5":"97606a3ec17b77a10467a9527b65b8a1","sha256":"f28366670f93bcd8093470f88638cf913910bffaf4daa934c48373f8157a8bfb"},"downloads":-1,"filename":"kiwi-9.19.5.tar.gz","has_sig":false,"md5_digest":"97606a3ec17b77a10467a9527b65b8a1","packagetype":"sdist","python_version":"source","requires_python":null,"size":719551,"upload_time":"2019-12-02T11:39:45","upload_time_iso_8601":"2019-12-02T11:39:45.332323Z","url":"https://files.pythonhosted.org/packages/c6/b3/d18be9ca3930c5a661718336acb9b22f831386c0aed7a06f6430a2b397c4/kiwi-9.19.5.tar.gz","yanked":false}],"9.19.6":[{"comment_text":"","digests":{"md5":"1f7b6fd83f09a04790c6c7cde4216cb9","sha256":"031905526f0ce2d419de0755aaa6dfc8f54949fc447966e5452bc937bc407ad0"},"downloads":-1,"filename":"kiwi-9.19.6.tar.gz","has_sig":false,"md5_digest":"1f7b6fd83f09a04790c6c7cde4216cb9","packagetype":"sdist","python_version":"source","requires_python":null,"size":719474,"upload_time":"2019-12-04T16:50:45","upload_time_iso_8601":"2019-12-04T16:50:45.835413Z","url":"https://files.pythonhosted.org/packages/87/e6/aac99fdf464ddf5580f28c4a28c005300218cb399bff1c5e7797c7c28bad/kiwi-9.19.6.tar.gz","yanked":false}],"9.19.7":[{"comment_text":"","digests":{"md5":"131201c9e897cf48a185e8a21c19153f","sha256":"2e80c463cb045272056da7a511848bbc959e9ce1668804143bebcd834af5759d"},"downloads":-1,"filename":"kiwi-9.19.7.tar.gz","has_sig":false,"md5_digest":"131201c9e897cf48a185e8a21c19153f","packagetype":"sdist","python_version":"source","requires_python":null,"size":719517,"upload_time":"2020-01-13T09:28:50","upload_time_iso_8601":"2020-01-13T09:28:50.561764Z","url":"https://files.pythonhosted.org/packages/55/c3/26ca2ce7ab5fc77913eb13ceb388a6d7d7e50830193c095a06b5435fff72/kiwi-9.19.7.tar.gz","yanked":false}],"9.19.8":[{"comment_text":"","digests":{"md5":"3cec43e319f866faf403dc5216cf2068","sha256":"0257fa7b5a58670f93c8e49d91d606bb18b272f2b5d0853553d01956520abf35"},"downloads":-1,"filename":"kiwi-9.19.8.tar.gz","has_sig":false,"md5_digest":"3cec43e319f866faf403dc5216cf2068","packagetype":"sdist","python_version":"source","requires_python":null,"size":719596,"upload_time":"2019-12-20T09:06:36","upload_time_iso_8601":"2019-12-20T09:06:36.929542Z","url":"https://files.pythonhosted.org/packages/db/7a/8a6a4ab3fb6124d59ad8d86b7a7f29a921d2c4f25d904a2e75f4e8bd6a1a/kiwi-9.19.8.tar.gz","yanked":false}],"9.19.9":[{"comment_text":"","digests":{"md5":"3b335ea04a8f0acc2f545494dca0dc14","sha256":"34e20cbaedde17110cdac16dd94cdcbeec17d4a631351ddcb3c6bc078f4dce14"},"downloads":-1,"filename":"kiwi-9.19.9.tar.gz","has_sig":false,"md5_digest":"3b335ea04a8f0acc2f545494dca0dc14","packagetype":"sdist","python_version":"source","requires_python":null,"size":717229,"upload_time":"2020-01-11T21:45:30","upload_time_iso_8601":"2020-01-11T21:45:30.337235Z","url":"https://files.pythonhosted.org/packages/28/0e/e4b2aa628419ba7c32d6df0357a5c05dc4a64e96c1102edacd0f2fd26372/kiwi-9.19.9.tar.gz","yanked":false}],"9.2.0":[{"comment_text":"","digests":{"md5":"259382822f3cc762a8823fa9e448987c","sha256":"c7e14caeeb3e76c624d835f1c4b9b8b3dc6ca3b77571b2523bf415824efdd5cb"},"downloads":-1,"filename":"kiwi-9.2.0.tar.gz","has_sig":false,"md5_digest":"259382822f3cc762a8823fa9e448987c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2772441,"upload_time":"2017-02-27T14:55:44","upload_time_iso_8601":"2017-02-27T14:55:44.272762Z","url":"https://files.pythonhosted.org/packages/3f/d8/cdffba17b4f78d2620e822a127c087219f22f3e1e95ec61fd3b47d50638a/kiwi-9.2.0.tar.gz","yanked":false}],"9.2.3":[{"comment_text":"","digests":{"md5":"eff0f21efa0bb9c0270300cece8f357f","sha256":"74cbd24fdd5f6a81d90330407b47b723733a2345f60cf20b2b8c74ea491ee7ec"},"downloads":-1,"filename":"kiwi-9.2.3.tar.gz","has_sig":false,"md5_digest":"eff0f21efa0bb9c0270300cece8f357f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2778967,"upload_time":"2017-03-03T10:45:35","upload_time_iso_8601":"2017-03-03T10:45:35.073898Z","url":"https://files.pythonhosted.org/packages/1c/dd/ea83ac26f2c21ffedd4971428a54160bf0639b59c883fadd18c7f5620a95/kiwi-9.2.3.tar.gz","yanked":false}],"9.20.0":[{"comment_text":"","digests":{"md5":"3ff1d0ea71b6eff552eaa75b530bcf4d","sha256":"4b52499de033bf76423034cdf180e978c485dbd298eb37eb3c8cdd1919f4c3d2"},"downloads":-1,"filename":"kiwi-9.20.0.tar.gz","has_sig":false,"md5_digest":"3ff1d0ea71b6eff552eaa75b530bcf4d","packagetype":"sdist","python_version":"source","requires_python":null,"size":717658,"upload_time":"2020-02-15T15:09:12","upload_time_iso_8601":"2020-02-15T15:09:12.297145Z","url":"https://files.pythonhosted.org/packages/34/3e/319124640e9d3e37b59eef254dbc5d9be4eda3f7cbb9c68af11ac00f4463/kiwi-9.20.0.tar.gz","yanked":false}],"9.20.1":[{"comment_text":"","digests":{"md5":"299a135ef1f73edfb2b77c06abadbac3","sha256":"59d44323bd826f33810d14ca3b8fe35ec6c36c1ca31d27381dc22ecc902a0608"},"downloads":-1,"filename":"kiwi-9.20.1.tar.gz","has_sig":false,"md5_digest":"299a135ef1f73edfb2b77c06abadbac3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717735,"upload_time":"2020-02-19T17:17:33","upload_time_iso_8601":"2020-02-19T17:17:33.998097Z","url":"https://files.pythonhosted.org/packages/13/90/2c27a33be12983e2f4d54f5d1b2e8214a3a0b34c3a7cc3462535ede3888c/kiwi-9.20.1.tar.gz","yanked":false}],"9.20.2":[{"comment_text":"","digests":{"md5":"f09fa1f23a0529805a807e194e74eb4f","sha256":"81a08d782fbcafb114d3d2e1e2e572131e48078cea3fcf99accec54b7fce3b71"},"downloads":-1,"filename":"kiwi-9.20.2.tar.gz","has_sig":false,"md5_digest":"f09fa1f23a0529805a807e194e74eb4f","packagetype":"sdist","python_version":"source","requires_python":null,"size":718398,"upload_time":"2020-02-28T14:27:17","upload_time_iso_8601":"2020-02-28T14:27:17.363031Z","url":"https://files.pythonhosted.org/packages/2c/ee/f7f374c0b9019abd2b11888aae445d6cfe1bc902e20881c8fc97f5fa7152/kiwi-9.20.2.tar.gz","yanked":false}],"9.20.3":[{"comment_text":"","digests":{"md5":"5e8e451c3ffbf15df898fd72679b0903","sha256":"faf0f832e629096bbe531d8591d94b5915e629bdd2b5f0629f998a302cf110bb"},"downloads":-1,"filename":"kiwi-9.20.3.tar.gz","has_sig":false,"md5_digest":"5e8e451c3ffbf15df898fd72679b0903","packagetype":"sdist","python_version":"source","requires_python":null,"size":718421,"upload_time":"2020-03-03T08:06:16","upload_time_iso_8601":"2020-03-03T08:06:16.178784Z","url":"https://files.pythonhosted.org/packages/85/85/ef16fd7213bab56f0ff3ce7ff982c3914bc7a33f2e97594fc19fb97ecf3d/kiwi-9.20.3.tar.gz","yanked":false}],"9.20.4":[{"comment_text":"","digests":{"md5":"20e71497a93b2265c6a2c05170c9d7c3","sha256":"b3633ea182a87242463f88b2310a67a10850b9408a83301a0bdaba0677a07dfa"},"downloads":-1,"filename":"kiwi-9.20.4.tar.gz","has_sig":false,"md5_digest":"20e71497a93b2265c6a2c05170c9d7c3","packagetype":"sdist","python_version":"source","requires_python":null,"size":718538,"upload_time":"2020-03-04T17:42:04","upload_time_iso_8601":"2020-03-04T17:42:04.974848Z","url":"https://files.pythonhosted.org/packages/bc/d5/05135c6ff8e7d07e8a510b0171dd78857b824e7a95aa87bb8f6cef148515/kiwi-9.20.4.tar.gz","yanked":false}],"9.20.5":[{"comment_text":"","digests":{"md5":"6fe2ac7ac9bdb4e89edfd0258cd51f50","sha256":"a717c153c35a757334780117271790614fbe2e849830790c2b3e0d00878f1959"},"downloads":-1,"filename":"kiwi-9.20.5.tar.gz","has_sig":false,"md5_digest":"6fe2ac7ac9bdb4e89edfd0258cd51f50","packagetype":"sdist","python_version":"source","requires_python":null,"size":726437,"upload_time":"2020-03-27T09:54:34","upload_time_iso_8601":"2020-03-27T09:54:34.571749Z","url":"https://files.pythonhosted.org/packages/76/82/d2e1cd228fa7073c9b78863013886ec7d44b0052183486396e648a7a5d00/kiwi-9.20.5.tar.gz","yanked":false}],"9.20.6":[{"comment_text":"","digests":{"md5":"77ac34a20a1ac717c6ac60bf3ab9f23a","sha256":"99eeaf49fcc90b42c4898b405620075b35dcd2d8e8d000015fa8cfd3f57e92fd"},"downloads":-1,"filename":"kiwi-9.20.6.tar.gz","has_sig":false,"md5_digest":"77ac34a20a1ac717c6ac60bf3ab9f23a","packagetype":"sdist","python_version":"source","requires_python":null,"size":726850,"upload_time":"2020-04-03T14:24:43","upload_time_iso_8601":"2020-04-03T14:24:43.366041Z","url":"https://files.pythonhosted.org/packages/91/96/10b524b91f3a365cb1357560b04f3d9f3ba8e3b0a2665ddcc41612980137/kiwi-9.20.6.tar.gz","yanked":false}],"9.20.7":[{"comment_text":"","digests":{"md5":"9083d485b82ef0b9d1eb4e98d4dc0675","sha256":"84d82d7e210fe58d11c26a5ad971e47e10b18727b8d43f31d2e122285bb74ed0"},"downloads":-1,"filename":"kiwi-9.20.7.tar.gz","has_sig":false,"md5_digest":"9083d485b82ef0b9d1eb4e98d4dc0675","packagetype":"sdist","python_version":"source","requires_python":null,"size":727843,"upload_time":"2020-04-16T08:38:21","upload_time_iso_8601":"2020-04-16T08:38:21.609972Z","url":"https://files.pythonhosted.org/packages/d5/49/8796366af443fe28a648bc960201d84f87b5814e0522bee0f9d38af46da0/kiwi-9.20.7.tar.gz","yanked":false}],"9.20.8":[{"comment_text":"","digests":{"md5":"9a79d297be70dabe6b6fd6667cae5d62","sha256":"a555b3cf8dc90d9cc646b5584d162098ee6fd1b570e04fd3fa9557dc9df423df"},"downloads":-1,"filename":"kiwi-9.20.8.tar.gz","has_sig":false,"md5_digest":"9a79d297be70dabe6b6fd6667cae5d62","packagetype":"sdist","python_version":"source","requires_python":null,"size":727827,"upload_time":"2020-04-16T10:25:13","upload_time_iso_8601":"2020-04-16T10:25:13.890227Z","url":"https://files.pythonhosted.org/packages/5b/78/e9796f0573a907660f4d111e74aeeb555df32a194606fb2aa9567a7775b7/kiwi-9.20.8.tar.gz","yanked":false}],"9.20.9":[{"comment_text":"","digests":{"md5":"cb29f3a69472b9064c23b9d7c4de1635","sha256":"7e4cc9aad1d41aaacdabaa45131e9e2ef84bff324d83697046c9146a57c0e167"},"downloads":-1,"filename":"kiwi-9.20.9.tar.gz","has_sig":false,"md5_digest":"cb29f3a69472b9064c23b9d7c4de1635","packagetype":"sdist","python_version":"source","requires_python":null,"size":727948,"upload_time":"2020-04-17T09:18:06","upload_time_iso_8601":"2020-04-17T09:18:06.269717Z","url":"https://files.pythonhosted.org/packages/b4/ba/ad024073a3c9357ef0185aa46e3fdbce0cb93cf22e49992c563bbba4f3df/kiwi-9.20.9.tar.gz","yanked":false}],"9.3.0":[{"comment_text":"","digests":{"md5":"96df1fc7100efc331cf7a33aefa71549","sha256":"23653829ed52d9aa23f93f8d256d68f55fd179cc7b835a51721aa0b69dbb9609"},"downloads":-1,"filename":"kiwi-9.3.0.tar.gz","has_sig":false,"md5_digest":"96df1fc7100efc331cf7a33aefa71549","packagetype":"sdist","python_version":"source","requires_python":null,"size":2796159,"upload_time":"2017-03-07T15:42:40","upload_time_iso_8601":"2017-03-07T15:42:40.453748Z","url":"https://files.pythonhosted.org/packages/5e/c1/8a0894c4a968784a6831e1ee9bba16afe933c7576bf42a9e12fb0673a21a/kiwi-9.3.0.tar.gz","yanked":false}],"9.3.1":[{"comment_text":"","digests":{"md5":"ec7c21b2aa5349e10adc864159569640","sha256":"b5784b2b1ebdd5e9035b808932da26b1c2ab299c68564a6a5cbbff31fee11744"},"downloads":-1,"filename":"kiwi-9.3.1.tar.gz","has_sig":false,"md5_digest":"ec7c21b2aa5349e10adc864159569640","packagetype":"sdist","python_version":"source","requires_python":null,"size":2800957,"upload_time":"2017-03-07T16:25:41","upload_time_iso_8601":"2017-03-07T16:25:41.997500Z","url":"https://files.pythonhosted.org/packages/43/57/d74503a8d3d737778d1187d75373cdb18f304731169fef6e8b32324d2c0d/kiwi-9.3.1.tar.gz","yanked":false}],"9.3.2":[{"comment_text":"","digests":{"md5":"b2be06ba8d3d497ac2912a7f1c7c7598","sha256":"fc9ea674739dd6d44803e9714627137edcf9d170b7271b743b1b8c07b0ee9507"},"downloads":-1,"filename":"kiwi-9.3.2.tar.gz","has_sig":false,"md5_digest":"b2be06ba8d3d497ac2912a7f1c7c7598","packagetype":"sdist","python_version":"source","requires_python":null,"size":2807610,"upload_time":"2017-03-07T16:45:22","upload_time_iso_8601":"2017-03-07T16:45:22.190620Z","url":"https://files.pythonhosted.org/packages/91/41/5ead1316367176eaabb313c3e2a9a9b0e6575be32129e5feef3ad6d674e9/kiwi-9.3.2.tar.gz","yanked":false}],"9.3.3":[{"comment_text":"","digests":{"md5":"c810ffa7d4d54f6f577fcb0322e2471e","sha256":"b64a4f8b2b5109aeb9ca572d393187f19190fd0bd3fe23dd6cc6577beb0e974d"},"downloads":-1,"filename":"kiwi-9.3.3.tar.gz","has_sig":false,"md5_digest":"c810ffa7d4d54f6f577fcb0322e2471e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2925884,"upload_time":"2017-03-13T13:10:37","upload_time_iso_8601":"2017-03-13T13:10:37.332533Z","url":"https://files.pythonhosted.org/packages/5d/b5/4420b8bfab664a6a8a4dad16e04c526d7bf5778d4cb07adabf9b15cfec6a/kiwi-9.3.3.tar.gz","yanked":false}],"9.4.0":[{"comment_text":"","digests":{"md5":"3310d41b7c7dcd61f6f6a930d8ae1f81","sha256":"60a0a3d8170d1c6e373a4fbc8970fed56dc2a79703a1478c4177bf58935c11e1"},"downloads":-1,"filename":"kiwi-9.4.0.tar.gz","has_sig":false,"md5_digest":"3310d41b7c7dcd61f6f6a930d8ae1f81","packagetype":"sdist","python_version":"source","requires_python":null,"size":2931527,"upload_time":"2017-03-16T08:58:17","upload_time_iso_8601":"2017-03-16T08:58:17.283616Z","url":"https://files.pythonhosted.org/packages/10/43/eb9780b5742d0a7cefd37727a375ccbe7b9f25918646c08f64809905a2f7/kiwi-9.4.0.tar.gz","yanked":false}],"9.4.10":[{"comment_text":"","digests":{"md5":"ecb01fbe39747ac33378f30f99014062","sha256":"5d991281f443e1311dd2646b8a1b9a5c918704752e598fce6a77c9964b7dce53"},"downloads":-1,"filename":"kiwi-9.4.10.tar.gz","has_sig":false,"md5_digest":"ecb01fbe39747ac33378f30f99014062","packagetype":"sdist","python_version":"source","requires_python":null,"size":3157239,"upload_time":"2017-04-10T17:31:12","upload_time_iso_8601":"2017-04-10T17:31:12.830822Z","url":"https://files.pythonhosted.org/packages/d0/c7/8f4e78a513982f54faf093dfed121208e3f022863fa8a254c2375f401f26/kiwi-9.4.10.tar.gz","yanked":false}],"9.4.3":[{"comment_text":"","digests":{"md5":"91dfb7ec7f97ad09d5787f26d6223eee","sha256":"9064553492e19a1c7a8222067d4323600a505e5dd28bfb75e0779329df1a3c7c"},"downloads":-1,"filename":"kiwi-9.4.3.tar.gz","has_sig":false,"md5_digest":"91dfb7ec7f97ad09d5787f26d6223eee","packagetype":"sdist","python_version":"source","requires_python":null,"size":2818300,"upload_time":"2017-03-21T17:25:51","upload_time_iso_8601":"2017-03-21T17:25:51.323705Z","url":"https://files.pythonhosted.org/packages/5c/25/08cd601083ca1657fbea2c4ebd387f0731b91881401803c844863f7f2ace/kiwi-9.4.3.tar.gz","yanked":false}],"9.4.4":[{"comment_text":"","digests":{"md5":"65c22ddca95196d249c1e6014107873c","sha256":"2a9396783b2b349a5b97715b0a3aa76939b8add5f3813ceaa94c0e8001069540"},"downloads":-1,"filename":"kiwi-9.4.4.tar.gz","has_sig":false,"md5_digest":"65c22ddca95196d249c1e6014107873c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2939704,"upload_time":"2017-03-27T08:45:13","upload_time_iso_8601":"2017-03-27T08:45:13.594119Z","url":"https://files.pythonhosted.org/packages/68/22/014831f96dd178c036e3208f0cc5c2d5bdc2af1c2af12d6d0a61e15bb2c8/kiwi-9.4.4.tar.gz","yanked":false}],"9.4.5":[{"comment_text":"","digests":{"md5":"2aa03e17c4843d62de26043e6351772d","sha256":"e2c9c0f9bcfb67e42dad194cff9832a503c697b7f15d6437f2e3d9d3049de7f0"},"downloads":-1,"filename":"kiwi-9.4.5.tar.gz","has_sig":false,"md5_digest":"2aa03e17c4843d62de26043e6351772d","packagetype":"sdist","python_version":"source","requires_python":null,"size":2958384,"upload_time":"2017-03-30T08:47:32","upload_time_iso_8601":"2017-03-30T08:47:32.559856Z","url":"https://files.pythonhosted.org/packages/7a/d3/44cd46511f0b3b575324a2c7684e668d06217984e886932ae87365656a8c/kiwi-9.4.5.tar.gz","yanked":false}],"9.4.6":[{"comment_text":"","digests":{"md5":"18f3f79d975352f5a03134f08e92960e","sha256":"25790739649185e39152d9e05bfe7b56454c4b531838ff264e861cd56d6b6e2d"},"downloads":-1,"filename":"kiwi-9.4.6.tar.gz","has_sig":false,"md5_digest":"18f3f79d975352f5a03134f08e92960e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3269693,"upload_time":"2017-04-05T08:33:17","upload_time_iso_8601":"2017-04-05T08:33:17.877647Z","url":"https://files.pythonhosted.org/packages/ad/a6/4ce74d081e016a2ece44a7afb0f979084267e0c1817f3e754c30bf2ac1f2/kiwi-9.4.6.tar.gz","yanked":false}],"9.4.8":[{"comment_text":"","digests":{"md5":"af9fda7cb15602aeeffada9c176b5450","sha256":"9fa9592d836f4caa25f4a3a66fbdb099f20e36e218c3da405cc22387f97f0dc7"},"downloads":-1,"filename":"kiwi-9.4.8.tar.gz","has_sig":false,"md5_digest":"af9fda7cb15602aeeffada9c176b5450","packagetype":"sdist","python_version":"source","requires_python":null,"size":3260951,"upload_time":"2017-04-05T10:19:46","upload_time_iso_8601":"2017-04-05T10:19:46.321935Z","url":"https://files.pythonhosted.org/packages/61/77/8397f59b5e377725aeaacb4fbeee85589876240ecb633161672abd0b5683/kiwi-9.4.8.tar.gz","yanked":false}],"9.4.9":[{"comment_text":"","digests":{"md5":"4be08e9045b1437b3fb331cc520ec453","sha256":"a3725a9fec5c9850a258b271af0394511bed4d45d051d2ff0e0564a239d4ee8b"},"downloads":-1,"filename":"kiwi-9.4.9.tar.gz","has_sig":false,"md5_digest":"4be08e9045b1437b3fb331cc520ec453","packagetype":"sdist","python_version":"source","requires_python":null,"size":3269715,"upload_time":"2017-04-06T14:03:23","upload_time_iso_8601":"2017-04-06T14:03:23.079351Z","url":"https://files.pythonhosted.org/packages/2a/3c/f5437e1f5e4866bbb51f811fe9375fcbc64fbd157b543e5fa80dc6ac5900/kiwi-9.4.9.tar.gz","yanked":false}],"9.5.0":[{"comment_text":"","digests":{"md5":"8412dae8b5e6804dd9dc10bc1766cfb1","sha256":"4802dcd7c000a461699429a280363eb9d5f05a091d4b7cf8c008b8e948532155"},"downloads":-1,"filename":"kiwi-9.5.0.tar.gz","has_sig":false,"md5_digest":"8412dae8b5e6804dd9dc10bc1766cfb1","packagetype":"sdist","python_version":"source","requires_python":null,"size":3178742,"upload_time":"2017-04-24T11:37:49","upload_time_iso_8601":"2017-04-24T11:37:49.088320Z","url":"https://files.pythonhosted.org/packages/d8/2f/1b3a13df3cf7a949957c48866acd95c045a2d9cff78bc1976a524d099ea4/kiwi-9.5.0.tar.gz","yanked":false}],"9.6.0":[{"comment_text":"","digests":{"md5":"ffe0131f4abada0ad1f531039534ae3e","sha256":"ae6a85e95604c8e0e520e66b1c56e90a6d2b4742f3aa6f4add037571da61a245"},"downloads":-1,"filename":"kiwi-9.6.0.tar.gz","has_sig":false,"md5_digest":"ffe0131f4abada0ad1f531039534ae3e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3178694,"upload_time":"2017-04-26T15:44:34","upload_time_iso_8601":"2017-04-26T15:44:34.970739Z","url":"https://files.pythonhosted.org/packages/66/95/1ae333311a542b15f3281e22d6eaf21824b03d3507662ef35227f45fabbf/kiwi-9.6.0.tar.gz","yanked":false}],"9.6.1":[{"comment_text":"","digests":{"md5":"cdcb2b398e6232bf8e5ddf2f1879dd2c","sha256":"306ca5c61566c62f594b7f8938c822ee12a1ca4f491e6592963857b6eb22ea0b"},"downloads":-1,"filename":"kiwi-9.6.1.tar.gz","has_sig":false,"md5_digest":"cdcb2b398e6232bf8e5ddf2f1879dd2c","packagetype":"sdist","python_version":"source","requires_python":null,"size":3342358,"upload_time":"2017-05-11T14:11:51","upload_time_iso_8601":"2017-05-11T14:11:51.199795Z","url":"https://files.pythonhosted.org/packages/e4/df/93e7f35dc72c123b2e7bd4e80c67a8be685ad28e58438104f3500f77dca5/kiwi-9.6.1.tar.gz","yanked":false}],"9.6.2":[{"comment_text":"","digests":{"md5":"99eacf2a9181cb5ac73d2f387f574018","sha256":"3a42ce0aaa8af8ba52ee2476491923c24450378ff5d6d342f2f71bd6190ce656"},"downloads":-1,"filename":"kiwi-9.6.2.tar.gz","has_sig":false,"md5_digest":"99eacf2a9181cb5ac73d2f387f574018","packagetype":"sdist","python_version":"source","requires_python":null,"size":3371473,"upload_time":"2017-05-17T09:15:59","upload_time_iso_8601":"2017-05-17T09:15:59.945996Z","url":"https://files.pythonhosted.org/packages/9d/32/9df5b7aabdad57808eacdd07490f3d148be077be85e7a76820a3e8482efd/kiwi-9.6.2.tar.gz","yanked":false}],"9.7.0":[{"comment_text":"","digests":{"md5":"100abe984472793059f817507502c160","sha256":"06d0781312fec45b580becb7389cd54cc51377f8c7bbb98190e24350010f6433"},"downloads":-1,"filename":"kiwi-9.7.0.tar.gz","has_sig":false,"md5_digest":"100abe984472793059f817507502c160","packagetype":"sdist","python_version":"source","requires_python":null,"size":3363249,"upload_time":"2017-06-02T08:52:36","upload_time_iso_8601":"2017-06-02T08:52:36.505310Z","url":"https://files.pythonhosted.org/packages/bb/3c/84aada0cb85cbb3dd4c509486b606143d9facba93794984f3dc442d39d31/kiwi-9.7.0.tar.gz","yanked":false}],"9.7.1":[{"comment_text":"","digests":{"md5":"044bd2f2c79520930c2e0ae3a080f328","sha256":"3f1d6e203691da548850a72bec9bcbeaaf3620be4564de77de330622d8b68403"},"downloads":-1,"filename":"kiwi-9.7.1.tar.gz","has_sig":false,"md5_digest":"044bd2f2c79520930c2e0ae3a080f328","packagetype":"sdist","python_version":"source","requires_python":null,"size":3365670,"upload_time":"2017-06-08T09:06:43","upload_time_iso_8601":"2017-06-08T09:06:43.496344Z","url":"https://files.pythonhosted.org/packages/c4/0e/ec17fb455a19893616ab6731ef0a8659d16acb9109b7a4ddc9e65cb1d984/kiwi-9.7.1.tar.gz","yanked":false}],"9.7.2":[{"comment_text":"","digests":{"md5":"d78b1d2d61aa2b80f0e238eddaadb628","sha256":"33831ca467ab9c26d9f5d6d250de834827d3047b86d2e7a22862ecfe2221d48a"},"downloads":-1,"filename":"kiwi-9.7.2.tar.gz","has_sig":false,"md5_digest":"d78b1d2d61aa2b80f0e238eddaadb628","packagetype":"sdist","python_version":"source","requires_python":null,"size":3352040,"upload_time":"2017-06-09T12:24:01","upload_time_iso_8601":"2017-06-09T12:24:01.108132Z","url":"https://files.pythonhosted.org/packages/ba/d5/f1614b4d887af01a8b58936f44c8c5b8f8085ba64d28214f7de6a2527a48/kiwi-9.7.2.tar.gz","yanked":false}],"9.7.3":[{"comment_text":"","digests":{"md5":"28251af1cdaaeb00895cebfe288c8aa4","sha256":"ab9b6d64298cd23297cfd588054133a3a35d5180ceb278c78e4642227c68dac1"},"downloads":-1,"filename":"kiwi-9.7.3.tar.gz","has_sig":false,"md5_digest":"28251af1cdaaeb00895cebfe288c8aa4","packagetype":"sdist","python_version":"source","requires_python":null,"size":3248903,"upload_time":"2017-06-20T12:49:28","upload_time_iso_8601":"2017-06-20T12:49:28.876512Z","url":"https://files.pythonhosted.org/packages/f2/32/35fc1d7259ebcad7b11f8439f04edc2071367d70f66ab6bd1a56e4897271/kiwi-9.7.3.tar.gz","yanked":false}],"9.7.4":[{"comment_text":"","digests":{"md5":"b5686c0e8a17244c70c190b04bf273a7","sha256":"fc60553612105067bc8ef6c0cfa767f4ef94b14fccea0046662e66481960ae4d"},"downloads":-1,"filename":"kiwi-9.7.4.tar.gz","has_sig":false,"md5_digest":"b5686c0e8a17244c70c190b04bf273a7","packagetype":"sdist","python_version":"source","requires_python":null,"size":3234024,"upload_time":"2017-06-20T16:44:59","upload_time_iso_8601":"2017-06-20T16:44:59.157915Z","url":"https://files.pythonhosted.org/packages/fc/f2/14aa92d902e928c95adddf778710948ec0ac3c182c9165580259aa18eaa8/kiwi-9.7.4.tar.gz","yanked":false}],"9.8.0":[{"comment_text":"","digests":{"md5":"5242bc041c05f58df3ff42d39dd5a89d","sha256":"9e9409b4bbe5501348bf7c502b6d29b0c25ebb812280560088bdf19cb12c9f0c"},"downloads":-1,"filename":"kiwi-9.8.0.tar.gz","has_sig":false,"md5_digest":"5242bc041c05f58df3ff42d39dd5a89d","packagetype":"sdist","python_version":"source","requires_python":null,"size":3223311,"upload_time":"2017-06-30T16:20:31","upload_time_iso_8601":"2017-06-30T16:20:31.732274Z","url":"https://files.pythonhosted.org/packages/a0/15/c757f7f6d32bf5ebe742d435008e609b0683336a29bc81aaae006c577d96/kiwi-9.8.0.tar.gz","yanked":false}]},"urls":[{"comment_text":"","digests":{"md5":"cb29f3a69472b9064c23b9d7c4de1635","sha256":"7e4cc9aad1d41aaacdabaa45131e9e2ef84bff324d83697046c9146a57c0e167"},"downloads":-1,"filename":"kiwi-9.20.9.tar.gz","has_sig":false,"md5_digest":"cb29f3a69472b9064c23b9d7c4de1635","packagetype":"sdist","python_version":"source","requires_python":null,"size":727948,"upload_time":"2020-04-17T09:18:06","upload_time_iso_8601":"2020-04-17T09:18:06.269717Z","url":"https://files.pythonhosted.org/packages/b4/ba/ad024073a3c9357ef0185aa46e3fdbce0cb93cf22e49992c563bbba4f3df/kiwi-9.20.9.tar.gz","yanked":false}]}' + :: Python :: 3.7","Topic :: System :: Operating System"],"description":"","description_content_type":"","docs_url":null,"download_url":"https://download.opensuse.org/repositories/Virtualization:/Appliances:/Builder","downloads":{"last_day":-1,"last_month":-1,"last_week":-1},"home_page":"https://osinside.github.io/kiwi","keywords":"","license":"GPLv3+","maintainer":"","maintainer_email":"","name":"kiwi","package_url":"https://pypi.org/project/kiwi/","platform":"","project_url":"https://pypi.org/project/kiwi/","project_urls":{"Download":"https://download.opensuse.org/repositories/Virtualization:/Appliances:/Builder","Homepage":"https://osinside.github.io/kiwi"},"release_url":"https://pypi.org/project/kiwi/9.20.12/","requires_dist":null,"requires_python":"","summary":"KIWI + - Appliance Builder (next generation)","version":"9.20.12","yanked":false,"yanked_reason":null},"last_serial":7197755,"releases":{"8.20.10":[{"comment_text":"","digests":{"md5":"c54d8af695fcf16e01c146cefba310fd","sha256":"9cb8d3eee01499d5301ac210f30307b92f77f20094699d0095b21e608ccb1087"},"downloads":-1,"filename":"kiwi-8.20.10.tar.bz2","has_sig":false,"md5_digest":"c54d8af695fcf16e01c146cefba310fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":963331,"upload_time":"2016-08-25T11:05:23","upload_time_iso_8601":"2016-08-25T11:05:23.428328Z","url":"https://files.pythonhosted.org/packages/b9/ba/c29d0f8dea31088b731afd070f32ea454ea2b31c51033fa9e012f8a149ee/kiwi-8.20.10.tar.bz2","yanked":false,"yanked_reason":null}],"8.20.11":[{"comment_text":"","digests":{"md5":"9be8e0499dcec800176225e834783313","sha256":"1f2f57d23a5d8f6a7af323b4ca55e6add7c7f2570dca5a08bfead8d0c89b19c0"},"downloads":-1,"filename":"kiwi-8.20.11.tar.bz2","has_sig":false,"md5_digest":"9be8e0499dcec800176225e834783313","packagetype":"sdist","python_version":"source","requires_python":null,"size":965233,"upload_time":"2016-08-25T12:15:55","upload_time_iso_8601":"2016-08-25T12:15:55.148513Z","url":"https://files.pythonhosted.org/packages/cb/f9/01118ba41bbe57048f0e9360c96934f84f5c2a1531b577916c83888d5075/kiwi-8.20.11.tar.bz2","yanked":false,"yanked_reason":null}],"8.20.12":[{"comment_text":"","digests":{"md5":"19ba7f5256400e4a67294391fded1a15","sha256":"f7d09ac9b5ff02bcf5a6911dc652a52972411de5f686e2b64d55f4433aaa1a5f"},"downloads":-1,"filename":"kiwi-8.20.12.tar.gz","has_sig":false,"md5_digest":"19ba7f5256400e4a67294391fded1a15","packagetype":"sdist","python_version":"source","requires_python":null,"size":2090698,"upload_time":"2016-09-12T15:11:46","upload_time_iso_8601":"2016-09-12T15:11:46.080440Z","url":"https://files.pythonhosted.org/packages/de/ae/8e64b8c7adacbe27e5ffc04493c60d782b0fe829dbe3556efd29818e6bc2/kiwi-8.20.12.tar.gz","yanked":false,"yanked_reason":null}],"8.20.14":[{"comment_text":"","digests":{"md5":"27e9b0a3afa03950d931b5d6910bbbfb","sha256":"57d1ac2f6f986665dfbb672654314afc6bba33ae2aa188bb3aa7ca4120b199b0"},"downloads":-1,"filename":"kiwi-8.20.14.tar.gz","has_sig":false,"md5_digest":"27e9b0a3afa03950d931b5d6910bbbfb","packagetype":"sdist","python_version":"source","requires_python":null,"size":2089380,"upload_time":"2016-09-20T13:16:53","upload_time_iso_8601":"2016-09-20T13:16:53.390641Z","url":"https://files.pythonhosted.org/packages/49/ac/3253b6a10f5ffd1e444ccdbef8eef253a848e3e5958e87e1b5e3225ab8b6/kiwi-8.20.14.tar.gz","yanked":false,"yanked_reason":null}],"8.20.15":[{"comment_text":"","digests":{"md5":"864e0fb46270228df10358270501c8b5","sha256":"59bafeb7fbc5070ec78561684fb676117e566899bb2b5617d307e9a420eb061a"},"downloads":-1,"filename":"kiwi-8.20.15.tar.gz","has_sig":false,"md5_digest":"864e0fb46270228df10358270501c8b5","packagetype":"sdist","python_version":"source","requires_python":null,"size":2095229,"upload_time":"2016-09-20T15:13:44","upload_time_iso_8601":"2016-09-20T15:13:44.259446Z","url":"https://files.pythonhosted.org/packages/aa/26/1aee869da6fd5f9680e8b3174fe8a2aca78cc76bd22b1d7c7a42baa8b9be/kiwi-8.20.15.tar.gz","yanked":false,"yanked_reason":null}],"8.20.16":[{"comment_text":"","digests":{"md5":"79625f412a06a0852bb3b6f45633ebea","sha256":"842d999ead8621c0e31b229b3ead14f789fc735289233d77158c212db46c8bf2"},"downloads":-1,"filename":"kiwi-8.20.16.tar.gz","has_sig":false,"md5_digest":"79625f412a06a0852bb3b6f45633ebea","packagetype":"sdist","python_version":"source","requires_python":null,"size":2091211,"upload_time":"2016-09-21T16:11:29","upload_time_iso_8601":"2016-09-21T16:11:29.776144Z","url":"https://files.pythonhosted.org/packages/c7/5f/8361ee75c7e8fa69efc8841e143f92a0f252a2aa1835a64f510cf0a44fb0/kiwi-8.20.16.tar.gz","yanked":false,"yanked_reason":null}],"8.20.17":[{"comment_text":"","digests":{"md5":"0776fe59e56eed626ce908057d9750d4","sha256":"84de7fcb8bcf3554f768a282bab8ecac01471cd3d0585ae19508c2f852113c80"},"downloads":-1,"filename":"kiwi-8.20.17.tar.gz","has_sig":false,"md5_digest":"0776fe59e56eed626ce908057d9750d4","packagetype":"sdist","python_version":"source","requires_python":null,"size":2091455,"upload_time":"2016-09-21T17:27:31","upload_time_iso_8601":"2016-09-21T17:27:31.398600Z","url":"https://files.pythonhosted.org/packages/d5/b4/e2365bd840daff5b281c03eaa57c64eb1c009730ccc2e9a5c6571e34d5d0/kiwi-8.20.17.tar.gz","yanked":false,"yanked_reason":null}],"8.20.20":[{"comment_text":"","digests":{"md5":"bcae19a6e7fe2c643dff0b505f4c7b92","sha256":"c0c584005113e08fbfda77093bc6d1382e78417e6b8bc52036a489780c08a98a"},"downloads":-1,"filename":"kiwi-8.20.20.tar.gz","has_sig":false,"md5_digest":"bcae19a6e7fe2c643dff0b505f4c7b92","packagetype":"sdist","python_version":"source","requires_python":null,"size":2094165,"upload_time":"2016-09-26T17:08:31","upload_time_iso_8601":"2016-09-26T17:08:31.544200Z","url":"https://files.pythonhosted.org/packages/a0/fd/5f399fed4308dab4a941b6fcff34de36eaa6d8ba26fb5df8f53b74af7067/kiwi-8.20.20.tar.gz","yanked":false,"yanked_reason":null}],"8.20.21":[{"comment_text":"","digests":{"md5":"d60aa1db1dfdd638bfdb0ca4cda03fbe","sha256":"f49f542dbd89aaae80996052ca15e07809e74d99a9f82cdd324124d260e3aa7b"},"downloads":-1,"filename":"kiwi-8.20.21.tar.gz","has_sig":false,"md5_digest":"d60aa1db1dfdd638bfdb0ca4cda03fbe","packagetype":"sdist","python_version":"source","requires_python":null,"size":2093667,"upload_time":"2016-09-27T14:27:13","upload_time_iso_8601":"2016-09-27T14:27:13.668439Z","url":"https://files.pythonhosted.org/packages/28/d7/d157692ec7b72f6a5ea268c89e0fbcc3be5fde7bcc5f56f70c1f49af9952/kiwi-8.20.21.tar.gz","yanked":false,"yanked_reason":null}],"8.21.0":[{"comment_text":"","digests":{"md5":"122ffce650a7c8b3728ac067cd4f4852","sha256":"ad9b21e0879fca0301fa9f897fe72966028ad5996026b1bbc8c985cac66af531"},"downloads":-1,"filename":"kiwi-8.21.0.tar.gz","has_sig":false,"md5_digest":"122ffce650a7c8b3728ac067cd4f4852","packagetype":"sdist","python_version":"source","requires_python":null,"size":2063424,"upload_time":"2016-10-07T14:07:42","upload_time_iso_8601":"2016-10-07T14:07:42.363976Z","url":"https://files.pythonhosted.org/packages/d1/7b/37de0040027497050c2ce3dc0ddf9a32419cbe30f98082e6fabed45aa40d/kiwi-8.21.0.tar.gz","yanked":false,"yanked_reason":null}],"8.21.1":[{"comment_text":"","digests":{"md5":"614cc6caf407bb529b14aea3adc2cb3d","sha256":"85ac0ad4cd210468f02819e0ec4edd63bd5fea480d946890fcf516182f046efa"},"downloads":-1,"filename":"kiwi-8.21.1.tar.gz","has_sig":false,"md5_digest":"614cc6caf407bb529b14aea3adc2cb3d","packagetype":"sdist","python_version":"source","requires_python":null,"size":2062129,"upload_time":"2016-10-11T09:43:24","upload_time_iso_8601":"2016-10-11T09:43:24.930686Z","url":"https://files.pythonhosted.org/packages/e7/9a/064c3145849d1133bf25b15767b64ca0a67de5a0237102b75e6c415d1b50/kiwi-8.21.1.tar.gz","yanked":false,"yanked_reason":null}],"8.22.0":[{"comment_text":"","digests":{"md5":"656d20b5253768ec1644098d97f3a54c","sha256":"ca5e6208ad7107bdbe9eaff099f9f5f52bdf924cbe586d4ba4d491bf0b8ccb3e"},"downloads":-1,"filename":"kiwi-8.22.0.tar.gz","has_sig":false,"md5_digest":"656d20b5253768ec1644098d97f3a54c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2139875,"upload_time":"2016-10-18T19:31:39","upload_time_iso_8601":"2016-10-18T19:31:39.717983Z","url":"https://files.pythonhosted.org/packages/bd/88/32feb707a069ff31c46afc8607f048eb7f405289bb3a2b6ea59601e849ac/kiwi-8.22.0.tar.gz","yanked":false,"yanked_reason":null}],"8.22.1":[],"8.22.5":[{"comment_text":"","digests":{"md5":"de68a6c1caa9d19176a3c5b7e32f57b6","sha256":"170e403eb65878158375834a200dcc612ac1bfcf85b9c9b926a17b09e7a7e8ee"},"downloads":-1,"filename":"kiwi-8.22.5.tar.gz","has_sig":false,"md5_digest":"de68a6c1caa9d19176a3c5b7e32f57b6","packagetype":"sdist","python_version":"source","requires_python":null,"size":2219809,"upload_time":"2016-10-19T07:13:41","upload_time_iso_8601":"2016-10-19T07:13:41.473228Z","url":"https://files.pythonhosted.org/packages/78/63/ae09955305208d3d7fbc9ca44a320b7fb4ad9bbe25a78f1c8052c8270588/kiwi-8.22.5.tar.gz","yanked":false,"yanked_reason":null}],"8.22.6":[{"comment_text":"","digests":{"md5":"7fdc1eba01ccbe4ebdaad4e8e4989240","sha256":"36cab7c6c3ff0dbb232227082256523df5a2889a9a3a97cba627220b38d18dfa"},"downloads":-1,"filename":"kiwi-8.22.6.tar.gz","has_sig":false,"md5_digest":"7fdc1eba01ccbe4ebdaad4e8e4989240","packagetype":"sdist","python_version":"source","requires_python":null,"size":2222261,"upload_time":"2016-10-19T07:28:51","upload_time_iso_8601":"2016-10-19T07:28:51.239330Z","url":"https://files.pythonhosted.org/packages/3a/2b/998bc605fa558bfad8cf5bd8c1eaa76082d1168cc0469332d794ce7e0d19/kiwi-8.22.6.tar.gz","yanked":false,"yanked_reason":null}],"8.22.7":[{"comment_text":"","digests":{"md5":"c736230ae8504b77449097a821953563","sha256":"9c362cebeeb667993aaed39169505a68405672ff20387cfd7723c22388292b87"},"downloads":-1,"filename":"kiwi-8.22.7.tar.gz","has_sig":false,"md5_digest":"c736230ae8504b77449097a821953563","packagetype":"sdist","python_version":"source","requires_python":null,"size":2219195,"upload_time":"2016-10-19T07:56:44","upload_time_iso_8601":"2016-10-19T07:56:44.508493Z","url":"https://files.pythonhosted.org/packages/bb/6c/a046a10eb7e8289f8852d132a93bf870b906aa85a5b5cd154cbe17d16506/kiwi-8.22.7.tar.gz","yanked":false,"yanked_reason":null}],"8.23.0":[{"comment_text":"","digests":{"md5":"00887ffe8487ce79fb415d1b57924674","sha256":"aaa60f2c73670f6ef0c5c2440bad01c3e81040555de59524172616e92345955e"},"downloads":-1,"filename":"kiwi-8.23.0.tar.gz","has_sig":false,"md5_digest":"00887ffe8487ce79fb415d1b57924674","packagetype":"sdist","python_version":"source","requires_python":null,"size":2819739,"upload_time":"2016-10-24T13:05:33","upload_time_iso_8601":"2016-10-24T13:05:33.500366Z","url":"https://files.pythonhosted.org/packages/ea/4e/5b52e600f0fbce900f5c00d7454a5f82d153dfdd32440be0b42c1ad8925e/kiwi-8.23.0.tar.gz","yanked":false,"yanked_reason":null}],"8.24.1":[{"comment_text":"","digests":{"md5":"116cb2b72bee654045d2e5927bec5ed1","sha256":"2dd546f5ce760359f2cb07d8e99eee7ea88f214e51ce0dcbd0cbd8980d610b39"},"downloads":-1,"filename":"kiwi-8.24.1.tar.gz","has_sig":false,"md5_digest":"116cb2b72bee654045d2e5927bec5ed1","packagetype":"sdist","python_version":"source","requires_python":null,"size":2221308,"upload_time":"2016-10-19T18:53:23","upload_time_iso_8601":"2016-10-19T18:53:23.994904Z","url":"https://files.pythonhosted.org/packages/4d/ed/99d41346a885119134a7a010c6bcf3fc1793547e345fdb77151c99a16f91/kiwi-8.24.1.tar.gz","yanked":false,"yanked_reason":null}],"8.24.2":[{"comment_text":"","digests":{"md5":"9686ac37d7b5a60366feb501b21a8fee","sha256":"4522f31c65b115f695655a46e11c270d75e08bedb7b903bd7f1e07949bd8181c"},"downloads":-1,"filename":"kiwi-8.24.2.tar.gz","has_sig":false,"md5_digest":"9686ac37d7b5a60366feb501b21a8fee","packagetype":"sdist","python_version":"source","requires_python":null,"size":2903005,"upload_time":"2016-10-19T19:34:08","upload_time_iso_8601":"2016-10-19T19:34:08.891955Z","url":"https://files.pythonhosted.org/packages/c8/0d/6a3af5e6eb45afe7c644d20eb355d6d35146cbe44c15b056238b3d4b62d1/kiwi-8.24.2.tar.gz","yanked":false,"yanked_reason":null}],"8.24.3":[{"comment_text":"","digests":{"md5":"db5d1cf5a48cd76995cfc9e46e4beaf7","sha256":"f539e4631e01b342abd785308388be1574d160e61516efe496492317705e187a"},"downloads":-1,"filename":"kiwi-8.24.3.tar.gz","has_sig":false,"md5_digest":"db5d1cf5a48cd76995cfc9e46e4beaf7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2887032,"upload_time":"2016-10-19T20:21:06","upload_time_iso_8601":"2016-10-19T20:21:06.181000Z","url":"https://files.pythonhosted.org/packages/0e/12/2a44474d2b822a69c23f11ea9200168c1b784f4d0200220b3f85a13e192e/kiwi-8.24.3.tar.gz","yanked":false,"yanked_reason":null}],"8.24.4":[{"comment_text":"","digests":{"md5":"07d3f002c70125ab0367ba61922b2249","sha256":"57131de6af08859d327832787b9205928a9a782160b4b6a2ee0160bf06312643"},"downloads":-1,"filename":"kiwi-8.24.4.tar.gz","has_sig":false,"md5_digest":"07d3f002c70125ab0367ba61922b2249","packagetype":"sdist","python_version":"source","requires_python":null,"size":2884215,"upload_time":"2016-10-20T14:38:13","upload_time_iso_8601":"2016-10-20T14:38:13.115653Z","url":"https://files.pythonhosted.org/packages/d9/70/c466c912a12462f2be662734b802f57823896568abb8d92dc0ea3d752111/kiwi-8.24.4.tar.gz","yanked":false,"yanked_reason":null}],"8.24.8":[{"comment_text":"","digests":{"md5":"8ac0bdcc5bafc349d1dc43afc4f9d37e","sha256":"963282c75a23448c4d9730d6432a6a9e198b4b50d2cae0434ce2574ff2ec0718"},"downloads":-1,"filename":"kiwi-8.24.8.tar.gz","has_sig":false,"md5_digest":"8ac0bdcc5bafc349d1dc43afc4f9d37e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2818192,"upload_time":"2016-11-02T15:25:23","upload_time_iso_8601":"2016-11-02T15:25:23.650870Z","url":"https://files.pythonhosted.org/packages/13/d1/f5492d0d266e9fdf7e33bf9966432100566a214d98ea0f6472e29e46f54c/kiwi-8.24.8.tar.gz","yanked":false,"yanked_reason":null}],"8.24.9":[{"comment_text":"","digests":{"md5":"952fd81c19d7f6532954f0bd1702c47e","sha256":"bf5e660d82ede7cbb4abc63744f0a5544c95d785f66b8ceffa65220a34b3a496"},"downloads":-1,"filename":"kiwi-8.24.9.tar.gz","has_sig":false,"md5_digest":"952fd81c19d7f6532954f0bd1702c47e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2815272,"upload_time":"2016-11-02T16:40:04","upload_time_iso_8601":"2016-11-02T16:40:04.802082Z","url":"https://files.pythonhosted.org/packages/a9/fd/8c66b610e54e1f2ca5b6c00f90332700378d6e423b9a754946eac627df18/kiwi-8.24.9.tar.gz","yanked":false,"yanked_reason":null}],"8.25.1":[{"comment_text":"","digests":{"md5":"22d8910414254b662835d9e08ad911b2","sha256":"b8b8bbaae560dc9798b542fee397c74e47ed23a7c01512a6cf3ccc2679bbdc06"},"downloads":-1,"filename":"kiwi-8.25.1.tar.gz","has_sig":false,"md5_digest":"22d8910414254b662835d9e08ad911b2","packagetype":"sdist","python_version":"source","requires_python":null,"size":2829754,"upload_time":"2016-11-10T15:03:30","upload_time_iso_8601":"2016-11-10T15:03:30.969122Z","url":"https://files.pythonhosted.org/packages/d8/f5/404c17c1e18e652a65e7c9a540a91b2ce5120c6a67cd080c470c98096011/kiwi-8.25.1.tar.gz","yanked":false,"yanked_reason":null}],"8.25.2":[{"comment_text":"","digests":{"md5":"fb8d4f2c0569e91f4c9e8e15a22276c5","sha256":"2f9756e3c58a8636d61732231838a0c98e0b94ed6fe0418ac88cb556c8f367c4"},"downloads":-1,"filename":"kiwi-8.25.2.tar.gz","has_sig":false,"md5_digest":"fb8d4f2c0569e91f4c9e8e15a22276c5","packagetype":"sdist","python_version":"source","requires_python":null,"size":2920287,"upload_time":"2016-11-14T13:48:14","upload_time_iso_8601":"2016-11-14T13:48:14.776723Z","url":"https://files.pythonhosted.org/packages/cf/f0/c22dcacc06393ca2b918f1f24cc5ff7e9d92affab6d9a74c1f19651f010e/kiwi-8.25.2.tar.gz","yanked":false,"yanked_reason":null}],"8.25.3":[{"comment_text":"","digests":{"md5":"5b0489951e5f25109ba1ff7d08580107","sha256":"048eccf6c640df26d86bf5a10743a41703cae87d2e3a49b8ec300b616d749bf4"},"downloads":-1,"filename":"kiwi-8.25.3.tar.gz","has_sig":false,"md5_digest":"5b0489951e5f25109ba1ff7d08580107","packagetype":"sdist","python_version":"source","requires_python":null,"size":2816805,"upload_time":"2016-11-16T10:41:14","upload_time_iso_8601":"2016-11-16T10:41:14.237325Z","url":"https://files.pythonhosted.org/packages/a1/ee/18c93f2714aa99884a6032bf71c5fa095f8af7e0057f33a938da8681fb2f/kiwi-8.25.3.tar.gz","yanked":false,"yanked_reason":null}],"8.25.4":[{"comment_text":"","digests":{"md5":"b8ec655e1ecc86bed925158a0b12b514","sha256":"18866a51944b068707437d8ee814170f8306d7398768212c8df69aac79252cae"},"downloads":-1,"filename":"kiwi-8.25.4.tar.gz","has_sig":false,"md5_digest":"b8ec655e1ecc86bed925158a0b12b514","packagetype":"sdist","python_version":"source","requires_python":null,"size":2822099,"upload_time":"2016-11-16T16:10:49","upload_time_iso_8601":"2016-11-16T16:10:49.736508Z","url":"https://files.pythonhosted.org/packages/e9/f8/f27a38766eb83dbff1320e82783dfb6fb6a44b570430486b37950e8eb6ce/kiwi-8.25.4.tar.gz","yanked":false,"yanked_reason":null}],"8.26.0":[{"comment_text":"","digests":{"md5":"2336a04d3aa2e815d4acb5714222b3a6","sha256":"e5d895f566b0aff87f3c73c6dd1064ca53fd63dbcacde7175159fd34e11d3830"},"downloads":-1,"filename":"kiwi-8.26.0.tar.gz","has_sig":false,"md5_digest":"2336a04d3aa2e815d4acb5714222b3a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":2865931,"upload_time":"2016-11-22T09:06:21","upload_time_iso_8601":"2016-11-22T09:06:21.767686Z","url":"https://files.pythonhosted.org/packages/ca/57/840109dbfb848b12adf0197a8dc5599d847fed394268daa2168cc7a41645/kiwi-8.26.0.tar.gz","yanked":false,"yanked_reason":null}],"8.26.1":[{"comment_text":"","digests":{"md5":"c650a4b646561729fe1b335ef78fed95","sha256":"03fce2d9a080160546c22925733d2bb98420d5f8d37215ee577b5650cd3bc214"},"downloads":-1,"filename":"kiwi-8.26.1.tar.gz","has_sig":false,"md5_digest":"c650a4b646561729fe1b335ef78fed95","packagetype":"sdist","python_version":"source","requires_python":null,"size":2814317,"upload_time":"2016-11-24T13:04:44","upload_time_iso_8601":"2016-11-24T13:04:44.330722Z","url":"https://files.pythonhosted.org/packages/f5/99/f8fd2f8c6ded8123a90f4a35cd546f54747000691666294b53bfc83bb420/kiwi-8.26.1.tar.gz","yanked":false,"yanked_reason":null}],"8.27.2":[{"comment_text":"","digests":{"md5":"87a60dedd75923ccefe39510bbc62d61","sha256":"6b4c50a76020d118256977447457beaf0fca943ee53b74ac0921bda7d0b6139c"},"downloads":-1,"filename":"kiwi-8.27.2.tar.gz","has_sig":false,"md5_digest":"87a60dedd75923ccefe39510bbc62d61","packagetype":"sdist","python_version":"source","requires_python":null,"size":2827553,"upload_time":"2016-12-05T11:45:07","upload_time_iso_8601":"2016-12-05T11:45:07.708964Z","url":"https://files.pythonhosted.org/packages/9f/6b/68c2d61b149228312eb19ee058452eb3f144223a3c0bb82651f38d49a321/kiwi-8.27.2.tar.gz","yanked":false,"yanked_reason":null}],"8.27.3":[{"comment_text":"","digests":{"md5":"f7bd22633a636389f9f19720fa40fd71","sha256":"f7eaa8b400cfc11433294f09eaa197b57adf62f8b926617f71973cc147b19e17"},"downloads":-1,"filename":"kiwi-8.27.3.tar.gz","has_sig":false,"md5_digest":"f7bd22633a636389f9f19720fa40fd71","packagetype":"sdist","python_version":"source","requires_python":null,"size":2845403,"upload_time":"2016-12-07T16:21:51","upload_time_iso_8601":"2016-12-07T16:21:51.317143Z","url":"https://files.pythonhosted.org/packages/85/52/87e019d7491dba73ece566dcc76a9e80170423a0f8797e53040d8b7404d2/kiwi-8.27.3.tar.gz","yanked":false,"yanked_reason":null}],"8.27.5":[{"comment_text":"","digests":{"md5":"6b1c7528e6a2e40ba2e0a5e75b72150f","sha256":"4c7b4f092951de7b94bd3e77d94a83140529a965be4fcf901ed0ef94bfaee62d"},"downloads":-1,"filename":"kiwi-8.27.5.tar.gz","has_sig":false,"md5_digest":"6b1c7528e6a2e40ba2e0a5e75b72150f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2959486,"upload_time":"2016-12-13T14:13:55","upload_time_iso_8601":"2016-12-13T14:13:55.670708Z","url":"https://files.pythonhosted.org/packages/83/41/8a958b8b85332795fbf7e464bcdbc787df376bec6090aac19010787bbbcd/kiwi-8.27.5.tar.gz","yanked":false,"yanked_reason":null}],"8.28.0":[{"comment_text":"","digests":{"md5":"6ec7894d5abf1400fb6bd5f9dfaae855","sha256":"d705059920d1f9b34ebe55d1eb6a3671b4c1bb57269c622399e8013655c6ef23"},"downloads":-1,"filename":"kiwi-8.28.0.tar.gz","has_sig":false,"md5_digest":"6ec7894d5abf1400fb6bd5f9dfaae855","packagetype":"sdist","python_version":"source","requires_python":null,"size":2859944,"upload_time":"2016-12-15T13:34:47","upload_time_iso_8601":"2016-12-15T13:34:47.798181Z","url":"https://files.pythonhosted.org/packages/77/1d/a0ce454c09412c0054ae545855a2022d9df57d117f582411a7da35a2dc86/kiwi-8.28.0.tar.gz","yanked":false,"yanked_reason":null}],"8.28.2":[{"comment_text":"","digests":{"md5":"80b6bd9397b527bbee05875de81240e7","sha256":"bde2355e3706b229ae656264aaaa216a81ddb7d09071166f603efd0ceb0462b8"},"downloads":-1,"filename":"kiwi-8.28.2.tar.gz","has_sig":false,"md5_digest":"80b6bd9397b527bbee05875de81240e7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2849557,"upload_time":"2016-12-19T09:16:16","upload_time_iso_8601":"2016-12-19T09:16:16.866144Z","url":"https://files.pythonhosted.org/packages/19/48/115bbdfafb84d9d910ec2372063c79040357fd0fe302f6e603aa6a76a717/kiwi-8.28.2.tar.gz","yanked":false,"yanked_reason":null}],"8.28.3":[{"comment_text":"","digests":{"md5":"d064661785351810949233458478dcb1","sha256":"4063263b0af25c0d172d19e6daa065798518efd17d01264654d1fd18ad59e541"},"downloads":-1,"filename":"kiwi-8.28.3.tar.gz","has_sig":false,"md5_digest":"d064661785351810949233458478dcb1","packagetype":"sdist","python_version":"source","requires_python":null,"size":2864599,"upload_time":"2016-12-20T10:09:08","upload_time_iso_8601":"2016-12-20T10:09:08.680430Z","url":"https://files.pythonhosted.org/packages/5a/2d/3e44e20e392dc69536971feca376557e0430b185531ec0629c6357124d0d/kiwi-8.28.3.tar.gz","yanked":false,"yanked_reason":null}],"8.29.0":[{"comment_text":"","digests":{"md5":"2266b27d2d0d254dc767f93436d0467a","sha256":"c5f79940d6320088010a761ccea84dde9b32259b02100dc28f4fb38375e51269"},"downloads":-1,"filename":"kiwi-8.29.0.tar.gz","has_sig":false,"md5_digest":"2266b27d2d0d254dc767f93436d0467a","packagetype":"sdist","python_version":"source","requires_python":null,"size":2677857,"upload_time":"2017-01-10T13:03:43","upload_time_iso_8601":"2017-01-10T13:03:43.788086Z","url":"https://files.pythonhosted.org/packages/d6/16/5362a4655fcb6b6fbb0743c5f145c4c5e16a92995e4b7b3068f034a72f29/kiwi-8.29.0.tar.gz","yanked":false,"yanked_reason":null}],"8.29.1":[{"comment_text":"","digests":{"md5":"b93997370d0c9fe4017970b9bd78d781","sha256":"55b8f312b11989bb587dcf963e25ab0b12708458404c4611ccdb6701e6f3bdb0"},"downloads":-1,"filename":"kiwi-8.29.1.tar.gz","has_sig":false,"md5_digest":"b93997370d0c9fe4017970b9bd78d781","packagetype":"sdist","python_version":"source","requires_python":null,"size":2692794,"upload_time":"2017-01-10T13:24:51","upload_time_iso_8601":"2017-01-10T13:24:51.006709Z","url":"https://files.pythonhosted.org/packages/03/4a/ea63d4464bebe4b260ed756e56fc7185334a8100cf597d22287131c32272/kiwi-8.29.1.tar.gz","yanked":false,"yanked_reason":null}],"8.29.2":[{"comment_text":"","digests":{"md5":"a4d303d6e010677718a0afab44eb0aab","sha256":"f0aecb0d89a1d4c4972d4eaf34d2795bdc11a0ba2f2666a74df63b6bd092c155"},"downloads":-1,"filename":"kiwi-8.29.2.tar.gz","has_sig":false,"md5_digest":"a4d303d6e010677718a0afab44eb0aab","packagetype":"sdist","python_version":"source","requires_python":null,"size":2801578,"upload_time":"2017-01-18T13:50:53","upload_time_iso_8601":"2017-01-18T13:50:53.452821Z","url":"https://files.pythonhosted.org/packages/7d/ac/aae6e539dcb36dc3a822f85c06341f4ddd90f36c3ba08eb432fbdf5ae3b6/kiwi-8.29.2.tar.gz","yanked":false,"yanked_reason":null}],"8.29.3":[{"comment_text":"","digests":{"md5":"33c46d56fc93065642ef795dd139aca7","sha256":"250d2e0acb2b26578f0e464f36af29f116c585846bf5f09b78999ca07178e82e"},"downloads":-1,"filename":"kiwi-8.29.3.tar.gz","has_sig":false,"md5_digest":"33c46d56fc93065642ef795dd139aca7","packagetype":"sdist","python_version":"source","requires_python":null,"size":2811071,"upload_time":"2017-01-24T08:28:20","upload_time_iso_8601":"2017-01-24T08:28:20.940413Z","url":"https://files.pythonhosted.org/packages/10/2b/4db1438d7358f1303dc848e6f8c46d3ffb631d4da011fdc67232e6836113/kiwi-8.29.3.tar.gz","yanked":false,"yanked_reason":null}],"8.29.4":[{"comment_text":"","digests":{"md5":"5027f424bda67b3feb21ae6784e945d4","sha256":"a4e42c1f4859ec8ab27a0139a536c9d66c00caf8d33ef2cf69cc19776631e6d7"},"downloads":-1,"filename":"kiwi-8.29.4.tar.gz","has_sig":false,"md5_digest":"5027f424bda67b3feb21ae6784e945d4","packagetype":"sdist","python_version":"source","requires_python":null,"size":2762220,"upload_time":"2017-01-24T08:57:38","upload_time_iso_8601":"2017-01-24T08:57:38.325163Z","url":"https://files.pythonhosted.org/packages/6b/75/c47e9c882fc0d93b5f5a95d8395ba57bbd8c6afa967a832b729b5a401eb1/kiwi-8.29.4.tar.gz","yanked":false,"yanked_reason":null}],"8.29.5":[{"comment_text":"","digests":{"md5":"d2d93967e61db379f5cb493549b9b331","sha256":"c41ac78c3bf592d2710cfd1913649d803cbf3d3a6c20332e755f3df1c10ec7ff"},"downloads":-1,"filename":"kiwi-8.29.5.tar.gz","has_sig":false,"md5_digest":"d2d93967e61db379f5cb493549b9b331","packagetype":"sdist","python_version":"source","requires_python":null,"size":2761204,"upload_time":"2017-01-26T10:56:16","upload_time_iso_8601":"2017-01-26T10:56:16.506887Z","url":"https://files.pythonhosted.org/packages/d9/78/4b44a269a0aa5fdd61cac0746a0b4b66c96b322edb8db1955fc936f25c92/kiwi-8.29.5.tar.gz","yanked":false,"yanked_reason":null}],"8.29.6":[{"comment_text":"","digests":{"md5":"142b9aebd89294151e028620b5201b67","sha256":"4b04065c4d30f62d81789dc941045ee85d96cb0b8d9776b3cd150a6ba68b436f"},"downloads":-1,"filename":"kiwi-8.29.6.tar.gz","has_sig":false,"md5_digest":"142b9aebd89294151e028620b5201b67","packagetype":"sdist","python_version":"source","requires_python":null,"size":2783482,"upload_time":"2017-01-26T14:33:17","upload_time_iso_8601":"2017-01-26T14:33:17.574324Z","url":"https://files.pythonhosted.org/packages/0b/73/0f137b712cd3e74a00f6fdcbfac35ee2a83a160d770c0ebfaf1af32588d0/kiwi-8.29.6.tar.gz","yanked":false,"yanked_reason":null}],"9.0.0":[{"comment_text":"","digests":{"md5":"9a81d95ffcd3e3d62d58a52fa7601028","sha256":"2c7d9a2f5346ad342edd655b7ad0ab025818806ce014735d5ddf52da4cc8b8bf"},"downloads":-1,"filename":"kiwi-9.0.0.tar.gz","has_sig":false,"md5_digest":"9a81d95ffcd3e3d62d58a52fa7601028","packagetype":"sdist","python_version":"source","requires_python":null,"size":2767222,"upload_time":"2017-01-27T13:32:33","upload_time_iso_8601":"2017-01-27T13:32:33.801880Z","url":"https://files.pythonhosted.org/packages/b2/30/80f779332877ed8b7123fdc1d1f68b5220be210c03e4e994a61793bae970/kiwi-9.0.0.tar.gz","yanked":false,"yanked_reason":null}],"9.0.1":[{"comment_text":"","digests":{"md5":"ae27131b9c0f1b79874b35b044605b1b","sha256":"a1320ab7c30062d89e86da7766d97365c03f9a50e8cfb74804d9dab7600e658d"},"downloads":-1,"filename":"kiwi-9.0.1.tar.gz","has_sig":false,"md5_digest":"ae27131b9c0f1b79874b35b044605b1b","packagetype":"sdist","python_version":"source","requires_python":null,"size":2775415,"upload_time":"2017-02-01T15:06:22","upload_time_iso_8601":"2017-02-01T15:06:22.742590Z","url":"https://files.pythonhosted.org/packages/c5/5f/e15897be9558bbae224b70b953fdc4d40c68d9f912d0d75f9a2f75d9d9fc/kiwi-9.0.1.tar.gz","yanked":false,"yanked_reason":null}],"9.0.2":[{"comment_text":"","digests":{"md5":"d0d50bb333e3188b73a15c855338499f","sha256":"083d832855e0849e75b2f68dc966e1f8339d266f03e985df502056e146d0c90d"},"downloads":-1,"filename":"kiwi-9.0.2.tar.gz","has_sig":false,"md5_digest":"d0d50bb333e3188b73a15c855338499f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2790386,"upload_time":"2017-02-03T14:29:28","upload_time_iso_8601":"2017-02-03T14:29:28.265700Z","url":"https://files.pythonhosted.org/packages/40/53/3f791777bc74ba996bf72d8237f633d84db09c772f48bd0a3dfef77595fc/kiwi-9.0.2.tar.gz","yanked":false,"yanked_reason":null}],"9.1.0":[{"comment_text":"","digests":{"md5":"016412ae2c7092df8eaaeb63c830d6ae","sha256":"ae6c850e1ddecde777a94c531d9afab0ea37a21fc6757540c41d724147bd5001"},"downloads":-1,"filename":"kiwi-9.1.0.tar.gz","has_sig":false,"md5_digest":"016412ae2c7092df8eaaeb63c830d6ae","packagetype":"sdist","python_version":"source","requires_python":null,"size":2763619,"upload_time":"2017-02-10T09:03:13","upload_time_iso_8601":"2017-02-10T09:03:13.536119Z","url":"https://files.pythonhosted.org/packages/f8/10/b41a5b8eb041443203e46cdb1b9ac7de189badc83472b07b1d6c254cb998/kiwi-9.1.0.tar.gz","yanked":false,"yanked_reason":null}],"9.16.0":[{"comment_text":"","digests":{"md5":"2323570d56a8d39aa61ddf9faa345386","sha256":"58270823be1d4c25201a13924b818f1d5359f773a4fb6bb7e10a6f5152a76faf"},"downloads":-1,"filename":"kiwi-9.16.0.tar.gz","has_sig":false,"md5_digest":"2323570d56a8d39aa61ddf9faa345386","packagetype":"sdist","python_version":"source","requires_python":null,"size":511052,"upload_time":"2018-06-06T11:42:54","upload_time_iso_8601":"2018-06-06T11:42:54.198896Z","url":"https://files.pythonhosted.org/packages/fa/7a/68701b236450d2ebd5222bb13b8d3e482eb9772815cc59270611a1b78208/kiwi-9.16.0.tar.gz","yanked":false,"yanked_reason":null}],"9.16.1":[{"comment_text":"","digests":{"md5":"40f9b9118fbf20dcc4cc4701d10f868b","sha256":"ab1c73d57e36b7534db68ba5670215807d639fe27c90e49ca84eeca01e8485b9"},"downloads":-1,"filename":"kiwi-9.16.1.tar.gz","has_sig":false,"md5_digest":"40f9b9118fbf20dcc4cc4701d10f868b","packagetype":"sdist","python_version":"source","requires_python":null,"size":511006,"upload_time":"2018-06-13T13:07:02","upload_time_iso_8601":"2018-06-13T13:07:02.470263Z","url":"https://files.pythonhosted.org/packages/20/6a/fea9f439ec8adbb5b832fe4b005c76cf8a9ceda44efefc16aa84cbb9479b/kiwi-9.16.1.tar.gz","yanked":false,"yanked_reason":null}],"9.16.12":[{"comment_text":"","digests":{"md5":"bd780d98cfb65bcd07e0ea9c24197f94","sha256":"b8a97206a7da2af97ee788e98559a1a732f41e237159694af3720130f4928152"},"downloads":-1,"filename":"kiwi-9.16.12.tar.gz","has_sig":false,"md5_digest":"bd780d98cfb65bcd07e0ea9c24197f94","packagetype":"sdist","python_version":"source","requires_python":null,"size":522185,"upload_time":"2018-08-20T20:54:45","upload_time_iso_8601":"2018-08-20T20:54:45.806252Z","url":"https://files.pythonhosted.org/packages/99/7d/8267851a565bd31666684817955003ef4dd0fb1b4fb22b4ce60194cea5b9/kiwi-9.16.12.tar.gz","yanked":false,"yanked_reason":null}],"9.16.14":[{"comment_text":"","digests":{"md5":"741f510ce11919d36cecbe43859a2e76","sha256":"8d8894978de286ede070c9301a86ae22350d6a4f7292f65f0fbee6e98afe2669"},"downloads":-1,"filename":"kiwi-9.16.14.tar.gz","has_sig":false,"md5_digest":"741f510ce11919d36cecbe43859a2e76","packagetype":"sdist","python_version":"source","requires_python":null,"size":523137,"upload_time":"2018-09-14T09:49:48","upload_time_iso_8601":"2018-09-14T09:49:48.337702Z","url":"https://files.pythonhosted.org/packages/6d/14/3331f12551ebdd6bdce440af03011c0e691eb4b639dc98cdc5f015159261/kiwi-9.16.14.tar.gz","yanked":false,"yanked_reason":null}],"9.16.15":[{"comment_text":"","digests":{"md5":"0b0409dad0d681146eb9831baa0ba6a6","sha256":"06606daf908abc3bad4238812645825d4d714b23cfcebd93c69dcfd0eb5660a3"},"downloads":-1,"filename":"kiwi-9.16.15.tar.gz","has_sig":false,"md5_digest":"0b0409dad0d681146eb9831baa0ba6a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":523825,"upload_time":"2018-09-26T10:40:07","upload_time_iso_8601":"2018-09-26T10:40:07.522155Z","url":"https://files.pythonhosted.org/packages/00/32/5eff9fbeb945c9b023ef197205f3ac7667ecd2dfae2de65791c1e4655c91/kiwi-9.16.15.tar.gz","yanked":false,"yanked_reason":null}],"9.16.16":[{"comment_text":"","digests":{"md5":"60b196d97dd0c0f5ffeffd3aa78478d6","sha256":"a8b611d6bf3ecdd0b8bb825ccc4507cfcb80adbd66417e04d2280db0fcd77199"},"downloads":-1,"filename":"kiwi-9.16.16.tar.gz","has_sig":false,"md5_digest":"60b196d97dd0c0f5ffeffd3aa78478d6","packagetype":"sdist","python_version":"source","requires_python":null,"size":523847,"upload_time":"2018-09-26T11:56:40","upload_time_iso_8601":"2018-09-26T11:56:40.113551Z","url":"https://files.pythonhosted.org/packages/7e/63/fcd5f815648b8314c15171c58edd260b796f1e60c4f5aa0a10f47f3073f2/kiwi-9.16.16.tar.gz","yanked":false,"yanked_reason":null}],"9.16.17":[{"comment_text":"","digests":{"md5":"861f787ac29d46b6904d29b7b42799a6","sha256":"a5f3f9da9e03c54b8c94c6148378380adfd4999a474b54491653941f05303de1"},"downloads":-1,"filename":"kiwi-9.16.17.tar.gz","has_sig":false,"md5_digest":"861f787ac29d46b6904d29b7b42799a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":470502,"upload_time":"2018-09-26T12:02:34","upload_time_iso_8601":"2018-09-26T12:02:34.072165Z","url":"https://files.pythonhosted.org/packages/5c/85/2cccc2c3fa1aa0ad7dd0dffbf4a89f51c14205d5c9b2368021ac8fbf0efe/kiwi-9.16.17.tar.gz","yanked":false,"yanked_reason":null}],"9.16.18":[{"comment_text":"","digests":{"md5":"b6664fe8217a61c090ba657a6f517097","sha256":"0a6302263c182634fc092cb4e125c996aa27899193247d98d8416481ae104770"},"downloads":-1,"filename":"kiwi-9.16.18.tar.gz","has_sig":false,"md5_digest":"b6664fe8217a61c090ba657a6f517097","packagetype":"sdist","python_version":"source","requires_python":null,"size":470445,"upload_time":"2018-09-26T15:12:13","upload_time_iso_8601":"2018-09-26T15:12:13.127551Z","url":"https://files.pythonhosted.org/packages/50/58/3112dbda498a1a66677ab987f0bcd6c14a3d015ce11390819957eada9c24/kiwi-9.16.18.tar.gz","yanked":false,"yanked_reason":null}],"9.16.19":[{"comment_text":"","digests":{"md5":"c6d06a2148202ddd3f230ffbcb7e605a","sha256":"6a597839e1d05f76a3c117136ef75b4d5cda2c77ba484367a8ed41bfd9402f89"},"downloads":-1,"filename":"kiwi-9.16.19.tar.gz","has_sig":false,"md5_digest":"c6d06a2148202ddd3f230ffbcb7e605a","packagetype":"sdist","python_version":"source","requires_python":null,"size":470955,"upload_time":"2018-10-05T15:23:28","upload_time_iso_8601":"2018-10-05T15:23:28.582649Z","url":"https://files.pythonhosted.org/packages/0d/03/44bcdb48f0a68aec726b8b1f4a16c0fd39f21c81ebf24531d3b50d2d23b5/kiwi-9.16.19.tar.gz","yanked":false,"yanked_reason":null}],"9.16.2":[{"comment_text":"","digests":{"md5":"908e38491b1efed4bfe4f17e119bc5ac","sha256":"0608f620582d679cc1618f771325aea03112742b200d4a392a40e62069555085"},"downloads":-1,"filename":"kiwi-9.16.2.tar.gz","has_sig":false,"md5_digest":"908e38491b1efed4bfe4f17e119bc5ac","packagetype":"sdist","python_version":"source","requires_python":null,"size":512130,"upload_time":"2018-06-20T13:38:30","upload_time_iso_8601":"2018-06-20T13:38:30.490671Z","url":"https://files.pythonhosted.org/packages/2a/3c/67553517bb0ab6d71a4028ceb6eb6f8f64c1aa3885f6418ab248d1458a77/kiwi-9.16.2.tar.gz","yanked":false,"yanked_reason":null}],"9.16.20":[{"comment_text":"","digests":{"md5":"f393b6c81cb161141e8b3821546f3014","sha256":"c6422117a237209d236dab7d31aba760bf72de2069f87eac50e548ea9d71fe26"},"downloads":-1,"filename":"kiwi-9.16.20.tar.gz","has_sig":false,"md5_digest":"f393b6c81cb161141e8b3821546f3014","packagetype":"sdist","python_version":"source","requires_python":null,"size":471647,"upload_time":"2018-10-09T07:48:33","upload_time_iso_8601":"2018-10-09T07:48:33.005297Z","url":"https://files.pythonhosted.org/packages/5f/08/d12aaca14e4f6134c174967bd285680db897377d9815b2d5f030a63d21fb/kiwi-9.16.20.tar.gz","yanked":false,"yanked_reason":null}],"9.16.21":[{"comment_text":"","digests":{"md5":"f6f0d708b2bca015ee0eb059fabc6824","sha256":"bfb768ff8d54646b150e911976f637671a3729485a5dbcdb4b59429668d3fcf5"},"downloads":-1,"filename":"kiwi-9.16.21.tar.gz","has_sig":false,"md5_digest":"f6f0d708b2bca015ee0eb059fabc6824","packagetype":"sdist","python_version":"source","requires_python":null,"size":471792,"upload_time":"2018-10-11T15:24:53","upload_time_iso_8601":"2018-10-11T15:24:53.842611Z","url":"https://files.pythonhosted.org/packages/00/06/075290a914c2d43c4481af6b8bebb32021c1a4d5cd2c3e6f7d3252f298ab/kiwi-9.16.21.tar.gz","yanked":false,"yanked_reason":null}],"9.16.22":[{"comment_text":"","digests":{"md5":"9120f401935eebd84a33fe818fe73ce6","sha256":"757da3219362c4ab74278b58f0fbdd322983fd73e412b64ef46850a69e144fc4"},"downloads":-1,"filename":"kiwi-9.16.22.tar.gz","has_sig":false,"md5_digest":"9120f401935eebd84a33fe818fe73ce6","packagetype":"sdist","python_version":"source","requires_python":null,"size":471697,"upload_time":"2018-10-11T15:48:12","upload_time_iso_8601":"2018-10-11T15:48:12.058860Z","url":"https://files.pythonhosted.org/packages/e4/d9/8fe8983b5d3a727d9da1ac08eafd4fdc3fe8785ebab3883140cb99cc1f63/kiwi-9.16.22.tar.gz","yanked":false,"yanked_reason":null}],"9.16.23":[{"comment_text":"","digests":{"md5":"8e44296e139af2aa249438788dd63ea7","sha256":"dbdecb7451829e9c05999bbd32af4ed6610fa0cb37465482ff69334477b4f982"},"downloads":-1,"filename":"kiwi-9.16.23.tar.gz","has_sig":false,"md5_digest":"8e44296e139af2aa249438788dd63ea7","packagetype":"sdist","python_version":"source","requires_python":null,"size":471713,"upload_time":"2018-10-15T08:08:49","upload_time_iso_8601":"2018-10-15T08:08:49.534285Z","url":"https://files.pythonhosted.org/packages/e5/03/d0534ba281597e88a3de97418990965077ab5b109eeb02d65058adc13ed1/kiwi-9.16.23.tar.gz","yanked":false,"yanked_reason":null}],"9.16.24":[{"comment_text":"","digests":{"md5":"16f4d28fb5adeabda24105dc32fc0290","sha256":"edb5dd71ab17e6232baca1e460ac244a7f91070b95aa352df3c37a854cf39d00"},"downloads":-1,"filename":"kiwi-9.16.24.tar.gz","has_sig":false,"md5_digest":"16f4d28fb5adeabda24105dc32fc0290","packagetype":"sdist","python_version":"source","requires_python":null,"size":472131,"upload_time":"2018-10-16T15:11:33","upload_time_iso_8601":"2018-10-16T15:11:33.523617Z","url":"https://files.pythonhosted.org/packages/94/9d/4c2d0d0d9ff474a5f79e765800cdd945b6e77d7206c1ebd8f11e7bb0394d/kiwi-9.16.24.tar.gz","yanked":false,"yanked_reason":null}],"9.16.25":[{"comment_text":"","digests":{"md5":"e467fc8c7ed809dea7cfa5eab0d0b78c","sha256":"ab0ed100b7137e5b36fdad13e3b3044ffeb39b2584240ebf6170b918e0a53c7f"},"downloads":-1,"filename":"kiwi-9.16.25.tar.gz","has_sig":false,"md5_digest":"e467fc8c7ed809dea7cfa5eab0d0b78c","packagetype":"sdist","python_version":"source","requires_python":null,"size":472330,"upload_time":"2018-10-18T08:51:13","upload_time_iso_8601":"2018-10-18T08:51:13.521875Z","url":"https://files.pythonhosted.org/packages/81/7f/172dc9f88f62035a98ae0db48c9da45ce0c2deadba8d6827db2ad733d8a1/kiwi-9.16.25.tar.gz","yanked":false,"yanked_reason":null}],"9.16.26":[{"comment_text":"","digests":{"md5":"5d535dbe0b9cc9a055d43259fbebb46f","sha256":"5441a4b85b6a620d3b199f55d6af6ee4f5bdb62a247315571cee6afd828d841e"},"downloads":-1,"filename":"kiwi-9.16.26.tar.gz","has_sig":false,"md5_digest":"5d535dbe0b9cc9a055d43259fbebb46f","packagetype":"sdist","python_version":"source","requires_python":null,"size":472915,"upload_time":"2018-10-18T14:48:58","upload_time_iso_8601":"2018-10-18T14:48:58.913886Z","url":"https://files.pythonhosted.org/packages/18/2d/8f07e39774f1662760cd1738d6c25649f3d0082a8374a1a11c7fc302a672/kiwi-9.16.26.tar.gz","yanked":false,"yanked_reason":null}],"9.16.27":[{"comment_text":"","digests":{"md5":"79d1d31487f495dc3b708070b3542c87","sha256":"a2bf1547e525af0054c82bef76d3ea5e3edf22ff1f5c4a12aeceb479ea4b2326"},"downloads":-1,"filename":"kiwi-9.16.27.tar.gz","has_sig":false,"md5_digest":"79d1d31487f495dc3b708070b3542c87","packagetype":"sdist","python_version":"source","requires_python":null,"size":472916,"upload_time":"2018-10-19T12:42:29","upload_time_iso_8601":"2018-10-19T12:42:29.198227Z","url":"https://files.pythonhosted.org/packages/16/27/897ec1375344484daa28343e23ff7df005c5837f296653f88a029051b064/kiwi-9.16.27.tar.gz","yanked":false,"yanked_reason":null}],"9.16.3":[{"comment_text":"","digests":{"md5":"95f379b3534f01f29c76e1ec51c752fd","sha256":"e5d1280b74b945c9d4d2175824ca661143a407a0772e51922ab4d7a8dc77283f"},"downloads":-1,"filename":"kiwi-9.16.3.tar.gz","has_sig":false,"md5_digest":"95f379b3534f01f29c76e1ec51c752fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":514579,"upload_time":"2018-07-16T08:44:36","upload_time_iso_8601":"2018-07-16T08:44:36.354352Z","url":"https://files.pythonhosted.org/packages/70/4c/1c86592a6d5a127bf0053de4cfb9f040039a27c2de5c2e5549adcc7ca843/kiwi-9.16.3.tar.gz","yanked":false,"yanked_reason":null}],"9.16.33":[{"comment_text":"","digests":{"md5":"583e9c0744bc1a9fc437738757e4cb56","sha256":"5ab87157fc1b381914d38a1a34299a7647a19d92afb41d45446850109f68dd13"},"downloads":-1,"filename":"kiwi-9.16.33.tar.gz","has_sig":false,"md5_digest":"583e9c0744bc1a9fc437738757e4cb56","packagetype":"sdist","python_version":"source","requires_python":null,"size":470019,"upload_time":"2018-11-05T15:47:33","upload_time_iso_8601":"2018-11-05T15:47:33.330948Z","url":"https://files.pythonhosted.org/packages/83/65/30db9f5b45ff7dce44a77002c00c32a7ff50400e344dd813bebf989c649a/kiwi-9.16.33.tar.gz","yanked":false,"yanked_reason":null}],"9.16.35":[{"comment_text":"","digests":{"md5":"1379575c02ccd6a500f5f2816d4bd9a7","sha256":"7a3c62d7ad42be8d456b061208ae121b6c07762f49d73b6b6f403b34cab42115"},"downloads":-1,"filename":"kiwi-9.16.35.tar.gz","has_sig":false,"md5_digest":"1379575c02ccd6a500f5f2816d4bd9a7","packagetype":"sdist","python_version":"source","requires_python":null,"size":469991,"upload_time":"2018-11-05T21:32:43","upload_time_iso_8601":"2018-11-05T21:32:43.001328Z","url":"https://files.pythonhosted.org/packages/77/e5/b9f740372fd755236358c21f8b932acab77910bf5d839e96cfe70a57e186/kiwi-9.16.35.tar.gz","yanked":false,"yanked_reason":null}],"9.16.36":[{"comment_text":"","digests":{"md5":"160ade15cd13548295f8c803c30ae1e1","sha256":"ec151948d91354891f28eccd7648a981fbba49987426e75b1768f5589522745e"},"downloads":-1,"filename":"kiwi-9.16.36.tar.gz","has_sig":false,"md5_digest":"160ade15cd13548295f8c803c30ae1e1","packagetype":"sdist","python_version":"source","requires_python":null,"size":470012,"upload_time":"2018-11-06T09:22:21","upload_time_iso_8601":"2018-11-06T09:22:21.583486Z","url":"https://files.pythonhosted.org/packages/61/81/6577bca770f80b587c850434c2f2a848b88f83871375e729ff87fc7d64c4/kiwi-9.16.36.tar.gz","yanked":false,"yanked_reason":null}],"9.16.4":[{"comment_text":"","digests":{"md5":"b69e69b54be8df8990a40e27a03dd7e9","sha256":"3ab33969f9aa87007ded8c9a01b5a76a2fcff19d0843f493705e5d3ebb9e4f83"},"downloads":-1,"filename":"kiwi-9.16.4.tar.gz","has_sig":false,"md5_digest":"b69e69b54be8df8990a40e27a03dd7e9","packagetype":"sdist","python_version":"source","requires_python":null,"size":514449,"upload_time":"2018-07-16T15:33:17","upload_time_iso_8601":"2018-07-16T15:33:17.791854Z","url":"https://files.pythonhosted.org/packages/dd/e0/8f06609f45c84628b969d90b1d5c103cd8fd9712ebff406bf3844bfd06e8/kiwi-9.16.4.tar.gz","yanked":false,"yanked_reason":null}],"9.16.7":[{"comment_text":"","digests":{"md5":"b134f5a99ce95346fe2032f8fe747339","sha256":"176487eda89957f730ea97a0df86a17c310edc9908032a4ae87b86bd1da9d8b0"},"downloads":-1,"filename":"kiwi-9.16.7.tar.gz","has_sig":false,"md5_digest":"b134f5a99ce95346fe2032f8fe747339","packagetype":"sdist","python_version":"source","requires_python":null,"size":516986,"upload_time":"2018-08-01T12:36:32","upload_time_iso_8601":"2018-08-01T12:36:32.894759Z","url":"https://files.pythonhosted.org/packages/ca/e1/82825788cd6838a44367f3339c0510fe139dc5419958b462f7aa84530c9c/kiwi-9.16.7.tar.gz","yanked":false,"yanked_reason":null}],"9.16.8":[{"comment_text":"","digests":{"md5":"17c68b799724674a21fd852712c18d71","sha256":"e0bba6d3278ab4377a6d96dc045b7335ccc086c9260bbf676849106cf5f1005d"},"downloads":-1,"filename":"kiwi-9.16.8.tar.gz","has_sig":false,"md5_digest":"17c68b799724674a21fd852712c18d71","packagetype":"sdist","python_version":"source","requires_python":null,"size":518493,"upload_time":"2018-08-08T19:49:05","upload_time_iso_8601":"2018-08-08T19:49:05.308450Z","url":"https://files.pythonhosted.org/packages/42/6c/01a8d782799212673608844faad8b2e231fa7587a254f9002948f44942e3/kiwi-9.16.8.tar.gz","yanked":false,"yanked_reason":null}],"9.16.9":[{"comment_text":"","digests":{"md5":"b014fb5cfb0f3e4afccb9ac5a13c878c","sha256":"27eafc32203e3ec252a4958a93438de17f57c0042fba8f42717bc9f41905470d"},"downloads":-1,"filename":"kiwi-9.16.9.tar.gz","has_sig":false,"md5_digest":"b014fb5cfb0f3e4afccb9ac5a13c878c","packagetype":"sdist","python_version":"source","requires_python":null,"size":518434,"upload_time":"2018-08-20T15:15:46","upload_time_iso_8601":"2018-08-20T15:15:46.001014Z","url":"https://files.pythonhosted.org/packages/a5/8f/893b7782b4177da4b228976548ed140a0a37122518f57676e5afff8c7f8b/kiwi-9.16.9.tar.gz","yanked":false,"yanked_reason":null}],"9.17.0":[{"comment_text":"","digests":{"md5":"214455e15aea092a530468c5b3cc45a6","sha256":"febff953510b8ee3c97f9b51c57346ae9c152ee12b3d940db55b8b1c9f7b27ca"},"downloads":-1,"filename":"kiwi-9.17.0.tar.gz","has_sig":false,"md5_digest":"214455e15aea092a530468c5b3cc45a6","packagetype":"sdist","python_version":"source","requires_python":null,"size":470260,"upload_time":"2018-11-06T15:08:43","upload_time_iso_8601":"2018-11-06T15:08:43.119506Z","url":"https://files.pythonhosted.org/packages/ed/ba/4324f48f4aa87dd7ff15d449da7a3349ff4976468237ffa4bd76a6083718/kiwi-9.17.0.tar.gz","yanked":false,"yanked_reason":null}],"9.17.1":[{"comment_text":"","digests":{"md5":"95f1f0fa0d60569453ce9ba12a993130","sha256":"580aa29e4f158d58f9fbeb42e9a96f0839c859f0f0938ff86cad330dd1eb251d"},"downloads":-1,"filename":"kiwi-9.17.1.tar.gz","has_sig":false,"md5_digest":"95f1f0fa0d60569453ce9ba12a993130","packagetype":"sdist","python_version":"source","requires_python":null,"size":471979,"upload_time":"2018-11-09T10:34:47","upload_time_iso_8601":"2018-11-09T10:34:47.701922Z","url":"https://files.pythonhosted.org/packages/fe/87/30917e5deefe3067088c56b139e656e403730ff275a7a7ac6f4ef92464d7/kiwi-9.17.1.tar.gz","yanked":false,"yanked_reason":null}],"9.17.10":[{"comment_text":"","digests":{"md5":"d106d3445747247e3ed7e338fe76284d","sha256":"49a7e8bfd280d2acd54a5919527086ea622ced9f4692e2eacfc9c4bc00f8f7e5"},"downloads":-1,"filename":"kiwi-9.17.10.tar.gz","has_sig":false,"md5_digest":"d106d3445747247e3ed7e338fe76284d","packagetype":"sdist","python_version":"source","requires_python":null,"size":481466,"upload_time":"2019-01-24T09:16:25","upload_time_iso_8601":"2019-01-24T09:16:25.096005Z","url":"https://files.pythonhosted.org/packages/24/88/061b80d4ff9a3e4d69fdce268be4e8789c74e6fd498d286f51a1d0212c2a/kiwi-9.17.10.tar.gz","yanked":false,"yanked_reason":null}],"9.17.11":[{"comment_text":"","digests":{"md5":"a5090f5ee4898eb17320d6a27dd1cf95","sha256":"7607391de1848d45f7ac3e992b2aee6b6807f13910688f29cabff6f20ae85c7d"},"downloads":-1,"filename":"kiwi-9.17.11.tar.gz","has_sig":false,"md5_digest":"a5090f5ee4898eb17320d6a27dd1cf95","packagetype":"sdist","python_version":"source","requires_python":null,"size":481391,"upload_time":"2019-01-24T10:42:07","upload_time_iso_8601":"2019-01-24T10:42:07.317862Z","url":"https://files.pythonhosted.org/packages/b0/ff/f0a885b7c8a6a4fb19cd799638ec3363d8a3a66fd756f72f7c76b9da8dfb/kiwi-9.17.11.tar.gz","yanked":false,"yanked_reason":null}],"9.17.12":[{"comment_text":"","digests":{"md5":"fe43e58b18e620c651c9104e129d6883","sha256":"21bd238639b8b4001fc7ae0cc235bbd979f9cce40de0b752b6b60d7af3a55bd6"},"downloads":-1,"filename":"kiwi-9.17.12.tar.gz","has_sig":false,"md5_digest":"fe43e58b18e620c651c9104e129d6883","packagetype":"sdist","python_version":"source","requires_python":null,"size":482376,"upload_time":"2019-01-28T16:53:04","upload_time_iso_8601":"2019-01-28T16:53:04.730018Z","url":"https://files.pythonhosted.org/packages/1b/4f/0b334ffda33ffd61171dcb2c0a9366b6397a667b9538f7b66e61860beb3f/kiwi-9.17.12.tar.gz","yanked":false,"yanked_reason":null}],"9.17.13":[{"comment_text":"","digests":{"md5":"c2a08e67ee0d7bf82d94da3faa7fe014","sha256":"650b37645832270a685d937e3a0c2da3a748812c4e1c98f35fca013618974726"},"downloads":-1,"filename":"kiwi-9.17.13.tar.gz","has_sig":false,"md5_digest":"c2a08e67ee0d7bf82d94da3faa7fe014","packagetype":"sdist","python_version":"source","requires_python":null,"size":482418,"upload_time":"2019-01-29T12:21:49","upload_time_iso_8601":"2019-01-29T12:21:49.202557Z","url":"https://files.pythonhosted.org/packages/df/dc/fa2ce476600a9c74c22268c1ae05402d8c56b6a93f46e24190ab916d2c4b/kiwi-9.17.13.tar.gz","yanked":false,"yanked_reason":null}],"9.17.15":[{"comment_text":"","digests":{"md5":"e1bf3c1432b46e7e6d3871fa5e9e5842","sha256":"bc30c1e8d46719f7207876468f38de7aa51d6b8c16e713f2467b29e1126cae06"},"downloads":-1,"filename":"kiwi-9.17.15.tar.gz","has_sig":false,"md5_digest":"e1bf3c1432b46e7e6d3871fa5e9e5842","packagetype":"sdist","python_version":"source","requires_python":null,"size":482419,"upload_time":"2019-01-31T10:30:11","upload_time_iso_8601":"2019-01-31T10:30:11.326777Z","url":"https://files.pythonhosted.org/packages/d5/e0/3c1b330d892015b1eebe6780cac1e352fe93263accef7d4504c0c0442458/kiwi-9.17.15.tar.gz","yanked":false,"yanked_reason":null}],"9.17.16":[{"comment_text":"","digests":{"md5":"8f986153bec834eccc18e6f93aba6507","sha256":"fb0b7a69a29ee23812a652b89a1b7284877266c746426d0ea5bb472cbecf9034"},"downloads":-1,"filename":"kiwi-9.17.16.tar.gz","has_sig":false,"md5_digest":"8f986153bec834eccc18e6f93aba6507","packagetype":"sdist","python_version":"source","requires_python":null,"size":484696,"upload_time":"2019-02-08T11:10:09","upload_time_iso_8601":"2019-02-08T11:10:09.088840Z","url":"https://files.pythonhosted.org/packages/10/9c/6ec256d059af1457c74004c61832a5edb1a21503a2b28c12bec04e48b360/kiwi-9.17.16.tar.gz","yanked":false,"yanked_reason":null}],"9.17.17":[{"comment_text":"","digests":{"md5":"65d702f27654160f13fee95a92df4737","sha256":"f8354b413e569e5ff967694ed2189e2044a8b2123101c556ef098373bc4dc8ae"},"downloads":-1,"filename":"kiwi-9.17.17.tar.gz","has_sig":false,"md5_digest":"65d702f27654160f13fee95a92df4737","packagetype":"sdist","python_version":"source","requires_python":null,"size":486758,"upload_time":"2019-02-09T15:10:50","upload_time_iso_8601":"2019-02-09T15:10:50.993540Z","url":"https://files.pythonhosted.org/packages/69/e4/e21648cd4f49ab6d8d46174539050f72729966fab9b871630376a29d9557/kiwi-9.17.17.tar.gz","yanked":false,"yanked_reason":null}],"9.17.18":[{"comment_text":"","digests":{"md5":"4fa61730114564dabb93bf18c6b0f3cd","sha256":"400f2f63b2c26279a1594893861c5850bf4ed4a7754ced06195edc9e6efa5ba7"},"downloads":-1,"filename":"kiwi-9.17.18.tar.gz","has_sig":false,"md5_digest":"4fa61730114564dabb93bf18c6b0f3cd","packagetype":"sdist","python_version":"source","requires_python":null,"size":487221,"upload_time":"2019-02-14T10:23:40","upload_time_iso_8601":"2019-02-14T10:23:40.098387Z","url":"https://files.pythonhosted.org/packages/a5/55/5071f1a959028d7856fe9be32742f1459e760b1f1fee49933de98b85f887/kiwi-9.17.18.tar.gz","yanked":false,"yanked_reason":null}],"9.17.19":[{"comment_text":"","digests":{"md5":"ab502ed4a57bb363e6ff6b57cb14ae90","sha256":"001cdb43a452733694b9e9fc6643b54e1e63b155d1062a55d921e2f534ae6592"},"downloads":-1,"filename":"kiwi-9.17.19.tar.gz","has_sig":false,"md5_digest":"ab502ed4a57bb363e6ff6b57cb14ae90","packagetype":"sdist","python_version":"source","requires_python":null,"size":487216,"upload_time":"2019-02-14T20:38:50","upload_time_iso_8601":"2019-02-14T20:38:50.885216Z","url":"https://files.pythonhosted.org/packages/ca/dd/847776248d40bf68d9e6ef081d955d3f8a55eeaeb89e586d33d7fbc3f291/kiwi-9.17.19.tar.gz","yanked":false,"yanked_reason":null}],"9.17.2":[{"comment_text":"","digests":{"md5":"f977453a0685ccdb584ae99f88ca5dde","sha256":"24abbff6a24c58b4238ce8fcf302283f6b319aeefb2355e572508da3b14af04b"},"downloads":-1,"filename":"kiwi-9.17.2.tar.gz","has_sig":false,"md5_digest":"f977453a0685ccdb584ae99f88ca5dde","packagetype":"sdist","python_version":"source","requires_python":null,"size":472760,"upload_time":"2018-11-23T13:44:41","upload_time_iso_8601":"2018-11-23T13:44:41.405096Z","url":"https://files.pythonhosted.org/packages/79/30/bc87f779e8d8237cfa154a6f7fe07f0757404af20535e8a1d5a93d02cc33/kiwi-9.17.2.tar.gz","yanked":false,"yanked_reason":null}],"9.17.20":[{"comment_text":"","digests":{"md5":"b51d6a21ae102edd82eb8194595ed76a","sha256":"615033eb8122bdc1e4f718ecd7f3b7a84829689c3d4d356673b8d7e95269e676"},"downloads":-1,"filename":"kiwi-9.17.20.tar.gz","has_sig":false,"md5_digest":"b51d6a21ae102edd82eb8194595ed76a","packagetype":"sdist","python_version":"source","requires_python":null,"size":490688,"upload_time":"2019-02-22T16:11:49","upload_time_iso_8601":"2019-02-22T16:11:49.669995Z","url":"https://files.pythonhosted.org/packages/d9/cd/a2aefc8b9664cefc32cea8641c15fa0afb270dd8af86ca52a6e5be9c2ede/kiwi-9.17.20.tar.gz","yanked":false,"yanked_reason":null}],"9.17.21":[{"comment_text":"","digests":{"md5":"324467592b097c8592b952ab36c2c1e5","sha256":"c4f9d0c7b6a28aef3cee702a87add00573f336f85ed15024a2884b8f8e996ced"},"downloads":-1,"filename":"kiwi-9.17.21.tar.gz","has_sig":false,"md5_digest":"324467592b097c8592b952ab36c2c1e5","packagetype":"sdist","python_version":"source","requires_python":null,"size":490735,"upload_time":"2019-02-22T16:23:58","upload_time_iso_8601":"2019-02-22T16:23:58.434230Z","url":"https://files.pythonhosted.org/packages/5d/e3/ca360e723cb497145cf0e3c14c803b57303a3164ff1d326f2c0615956da8/kiwi-9.17.21.tar.gz","yanked":false,"yanked_reason":null}],"9.17.22":[{"comment_text":"","digests":{"md5":"447a738843079081f2ffe2e884fe5a8a","sha256":"b4e9fa3beaf861d8595b63e0d8fac656ea4d5214b9578b6e022429683e443c1c"},"downloads":-1,"filename":"kiwi-9.17.22.tar.gz","has_sig":false,"md5_digest":"447a738843079081f2ffe2e884fe5a8a","packagetype":"sdist","python_version":"source","requires_python":null,"size":490695,"upload_time":"2019-02-23T19:56:31","upload_time_iso_8601":"2019-02-23T19:56:31.763990Z","url":"https://files.pythonhosted.org/packages/78/5d/16e2ac7d03353aa4ad73e53dc00b9e8a41ad95ef7182af2d7e6a1298a564/kiwi-9.17.22.tar.gz","yanked":false,"yanked_reason":null}],"9.17.23":[{"comment_text":"","digests":{"md5":"d96fe9bfe7b8fdece4336eeea9f818e8","sha256":"5a6ac9d0aa32361e0336278dee941868430a48e411d59bd3f9f3f4dcb469d074"},"downloads":-1,"filename":"kiwi-9.17.23.tar.gz","has_sig":false,"md5_digest":"d96fe9bfe7b8fdece4336eeea9f818e8","packagetype":"sdist","python_version":"source","requires_python":null,"size":491971,"upload_time":"2019-02-27T14:21:28","upload_time_iso_8601":"2019-02-27T14:21:28.012222Z","url":"https://files.pythonhosted.org/packages/ce/c4/5b576af078e61fb2a4c8f76ebed33fc9e4ed8d0125d0a5f19fdc75d6e7aa/kiwi-9.17.23.tar.gz","yanked":false,"yanked_reason":null}],"9.17.24":[{"comment_text":"","digests":{"md5":"51a0c88d5c42fbb56d4f0704d8efd0ec","sha256":"6b29822df17c79c9c2c1eb4a256ddc613d2710de0cdbf9df7f8dab3010622a44"},"downloads":-1,"filename":"kiwi-9.17.24.tar.gz","has_sig":false,"md5_digest":"51a0c88d5c42fbb56d4f0704d8efd0ec","packagetype":"sdist","python_version":"source","requires_python":null,"size":492663,"upload_time":"2019-03-07T14:51:46","upload_time_iso_8601":"2019-03-07T14:51:46.170533Z","url":"https://files.pythonhosted.org/packages/b4/2e/a16d632b9d939a56745784a84394b89d7d8030929d1b7f72efbc48ee5bb9/kiwi-9.17.24.tar.gz","yanked":false,"yanked_reason":null}],"9.17.25":[{"comment_text":"","digests":{"md5":"874c5083ca5ffb9387f8c7df90ae363d","sha256":"d80493b98896f0a50ff84bec34e2573998738ee7755a5167e074973ee5110fe5"},"downloads":-1,"filename":"kiwi-9.17.25.tar.gz","has_sig":false,"md5_digest":"874c5083ca5ffb9387f8c7df90ae363d","packagetype":"sdist","python_version":"source","requires_python":null,"size":492634,"upload_time":"2019-03-07T15:19:27","upload_time_iso_8601":"2019-03-07T15:19:27.889238Z","url":"https://files.pythonhosted.org/packages/24/db/1d7c0ea648314e3486771355797b71f84100aba28237518fd6223f95a77d/kiwi-9.17.25.tar.gz","yanked":false,"yanked_reason":null}],"9.17.26":[{"comment_text":"","digests":{"md5":"70c2a734ca9694a0df31727f24f37bfd","sha256":"9e3ad944f387a126718db7bdf499e54737a0989a26014d53eb712e1362df02c0"},"downloads":-1,"filename":"kiwi-9.17.26.tar.gz","has_sig":false,"md5_digest":"70c2a734ca9694a0df31727f24f37bfd","packagetype":"sdist","python_version":"source","requires_python":null,"size":492728,"upload_time":"2019-03-07T15:53:25","upload_time_iso_8601":"2019-03-07T15:53:25.660353Z","url":"https://files.pythonhosted.org/packages/eb/38/95cf60273e29f1dae54bb0338c4ad5b46fa7736d2b06be4eb6d27c948fd5/kiwi-9.17.26.tar.gz","yanked":false,"yanked_reason":null}],"9.17.27":[{"comment_text":"","digests":{"md5":"a3a0c3378d642a2b7d700189811745e0","sha256":"bf9a7196fff61108454472d40766bbe27284ec9da1bba09d8d1b20e5d663ff9c"},"downloads":-1,"filename":"kiwi-9.17.27.tar.gz","has_sig":false,"md5_digest":"a3a0c3378d642a2b7d700189811745e0","packagetype":"sdist","python_version":"source","requires_python":null,"size":492739,"upload_time":"2019-03-10T14:50:59","upload_time_iso_8601":"2019-03-10T14:50:59.163785Z","url":"https://files.pythonhosted.org/packages/49/68/317a5efec4a0d4dbdbec2062ddeb039b46ad8b23c8edab7f1c26dba60615/kiwi-9.17.27.tar.gz","yanked":false,"yanked_reason":null}],"9.17.28":[{"comment_text":"","digests":{"md5":"4db155cb3c10f5b3a34fd71b8aa20119","sha256":"e6e62048014f7ca5545201a5094598e0b352572abca9b7cb662dcdcaa8bba9da"},"downloads":-1,"filename":"kiwi-9.17.28.tar.gz","has_sig":false,"md5_digest":"4db155cb3c10f5b3a34fd71b8aa20119","packagetype":"sdist","python_version":"source","requires_python":null,"size":629619,"upload_time":"2019-03-13T13:51:12","upload_time_iso_8601":"2019-03-13T13:51:12.086165Z","url":"https://files.pythonhosted.org/packages/b5/37/1f4353da62a7f1db6b51c6e1cfa99f7f14abc73e88b87cd8503c24919a45/kiwi-9.17.28.tar.gz","yanked":false,"yanked_reason":null}],"9.17.29":[{"comment_text":"","digests":{"md5":"524e29f35a82d59001646bac6b3facda","sha256":"950ce1e0c65b9b94e2289508c836e04610f0b28b952dd4df1e13bb3d8f3d025e"},"downloads":-1,"filename":"kiwi-9.17.29.tar.gz","has_sig":false,"md5_digest":"524e29f35a82d59001646bac6b3facda","packagetype":"sdist","python_version":"source","requires_python":null,"size":629736,"upload_time":"2019-03-13T14:02:32","upload_time_iso_8601":"2019-03-13T14:02:32.827952Z","url":"https://files.pythonhosted.org/packages/fd/1e/9c56671a31ea2102e09105e2407a30a8cdd4a38a647f6de8cf2407563b49/kiwi-9.17.29.tar.gz","yanked":false,"yanked_reason":null}],"9.17.3":[{"comment_text":"","digests":{"md5":"c169d91baf3f67f0a677907eb6ae1465","sha256":"c9c822a1f0b43d0cb0c3fb399f5b73c44ec2a0943db42220e4a143c13db4173b"},"downloads":-1,"filename":"kiwi-9.17.3.tar.gz","has_sig":false,"md5_digest":"c169d91baf3f67f0a677907eb6ae1465","packagetype":"sdist","python_version":"source","requires_python":null,"size":473190,"upload_time":"2018-11-26T14:47:13","upload_time_iso_8601":"2018-11-26T14:47:13.393349Z","url":"https://files.pythonhosted.org/packages/57/7e/bf504af570992d19cc605156844c9a1bd5740423a18bd45998230abe38f5/kiwi-9.17.3.tar.gz","yanked":false,"yanked_reason":null}],"9.17.30":[{"comment_text":"","digests":{"md5":"445cbd16ea81c2f6565ad82f14838b60","sha256":"ca20f566577698772de8ca2159f46f5f41b7d66f1717cf428ff317dce80a44cb"},"downloads":-1,"filename":"kiwi-9.17.30.tar.gz","has_sig":false,"md5_digest":"445cbd16ea81c2f6565ad82f14838b60","packagetype":"sdist","python_version":"source","requires_python":null,"size":630176,"upload_time":"2019-03-14T15:34:10","upload_time_iso_8601":"2019-03-14T15:34:10.033907Z","url":"https://files.pythonhosted.org/packages/13/a0/65a13716842c2be8ebbec731f2ddaa54caa2c2175b805f38675d15093f5d/kiwi-9.17.30.tar.gz","yanked":false,"yanked_reason":null}],"9.17.31":[{"comment_text":"","digests":{"md5":"3912ee471c65ef861d6db9eae1dcef2a","sha256":"0b93717a0ee9a5eb31dd11eb1552c4ca2e5c06192e7a0d1f93181520fb6dfe06"},"downloads":-1,"filename":"kiwi-9.17.31.tar.gz","has_sig":false,"md5_digest":"3912ee471c65ef861d6db9eae1dcef2a","packagetype":"sdist","python_version":"source","requires_python":null,"size":714156,"upload_time":"2019-03-17T19:11:29","upload_time_iso_8601":"2019-03-17T19:11:29.185023Z","url":"https://files.pythonhosted.org/packages/5a/24/00413ece15ce2da6d07d02adee89279d51bc18c0549d4b9f9531336cb54a/kiwi-9.17.31.tar.gz","yanked":false,"yanked_reason":null}],"9.17.32":[{"comment_text":"","digests":{"md5":"165f3f3ef15b92236182ea7779dde223","sha256":"d80039885e645f09e506b5094d1b039e70e0cb52b86bbc689af84b35da49ed59"},"downloads":-1,"filename":"kiwi-9.17.32.tar.gz","has_sig":false,"md5_digest":"165f3f3ef15b92236182ea7779dde223","packagetype":"sdist","python_version":"source","requires_python":null,"size":714140,"upload_time":"2019-03-19T09:31:18","upload_time_iso_8601":"2019-03-19T09:31:18.400491Z","url":"https://files.pythonhosted.org/packages/4b/f9/bb160bca67fa78efc9aef2df992c2be6c6d96ead248ab209f516924409e7/kiwi-9.17.32.tar.gz","yanked":false,"yanked_reason":null}],"9.17.33":[{"comment_text":"","digests":{"md5":"6603916f28c727c68fe693e61a6f6ecd","sha256":"04c31493ec4bd3f021b28e0034836221bb771b2ff15a5fa0d2b383417d2e2dee"},"downloads":-1,"filename":"kiwi-9.17.33.tar.gz","has_sig":false,"md5_digest":"6603916f28c727c68fe693e61a6f6ecd","packagetype":"sdist","python_version":"source","requires_python":null,"size":715131,"upload_time":"2019-03-28T14:50:14","upload_time_iso_8601":"2019-03-28T14:50:14.048390Z","url":"https://files.pythonhosted.org/packages/ab/6d/507bac82d8be4fcc850e20314e766c20661d1741268ddbd8fd2bc9c34fb3/kiwi-9.17.33.tar.gz","yanked":false,"yanked_reason":null}],"9.17.34":[{"comment_text":"","digests":{"md5":"4ed105a0a073162864bea2e188e9b7fd","sha256":"a0ed32d4a4d9af8c357b712dc1ba30a3b54478c006ffe9581ee758141b563bc7"},"downloads":-1,"filename":"kiwi-9.17.34.tar.gz","has_sig":false,"md5_digest":"4ed105a0a073162864bea2e188e9b7fd","packagetype":"sdist","python_version":"source","requires_python":null,"size":718233,"upload_time":"2019-03-29T15:18:40","upload_time_iso_8601":"2019-03-29T15:18:40.600158Z","url":"https://files.pythonhosted.org/packages/2c/6a/7c6a05d991c499f6c30e3892dc1781c5288671a05905871dd7c50f1df391/kiwi-9.17.34.tar.gz","yanked":false,"yanked_reason":null}],"9.17.36":[{"comment_text":"","digests":{"md5":"f1c499eb2d277798ad9d7b855ea1edde","sha256":"200dbc24029bd6f40e7fca9720fd69b13fa87a36299aff53799d98c73f14e1b5"},"downloads":-1,"filename":"kiwi-9.17.36.tar.gz","has_sig":false,"md5_digest":"f1c499eb2d277798ad9d7b855ea1edde","packagetype":"sdist","python_version":"source","requires_python":null,"size":715117,"upload_time":"2019-04-10T17:07:29","upload_time_iso_8601":"2019-04-10T17:07:29.911666Z","url":"https://files.pythonhosted.org/packages/c3/b9/a0e51df7f1d796a69148f1eac0a4bfa80a24ee06ff1dc7c6eedc98589ce0/kiwi-9.17.36.tar.gz","yanked":false,"yanked_reason":null}],"9.17.37":[{"comment_text":"","digests":{"md5":"e5d3426bcaeb270f00f50715f478853b","sha256":"8ccedd0c2a723bee9958fa07005366a418b37e947d604d050abf4f2b5f6220cf"},"downloads":-1,"filename":"kiwi-9.17.37.tar.gz","has_sig":false,"md5_digest":"e5d3426bcaeb270f00f50715f478853b","packagetype":"sdist","python_version":"source","requires_python":null,"size":715333,"upload_time":"2019-04-11T07:58:50","upload_time_iso_8601":"2019-04-11T07:58:50.609703Z","url":"https://files.pythonhosted.org/packages/33/00/970285e9c560b6685f71c5c1c0307da51f3daba521f01348fab28415e29f/kiwi-9.17.37.tar.gz","yanked":false,"yanked_reason":null}],"9.17.38":[{"comment_text":"","digests":{"md5":"e8524c34be15324c79d6608f7b9414f0","sha256":"9c4000fce6b5bfbcaa7a8c0af5ac89348c44cce4f4109121f6fcda56636d637f"},"downloads":-1,"filename":"kiwi-9.17.38.tar.gz","has_sig":false,"md5_digest":"e8524c34be15324c79d6608f7b9414f0","packagetype":"sdist","python_version":"source","requires_python":null,"size":715778,"upload_time":"2019-04-22T22:00:09","upload_time_iso_8601":"2019-04-22T22:00:09.398025Z","url":"https://files.pythonhosted.org/packages/f7/28/321c90ad9238198735e9e3f8b621f148919f45a0e1e8eb4ac2d1f2bd1d97/kiwi-9.17.38.tar.gz","yanked":false,"yanked_reason":null}],"9.17.39":[{"comment_text":"","digests":{"md5":"ccc31b08249dd0ffdf2402b6e20de53e","sha256":"4177e089884ab0e72c3c07abd5484f8dc7e6da14a934b46856f7edb88e247e84"},"downloads":-1,"filename":"kiwi-9.17.39.tar.gz","has_sig":false,"md5_digest":"ccc31b08249dd0ffdf2402b6e20de53e","packagetype":"sdist","python_version":"source","requires_python":null,"size":717275,"upload_time":"2019-05-24T07:13:21","upload_time_iso_8601":"2019-05-24T07:13:21.837782Z","url":"https://files.pythonhosted.org/packages/82/27/f1ed7abba101975d9fe49b08336c07088be68325c5637bc58786439d84c5/kiwi-9.17.39.tar.gz","yanked":false,"yanked_reason":null}],"9.17.4":[{"comment_text":"","digests":{"md5":"4e1844e07f1ca81e5b7f5b62ab4aa747","sha256":"f8f5717d1e12126d9bd858df6f442c4dac59b9e8d9efa781cef1f71b42fadb1d"},"downloads":-1,"filename":"kiwi-9.17.4.tar.gz","has_sig":false,"md5_digest":"4e1844e07f1ca81e5b7f5b62ab4aa747","packagetype":"sdist","python_version":"source","requires_python":null,"size":473666,"upload_time":"2018-12-11T07:34:16","upload_time_iso_8601":"2018-12-11T07:34:16.067275Z","url":"https://files.pythonhosted.org/packages/a3/a7/d963a05f9f282dbc58a95acc3390551fcaf117b0aa214036b78b4074b078/kiwi-9.17.4.tar.gz","yanked":false,"yanked_reason":null}],"9.17.40":[{"comment_text":"","digests":{"md5":"a29a14b5fddd20db3a831392341ca5b1","sha256":"d0b5bcf10859e74ecf229692f3747f1a73220944f29c660f282517d8f821075f"},"downloads":-1,"filename":"kiwi-9.17.40.tar.gz","has_sig":false,"md5_digest":"a29a14b5fddd20db3a831392341ca5b1","packagetype":"sdist","python_version":"source","requires_python":null,"size":718500,"upload_time":"2019-06-07T08:34:16","upload_time_iso_8601":"2019-06-07T08:34:16.301373Z","url":"https://files.pythonhosted.org/packages/24/8d/f4f4dd1bc5b18cf9abea612b6c780a20b13b9fda9d4c22ef7866f8bcc080/kiwi-9.17.40.tar.gz","yanked":false,"yanked_reason":null}],"9.17.41":[{"comment_text":"","digests":{"md5":"f395dc8e01192d6372ae0ff1c7353828","sha256":"229e6148a6dd9aeaa0bac5217d802ce4b6588dd3353ba67e5298a6ac46eb27d9"},"downloads":-1,"filename":"kiwi-9.17.41.tar.gz","has_sig":false,"md5_digest":"f395dc8e01192d6372ae0ff1c7353828","packagetype":"sdist","python_version":"source","requires_python":null,"size":720282,"upload_time":"2019-07-04T08:35:07","upload_time_iso_8601":"2019-07-04T08:35:07.504457Z","url":"https://files.pythonhosted.org/packages/74/5d/e3ba8524e4ff27a14c43894c9076516539f12ee513c79213e64dabde3387/kiwi-9.17.41.tar.gz","yanked":false,"yanked_reason":null}],"9.17.42":[{"comment_text":"","digests":{"md5":"b0ea8799514e358007937c2a76f70948","sha256":"b58f884d562724c4a7d242d5085c56988ea88a37353ae1de9fe45b15a850ee7e"},"downloads":-1,"filename":"kiwi-9.17.42.tar.gz","has_sig":false,"md5_digest":"b0ea8799514e358007937c2a76f70948","packagetype":"sdist","python_version":"source","requires_python":null,"size":721371,"upload_time":"2019-07-08T10:20:48","upload_time_iso_8601":"2019-07-08T10:20:48.238717Z","url":"https://files.pythonhosted.org/packages/09/be/ad94e4d6fc0e154c01064179571dc50c277cc3e63116d02f55d9c82335d5/kiwi-9.17.42.tar.gz","yanked":false,"yanked_reason":null}],"9.17.5":[{"comment_text":"","digests":{"md5":"b6009be6097bfe9d22c7e92ad07d3c6c","sha256":"4c188879ed34d47bea48c3a3ed076f094c559db98275b8fdbb517c50cc897235"},"downloads":-1,"filename":"kiwi-9.17.5.tar.gz","has_sig":false,"md5_digest":"b6009be6097bfe9d22c7e92ad07d3c6c","packagetype":"sdist","python_version":"source","requires_python":null,"size":479655,"upload_time":"2018-12-12T11:37:15","upload_time_iso_8601":"2018-12-12T11:37:15.660218Z","url":"https://files.pythonhosted.org/packages/d6/f0/41bee9bb7a60a775b8437cf02bd6445975018e49b91ae20e4099c28b70ff/kiwi-9.17.5.tar.gz","yanked":false,"yanked_reason":null}],"9.17.6":[{"comment_text":"","digests":{"md5":"d0d75089fb1fbfd49d327ccc8f157150","sha256":"5585b936a0d95ca639347b070b54bd157c42267e09450af8bfa0f16dffe7151b"},"downloads":-1,"filename":"kiwi-9.17.6.tar.gz","has_sig":false,"md5_digest":"d0d75089fb1fbfd49d327ccc8f157150","packagetype":"sdist","python_version":"source","requires_python":null,"size":479742,"upload_time":"2018-12-19T08:29:37","upload_time_iso_8601":"2018-12-19T08:29:37.337137Z","url":"https://files.pythonhosted.org/packages/d8/65/888d9d25eabfc80bf81aadcab61aeb7af2f94a32d7cf05e8f3d3d5ac19d3/kiwi-9.17.6.tar.gz","yanked":false,"yanked_reason":null}],"9.17.7":[{"comment_text":"","digests":{"md5":"54a16517c4db123abcf70caf7a0a53de","sha256":"8322c6b2214f8dbadd39f0a755de83eff3c582cf381396bb127490b4d8820480"},"downloads":-1,"filename":"kiwi-9.17.7.tar.gz","has_sig":false,"md5_digest":"54a16517c4db123abcf70caf7a0a53de","packagetype":"sdist","python_version":"source","requires_python":null,"size":480473,"upload_time":"2019-01-07T10:31:55","upload_time_iso_8601":"2019-01-07T10:31:55.586632Z","url":"https://files.pythonhosted.org/packages/91/0e/f79b72ac97a2df141061c98b0c18ab6163d5137bca92af77ba233419398b/kiwi-9.17.7.tar.gz","yanked":false,"yanked_reason":null}],"9.17.8":[{"comment_text":"","digests":{"md5":"175385249cec4f45298065d1bf4845e5","sha256":"e9859e1c4ff9cffcc18f09d7e3b10196f9138d3f53519d949e5425d73e7038e7"},"downloads":-1,"filename":"kiwi-9.17.8.tar.gz","has_sig":false,"md5_digest":"175385249cec4f45298065d1bf4845e5","packagetype":"sdist","python_version":"source","requires_python":null,"size":480878,"upload_time":"2019-01-11T10:12:17","upload_time_iso_8601":"2019-01-11T10:12:17.129318Z","url":"https://files.pythonhosted.org/packages/25/0f/f19c8c2baca5fc2b7bb8427dec786a682a724030aff6cdf701858392abee/kiwi-9.17.8.tar.gz","yanked":false,"yanked_reason":null}],"9.17.9":[{"comment_text":"","digests":{"md5":"c2a4352ee19008b9d04096f480f1747b","sha256":"e4b008c430804e7f70af4f5236419c69bddbc424251de3f45e1b6c66488edf16"},"downloads":-1,"filename":"kiwi-9.17.9.tar.gz","has_sig":false,"md5_digest":"c2a4352ee19008b9d04096f480f1747b","packagetype":"sdist","python_version":"source","requires_python":null,"size":481410,"upload_time":"2019-01-17T13:35:13","upload_time_iso_8601":"2019-01-17T13:35:13.270876Z","url":"https://files.pythonhosted.org/packages/27/6c/276ca9a4c88a909bb855eb038e4314c9e6e4017a7f316fef851b9c9d80f6/kiwi-9.17.9.tar.gz","yanked":false,"yanked_reason":null}],"9.18.0":[{"comment_text":"","digests":{"md5":"a87560195645b8993d9eea932f33d51e","sha256":"52a82961dc562db78c354e1959bdecd273d98737c9eaeeb0f2c856fde4f099f5"},"downloads":-1,"filename":"kiwi-9.18.0.tar.gz","has_sig":false,"md5_digest":"a87560195645b8993d9eea932f33d51e","packagetype":"sdist","python_version":"source","requires_python":null,"size":719376,"upload_time":"2019-07-11T15:23:41","upload_time_iso_8601":"2019-07-11T15:23:41.032237Z","url":"https://files.pythonhosted.org/packages/33/36/109901c0be471d9ca16d1b04af124a362c494b95bdd0dbabd2bec0feaee5/kiwi-9.18.0.tar.gz","yanked":false,"yanked_reason":null}],"9.18.1":[{"comment_text":"","digests":{"md5":"79f8b7e3174e22af60d01971f999ae38","sha256":"436c1696622307cccfe5ec8ead206e4fcfe797c7b07cb576c552a288a024de60"},"downloads":-1,"filename":"kiwi-9.18.1.tar.gz","has_sig":false,"md5_digest":"79f8b7e3174e22af60d01971f999ae38","packagetype":"sdist","python_version":"source","requires_python":null,"size":719352,"upload_time":"2019-07-12T06:55:12","upload_time_iso_8601":"2019-07-12T06:55:12.127499Z","url":"https://files.pythonhosted.org/packages/b6/7b/8bc1fec97900be5e94af1921907eb5a8b53e3efa04556ebdb0af028838ca/kiwi-9.18.1.tar.gz","yanked":false,"yanked_reason":null}],"9.18.10":[{"comment_text":"","digests":{"md5":"b37d77465c0fe340188b46b571930af6","sha256":"16d445c0eec374156b04a107cfe277ad09ec1281a7601c8b1de77a14bca37d3a"},"downloads":-1,"filename":"kiwi-9.18.10.tar.gz","has_sig":false,"md5_digest":"b37d77465c0fe340188b46b571930af6","packagetype":"sdist","python_version":"source","requires_python":null,"size":720907,"upload_time":"2019-09-06T09:51:54","upload_time_iso_8601":"2019-09-06T09:51:54.541959Z","url":"https://files.pythonhosted.org/packages/f9/07/5cffb067705a37d779a59666f10c681235f42e0abb8308d86a0d6fe9fa92/kiwi-9.18.10.tar.gz","yanked":false,"yanked_reason":null}],"9.18.11":[{"comment_text":"","digests":{"md5":"347a8d06e0c79e9db644c9c35def7eec","sha256":"3ab63796196f8ef77ef20ffd576d38bc2d59859df59505e7047f99d8a0c5f916"},"downloads":-1,"filename":"kiwi-9.18.11.tar.gz","has_sig":false,"md5_digest":"347a8d06e0c79e9db644c9c35def7eec","packagetype":"sdist","python_version":"source","requires_python":null,"size":721020,"upload_time":"2019-08-14T10:16:00","upload_time_iso_8601":"2019-08-14T10:16:00.233725Z","url":"https://files.pythonhosted.org/packages/c7/5c/c637f03fa53d13b13834ee524e8b7dda6e3ab5de4a5f55c6c0f8c319c5ba/kiwi-9.18.11.tar.gz","yanked":false,"yanked_reason":null}],"9.18.12":[{"comment_text":"","digests":{"md5":"12d1053436bcb037ecd0c59721abc720","sha256":"98260b734862607c45d51036b963c08e63f362f1e077a1de1002f598168cbcd7"},"downloads":-1,"filename":"kiwi-9.18.12.tar.gz","has_sig":false,"md5_digest":"12d1053436bcb037ecd0c59721abc720","packagetype":"sdist","python_version":"source","requires_python":null,"size":722129,"upload_time":"2019-08-20T08:02:39","upload_time_iso_8601":"2019-08-20T08:02:39.292276Z","url":"https://files.pythonhosted.org/packages/ad/5b/bf8e6d7408584e4aa248e5eac9cd3ac92b7a2713eb082208928d77787112/kiwi-9.18.12.tar.gz","yanked":false,"yanked_reason":null}],"9.18.13":[{"comment_text":"","digests":{"md5":"7c96c4f014327de9b0b59c1f8ea23f21","sha256":"0fbdb88c7aa147ef4481a99712ad5cb4613be3f39d181603a8de7ee14a44e377"},"downloads":-1,"filename":"kiwi-9.18.13.tar.gz","has_sig":false,"md5_digest":"7c96c4f014327de9b0b59c1f8ea23f21","packagetype":"sdist","python_version":"source","requires_python":null,"size":722936,"upload_time":"2019-09-06T09:57:26","upload_time_iso_8601":"2019-09-06T09:57:26.101927Z","url":"https://files.pythonhosted.org/packages/6d/8a/6f9307afc0a33c65268ec7d2e945076b8804bf1a138e7e68f21f76e66ece/kiwi-9.18.13.tar.gz","yanked":false,"yanked_reason":null}],"9.18.14":[{"comment_text":"","digests":{"md5":"46ebcc0b4a41fa0e9fb7d99f3bc47c39","sha256":"10c4eb3a82e03a94b551e02fd2fe915526473df0abedb22bec5a07a4c7c3c646"},"downloads":-1,"filename":"kiwi-9.18.14.tar.gz","has_sig":false,"md5_digest":"46ebcc0b4a41fa0e9fb7d99f3bc47c39","packagetype":"sdist","python_version":"source","requires_python":null,"size":722961,"upload_time":"2019-09-13T09:22:13","upload_time_iso_8601":"2019-09-13T09:22:13.601022Z","url":"https://files.pythonhosted.org/packages/cf/c0/956eee813820b69cf3fef471c3a871ba7403c273cfe4e53fee6655ad863d/kiwi-9.18.14.tar.gz","yanked":false,"yanked_reason":null}],"9.18.15":[{"comment_text":"","digests":{"md5":"db21c82721450c65c749eef43d4743ef","sha256":"d568e2b7158972fe0c195a8a474e2fa2317e98db81951fca5dabaa58418ad90b"},"downloads":-1,"filename":"kiwi-9.18.15.tar.gz","has_sig":false,"md5_digest":"db21c82721450c65c749eef43d4743ef","packagetype":"sdist","python_version":"source","requires_python":null,"size":723093,"upload_time":"2019-09-13T09:27:28","upload_time_iso_8601":"2019-09-13T09:27:28.890778Z","url":"https://files.pythonhosted.org/packages/6f/67/e28d1e054a223c647712421d5c77ce52fdd1e57e9dd3a7fa9b97fcc38236/kiwi-9.18.15.tar.gz","yanked":false,"yanked_reason":null}],"9.18.16":[{"comment_text":"","digests":{"md5":"89ad55fa1ddeab1ffe566f624c0efcdb","sha256":"0754461eb1e8d596c02ef934a92acdf4c4110fcde69406e21a36431b17f51ac0"},"downloads":-1,"filename":"kiwi-9.18.16.tar.gz","has_sig":false,"md5_digest":"89ad55fa1ddeab1ffe566f624c0efcdb","packagetype":"sdist","python_version":"source","requires_python":null,"size":723095,"upload_time":"2019-09-17T11:47:22","upload_time_iso_8601":"2019-09-17T11:47:22.341046Z","url":"https://files.pythonhosted.org/packages/56/d4/a233dbd186cadd85566425ab4dac9d22f0f0ba7ff5671bc1d0065a3b91f5/kiwi-9.18.16.tar.gz","yanked":false,"yanked_reason":null}],"9.18.17":[{"comment_text":"","digests":{"md5":"4ee21d78ed197c92befacdf598834aee","sha256":"faea7ddf1bbc72058c8f294af6e18aec2aaf170d50e1d563fb6cd93733753d56"},"downloads":-1,"filename":"kiwi-9.18.17.tar.gz","has_sig":false,"md5_digest":"4ee21d78ed197c92befacdf598834aee","packagetype":"sdist","python_version":"source","requires_python":null,"size":723109,"upload_time":"2019-09-20T08:24:02","upload_time_iso_8601":"2019-09-20T08:24:02.314909Z","url":"https://files.pythonhosted.org/packages/bf/e6/ee88b59ad1ee57c8e783f0ef83b4f7d6366be7e68a87d7ce06586b93e4fe/kiwi-9.18.17.tar.gz","yanked":false,"yanked_reason":null}],"9.18.18":[{"comment_text":"","digests":{"md5":"a2833f741408ea267858fe88d6966191","sha256":"36dfece8a65a9b622cfd577d6f5d7c9c073757d40f91986ec94b79932a92372a"},"downloads":-1,"filename":"kiwi-9.18.18.tar.gz","has_sig":false,"md5_digest":"a2833f741408ea267858fe88d6966191","packagetype":"sdist","python_version":"source","requires_python":null,"size":723500,"upload_time":"2019-09-25T13:45:54","upload_time_iso_8601":"2019-09-25T13:45:54.779318Z","url":"https://files.pythonhosted.org/packages/56/15/94e217bdd8c0f9e17b3d49d30ec72449904d57707986b79850590e929a8b/kiwi-9.18.18.tar.gz","yanked":false,"yanked_reason":null}],"9.18.19":[{"comment_text":"","digests":{"md5":"66f499355fe2cd4923215e392adcea4c","sha256":"0a31028700f4b3e5c6ddc797a7f5e5979f67ac551c3c5ee0bf28f7c6272c6384"},"downloads":-1,"filename":"kiwi-9.18.19.tar.gz","has_sig":false,"md5_digest":"66f499355fe2cd4923215e392adcea4c","packagetype":"sdist","python_version":"source","requires_python":null,"size":723747,"upload_time":"2019-10-10T09:48:36","upload_time_iso_8601":"2019-10-10T09:48:36.806556Z","url":"https://files.pythonhosted.org/packages/3b/5b/bebb5d04ee26a651bebd21885d1fa9caf77956b2b39eb90fcf6eb54b2184/kiwi-9.18.19.tar.gz","yanked":false,"yanked_reason":null}],"9.18.2":[{"comment_text":"","digests":{"md5":"80e7979450a55a84a6ad8305384d8b64","sha256":"fccb9e70e9d65048a51ca958b957b18ae404a0ed42db7dec7b493d528f295bea"},"downloads":-1,"filename":"kiwi-9.18.2.tar.gz","has_sig":false,"md5_digest":"80e7979450a55a84a6ad8305384d8b64","packagetype":"sdist","python_version":"source","requires_python":null,"size":719412,"upload_time":"2019-07-12T08:54:17","upload_time_iso_8601":"2019-07-12T08:54:17.637961Z","url":"https://files.pythonhosted.org/packages/b2/a7/38d1d966937ca8882b12ccd905aa2967f3f7926b83cbcfbed1881a1bf1c4/kiwi-9.18.2.tar.gz","yanked":false,"yanked_reason":null}],"9.18.20":[{"comment_text":"","digests":{"md5":"94ac328426e5ce672094619afa3285b1","sha256":"c91969f4e2df949e66175dffa688d2713cb0e79669031b3cd19156503d4960eb"},"downloads":-1,"filename":"kiwi-9.18.20.tar.gz","has_sig":false,"md5_digest":"94ac328426e5ce672094619afa3285b1","packagetype":"sdist","python_version":"source","requires_python":null,"size":724870,"upload_time":"2019-10-16T15:02:26","upload_time_iso_8601":"2019-10-16T15:02:26.206779Z","url":"https://files.pythonhosted.org/packages/0c/e2/320f0b22dbe1bf69107813e620f10e0d1112a34124304e300e2bf7aad737/kiwi-9.18.20.tar.gz","yanked":false,"yanked_reason":null}],"9.18.21":[{"comment_text":"","digests":{"md5":"ebf3c3968c4defb981ca2b1e8226428b","sha256":"100008589d1e53021984d1c0e4b814622a78d478728b1164534152b332946952"},"downloads":-1,"filename":"kiwi-9.18.21.tar.gz","has_sig":false,"md5_digest":"ebf3c3968c4defb981ca2b1e8226428b","packagetype":"sdist","python_version":"source","requires_python":null,"size":724888,"upload_time":"2019-10-17T09:27:55","upload_time_iso_8601":"2019-10-17T09:27:55.210591Z","url":"https://files.pythonhosted.org/packages/d2/69/297ee7d7bfcfcea42058bc57c183e7f4ccb11e532f37ad9549e5eb6c0779/kiwi-9.18.21.tar.gz","yanked":false,"yanked_reason":null}],"9.18.22":[{"comment_text":"","digests":{"md5":"25c5b6e0f5958b893a257f76cf90f542","sha256":"b1ccc66c5501bd1a7d28ba1077972fcf312e38ed324e9e5ddd5fbf45430a56f7"},"downloads":-1,"filename":"kiwi-9.18.22.tar.gz","has_sig":false,"md5_digest":"25c5b6e0f5958b893a257f76cf90f542","packagetype":"sdist","python_version":"source","requires_python":null,"size":725137,"upload_time":"2019-10-17T09:23:16","upload_time_iso_8601":"2019-10-17T09:23:16.028682Z","url":"https://files.pythonhosted.org/packages/d1/91/f6049ec5ce9f6350cdbc4852baad83e2056be19c45260450f50a80089ad8/kiwi-9.18.22.tar.gz","yanked":false,"yanked_reason":null}],"9.18.23":[{"comment_text":"","digests":{"md5":"a2fee9bb8128987c90fa2a973890de5e","sha256":"c41afbfdaad659c3f70466daf92915c43d0bca761e294357a2177fa8fd87962e"},"downloads":-1,"filename":"kiwi-9.18.23.tar.gz","has_sig":false,"md5_digest":"a2fee9bb8128987c90fa2a973890de5e","packagetype":"sdist","python_version":"source","requires_python":null,"size":725215,"upload_time":"2019-10-17T13:37:44","upload_time_iso_8601":"2019-10-17T13:37:44.814124Z","url":"https://files.pythonhosted.org/packages/70/46/162d912dbbf951b39b641ff4cef97617f25a30374035ecbed2d1c888cfee/kiwi-9.18.23.tar.gz","yanked":false,"yanked_reason":null}],"9.18.24":[{"comment_text":"","digests":{"md5":"906b765779d75e12e73e3404cc99221f","sha256":"9f36449dbbefe9bd2296cf2f12a3d5cee31d9d22d4b890fe701299dd7389067a"},"downloads":-1,"filename":"kiwi-9.18.24.tar.gz","has_sig":false,"md5_digest":"906b765779d75e12e73e3404cc99221f","packagetype":"sdist","python_version":"source","requires_python":null,"size":725227,"upload_time":"2019-10-17T13:32:20","upload_time_iso_8601":"2019-10-17T13:32:20.343032Z","url":"https://files.pythonhosted.org/packages/7c/c2/13dd23608222231db30431fc26e3fa2ba6c237b16171923364adee9137b1/kiwi-9.18.24.tar.gz","yanked":false,"yanked_reason":null}],"9.18.25":[{"comment_text":"","digests":{"md5":"b2fbd0f734c74bc9387354d65e476105","sha256":"5285e663737eab37d8a8fdbfc6fe39cc945e117c185cb8a6f9e5d72f89265329"},"downloads":-1,"filename":"kiwi-9.18.25.tar.gz","has_sig":false,"md5_digest":"b2fbd0f734c74bc9387354d65e476105","packagetype":"sdist","python_version":"source","requires_python":null,"size":725488,"upload_time":"2019-10-17T14:54:26","upload_time_iso_8601":"2019-10-17T14:54:26.318869Z","url":"https://files.pythonhosted.org/packages/ac/aa/da2ccafcff17587518545bf66be0dfbbb0380249901687847ce1e3dc9844/kiwi-9.18.25.tar.gz","yanked":false,"yanked_reason":null}],"9.18.26":[{"comment_text":"","digests":{"md5":"64c8aab475fe6693a3bb5320fee985ab","sha256":"a14575e5912aa97738a7c60117e7014cbfa9230dd27edb51506c81ac89703fee"},"downloads":-1,"filename":"kiwi-9.18.26.tar.gz","has_sig":false,"md5_digest":"64c8aab475fe6693a3bb5320fee985ab","packagetype":"sdist","python_version":"source","requires_python":null,"size":714836,"upload_time":"2019-10-23T10:43:27","upload_time_iso_8601":"2019-10-23T10:43:27.713473Z","url":"https://files.pythonhosted.org/packages/7a/ad/487d63ebd0091d17b847078bf5a8ce44e1aea70e187397e7472acb44397c/kiwi-9.18.26.tar.gz","yanked":false,"yanked_reason":null}],"9.18.27":[{"comment_text":"","digests":{"md5":"2e2b4e2891a4f60d17bdcf6d64555a9c","sha256":"a903c20ae8bd0def33abeaef716bb07ec0d06a5d7af7f2eff67c9f3613c8a198"},"downloads":-1,"filename":"kiwi-9.18.27.tar.gz","has_sig":false,"md5_digest":"2e2b4e2891a4f60d17bdcf6d64555a9c","packagetype":"sdist","python_version":"source","requires_python":null,"size":716500,"upload_time":"2019-10-25T07:47:53","upload_time_iso_8601":"2019-10-25T07:47:53.838558Z","url":"https://files.pythonhosted.org/packages/bd/62/e6642692b60e64e4ac7cd9ba85272256a136abaa61cf5b5a943a84e28f2b/kiwi-9.18.27.tar.gz","yanked":false,"yanked_reason":null}],"9.18.28":[{"comment_text":"","digests":{"md5":"bb575a12838e2a212b9f5cd6b4a27743","sha256":"87aa79560f795af477ccb2ee37e2ce14a93545b2fa96c9a2d7b7a889adb54c38"},"downloads":-1,"filename":"kiwi-9.18.28.tar.gz","has_sig":false,"md5_digest":"bb575a12838e2a212b9f5cd6b4a27743","packagetype":"sdist","python_version":"source","requires_python":null,"size":716492,"upload_time":"2019-10-28T09:30:25","upload_time_iso_8601":"2019-10-28T09:30:25.399026Z","url":"https://files.pythonhosted.org/packages/93/37/051368c5ed1413e006e025caef8a1b9f1c72f5f926d64f10b44f22edcad0/kiwi-9.18.28.tar.gz","yanked":false,"yanked_reason":null}],"9.18.29":[{"comment_text":"","digests":{"md5":"0a5f5b6f80ae9514ff1606b3110994cb","sha256":"913d9955deaf8e096228021d2263bdc214a4b1fc8fb55dfdc480e85a40edea52"},"downloads":-1,"filename":"kiwi-9.18.29.tar.gz","has_sig":false,"md5_digest":"0a5f5b6f80ae9514ff1606b3110994cb","packagetype":"sdist","python_version":"source","requires_python":null,"size":717682,"upload_time":"2019-10-29T09:21:26","upload_time_iso_8601":"2019-10-29T09:21:26.310068Z","url":"https://files.pythonhosted.org/packages/01/4e/9198319704fd286971faefccdd8cdb072ac2ec5b75039df62f5c29b56715/kiwi-9.18.29.tar.gz","yanked":false,"yanked_reason":null}],"9.18.3":[{"comment_text":"","digests":{"md5":"ee0a39406bb1487befcf878c74251e36","sha256":"ee00584f75df6d5f57c0282953aff4a24a9ce770d051064a7069010e6ad90156"},"downloads":-1,"filename":"kiwi-9.18.3.tar.gz","has_sig":false,"md5_digest":"ee0a39406bb1487befcf878c74251e36","packagetype":"sdist","python_version":"source","requires_python":null,"size":719781,"upload_time":"2019-07-16T10:12:35","upload_time_iso_8601":"2019-07-16T10:12:35.397823Z","url":"https://files.pythonhosted.org/packages/ba/3c/ae77a5f167d9aa6f27cfe5f4c6d227dc9bbb17807fdbb0885ecd969d2645/kiwi-9.18.3.tar.gz","yanked":false,"yanked_reason":null}],"9.18.30":[{"comment_text":"","digests":{"md5":"8ac37c867557ea5e8ad15dafbdf93fa1","sha256":"8a4193b488b69c7097590c1885c408ff37ebf067a0a14f60aa5311b7ba8c4942"},"downloads":-1,"filename":"kiwi-9.18.30.tar.gz","has_sig":false,"md5_digest":"8ac37c867557ea5e8ad15dafbdf93fa1","packagetype":"sdist","python_version":"source","requires_python":null,"size":717704,"upload_time":"2019-10-31T13:54:06","upload_time_iso_8601":"2019-10-31T13:54:06.540755Z","url":"https://files.pythonhosted.org/packages/9d/cd/d873224b1c70b5f063f98d250c244e61a9327a82d02a5f142faba9460f37/kiwi-9.18.30.tar.gz","yanked":false,"yanked_reason":null}],"9.18.31":[{"comment_text":"","digests":{"md5":"d58740bb668ed99352b264b6edb3993d","sha256":"af15e688f0491712cddef4fdbb391eea9ce28402eebc56baec7577ecbf0ccca4"},"downloads":-1,"filename":"kiwi-9.18.31.tar.gz","has_sig":false,"md5_digest":"d58740bb668ed99352b264b6edb3993d","packagetype":"sdist","python_version":"source","requires_python":null,"size":717671,"upload_time":"2019-11-07T15:14:53","upload_time_iso_8601":"2019-11-07T15:14:53.990237Z","url":"https://files.pythonhosted.org/packages/65/51/d610de26409f5704ab0e1b5689881d333dd7f9d5f1be186125ebdd3ed694/kiwi-9.18.31.tar.gz","yanked":false,"yanked_reason":null}],"9.18.32":[{"comment_text":"","digests":{"md5":"e67bff346a9a63e2c66324f701e0c9a9","sha256":"45e56fe7ee9ff0c62d5e2a7b483a3ec9a89a8f5889e6950597674492ed4ddc79"},"downloads":-1,"filename":"kiwi-9.18.32.tar.gz","has_sig":false,"md5_digest":"e67bff346a9a63e2c66324f701e0c9a9","packagetype":"sdist","python_version":"source","requires_python":null,"size":717681,"upload_time":"2019-11-14T11:49:01","upload_time_iso_8601":"2019-11-14T11:49:01.033090Z","url":"https://files.pythonhosted.org/packages/98/1b/43fb7c1143e646a5da9545ab2d252bb8fc4fb5473d431aaa8137d2c35b50/kiwi-9.18.32.tar.gz","yanked":false,"yanked_reason":null}],"9.18.34":[{"comment_text":"","digests":{"md5":"70e79845cee3c52d0bf8cbaa29f2a19c","sha256":"fa5a6d331bd43e3446c2eb995f88a79f58da9728fba00e476a4383dc834cb2be"},"downloads":-1,"filename":"kiwi-9.18.34.tar.gz","has_sig":false,"md5_digest":"70e79845cee3c52d0bf8cbaa29f2a19c","packagetype":"sdist","python_version":"source","requires_python":null,"size":717791,"upload_time":"2019-11-19T08:16:37","upload_time_iso_8601":"2019-11-19T08:16:37.446099Z","url":"https://files.pythonhosted.org/packages/2a/36/e4fbe31f0bc0ce2cc26e6c3ac0b6b469fd81a2b2655fb61022273dd4c168/kiwi-9.18.34.tar.gz","yanked":false,"yanked_reason":null}],"9.18.35":[{"comment_text":"","digests":{"md5":"01b62dc92770800de021bf23b3baf8e1","sha256":"fad729c4cb11c381c1eb42272fa166e18b2a7edd36dabe449812e1d5bf3ce84f"},"downloads":-1,"filename":"kiwi-9.18.35.tar.gz","has_sig":false,"md5_digest":"01b62dc92770800de021bf23b3baf8e1","packagetype":"sdist","python_version":"source","requires_python":null,"size":717751,"upload_time":"2019-11-20T11:52:19","upload_time_iso_8601":"2019-11-20T11:52:19.829568Z","url":"https://files.pythonhosted.org/packages/42/6e/fb7b3f5c814f7bba0de528351dcc974702eaed1e23c02c96bdf99a29f6c5/kiwi-9.18.35.tar.gz","yanked":false,"yanked_reason":null}],"9.18.4":[{"comment_text":"","digests":{"md5":"317d15597724a01ca032428123dd67a2","sha256":"48d50c4f20509e690294a90c791a717ea9c692099615ae00af23570ee6db2c52"},"downloads":-1,"filename":"kiwi-9.18.4.tar.gz","has_sig":false,"md5_digest":"317d15597724a01ca032428123dd67a2","packagetype":"sdist","python_version":"source","requires_python":null,"size":720315,"upload_time":"2019-07-19T14:04:19","upload_time_iso_8601":"2019-07-19T14:04:19.138739Z","url":"https://files.pythonhosted.org/packages/ec/ab/15c44338fb7ed8708e38f1ac7e052c0347f0054a033be79fa47706505e63/kiwi-9.18.4.tar.gz","yanked":false,"yanked_reason":null}],"9.18.5":[{"comment_text":"","digests":{"md5":"ca88c2153a795b394f176d51ba2d1086","sha256":"9b224fa3d78f2cfbf842d9ba7d9988932c99dc78c0d1b4483f9bafef03ac0665"},"downloads":-1,"filename":"kiwi-9.18.5.tar.gz","has_sig":false,"md5_digest":"ca88c2153a795b394f176d51ba2d1086","packagetype":"sdist","python_version":"source","requires_python":null,"size":720321,"upload_time":"2019-07-19T15:02:04","upload_time_iso_8601":"2019-07-19T15:02:04.742971Z","url":"https://files.pythonhosted.org/packages/c7/3e/d30d9a6292f0168b0690dfa0cffe1a0d76426c349d1a3108e6a06196224c/kiwi-9.18.5.tar.gz","yanked":false,"yanked_reason":null}],"9.18.6":[{"comment_text":"","digests":{"md5":"a7948003b8687c3e72416e68f982b210","sha256":"1295b99897a82bbadfc2d797e66e8beb6d3c0dcb9085f9fa6821e21a521630c9"},"downloads":-1,"filename":"kiwi-9.18.6.tar.gz","has_sig":false,"md5_digest":"a7948003b8687c3e72416e68f982b210","packagetype":"sdist","python_version":"source","requires_python":null,"size":720462,"upload_time":"2019-07-22T07:15:18","upload_time_iso_8601":"2019-07-22T07:15:18.636578Z","url":"https://files.pythonhosted.org/packages/85/0c/1113e8589da6ee2ef5b641ad1051cb24f8511324b39d487f67053a7b02cb/kiwi-9.18.6.tar.gz","yanked":false,"yanked_reason":null}],"9.18.7":[{"comment_text":"","digests":{"md5":"041be1c1b5cd0fbb49516a8941e2ec21","sha256":"08302e9ffc333c87da9e708952c5add0b3b96588f3d198624756f4768bcddf93"},"downloads":-1,"filename":"kiwi-9.18.7.tar.gz","has_sig":false,"md5_digest":"041be1c1b5cd0fbb49516a8941e2ec21","packagetype":"sdist","python_version":"source","requires_python":null,"size":720454,"upload_time":"2019-07-23T08:09:33","upload_time_iso_8601":"2019-07-23T08:09:33.998331Z","url":"https://files.pythonhosted.org/packages/ad/72/3be2947db4b33442dea79b3c6a6e52b5cf4fb76241eb7d2d19416bb3990c/kiwi-9.18.7.tar.gz","yanked":false,"yanked_reason":null}],"9.18.8":[{"comment_text":"","digests":{"md5":"2c7ecfe8b82507b604047f0de42b731b","sha256":"eeec744a801ad25a783a3409f9ee7913e0aab08e0d0abf5b4f30270a1d39c80f"},"downloads":-1,"filename":"kiwi-9.18.8.tar.gz","has_sig":false,"md5_digest":"2c7ecfe8b82507b604047f0de42b731b","packagetype":"sdist","python_version":"source","requires_python":null,"size":720696,"upload_time":"2019-07-25T09:21:00","upload_time_iso_8601":"2019-07-25T09:21:00.530451Z","url":"https://files.pythonhosted.org/packages/5b/1a/b47818e4a4f58deaa459d98dc066844662510d098dde9c4b844264e5b7a4/kiwi-9.18.8.tar.gz","yanked":false,"yanked_reason":null}],"9.18.9":[{"comment_text":"","digests":{"md5":"360f793557f4d8226ba5e214beb500c5","sha256":"e37bd5c5f9ee8597131f6becd99d601c41866c8f9d77b43633e418f54a6137ac"},"downloads":-1,"filename":"kiwi-9.18.9.tar.gz","has_sig":false,"md5_digest":"360f793557f4d8226ba5e214beb500c5","packagetype":"sdist","python_version":"source","requires_python":null,"size":720603,"upload_time":"2019-07-26T14:40:37","upload_time_iso_8601":"2019-07-26T14:40:37.741048Z","url":"https://files.pythonhosted.org/packages/5d/08/c32ded2f2aaa612646f51fc9ea27aa03972fd5101db964d60d92860e5ee2/kiwi-9.18.9.tar.gz","yanked":false,"yanked_reason":null}],"9.19.0":[{"comment_text":"","digests":{"md5":"92daf5678ce1416cf72e9285a98225f4","sha256":"d6d095404647e0b46fd133e27645293aed1ab75931c2cdf4a26e0e24bc397178"},"downloads":-1,"filename":"kiwi-9.19.0.tar.gz","has_sig":false,"md5_digest":"92daf5678ce1416cf72e9285a98225f4","packagetype":"sdist","python_version":"source","requires_python":null,"size":718716,"upload_time":"2019-11-25T14:33:23","upload_time_iso_8601":"2019-11-25T14:33:23.606899Z","url":"https://files.pythonhosted.org/packages/96/20/4751671d442e81091c13fa414d13b59ee620b37b2c0fdec2b3384b8f4a3c/kiwi-9.19.0.tar.gz","yanked":false,"yanked_reason":null}],"9.19.1":[{"comment_text":"","digests":{"md5":"f1286a9c52b989e97a1cd0e898e1d270","sha256":"5adeab746f00b8cc7e2f55c1c05d9e2ad43668deec4ce185ec3ae812d200a72c"},"downloads":-1,"filename":"kiwi-9.19.1.tar.gz","has_sig":false,"md5_digest":"f1286a9c52b989e97a1cd0e898e1d270","packagetype":"sdist","python_version":"source","requires_python":null,"size":718650,"upload_time":"2019-11-25T15:08:47","upload_time_iso_8601":"2019-11-25T15:08:47.425479Z","url":"https://files.pythonhosted.org/packages/57/ae/9ecb43953eb7e1d9f7ebdf5097d49f1a58256ef0db004afd6b60c8f02a7b/kiwi-9.19.1.tar.gz","yanked":false,"yanked_reason":null}],"9.19.10":[{"comment_text":"","digests":{"md5":"b2368857c82fee36de9a613b7a487f51","sha256":"8afa2895c2931424f97d8ede3b562eb1fcc1edf4df1b2bc3e7f047c39a2afc67"},"downloads":-1,"filename":"kiwi-9.19.10.tar.gz","has_sig":false,"md5_digest":"b2368857c82fee36de9a613b7a487f51","packagetype":"sdist","python_version":"source","requires_python":null,"size":716765,"upload_time":"2020-01-13T09:24:56","upload_time_iso_8601":"2020-01-13T09:24:56.806730Z","url":"https://files.pythonhosted.org/packages/4d/13/6c069657efec4b6158bf2ee71a72e21fbb13e437d81139fc7d251981fa93/kiwi-9.19.10.tar.gz","yanked":false,"yanked_reason":null}],"9.19.11":[{"comment_text":"","digests":{"md5":"cc895839155e3baf8e48d3e43e69d2e6","sha256":"4bcf57d9ae2ee800f6315242d5cd8647f16d0f7425abfe174af2cacbfc271ed7"},"downloads":-1,"filename":"kiwi-9.19.11.tar.gz","has_sig":false,"md5_digest":"cc895839155e3baf8e48d3e43e69d2e6","packagetype":"sdist","python_version":"source","requires_python":null,"size":717639,"upload_time":"2020-01-17T09:53:00","upload_time_iso_8601":"2020-01-17T09:53:00.033443Z","url":"https://files.pythonhosted.org/packages/29/ba/0c446fd90c02414428122990ca59bfb5b666de6e9145302561c2f054f99a/kiwi-9.19.11.tar.gz","yanked":false,"yanked_reason":null}],"9.19.13":[{"comment_text":"","digests":{"md5":"3b2d553ef4e765c0eef75e6430cc517f","sha256":"03e4c7f09a0a301488b9621d4f9c18620ec8acfb61e8f28a9625a521c151eb66"},"downloads":-1,"filename":"kiwi-9.19.13.tar.gz","has_sig":false,"md5_digest":"3b2d553ef4e765c0eef75e6430cc517f","packagetype":"sdist","python_version":"source","requires_python":null,"size":717519,"upload_time":"2020-01-20T16:02:37","upload_time_iso_8601":"2020-01-20T16:02:37.242924Z","url":"https://files.pythonhosted.org/packages/8f/78/b87e0b99a6accefa1852464424d1a9b055b023ef0b13ac5a92f0ec4b71d4/kiwi-9.19.13.tar.gz","yanked":false,"yanked_reason":null}],"9.19.14":[{"comment_text":"","digests":{"md5":"d1336f889fc17a37e4ed99122144d0d3","sha256":"9004f25fa3c0b7eefc3e12e632d316e26741d4463c74b5c04dec1ff4e187285a"},"downloads":-1,"filename":"kiwi-9.19.14.tar.gz","has_sig":false,"md5_digest":"d1336f889fc17a37e4ed99122144d0d3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717477,"upload_time":"2020-01-24T09:34:38","upload_time_iso_8601":"2020-01-24T09:34:38.734980Z","url":"https://files.pythonhosted.org/packages/b4/bb/82ccdb78e9979658e7999c89fdea752d4f4b617071c443a4fdcab53b3e92/kiwi-9.19.14.tar.gz","yanked":false,"yanked_reason":null}],"9.19.15":[{"comment_text":"","digests":{"md5":"96d0e0b32d464c4012e8f2c05d25668c","sha256":"1216f0169fb328d599281f08f093559d2f17d443fa2c5264957eb5bdfa557874"},"downloads":-1,"filename":"kiwi-9.19.15.tar.gz","has_sig":false,"md5_digest":"96d0e0b32d464c4012e8f2c05d25668c","packagetype":"sdist","python_version":"source","requires_python":null,"size":717683,"upload_time":"2020-02-02T19:25:36","upload_time_iso_8601":"2020-02-02T19:25:36.634244Z","url":"https://files.pythonhosted.org/packages/55/5d/4b2953b8eaacf9c9170b8e248eb065bdc76ade3da1bc0f9b2008d3347275/kiwi-9.19.15.tar.gz","yanked":false,"yanked_reason":null}],"9.19.16":[{"comment_text":"","digests":{"md5":"0e50272f5500a947037e0d1d2f5db6b3","sha256":"75fc4a4367bef29a1422b69a4b3d71948bfe2f75fef134c431ab6c03d1cc75d3"},"downloads":-1,"filename":"kiwi-9.19.16.tar.gz","has_sig":false,"md5_digest":"0e50272f5500a947037e0d1d2f5db6b3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717694,"upload_time":"2020-02-06T09:19:37","upload_time_iso_8601":"2020-02-06T09:19:37.798007Z","url":"https://files.pythonhosted.org/packages/7f/05/0620570fb5da6eeae95f4ee6ab1ec1e82f8fb41885020ee486493cce60b7/kiwi-9.19.16.tar.gz","yanked":false,"yanked_reason":null}],"9.19.2":[{"comment_text":"","digests":{"md5":"91bad697be5dfe75834bcab0e2cb3b1f","sha256":"13f323afcbbb881ffe3828737c0d18b6b89258d50cb491a3493ff3071106e8cb"},"downloads":-1,"filename":"kiwi-9.19.2.tar.gz","has_sig":false,"md5_digest":"91bad697be5dfe75834bcab0e2cb3b1f","packagetype":"sdist","python_version":"source","requires_python":null,"size":718740,"upload_time":"2019-11-25T21:19:34","upload_time_iso_8601":"2019-11-25T21:19:34.632713Z","url":"https://files.pythonhosted.org/packages/b9/7e/3e386b4c70248e2ee238d37c84d6c3af03544ed932442110c3e5c059cf97/kiwi-9.19.2.tar.gz","yanked":false,"yanked_reason":null}],"9.19.3":[{"comment_text":"","digests":{"md5":"9bb388150343ba768a109cb8e46db042","sha256":"c903ec88f0cdc5fa7e414a5753e079b0f7db5c84d289a0eab7185b90ded6a248"},"downloads":-1,"filename":"kiwi-9.19.3.tar.gz","has_sig":false,"md5_digest":"9bb388150343ba768a109cb8e46db042","packagetype":"sdist","python_version":"source","requires_python":null,"size":718727,"upload_time":"2019-11-26T09:23:54","upload_time_iso_8601":"2019-11-26T09:23:54.041968Z","url":"https://files.pythonhosted.org/packages/9b/9b/8d9a7a8e311a2128cd78d9b0ab45e4b7abc602edbe3a087f22c86ace4b6c/kiwi-9.19.3.tar.gz","yanked":false,"yanked_reason":null}],"9.19.4":[{"comment_text":"","digests":{"md5":"7a978602a2288466bca3ef9a19718df0","sha256":"ccdf1972ab2713beedff8b31b0e8eaa7aa062995094f73a0608b68664422bcf3"},"downloads":-1,"filename":"kiwi-9.19.4.tar.gz","has_sig":false,"md5_digest":"7a978602a2288466bca3ef9a19718df0","packagetype":"sdist","python_version":"source","requires_python":null,"size":718742,"upload_time":"2019-11-26T10:54:06","upload_time_iso_8601":"2019-11-26T10:54:06.346309Z","url":"https://files.pythonhosted.org/packages/71/bd/ce71843e4d5914750e32bbb79d879fbade13bdd81463a3855658b3f5871c/kiwi-9.19.4.tar.gz","yanked":false,"yanked_reason":null}],"9.19.5":[{"comment_text":"","digests":{"md5":"97606a3ec17b77a10467a9527b65b8a1","sha256":"f28366670f93bcd8093470f88638cf913910bffaf4daa934c48373f8157a8bfb"},"downloads":-1,"filename":"kiwi-9.19.5.tar.gz","has_sig":false,"md5_digest":"97606a3ec17b77a10467a9527b65b8a1","packagetype":"sdist","python_version":"source","requires_python":null,"size":719551,"upload_time":"2019-12-02T11:39:45","upload_time_iso_8601":"2019-12-02T11:39:45.332323Z","url":"https://files.pythonhosted.org/packages/c6/b3/d18be9ca3930c5a661718336acb9b22f831386c0aed7a06f6430a2b397c4/kiwi-9.19.5.tar.gz","yanked":false,"yanked_reason":null}],"9.19.6":[{"comment_text":"","digests":{"md5":"1f7b6fd83f09a04790c6c7cde4216cb9","sha256":"031905526f0ce2d419de0755aaa6dfc8f54949fc447966e5452bc937bc407ad0"},"downloads":-1,"filename":"kiwi-9.19.6.tar.gz","has_sig":false,"md5_digest":"1f7b6fd83f09a04790c6c7cde4216cb9","packagetype":"sdist","python_version":"source","requires_python":null,"size":719474,"upload_time":"2019-12-04T16:50:45","upload_time_iso_8601":"2019-12-04T16:50:45.835413Z","url":"https://files.pythonhosted.org/packages/87/e6/aac99fdf464ddf5580f28c4a28c005300218cb399bff1c5e7797c7c28bad/kiwi-9.19.6.tar.gz","yanked":false,"yanked_reason":null}],"9.19.7":[{"comment_text":"","digests":{"md5":"131201c9e897cf48a185e8a21c19153f","sha256":"2e80c463cb045272056da7a511848bbc959e9ce1668804143bebcd834af5759d"},"downloads":-1,"filename":"kiwi-9.19.7.tar.gz","has_sig":false,"md5_digest":"131201c9e897cf48a185e8a21c19153f","packagetype":"sdist","python_version":"source","requires_python":null,"size":719517,"upload_time":"2020-01-13T09:28:50","upload_time_iso_8601":"2020-01-13T09:28:50.561764Z","url":"https://files.pythonhosted.org/packages/55/c3/26ca2ce7ab5fc77913eb13ceb388a6d7d7e50830193c095a06b5435fff72/kiwi-9.19.7.tar.gz","yanked":false,"yanked_reason":null}],"9.19.8":[{"comment_text":"","digests":{"md5":"3cec43e319f866faf403dc5216cf2068","sha256":"0257fa7b5a58670f93c8e49d91d606bb18b272f2b5d0853553d01956520abf35"},"downloads":-1,"filename":"kiwi-9.19.8.tar.gz","has_sig":false,"md5_digest":"3cec43e319f866faf403dc5216cf2068","packagetype":"sdist","python_version":"source","requires_python":null,"size":719596,"upload_time":"2019-12-20T09:06:36","upload_time_iso_8601":"2019-12-20T09:06:36.929542Z","url":"https://files.pythonhosted.org/packages/db/7a/8a6a4ab3fb6124d59ad8d86b7a7f29a921d2c4f25d904a2e75f4e8bd6a1a/kiwi-9.19.8.tar.gz","yanked":false,"yanked_reason":null}],"9.19.9":[{"comment_text":"","digests":{"md5":"3b335ea04a8f0acc2f545494dca0dc14","sha256":"34e20cbaedde17110cdac16dd94cdcbeec17d4a631351ddcb3c6bc078f4dce14"},"downloads":-1,"filename":"kiwi-9.19.9.tar.gz","has_sig":false,"md5_digest":"3b335ea04a8f0acc2f545494dca0dc14","packagetype":"sdist","python_version":"source","requires_python":null,"size":717229,"upload_time":"2020-01-11T21:45:30","upload_time_iso_8601":"2020-01-11T21:45:30.337235Z","url":"https://files.pythonhosted.org/packages/28/0e/e4b2aa628419ba7c32d6df0357a5c05dc4a64e96c1102edacd0f2fd26372/kiwi-9.19.9.tar.gz","yanked":false,"yanked_reason":null}],"9.2.0":[{"comment_text":"","digests":{"md5":"259382822f3cc762a8823fa9e448987c","sha256":"c7e14caeeb3e76c624d835f1c4b9b8b3dc6ca3b77571b2523bf415824efdd5cb"},"downloads":-1,"filename":"kiwi-9.2.0.tar.gz","has_sig":false,"md5_digest":"259382822f3cc762a8823fa9e448987c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2772441,"upload_time":"2017-02-27T14:55:44","upload_time_iso_8601":"2017-02-27T14:55:44.272762Z","url":"https://files.pythonhosted.org/packages/3f/d8/cdffba17b4f78d2620e822a127c087219f22f3e1e95ec61fd3b47d50638a/kiwi-9.2.0.tar.gz","yanked":false,"yanked_reason":null}],"9.2.3":[{"comment_text":"","digests":{"md5":"eff0f21efa0bb9c0270300cece8f357f","sha256":"74cbd24fdd5f6a81d90330407b47b723733a2345f60cf20b2b8c74ea491ee7ec"},"downloads":-1,"filename":"kiwi-9.2.3.tar.gz","has_sig":false,"md5_digest":"eff0f21efa0bb9c0270300cece8f357f","packagetype":"sdist","python_version":"source","requires_python":null,"size":2778967,"upload_time":"2017-03-03T10:45:35","upload_time_iso_8601":"2017-03-03T10:45:35.073898Z","url":"https://files.pythonhosted.org/packages/1c/dd/ea83ac26f2c21ffedd4971428a54160bf0639b59c883fadd18c7f5620a95/kiwi-9.2.3.tar.gz","yanked":false,"yanked_reason":null}],"9.20.0":[{"comment_text":"","digests":{"md5":"3ff1d0ea71b6eff552eaa75b530bcf4d","sha256":"4b52499de033bf76423034cdf180e978c485dbd298eb37eb3c8cdd1919f4c3d2"},"downloads":-1,"filename":"kiwi-9.20.0.tar.gz","has_sig":false,"md5_digest":"3ff1d0ea71b6eff552eaa75b530bcf4d","packagetype":"sdist","python_version":"source","requires_python":null,"size":717658,"upload_time":"2020-02-15T15:09:12","upload_time_iso_8601":"2020-02-15T15:09:12.297145Z","url":"https://files.pythonhosted.org/packages/34/3e/319124640e9d3e37b59eef254dbc5d9be4eda3f7cbb9c68af11ac00f4463/kiwi-9.20.0.tar.gz","yanked":false,"yanked_reason":null}],"9.20.1":[{"comment_text":"","digests":{"md5":"299a135ef1f73edfb2b77c06abadbac3","sha256":"59d44323bd826f33810d14ca3b8fe35ec6c36c1ca31d27381dc22ecc902a0608"},"downloads":-1,"filename":"kiwi-9.20.1.tar.gz","has_sig":false,"md5_digest":"299a135ef1f73edfb2b77c06abadbac3","packagetype":"sdist","python_version":"source","requires_python":null,"size":717735,"upload_time":"2020-02-19T17:17:33","upload_time_iso_8601":"2020-02-19T17:17:33.998097Z","url":"https://files.pythonhosted.org/packages/13/90/2c27a33be12983e2f4d54f5d1b2e8214a3a0b34c3a7cc3462535ede3888c/kiwi-9.20.1.tar.gz","yanked":false,"yanked_reason":null}],"9.20.10":[{"comment_text":"","digests":{"md5":"cef163a46479b1eef8944d69dd04f8ba","sha256":"7deaaaf2267171968589199dc4d2933319e154b43b1d8c6be0340b6a739db359"},"downloads":-1,"filename":"kiwi-9.20.10.tar.gz","has_sig":false,"md5_digest":"cef163a46479b1eef8944d69dd04f8ba","packagetype":"sdist","python_version":"source","requires_python":null,"size":729566,"upload_time":"2020-05-01T15:26:10","upload_time_iso_8601":"2020-05-01T15:26:10.796422Z","url":"https://files.pythonhosted.org/packages/92/63/306bacce692cfd0ca07198dda6c68ab92e18e4c53d49f839d9551baacf5f/kiwi-9.20.10.tar.gz","yanked":false,"yanked_reason":null}],"9.20.11":[{"comment_text":"","digests":{"md5":"52162afa5895c5fded26a71660583054","sha256":"9f29137888fedd4320ac4a4c3c51dae034f1c7bcbf3000d4451547b067370251"},"downloads":-1,"filename":"kiwi-9.20.11.tar.gz","has_sig":false,"md5_digest":"52162afa5895c5fded26a71660583054","packagetype":"sdist","python_version":"source","requires_python":null,"size":729653,"upload_time":"2020-05-01T15:49:48","upload_time_iso_8601":"2020-05-01T15:49:48.720342Z","url":"https://files.pythonhosted.org/packages/ef/77/3eb6aac7cf5c617067d0262ae006a607113efa42ece9805a97fcabd964f3/kiwi-9.20.11.tar.gz","yanked":false,"yanked_reason":null}],"9.20.12":[{"comment_text":"","digests":{"md5":"83eacb645afb18245a5a0d5e4b732b23","sha256":"d33106c126f30cfba69df69813d00e5556e4fe7443011e1a35a8e1fdcf3f2d7a"},"downloads":-1,"filename":"kiwi-9.20.12.tar.gz","has_sig":false,"md5_digest":"83eacb645afb18245a5a0d5e4b732b23","packagetype":"sdist","python_version":"source","requires_python":null,"size":733804,"upload_time":"2020-05-08T14:59:25","upload_time_iso_8601":"2020-05-08T14:59:25.650233Z","url":"https://files.pythonhosted.org/packages/41/f4/5c3aebc079039c9980594f18c742486ace644d60cfb2b39ef9c2c81ecfd9/kiwi-9.20.12.tar.gz","yanked":false,"yanked_reason":null}],"9.20.2":[{"comment_text":"","digests":{"md5":"f09fa1f23a0529805a807e194e74eb4f","sha256":"81a08d782fbcafb114d3d2e1e2e572131e48078cea3fcf99accec54b7fce3b71"},"downloads":-1,"filename":"kiwi-9.20.2.tar.gz","has_sig":false,"md5_digest":"f09fa1f23a0529805a807e194e74eb4f","packagetype":"sdist","python_version":"source","requires_python":null,"size":718398,"upload_time":"2020-02-28T14:27:17","upload_time_iso_8601":"2020-02-28T14:27:17.363031Z","url":"https://files.pythonhosted.org/packages/2c/ee/f7f374c0b9019abd2b11888aae445d6cfe1bc902e20881c8fc97f5fa7152/kiwi-9.20.2.tar.gz","yanked":false,"yanked_reason":null}],"9.20.3":[{"comment_text":"","digests":{"md5":"5e8e451c3ffbf15df898fd72679b0903","sha256":"faf0f832e629096bbe531d8591d94b5915e629bdd2b5f0629f998a302cf110bb"},"downloads":-1,"filename":"kiwi-9.20.3.tar.gz","has_sig":false,"md5_digest":"5e8e451c3ffbf15df898fd72679b0903","packagetype":"sdist","python_version":"source","requires_python":null,"size":718421,"upload_time":"2020-03-03T08:06:16","upload_time_iso_8601":"2020-03-03T08:06:16.178784Z","url":"https://files.pythonhosted.org/packages/85/85/ef16fd7213bab56f0ff3ce7ff982c3914bc7a33f2e97594fc19fb97ecf3d/kiwi-9.20.3.tar.gz","yanked":false,"yanked_reason":null}],"9.20.4":[{"comment_text":"","digests":{"md5":"20e71497a93b2265c6a2c05170c9d7c3","sha256":"b3633ea182a87242463f88b2310a67a10850b9408a83301a0bdaba0677a07dfa"},"downloads":-1,"filename":"kiwi-9.20.4.tar.gz","has_sig":false,"md5_digest":"20e71497a93b2265c6a2c05170c9d7c3","packagetype":"sdist","python_version":"source","requires_python":null,"size":718538,"upload_time":"2020-03-04T17:42:04","upload_time_iso_8601":"2020-03-04T17:42:04.974848Z","url":"https://files.pythonhosted.org/packages/bc/d5/05135c6ff8e7d07e8a510b0171dd78857b824e7a95aa87bb8f6cef148515/kiwi-9.20.4.tar.gz","yanked":false,"yanked_reason":null}],"9.20.5":[{"comment_text":"","digests":{"md5":"6fe2ac7ac9bdb4e89edfd0258cd51f50","sha256":"a717c153c35a757334780117271790614fbe2e849830790c2b3e0d00878f1959"},"downloads":-1,"filename":"kiwi-9.20.5.tar.gz","has_sig":false,"md5_digest":"6fe2ac7ac9bdb4e89edfd0258cd51f50","packagetype":"sdist","python_version":"source","requires_python":null,"size":726437,"upload_time":"2020-03-27T09:54:34","upload_time_iso_8601":"2020-03-27T09:54:34.571749Z","url":"https://files.pythonhosted.org/packages/76/82/d2e1cd228fa7073c9b78863013886ec7d44b0052183486396e648a7a5d00/kiwi-9.20.5.tar.gz","yanked":false,"yanked_reason":null}],"9.20.6":[{"comment_text":"","digests":{"md5":"77ac34a20a1ac717c6ac60bf3ab9f23a","sha256":"99eeaf49fcc90b42c4898b405620075b35dcd2d8e8d000015fa8cfd3f57e92fd"},"downloads":-1,"filename":"kiwi-9.20.6.tar.gz","has_sig":false,"md5_digest":"77ac34a20a1ac717c6ac60bf3ab9f23a","packagetype":"sdist","python_version":"source","requires_python":null,"size":726850,"upload_time":"2020-04-03T14:24:43","upload_time_iso_8601":"2020-04-03T14:24:43.366041Z","url":"https://files.pythonhosted.org/packages/91/96/10b524b91f3a365cb1357560b04f3d9f3ba8e3b0a2665ddcc41612980137/kiwi-9.20.6.tar.gz","yanked":false,"yanked_reason":null}],"9.20.7":[{"comment_text":"","digests":{"md5":"9083d485b82ef0b9d1eb4e98d4dc0675","sha256":"84d82d7e210fe58d11c26a5ad971e47e10b18727b8d43f31d2e122285bb74ed0"},"downloads":-1,"filename":"kiwi-9.20.7.tar.gz","has_sig":false,"md5_digest":"9083d485b82ef0b9d1eb4e98d4dc0675","packagetype":"sdist","python_version":"source","requires_python":null,"size":727843,"upload_time":"2020-04-16T08:38:21","upload_time_iso_8601":"2020-04-16T08:38:21.609972Z","url":"https://files.pythonhosted.org/packages/d5/49/8796366af443fe28a648bc960201d84f87b5814e0522bee0f9d38af46da0/kiwi-9.20.7.tar.gz","yanked":false,"yanked_reason":null}],"9.20.8":[{"comment_text":"","digests":{"md5":"9a79d297be70dabe6b6fd6667cae5d62","sha256":"a555b3cf8dc90d9cc646b5584d162098ee6fd1b570e04fd3fa9557dc9df423df"},"downloads":-1,"filename":"kiwi-9.20.8.tar.gz","has_sig":false,"md5_digest":"9a79d297be70dabe6b6fd6667cae5d62","packagetype":"sdist","python_version":"source","requires_python":null,"size":727827,"upload_time":"2020-04-16T10:25:13","upload_time_iso_8601":"2020-04-16T10:25:13.890227Z","url":"https://files.pythonhosted.org/packages/5b/78/e9796f0573a907660f4d111e74aeeb555df32a194606fb2aa9567a7775b7/kiwi-9.20.8.tar.gz","yanked":false,"yanked_reason":null}],"9.20.9":[{"comment_text":"","digests":{"md5":"cb29f3a69472b9064c23b9d7c4de1635","sha256":"7e4cc9aad1d41aaacdabaa45131e9e2ef84bff324d83697046c9146a57c0e167"},"downloads":-1,"filename":"kiwi-9.20.9.tar.gz","has_sig":false,"md5_digest":"cb29f3a69472b9064c23b9d7c4de1635","packagetype":"sdist","python_version":"source","requires_python":null,"size":727948,"upload_time":"2020-04-17T09:18:06","upload_time_iso_8601":"2020-04-17T09:18:06.269717Z","url":"https://files.pythonhosted.org/packages/b4/ba/ad024073a3c9357ef0185aa46e3fdbce0cb93cf22e49992c563bbba4f3df/kiwi-9.20.9.tar.gz","yanked":false,"yanked_reason":null}],"9.3.0":[{"comment_text":"","digests":{"md5":"96df1fc7100efc331cf7a33aefa71549","sha256":"23653829ed52d9aa23f93f8d256d68f55fd179cc7b835a51721aa0b69dbb9609"},"downloads":-1,"filename":"kiwi-9.3.0.tar.gz","has_sig":false,"md5_digest":"96df1fc7100efc331cf7a33aefa71549","packagetype":"sdist","python_version":"source","requires_python":null,"size":2796159,"upload_time":"2017-03-07T15:42:40","upload_time_iso_8601":"2017-03-07T15:42:40.453748Z","url":"https://files.pythonhosted.org/packages/5e/c1/8a0894c4a968784a6831e1ee9bba16afe933c7576bf42a9e12fb0673a21a/kiwi-9.3.0.tar.gz","yanked":false,"yanked_reason":null}],"9.3.1":[{"comment_text":"","digests":{"md5":"ec7c21b2aa5349e10adc864159569640","sha256":"b5784b2b1ebdd5e9035b808932da26b1c2ab299c68564a6a5cbbff31fee11744"},"downloads":-1,"filename":"kiwi-9.3.1.tar.gz","has_sig":false,"md5_digest":"ec7c21b2aa5349e10adc864159569640","packagetype":"sdist","python_version":"source","requires_python":null,"size":2800957,"upload_time":"2017-03-07T16:25:41","upload_time_iso_8601":"2017-03-07T16:25:41.997500Z","url":"https://files.pythonhosted.org/packages/43/57/d74503a8d3d737778d1187d75373cdb18f304731169fef6e8b32324d2c0d/kiwi-9.3.1.tar.gz","yanked":false,"yanked_reason":null}],"9.3.2":[{"comment_text":"","digests":{"md5":"b2be06ba8d3d497ac2912a7f1c7c7598","sha256":"fc9ea674739dd6d44803e9714627137edcf9d170b7271b743b1b8c07b0ee9507"},"downloads":-1,"filename":"kiwi-9.3.2.tar.gz","has_sig":false,"md5_digest":"b2be06ba8d3d497ac2912a7f1c7c7598","packagetype":"sdist","python_version":"source","requires_python":null,"size":2807610,"upload_time":"2017-03-07T16:45:22","upload_time_iso_8601":"2017-03-07T16:45:22.190620Z","url":"https://files.pythonhosted.org/packages/91/41/5ead1316367176eaabb313c3e2a9a9b0e6575be32129e5feef3ad6d674e9/kiwi-9.3.2.tar.gz","yanked":false,"yanked_reason":null}],"9.3.3":[{"comment_text":"","digests":{"md5":"c810ffa7d4d54f6f577fcb0322e2471e","sha256":"b64a4f8b2b5109aeb9ca572d393187f19190fd0bd3fe23dd6cc6577beb0e974d"},"downloads":-1,"filename":"kiwi-9.3.3.tar.gz","has_sig":false,"md5_digest":"c810ffa7d4d54f6f577fcb0322e2471e","packagetype":"sdist","python_version":"source","requires_python":null,"size":2925884,"upload_time":"2017-03-13T13:10:37","upload_time_iso_8601":"2017-03-13T13:10:37.332533Z","url":"https://files.pythonhosted.org/packages/5d/b5/4420b8bfab664a6a8a4dad16e04c526d7bf5778d4cb07adabf9b15cfec6a/kiwi-9.3.3.tar.gz","yanked":false,"yanked_reason":null}],"9.4.0":[{"comment_text":"","digests":{"md5":"3310d41b7c7dcd61f6f6a930d8ae1f81","sha256":"60a0a3d8170d1c6e373a4fbc8970fed56dc2a79703a1478c4177bf58935c11e1"},"downloads":-1,"filename":"kiwi-9.4.0.tar.gz","has_sig":false,"md5_digest":"3310d41b7c7dcd61f6f6a930d8ae1f81","packagetype":"sdist","python_version":"source","requires_python":null,"size":2931527,"upload_time":"2017-03-16T08:58:17","upload_time_iso_8601":"2017-03-16T08:58:17.283616Z","url":"https://files.pythonhosted.org/packages/10/43/eb9780b5742d0a7cefd37727a375ccbe7b9f25918646c08f64809905a2f7/kiwi-9.4.0.tar.gz","yanked":false,"yanked_reason":null}],"9.4.10":[{"comment_text":"","digests":{"md5":"ecb01fbe39747ac33378f30f99014062","sha256":"5d991281f443e1311dd2646b8a1b9a5c918704752e598fce6a77c9964b7dce53"},"downloads":-1,"filename":"kiwi-9.4.10.tar.gz","has_sig":false,"md5_digest":"ecb01fbe39747ac33378f30f99014062","packagetype":"sdist","python_version":"source","requires_python":null,"size":3157239,"upload_time":"2017-04-10T17:31:12","upload_time_iso_8601":"2017-04-10T17:31:12.830822Z","url":"https://files.pythonhosted.org/packages/d0/c7/8f4e78a513982f54faf093dfed121208e3f022863fa8a254c2375f401f26/kiwi-9.4.10.tar.gz","yanked":false,"yanked_reason":null}],"9.4.3":[{"comment_text":"","digests":{"md5":"91dfb7ec7f97ad09d5787f26d6223eee","sha256":"9064553492e19a1c7a8222067d4323600a505e5dd28bfb75e0779329df1a3c7c"},"downloads":-1,"filename":"kiwi-9.4.3.tar.gz","has_sig":false,"md5_digest":"91dfb7ec7f97ad09d5787f26d6223eee","packagetype":"sdist","python_version":"source","requires_python":null,"size":2818300,"upload_time":"2017-03-21T17:25:51","upload_time_iso_8601":"2017-03-21T17:25:51.323705Z","url":"https://files.pythonhosted.org/packages/5c/25/08cd601083ca1657fbea2c4ebd387f0731b91881401803c844863f7f2ace/kiwi-9.4.3.tar.gz","yanked":false,"yanked_reason":null}],"9.4.4":[{"comment_text":"","digests":{"md5":"65c22ddca95196d249c1e6014107873c","sha256":"2a9396783b2b349a5b97715b0a3aa76939b8add5f3813ceaa94c0e8001069540"},"downloads":-1,"filename":"kiwi-9.4.4.tar.gz","has_sig":false,"md5_digest":"65c22ddca95196d249c1e6014107873c","packagetype":"sdist","python_version":"source","requires_python":null,"size":2939704,"upload_time":"2017-03-27T08:45:13","upload_time_iso_8601":"2017-03-27T08:45:13.594119Z","url":"https://files.pythonhosted.org/packages/68/22/014831f96dd178c036e3208f0cc5c2d5bdc2af1c2af12d6d0a61e15bb2c8/kiwi-9.4.4.tar.gz","yanked":false,"yanked_reason":null}],"9.4.5":[{"comment_text":"","digests":{"md5":"2aa03e17c4843d62de26043e6351772d","sha256":"e2c9c0f9bcfb67e42dad194cff9832a503c697b7f15d6437f2e3d9d3049de7f0"},"downloads":-1,"filename":"kiwi-9.4.5.tar.gz","has_sig":false,"md5_digest":"2aa03e17c4843d62de26043e6351772d","packagetype":"sdist","python_version":"source","requires_python":null,"size":2958384,"upload_time":"2017-03-30T08:47:32","upload_time_iso_8601":"2017-03-30T08:47:32.559856Z","url":"https://files.pythonhosted.org/packages/7a/d3/44cd46511f0b3b575324a2c7684e668d06217984e886932ae87365656a8c/kiwi-9.4.5.tar.gz","yanked":false,"yanked_reason":null}],"9.4.6":[{"comment_text":"","digests":{"md5":"18f3f79d975352f5a03134f08e92960e","sha256":"25790739649185e39152d9e05bfe7b56454c4b531838ff264e861cd56d6b6e2d"},"downloads":-1,"filename":"kiwi-9.4.6.tar.gz","has_sig":false,"md5_digest":"18f3f79d975352f5a03134f08e92960e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3269693,"upload_time":"2017-04-05T08:33:17","upload_time_iso_8601":"2017-04-05T08:33:17.877647Z","url":"https://files.pythonhosted.org/packages/ad/a6/4ce74d081e016a2ece44a7afb0f979084267e0c1817f3e754c30bf2ac1f2/kiwi-9.4.6.tar.gz","yanked":false,"yanked_reason":null}],"9.4.8":[{"comment_text":"","digests":{"md5":"af9fda7cb15602aeeffada9c176b5450","sha256":"9fa9592d836f4caa25f4a3a66fbdb099f20e36e218c3da405cc22387f97f0dc7"},"downloads":-1,"filename":"kiwi-9.4.8.tar.gz","has_sig":false,"md5_digest":"af9fda7cb15602aeeffada9c176b5450","packagetype":"sdist","python_version":"source","requires_python":null,"size":3260951,"upload_time":"2017-04-05T10:19:46","upload_time_iso_8601":"2017-04-05T10:19:46.321935Z","url":"https://files.pythonhosted.org/packages/61/77/8397f59b5e377725aeaacb4fbeee85589876240ecb633161672abd0b5683/kiwi-9.4.8.tar.gz","yanked":false,"yanked_reason":null}],"9.4.9":[{"comment_text":"","digests":{"md5":"4be08e9045b1437b3fb331cc520ec453","sha256":"a3725a9fec5c9850a258b271af0394511bed4d45d051d2ff0e0564a239d4ee8b"},"downloads":-1,"filename":"kiwi-9.4.9.tar.gz","has_sig":false,"md5_digest":"4be08e9045b1437b3fb331cc520ec453","packagetype":"sdist","python_version":"source","requires_python":null,"size":3269715,"upload_time":"2017-04-06T14:03:23","upload_time_iso_8601":"2017-04-06T14:03:23.079351Z","url":"https://files.pythonhosted.org/packages/2a/3c/f5437e1f5e4866bbb51f811fe9375fcbc64fbd157b543e5fa80dc6ac5900/kiwi-9.4.9.tar.gz","yanked":false,"yanked_reason":null}],"9.5.0":[{"comment_text":"","digests":{"md5":"8412dae8b5e6804dd9dc10bc1766cfb1","sha256":"4802dcd7c000a461699429a280363eb9d5f05a091d4b7cf8c008b8e948532155"},"downloads":-1,"filename":"kiwi-9.5.0.tar.gz","has_sig":false,"md5_digest":"8412dae8b5e6804dd9dc10bc1766cfb1","packagetype":"sdist","python_version":"source","requires_python":null,"size":3178742,"upload_time":"2017-04-24T11:37:49","upload_time_iso_8601":"2017-04-24T11:37:49.088320Z","url":"https://files.pythonhosted.org/packages/d8/2f/1b3a13df3cf7a949957c48866acd95c045a2d9cff78bc1976a524d099ea4/kiwi-9.5.0.tar.gz","yanked":false,"yanked_reason":null}],"9.6.0":[{"comment_text":"","digests":{"md5":"ffe0131f4abada0ad1f531039534ae3e","sha256":"ae6a85e95604c8e0e520e66b1c56e90a6d2b4742f3aa6f4add037571da61a245"},"downloads":-1,"filename":"kiwi-9.6.0.tar.gz","has_sig":false,"md5_digest":"ffe0131f4abada0ad1f531039534ae3e","packagetype":"sdist","python_version":"source","requires_python":null,"size":3178694,"upload_time":"2017-04-26T15:44:34","upload_time_iso_8601":"2017-04-26T15:44:34.970739Z","url":"https://files.pythonhosted.org/packages/66/95/1ae333311a542b15f3281e22d6eaf21824b03d3507662ef35227f45fabbf/kiwi-9.6.0.tar.gz","yanked":false,"yanked_reason":null}],"9.6.1":[{"comment_text":"","digests":{"md5":"cdcb2b398e6232bf8e5ddf2f1879dd2c","sha256":"306ca5c61566c62f594b7f8938c822ee12a1ca4f491e6592963857b6eb22ea0b"},"downloads":-1,"filename":"kiwi-9.6.1.tar.gz","has_sig":false,"md5_digest":"cdcb2b398e6232bf8e5ddf2f1879dd2c","packagetype":"sdist","python_version":"source","requires_python":null,"size":3342358,"upload_time":"2017-05-11T14:11:51","upload_time_iso_8601":"2017-05-11T14:11:51.199795Z","url":"https://files.pythonhosted.org/packages/e4/df/93e7f35dc72c123b2e7bd4e80c67a8be685ad28e58438104f3500f77dca5/kiwi-9.6.1.tar.gz","yanked":false,"yanked_reason":null}],"9.6.2":[{"comment_text":"","digests":{"md5":"99eacf2a9181cb5ac73d2f387f574018","sha256":"3a42ce0aaa8af8ba52ee2476491923c24450378ff5d6d342f2f71bd6190ce656"},"downloads":-1,"filename":"kiwi-9.6.2.tar.gz","has_sig":false,"md5_digest":"99eacf2a9181cb5ac73d2f387f574018","packagetype":"sdist","python_version":"source","requires_python":null,"size":3371473,"upload_time":"2017-05-17T09:15:59","upload_time_iso_8601":"2017-05-17T09:15:59.945996Z","url":"https://files.pythonhosted.org/packages/9d/32/9df5b7aabdad57808eacdd07490f3d148be077be85e7a76820a3e8482efd/kiwi-9.6.2.tar.gz","yanked":false,"yanked_reason":null}],"9.7.0":[{"comment_text":"","digests":{"md5":"100abe984472793059f817507502c160","sha256":"06d0781312fec45b580becb7389cd54cc51377f8c7bbb98190e24350010f6433"},"downloads":-1,"filename":"kiwi-9.7.0.tar.gz","has_sig":false,"md5_digest":"100abe984472793059f817507502c160","packagetype":"sdist","python_version":"source","requires_python":null,"size":3363249,"upload_time":"2017-06-02T08:52:36","upload_time_iso_8601":"2017-06-02T08:52:36.505310Z","url":"https://files.pythonhosted.org/packages/bb/3c/84aada0cb85cbb3dd4c509486b606143d9facba93794984f3dc442d39d31/kiwi-9.7.0.tar.gz","yanked":false,"yanked_reason":null}],"9.7.1":[{"comment_text":"","digests":{"md5":"044bd2f2c79520930c2e0ae3a080f328","sha256":"3f1d6e203691da548850a72bec9bcbeaaf3620be4564de77de330622d8b68403"},"downloads":-1,"filename":"kiwi-9.7.1.tar.gz","has_sig":false,"md5_digest":"044bd2f2c79520930c2e0ae3a080f328","packagetype":"sdist","python_version":"source","requires_python":null,"size":3365670,"upload_time":"2017-06-08T09:06:43","upload_time_iso_8601":"2017-06-08T09:06:43.496344Z","url":"https://files.pythonhosted.org/packages/c4/0e/ec17fb455a19893616ab6731ef0a8659d16acb9109b7a4ddc9e65cb1d984/kiwi-9.7.1.tar.gz","yanked":false,"yanked_reason":null}],"9.7.2":[{"comment_text":"","digests":{"md5":"d78b1d2d61aa2b80f0e238eddaadb628","sha256":"33831ca467ab9c26d9f5d6d250de834827d3047b86d2e7a22862ecfe2221d48a"},"downloads":-1,"filename":"kiwi-9.7.2.tar.gz","has_sig":false,"md5_digest":"d78b1d2d61aa2b80f0e238eddaadb628","packagetype":"sdist","python_version":"source","requires_python":null,"size":3352040,"upload_time":"2017-06-09T12:24:01","upload_time_iso_8601":"2017-06-09T12:24:01.108132Z","url":"https://files.pythonhosted.org/packages/ba/d5/f1614b4d887af01a8b58936f44c8c5b8f8085ba64d28214f7de6a2527a48/kiwi-9.7.2.tar.gz","yanked":false,"yanked_reason":null}],"9.7.3":[{"comment_text":"","digests":{"md5":"28251af1cdaaeb00895cebfe288c8aa4","sha256":"ab9b6d64298cd23297cfd588054133a3a35d5180ceb278c78e4642227c68dac1"},"downloads":-1,"filename":"kiwi-9.7.3.tar.gz","has_sig":false,"md5_digest":"28251af1cdaaeb00895cebfe288c8aa4","packagetype":"sdist","python_version":"source","requires_python":null,"size":3248903,"upload_time":"2017-06-20T12:49:28","upload_time_iso_8601":"2017-06-20T12:49:28.876512Z","url":"https://files.pythonhosted.org/packages/f2/32/35fc1d7259ebcad7b11f8439f04edc2071367d70f66ab6bd1a56e4897271/kiwi-9.7.3.tar.gz","yanked":false,"yanked_reason":null}],"9.7.4":[{"comment_text":"","digests":{"md5":"b5686c0e8a17244c70c190b04bf273a7","sha256":"fc60553612105067bc8ef6c0cfa767f4ef94b14fccea0046662e66481960ae4d"},"downloads":-1,"filename":"kiwi-9.7.4.tar.gz","has_sig":false,"md5_digest":"b5686c0e8a17244c70c190b04bf273a7","packagetype":"sdist","python_version":"source","requires_python":null,"size":3234024,"upload_time":"2017-06-20T16:44:59","upload_time_iso_8601":"2017-06-20T16:44:59.157915Z","url":"https://files.pythonhosted.org/packages/fc/f2/14aa92d902e928c95adddf778710948ec0ac3c182c9165580259aa18eaa8/kiwi-9.7.4.tar.gz","yanked":false,"yanked_reason":null}],"9.8.0":[{"comment_text":"","digests":{"md5":"5242bc041c05f58df3ff42d39dd5a89d","sha256":"9e9409b4bbe5501348bf7c502b6d29b0c25ebb812280560088bdf19cb12c9f0c"},"downloads":-1,"filename":"kiwi-9.8.0.tar.gz","has_sig":false,"md5_digest":"5242bc041c05f58df3ff42d39dd5a89d","packagetype":"sdist","python_version":"source","requires_python":null,"size":3223311,"upload_time":"2017-06-30T16:20:31","upload_time_iso_8601":"2017-06-30T16:20:31.732274Z","url":"https://files.pythonhosted.org/packages/a0/15/c757f7f6d32bf5ebe742d435008e609b0683336a29bc81aaae006c577d96/kiwi-9.8.0.tar.gz","yanked":false,"yanked_reason":null}]},"urls":[{"comment_text":"","digests":{"md5":"83eacb645afb18245a5a0d5e4b732b23","sha256":"d33106c126f30cfba69df69813d00e5556e4fe7443011e1a35a8e1fdcf3f2d7a"},"downloads":-1,"filename":"kiwi-9.20.12.tar.gz","has_sig":false,"md5_digest":"83eacb645afb18245a5a0d5e4b732b23","packagetype":"sdist","python_version":"source","requires_python":null,"size":733804,"upload_time":"2020-05-08T14:59:25","upload_time_iso_8601":"2020-05-08T14:59:25.650233Z","url":"https://files.pythonhosted.org/packages/41/f4/5c3aebc079039c9980594f18c742486ace644d60cfb2b39ef9c2c81ecfd9/kiwi-9.20.12.tar.gz","yanked":false,"yanked_reason":null}]}' diff --git a/upstream-info/ksh.yaml b/upstream-info/ksh.yaml index ad8ea0d0e4d72aa1923ef0eceb9a2868500eb4dc..cd8a31cd631ebaeab436e7e827875e4e814e26fe 100644 --- a/upstream-info/ksh.yaml +++ b/upstream-info/ksh.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: att/ast -tag_prefix: ^v -seperator: . +src_repo: att/ast +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:32:55.767202260 +00:00 + raw_data: "4984d25b9de96b67d28444965b26afee7cc3d03a\trefs/tags/2017.0.0-devel\nb475fa16c665cfc929eb088d47cbaa9e8d108257\trefs/tags/2017.0.0-devel^{}\nec11e4ef987d88217f4c9492adf71ce88cbaa52c\trefs/tags/2020.0.0\n42e726f8d004ec2220a291f5a54f000a0c471762\trefs/tags/2020.0.0^{}\nacf6d8092780da85c79a236f0bc2846f2f155d63\trefs/tags/2020.0.0-alpha1\n96d1960c18f9ea93fde5f999bc5450d636d45163\trefs/tags/2020.0.0-alpha1^{}\n240b6b3f9dfc5f0324b1f5774fecbdb208678a82\trefs/tags/2020.0.0-beta1\n32d8131bf18b602128857a5870a9e90b0b18f383\trefs/tags/2020.0.0-beta1^{}\ncf5137a52ececdb64ca561c47351d5ec17907b6e\trefs/tags/93u\ne79c29295092fe2b2282d134e2b7cce32ec9dcac\trefs/tags/93u^{}\n409c775ffe7141429e8970de864b850342e38c24\trefs/tags/93v\n2f2b1b8be315df029ce83c2ccc12a16fdcf73f29\trefs/tags/93v^{}\n691df55f2b79bdd1684fbab0ade3365ec95e0179\trefs/tags/ksh93u\ne79c29295092fe2b2282d134e2b7cce32ec9dcac\trefs/tags/ksh93u^{}\nb1e75e2b8f488eb0b4981897c042d9c02df54932\trefs/tags/ksh93v\n2f2b1b8be315df029ce83c2ccc12a16fdcf73f29\trefs/tags/ksh93v^{}\n" +query_type: git-ls diff --git a/upstream-info/lm_sensors.yaml b/upstream-info/lm_sensors.yaml index 3b8352484b8fe6613fcb256fdd722c40fa734456..4e4a3f50e0f85a1618a9da5720161ca932e75187 100644 --- a/upstream-info/lm_sensors.yaml +++ b/upstream-info/lm_sensors.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: groeck/lm-sensors -tag_prefix: ^v -seperator: . +src_repo: groeck/lm-sensors +tag_prefix: "^V" +seperator: "-" +last_query: + time_stamp: 2020-05-20 09:35:48.578270660 +00:00 + raw_data: "cf53cd50e8c9c8bfa6a99143c3ae2f84d688ebf8\trefs/tags/LAST-PRE-2-4-KERNEL\n506db07699499df3edc3c129352fd7fe5c51bdef\trefs/tags/LAST-PRE-2-4-KERNEL^{}\nd9d64488cec10a4fb0a8ae1c21896149b7677945\trefs/tags/LAST-PRE-2-8-I2C\n7b7e4d803ad0e70186fc3e555b10618d59be2c21\trefs/tags/LAST-PRE-2-8-I2C^{}\n40ac7d9ae191e9b65eed65a19a6b67c5d1770a2e\trefs/tags/POST-2-8-I2C\n99a6a90ca0f1da4e9c5942276b97dee28d6597e2\trefs/tags/POST-2-8-I2C^{}\n6a3c8211d59c6b9ab7719487f0e67c97663aae40\trefs/tags/V-2-3-1\nbb415b55d0934464fe70574791e33970866e6590\trefs/tags/V-2-3-1^{}\n3abfc0e9433254bb3dba3d855920c29af2e95987\trefs/tags/V2-0-0\nb939d4df45d2042a0037ff0ec971dc82f4bd43d3\trefs/tags/V2-0-0^{}\ne3918bac68ae35de0830134abee5035ccfbd11f9\trefs/tags/V2-0-1\n852c361c286273da51d9520baa6fc212703714d3\trefs/tags/V2-0-1^{}\n908092995ef11bb64f287f2e76274c525cf4e312\trefs/tags/V2-0-2\n29e951975ec08bf512377e847b2305eb0fc8c555\trefs/tags/V2-0-2^{}\n36b309d5310f96ad7b6cb4a8c69e0478964dd2d4\trefs/tags/V2-1-0\na6198f79ade6228e05ec8f1f9dc0b15067c5c423\trefs/tags/V2-1-0^{}\nbc0c4abb5b63a7ea59868fd6b5710b10bb61992e\trefs/tags/V2-1-1\n340b7c5e7bf401259729b949a4a6f5dc060c164f\trefs/tags/V2-1-1^{}\nb87cde242768b3719b1dd00d10e809f91c3cae60\trefs/tags/V2-1-2\nd7d40c0793d8669af28476f601e6b514df327cda\trefs/tags/V2-1-2^{}\n60e0464002204de4d529bf16db58eeaaa26f48c2\trefs/tags/V2-10-0\nbb3009ec043c5e4280a4a6602b657c475c263378\trefs/tags/V2-10-0^{}\nb63be3e540eff332ac53b970daae843bbb14e441\trefs/tags/V2-10-1\n2e351ce8f7efd613279b0ea84f6d2d9b71d88d07\trefs/tags/V2-10-1^{}\nd45ffff10e19b564e8e7a51833c84df293bcd2a6\trefs/tags/V2-10-2\n60fd9f2dd1936f558f0342c4ab7bbb8d6216e719\trefs/tags/V2-10-2^{}\n8cf4685f2c01aff9bafbf87a8e0294f5c54f2fe1\trefs/tags/V2-10-3\n3ee37c78c7a8aaba106e0418ee94b80201a466db\trefs/tags/V2-10-3^{}\nad923aa7a1c0e86cdca70a1b6b2a71812b184e09\trefs/tags/V2-10-4\n6820cf3eca5ec0805fe69428fbce8adcb808a04f\trefs/tags/V2-10-4^{}\n93557f3f32196517fc3ce79be0a24d61b1c23346\trefs/tags/V2-10-5\n32df4f39f83d34d565cd220bcce7b66ae6af8e4c\trefs/tags/V2-10-5^{}\nce108b90c6b8c569593b400c0c3f8c5e89b494dc\trefs/tags/V2-10-6\n6a685f1f97ad45c30e9a52af3a3a5e1f898fdc8e\trefs/tags/V2-10-6^{}\nb763a5607200986d5090474521e3f4b294cef655\trefs/tags/V2-10-7\n272865667bd3b246bf3fe20cf7f4ecc733e3d763\trefs/tags/V2-10-7^{}\n193d9030aab7141ef63a7fe12dcea83f377f2f5c\trefs/tags/V2-10-8\na8a19bfe9be6dffefead2f926dafcda1798f18c3\trefs/tags/V2-10-8^{}\nb6424f2765383dac9a433798789f4214a865e5e9\trefs/tags/V2-2-0\n88ded6c842c749f84a8a09529333af88ff54b033\trefs/tags/V2-2-0^{}\nf8bb826282df7442b5c5ac7881f81cb370076f74\trefs/tags/V2-2-1\n845a74f766b5b4e2c752ef892f56b97dc52d7033\trefs/tags/V2-2-1^{}\n4502e4e259521ecc401f4ccdabe1622bc8fe17f4\trefs/tags/V2-2-2\nbf5e84c1359380b2cb4295acb6e4b96e0f95d9b6\trefs/tags/V2-2-2^{}\n427ee963357f02c7e0edf0ac5735e69eb735ec83\trefs/tags/V2-3-0\n174ac7146ebc31e7d0250edbe5c9a25075baa21c\trefs/tags/V2-3-0^{}\n57cc2868f6bafd23b71ef7efd2891e87ab09465d\trefs/tags/V2-3-1\nc421b9bc13869ded07b7e10642f0fa225d4175ea\trefs/tags/V2-3-1^{}\n1d6ae1ce035a16545e9455d4815c6d419b7c7f61\trefs/tags/V2-3-2\nc670a3920adfd26a0cd75ce1aba7928af05604cc\trefs/tags/V2-3-2^{}\n84d13ca0a7d9ad3ddd8811b4aa4a39577f76b7fa\trefs/tags/V2-3-3\n0f1516a9ba5b63661b6f41cc24569a8e77f32eec\trefs/tags/V2-3-3^{}\n56b5e9506bfc380cf26193352ccc00a29c0e4a11\trefs/tags/V2-3-4\nb79299f9674391c334be8d1b9e6889c96e1689c7\trefs/tags/V2-3-4^{}\n3533f72fb502ab8d91688ab2f8f27f7e39988095\trefs/tags/V2-4-3\nebc114d126342992d1fda47e10c2affb3bf64aaf\trefs/tags/V2-4-3^{}\n98ed8fcd6700367fcf5dd8ba4d8b674e393f185b\trefs/tags/V2-4-4\naf5e2bf793a1fd6c3af3d886bfad702f149e2004\trefs/tags/V2-4-4^{}\n3d1b967c883fde46367c18b2c27b591183988015\trefs/tags/V2-4-5\nfb1bb03e895dd90ac584d982df2f6a11e454daa0\trefs/tags/V2-4-5^{}\nd288403802ee84530254c30018d3beb8b5c33425\trefs/tags/V2-5-0\n5054ee520c7eae309abbd92100a0a10e801b1a02\trefs/tags/V2-5-0^{}\na20efad358e7ba65485b14df78b40f5d10ce42b9\trefs/tags/V2-5-1\nc0f7e1550c65d2902dbd74e4e9d6e8093145ff39\trefs/tags/V2-5-1^{}\n9348ffc8972987c776ba445d47ff067e80017108\trefs/tags/V2-5-2\n2b999440aa78a2172ba6facaedaa688d0721585b\trefs/tags/V2-5-2^{}\n6a132bb38942cebb41a425570c3bc776da34e667\trefs/tags/V2-5-3\n0f91c69110545b8995bb744d4c44f587dfe1a657\trefs/tags/V2-5-3^{}\n1f1c5752a8b717d764dcb498c114ce6c85307377\trefs/tags/V2-5-4\nfd677493b644960797ca88709c23656a1cb8f9aa\trefs/tags/V2-5-4^{}\nc5d393be9913f5823fb7ab37769249bfd7627618\trefs/tags/V2-5-5\n5de72e7309c08d08d63e7bbe52298e7daf862bb7\trefs/tags/V2-5-5^{}\nf96bd460995e6dd46cbf1934a3689a21117bdd9f\trefs/tags/V2-6-0\nefda6a415d206dc29c8a5cb0b80678695e842d9d\trefs/tags/V2-6-0^{}\n2a53802a6462ba7ac79ac78655869b3e96a2624e\trefs/tags/V2-6-1\n73bdcffcb8245dce355848c7c383dd16f4f1068c\trefs/tags/V2-6-1^{}\n614ade51571ca04487e16e4fb2d26830067a308a\trefs/tags/V2-6-2\neab87a5be1dfbefb829462a545b118118a8093d0\trefs/tags/V2-6-2^{}\nf96a036fc08b0411d549415c316ca6b36d472f9a\trefs/tags/V2-6-3\n1736947f7174a031413dd88d763eb246b0412205\trefs/tags/V2-6-3^{}\ncba116c6ad2952f94ef40879776f859becbea0f1\trefs/tags/V2-6-4\nc00b94ba9682db7b4868252c6e5fd9379385941f\trefs/tags/V2-6-4^{}\ndb5f3f2cfe704728963d29b48ae25f5d3a046361\trefs/tags/V2-6-5\n8ca0a4cce2bd3fe6e475e04679b7799d87ef30dc\trefs/tags/V2-6-5^{}\nc4ea7664ccca22213c31980a464bb571e0ce205e\trefs/tags/V2-7-0\na286752a4c58f4dbf8bf55d73356ff057ca61030\trefs/tags/V2-7-0^{}\n8d7bbf6c7a5bb862048ee3b37fa6e7a14b8d124f\trefs/tags/V2-8-0\nf3cb13d0e80ebbce820b9999eb6f7246e65fca68\trefs/tags/V2-8-0^{}\n2442c0fd683945f0d8d9f9ae6747fa4063a8bfb7\trefs/tags/V2-8-1\ne492469984e3d3f414305926d94d3026519a3f43\trefs/tags/V2-8-1^{}\n5de1c4eb3ad53ce5664531c84118b9558ef4bd34\trefs/tags/V2-8-2\n26f7e6ba902e9b7109842409b380745634bdefda\trefs/tags/V2-8-2^{}\nc77668225c8b864b4256d83aca12190d9766f608\trefs/tags/V2-8-3\nfb6659d4a8376e0e28861664e1ae71d9dd3be97a\trefs/tags/V2-8-3^{}\n12389d798310efc9dc12d4177d004168713ff494\trefs/tags/V2-8-4\n30ece912e4cbd612234cba7b3f6542b2a0d126a0\trefs/tags/V2-8-4^{}\nfff210a8f60af45c9decc34224959a4d3250977b\trefs/tags/V2-8-5\n088044605f6aaeb2d0dbb5c4b3bb437679ffbe6d\trefs/tags/V2-8-5^{}\ne87b091eb4d2fbf05096b62356e9088cd4cb59a4\trefs/tags/V2-8-6\nbb764bc5d9bef8ff624a89c78d6f6215acdf32f5\trefs/tags/V2-8-6^{}\nfdb8d82fcc0809d24b41f30d47678fafb8d750b2\trefs/tags/V2-8-7\n0034574a6c4bfe81939adce2d27bb5c91395a170\trefs/tags/V2-8-7^{}\n73933f55b4342042f9221ba1367c98b4a6769155\trefs/tags/V2-8-8\n6394666a16217f14dd340e4a9d328dec642a9488\trefs/tags/V2-8-8^{}\ne0ae32ec607e36f62e4f70a10a938c81ba843c2c\trefs/tags/V2-9-0\nb09d130dcb1e3129d1a1eab35c8b906bc29564a3\trefs/tags/V2-9-0^{}\n2c56232b3c00524da7d39a60a61bf142c874b738\trefs/tags/V2-9-1\ne1ed6cadcf5c0155064387e1478b950a08c14111\trefs/tags/V2-9-1^{}\n3ee573aacc9bb7b7585e4fb4dcdcefa7e683e6cc\trefs/tags/V2-9-2\n7c2c870e6b4cadfc063504defd574075c19cad90\trefs/tags/V2-9-2^{}\n5b4d586b7981d2eec9bf0a5c8843158f8b3a41d2\trefs/tags/V3-0-0\n633267d4c9896b0811e26222bf9e8091a958ffd3\trefs/tags/V3-0-0^{}\n2b3e3f0c4162a906f8ee9e11d6b4bd32796e1f50\trefs/tags/V3-0-0-RC1\nb3879a614e8f1842ea27a84e444280fc49f69118\trefs/tags/V3-0-0-RC1^{}\n52fb237fabfb0ec3d7a8b2dba50e9e91cb9ddab9\trefs/tags/V3-0-0-RC2\ncee8760a8b23d5d3faa282ed300fbcae33f07b28\trefs/tags/V3-0-0-RC2^{}\n8619655b2813c467bcaae2f381be0579f0136163\trefs/tags/V3-0-0-RC3\nc7889b1161b83cb28a2b518be39354775d2baab1\trefs/tags/V3-0-0-RC3^{}\n47f8d9ef6112b0d7a765286d7486dd89fb52a178\trefs/tags/V3-0-1\n9d97e224962a4858bce3626427f864b9fd11a8bf\trefs/tags/V3-0-1^{}\nc2b783557d624611cb8f64cdd0a8b14fdd2b86d3\trefs/tags/V3-0-2\n75ae0b27eb9ac3d147b19240f204bbbe29750a8c\trefs/tags/V3-0-2^{}\nc55119c6b9583a50b13e9dc3f230bcfebbf72c33\trefs/tags/V3-0-3\n99318700fa3b86aec33cb9a2ddfc3e32a1445560\trefs/tags/V3-0-3^{}\n2fab78cc57aa7a3bb01bf0381540c26d05bc2dc3\trefs/tags/V3-1-0\n3c4b660025d4b2fe7a002a325f2e81903644d464\trefs/tags/V3-1-0^{}\n6b961f8b7238021e56dbd7202646068e1686df46\trefs/tags/V3-1-1\n9bfac778fa7653ecafd2e64e884925bf74a67d9f\trefs/tags/V3-1-1^{}\nefb46aec1c8b921541a405228759fbc4c11130ce\trefs/tags/V3-1-2\n02c740e53769285827cbd6b0fb3c262049bed27a\trefs/tags/V3-1-2^{}\ncb4201562a2922ecc6fef1ea080557ea7ade195e\trefs/tags/V3-2-0\n81638bc7a6484bb977c8f8de6fd8f98601e872f0\trefs/tags/V3-2-0^{}\nb39a3e96990cf173ee71a997ff7acf1570261cd8\trefs/tags/V3-3-0\n16f40792f26e8da9e75d010fb77fd983ab7861ba\trefs/tags/V3-3-0^{}\ncae121125f312068f43072f11d33a0302dfcfc15\trefs/tags/V3-3-1\na27ca6a38a8b7cd6992aaeffc75a19824200bf6d\trefs/tags/V3-3-1^{}\n5fd7625529e09a4da104c3a6b29ddf5b5d3cb2cf\trefs/tags/V3-3-2\n3aaba866425818d126024b471e24153fc6affffe\trefs/tags/V3-3-2^{}\nd0157aceb3007bd608a386e6915c58654b691a76\trefs/tags/V3-3-3\nac5e4f1597ef4723ffd7dfc6b2adfe46aea0e1ef\trefs/tags/V3-3-3^{}\n42b73bf269ed615c9d312c252d9cf3ebed09c3ca\trefs/tags/V3-3-4\n99a091b8fbc236fb3042682aabb5ddab67416d91\trefs/tags/V3-3-4^{}\nf5d8aeef818ab2c373b8aca7cff65427623af9b9\trefs/tags/V3-3-5\na34a0b19e9a7dcfbcac3a44d4667d3eb3178674d\trefs/tags/V3-3-5^{}\nb59b8910ff541a9016b5373ac9f5422b680cf76b\trefs/tags/V3-4-0\nf7bffbef8aec8d2396d0f4ec87cb40192d0a0292\trefs/tags/V3-4-0^{}\ne8afbda10fba571c816abddcb5c8180afc435bba\trefs/tags/V3-5-0\n1667b850a1ce38151dae17156276f981be6fb557\trefs/tags/V3-6-0\nb9df47d3749556d41efcae0bbca0852454b78d67\trefs/tags/i2c-2-8-km2\ncecb7a710b8bf6608c604cb1b991e3635f04117b\trefs/tags/i2c-2-8-km2^{}\n" +query_type: git-ls diff --git a/upstream-info/lsof.yaml b/upstream-info/lsof.yaml index 240ab2a3960eed4306b49bdef564cb7c3eda1178..3520decb29f364459b05dd01013119faad0509f9 100644 --- a/upstream-info/lsof.yaml +++ b/upstream-info/lsof.yaml @@ -1,4 +1,134 @@ +--- version_control: github -src_repo: lsof-org/lsof -tag_prefix: ^v -seperator: . +src_repo: lsof-org/lsof +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:34:52.675270170 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/lsof-org/lsof/releases/17214633", + "assets_url": "https://api.github.com/repos/lsof-org/lsof/releases/17214633/assets", + "upload_url": "https://uploads.github.com/repos/lsof-org/lsof/releases/17214633/assets{?name,label}", + "html_url": "https://github.com/lsof-org/lsof/releases/tag/4.93.2", + "id": 17214633, + "node_id": "MDc6UmVsZWFzZTE3MjE0NjMz", + "tag_name": "4.93.2", + "target_commitish": "master", + "name": "Fixed the version number embedded in lsof executable", + "draft": false, + "author": { + "login": "masatake", + "id": 77077, + "node_id": "MDQ6VXNlcjc3MDc3", + "avatar_url": "https://avatars2.githubusercontent.com/u/77077?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/masatake", + "html_url": "https://github.com/masatake", + "followers_url": "https://api.github.com/users/masatake/followers", + "following_url": "https://api.github.com/users/masatake/following{/other_user}", + "gists_url": "https://api.github.com/users/masatake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masatake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masatake/subscriptions", + "organizations_url": "https://api.github.com/users/masatake/orgs", + "repos_url": "https://api.github.com/users/masatake/repos", + "events_url": "https://api.github.com/users/masatake/events{/privacy}", + "received_events_url": "https://api.github.com/users/masatake/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-08T07:32:25Z", + "published_at": "2019-05-08T07:38:44Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/lsof-org/lsof/tarball/4.93.2", + "zipball_url": "https://api.github.com/repos/lsof-org/lsof/zipball/4.93.2", + "body": "4.93.2 May 8, 2019\r\n\r\n Update the version number embedded in lsof executable.\r\n" + }, + { + "url": "https://api.github.com/repos/lsof-org/lsof/releases/17191650", + "assets_url": "https://api.github.com/repos/lsof-org/lsof/releases/17191650/assets", + "upload_url": "https://uploads.github.com/repos/lsof-org/lsof/releases/17191650/assets{?name,label}", + "html_url": "https://github.com/lsof-org/lsof/releases/tag/4.93.1", + "id": 17191650, + "node_id": "MDc6UmVsZWFzZTE3MTkxNjUw", + "tag_name": "4.93.1", + "target_commitish": "master", + "name": "lsof-4.93.1", + "draft": false, + "author": { + "login": "masatake", + "id": 77077, + "node_id": "MDQ6VXNlcjc3MDc3", + "avatar_url": "https://avatars2.githubusercontent.com/u/77077?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/masatake", + "html_url": "https://github.com/masatake", + "followers_url": "https://api.github.com/users/masatake/followers", + "following_url": "https://api.github.com/users/masatake/following{/other_user}", + "gists_url": "https://api.github.com/users/masatake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masatake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masatake/subscriptions", + "organizations_url": "https://api.github.com/users/masatake/orgs", + "repos_url": "https://api.github.com/users/masatake/repos", + "events_url": "https://api.github.com/users/masatake/events{/privacy}", + "received_events_url": "https://api.github.com/users/masatake/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-07T10:29:42Z", + "published_at": "2019-05-07T10:31:38Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/lsof-org/lsof/tarball/4.93.1", + "zipball_url": "https://api.github.com/repos/lsof-org/lsof/zipball/4.93.1", + "body": "4.93.0\t\tMay 7, 2019\r\n\r\n\t\t[freebsd] Made FreeBSD 13 adjustment.\r\n\t\t[darwin] Fix a typo causing a build error.\r\n\t\tFix a potential memory leak.\r\n\t\t[linux] use tirpc for rpc if libc doesn't provide rpc.h.\r\n\t\tFix a typo in man page.\r\n\t\t[linux] fix memory leaks detected by valgrind about unix\r\n\t\tendpoint information.\r\n\t\tUpdate the description about -fg and -fG options on linux.\r\n\r\n4.93.1\t\tMay 7, 2019\r\n\r\n\t\tFix a broken symbolic link.\r\n" + }, + { + "url": "https://api.github.com/repos/lsof-org/lsof/releases/17158917", + "assets_url": "https://api.github.com/repos/lsof-org/lsof/releases/17158917/assets", + "upload_url": "https://uploads.github.com/repos/lsof-org/lsof/releases/17158917/assets{?name,label}", + "html_url": "https://github.com/lsof-org/lsof/releases/tag/4.92.1", + "id": 17158917, + "node_id": "MDc6UmVsZWFzZTE3MTU4OTE3", + "tag_name": "4.92.1", + "target_commitish": "cleanup", + "name": "Testing \"Release\" feature of GitHub", + "draft": false, + "author": { + "login": "masatake", + "id": 77077, + "node_id": "MDQ6VXNlcjc3MDc3", + "avatar_url": "https://avatars2.githubusercontent.com/u/77077?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/masatake", + "html_url": "https://github.com/masatake", + "followers_url": "https://api.github.com/users/masatake/followers", + "following_url": "https://api.github.com/users/masatake/following{/other_user}", + "gists_url": "https://api.github.com/users/masatake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masatake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masatake/subscriptions", + "organizations_url": "https://api.github.com/users/masatake/orgs", + "repos_url": "https://api.github.com/users/masatake/repos", + "events_url": "https://api.github.com/users/masatake/events{/privacy}", + "received_events_url": "https://api.github.com/users/masatake/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-05T19:59:13Z", + "published_at": "2019-05-05T20:00:34Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/lsof-org/lsof/tarball/4.92.1", + "zipball_url": "https://api.github.com/repos/lsof-org/lsof/zipball/4.92.1", + "body": "This is just for testing \"Release\" feature of GitHub.\r\nMany documentations are not updated yet.\r\nURLs in -v output and -h output are updated." + } + ] +query_type: api.github.releases diff --git a/upstream-info/mdadm.yaml b/upstream-info/mdadm.yaml index 400326aa040e277ebe74310faeb5fa9093d2b56a..075c032e8f84eb0da9da274fd2ab71ddee36b153 100644 --- a/upstream-info/mdadm.yaml +++ b/upstream-info/mdadm.yaml @@ -4,5 +4,5 @@ src_repo: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/ tag_prefix: mdadm- seperator: "." last_query: - time_stamp: 2020-04-26 08:11:50.902580860 +00:00 + time_stamp: 2020-05-20 09:38:07.782521570 +00:00 raw_data: "370f7184451f7b4654e2c9bc94977f5e0d840e75\trefs/tags/devel\n94f8ae072f885eac63fa45a3f8573a2c17a5bf7b\trefs/tags/devel^{}\n9a9dab3670110c2db7fe6f716977b72adedbf855\trefs/tags/mdadm-0.7\n56eb10c0b6e8f21540af444c8a28aa9e8f138ce6\trefs/tags/mdadm-0.7.1\n11a3e71da434939895cc504e20e735eb656b1c74\trefs/tags/mdadm-0.7.2\ne0d1903663dac9307a37646c26abf7991b0a9593\trefs/tags/mdadm-0.8\nc913b90e6dba02613fe24d3e7f0b3f251a01bc50\trefs/tags/mdadm-0.8.1\nb83d95f362ff41e5ce63baa3bbcf0a76ea1f15aa\trefs/tags/mdadm-0.8.2\n2d46552003d8e84dee1bfd9cac4a1426392b64e3\trefs/tags/mdadm-1.0.0\nbd526cee922b8e2b279f04ca067f729e9b0ee723\trefs/tags/mdadm-1.0.1\n5787fa490612387a43c1897eb807b0c5612b5cd2\trefs/tags/mdadm-1.0.9\nd013a55e9422f251ce92decfbf39336064fd6c27\trefs/tags/mdadm-1.1.0\n75aa592c2bd60c250e8781d42972f85c13febd0b\trefs/tags/mdadm-1.10.0\ne5811618d1edde67fe33b9d5524061e3d0a72468\trefs/tags/mdadm-1.11.0\n570c05424705e5f9740567b3683a8d45b7a765f6\trefs/tags/mdadm-1.11.1\n27acabbdc9ed5f50607f106e70142fcf8984fa6e\trefs/tags/mdadm-1.12.0\n56eedc1a3f077e1822a4ee0889a78d89e834b037\trefs/tags/mdadm-1.2.0\naa88f531b468349982905ecacf11da2cb6678ce6\trefs/tags/mdadm-1.3.0\nfeb716e9c3568a45b8815bf2c59e417d30635f89\trefs/tags/mdadm-1.4.0\n98c6faba80e6db0693f99faf5c6525ef4f1fb680\trefs/tags/mdadm-1.5.0\ndd0781e50555c32ff2f808ec46f4b03a5693ea47\trefs/tags/mdadm-1.6.0\ne5329c3747a4e9eb7addbfaa59b8d5e8688ce2a1\trefs/tags/mdadm-1.7.0\nb5e64645037e99b5f05c9499b27b422ae60d23a9\trefs/tags/mdadm-1.8.0\nbaa5f1c2a09dab0f433a7b44535079fee76f0c81\trefs/tags/mdadm-1.9.0\n63f8c4c76bff7d45e9403908ed3591edac7a6e4f\trefs/tags/mdadm-2.0\n40842ca2949950b6b0ca91c9559fa2145d390295\trefs/tags/mdadm-2.0-devel-1\nbea93430e8b9327688fa9f6d5220d9250546a292\trefs/tags/mdadm-2.0-devel-2\n8068890f1116c6fc5ae87596bb6b8272f79d2d1c\trefs/tags/mdadm-2.0-devel-3\n296679da5acd1509203431299873645eaf734fa8\trefs/tags/mdadm-2.1\nf3c7fda66134faf0d854b3af5f29d107e57cdd31\trefs/tags/mdadm-2.2\na92f6acc43a37b7fcea9d968b6e62035ca73a100\trefs/tags/mdadm-2.3\n8a4440794afbebe6bdc710eefd21c221c9046644\trefs/tags/mdadm-2.3.1\n8ca586c6196ff12e19b025ba9f69d0fb638f93f4\trefs/tags/mdadm-2.4\nca9ce4ec3e67cc6296a9e255a9612e2b7b78b612\trefs/tags/mdadm-2.4-pre1\n90d0adf4badeb1ea818b0578fd734b78b3921f3d\trefs/tags/mdadm-2.4.1\n41a3b72a9ce75070eb614c42de6704fa61bb6086\trefs/tags/mdadm-2.5\nbeca3d00d9cca2c0dc4edffe6f20e21f45db2757\trefs/tags/mdadm-2.5.1\n459c7f4f7e39ad1a3312b16f8cb48e0f57cfc352\trefs/tags/mdadm-2.5.2\n2a91e1491ef5cbc8c038f1cd9c3007fb40f56fa8\trefs/tags/mdadm-2.5.2^{}\n607e2c99c514ac12daaaf985174cd744cc2d6349\trefs/tags/mdadm-2.5.3\n3b936f2c2e8d446bc8106b4838f29ff656a89c9d\trefs/tags/mdadm-2.5.3^{}\n4a24a340d38b89f33d0638f1fbe3305ef161e5e6\trefs/tags/mdadm-2.5.4\n8e64e04456b036b23b86ed8219cb8f7c6a53eba6\trefs/tags/mdadm-2.5.4^{}\n724ffad5476e35158bb2c93acf6e47cf13681c0e\trefs/tags/mdadm-2.5.5\n209b742f4d530706811463354c29265de2023c01\trefs/tags/mdadm-2.5.5^{}\n9f770b4ab751c16e05db95f8dfc01d6e50a490a6\trefs/tags/mdadm-2.5.6\n9255bbc84f75aaa513ba597c3e36042575397db8\trefs/tags/mdadm-2.5.6^{}\n1f39f6cee4aafd6cbcd85a08b0d33f31de8f6f1b\trefs/tags/mdadm-2.6\nf8409e547844135bc4e2890b2a79f7ce4e449fe5\trefs/tags/mdadm-2.6^{}\n683f0d7720dca44b0781154d7bf58676ab2a105c\trefs/tags/mdadm-2.6.1\ne003092c073ffab8694a1043df15a62dd3634102\trefs/tags/mdadm-2.6.1^{}\nbe1d0fdb558273eef69458d9c582d36303b17693\trefs/tags/mdadm-2.6.2\nfffdbe5ed0ac135000522e5e74c6583d93618c9c\trefs/tags/mdadm-2.6.2^{}\n37b8575eb94866d123ded476ceffc7f86f53bf5d\trefs/tags/mdadm-2.6.3\ne5bddffd352ac071becbaee65dab5b7e18f03793\trefs/tags/mdadm-2.6.3^{}\nc42a52e1b4a0e5e717c5773f23fb1c56be9edbd8\trefs/tags/mdadm-2.6.4\n6a0671608bd94e75683fd5ca7ea006b9c7552de3\trefs/tags/mdadm-2.6.4^{}\nfa6cad935b3859808a71d0fd9ffff7bc8d7e1a9e\trefs/tags/mdadm-2.6.5\n2270232245dc189807e6ca36835b44146377fc37\trefs/tags/mdadm-2.6.5^{}\n1f6b00b98d16894a26bc8da7ba4935ca4a2da98e\trefs/tags/mdadm-2.6.6\ndf5a0b92954c22128e6beceb6f5df8e303848d71\trefs/tags/mdadm-2.6.6^{}\n8a3373bef09e020b8d436757a1e49f8f64f88ead\trefs/tags/mdadm-2.6.7\n866d136a2f75b751188dfdd490be4d64e6a14d09\trefs/tags/mdadm-2.6.7^{}\n6b8ab475a67796689e49e72baedf0592416eef61\trefs/tags/mdadm-2.6.7.1\nc04bf2398e49763460c0e04df3130566ced16555\trefs/tags/mdadm-2.6.7.1^{}\n15b2934a24a97a286c55202411c372fd7eacb93f\trefs/tags/mdadm-2.6.7.2\nd305b6e623bed4767f9c97f01ca5db46482c430b\trefs/tags/mdadm-2.6.7.2^{}\n2d5621badb9637576252c9d539fb6400b7769950\trefs/tags/mdadm-2.6.8\nca01c83be52c55e34afe2a403873dc090e54553a\trefs/tags/mdadm-2.6.8^{}\nb2712448869a0ebc4ad7535786701a6350169656\trefs/tags/mdadm-2.6.9\n388953d27c20476f84ca71546d6fd357e0230e25\trefs/tags/mdadm-2.6.9^{}\nebd409e9c2da5abfe7a20fa574dfc17bcfa464e6\trefs/tags/mdadm-3.0\n6e92d480f765dc22a5abaa5658ad603353648c1c\trefs/tags/mdadm-3.0^{}\nf5127c78a280b99bf3b79cff5b4e5ddc91471c3b\trefs/tags/mdadm-3.0-devel1\na6141095c60beb32fb12b8fce29a5ba119749fc9\trefs/tags/mdadm-3.0-devel1^{}\n0319ddebc5667bd4dd4cc212a6045de85689aafa\trefs/tags/mdadm-3.0-devel2\n1679bef2eeb641b77d72bf20e9fbbd555cc0a1cb\trefs/tags/mdadm-3.0-devel2^{}\neef53978715e35db5452ab2ce687b56476dab351\trefs/tags/mdadm-3.0-devel3\nb9d77223eb68a211410131b5b0895c547a6d5734\trefs/tags/mdadm-3.0-devel3^{}\ndc786c88f8b46b8ba06a245e90c193b1509209cf\trefs/tags/mdadm-3.0-rc1\n222a7bfd2ea1696f84fa2f98196f5bdd851ac548\trefs/tags/mdadm-3.0-rc1^{}\n332742321838bd348e3ee4529630bea16a3f9688\trefs/tags/mdadm-3.0.1\nd8419fe9e9a1a71e64a508665dc9bc09da174878\trefs/tags/mdadm-3.0.1^{}\ndee61c4486b479e866e5f45ff1d1d75bd05f5168\trefs/tags/mdadm-3.0.2\n58ad57f6842f15744a4d77f61125925ed58f73af\trefs/tags/mdadm-3.0.2^{}\ne688e9fe232b9aab6ff3d2fbad4b241b4af240ae\trefs/tags/mdadm-3.0.3\nd28c1a73838ad808fcf6f584f83e357d2f1b3631\trefs/tags/mdadm-3.0.3^{}\n85f3055fd9d8b172e2201a573dabd285463af760\trefs/tags/mdadm-3.1\n7f0066ba713a8f3ddf093c038e009fde74d673a5\trefs/tags/mdadm-3.1^{}\n7e2d3c52bee299abf2d54a8ba51d8ce3093ad4b5\trefs/tags/mdadm-3.1.1\n40bc78f5cd292d90917cb0a8c177498a516494c3\trefs/tags/mdadm-3.1.1^{}\ncef12a54d7311fd0082f5929fbb3f43f4b6feb4a\trefs/tags/mdadm-3.1.2\na31c140f13dfaac33d4f3ff0960cfe1c24fbe304\trefs/tags/mdadm-3.1.2^{}\n12f47710a8430c845305d203f26f88e072c0af0a\trefs/tags/mdadm-3.1.2a\na4b93c9ce4f15217afb811cd8c92a8b8f01124d0\trefs/tags/mdadm-3.1.2a^{}\n16596aff5f840076c480e6d4e97ffafc1cdb8f0a\trefs/tags/mdadm-3.1.3\n850a31783a70ca0e253ce2db9ae4e1957370a1a2\trefs/tags/mdadm-3.1.3^{}\nf046ae8d3a052f83a0e4041ed8ffce5e3b7837bb\trefs/tags/mdadm-3.1.4\n972ee7253a4f55a0f3e0e5ab89e02ed333481234\trefs/tags/mdadm-3.1.4^{}\n738f60dfd29bb4815913ca0f6fc44ac23540d519\trefs/tags/mdadm-3.1.5\n945f0fcd0179210ae5b72006c3621a73cc6e9205\trefs/tags/mdadm-3.1.5^{}\n896150a7cf5a11f6dfd6f039da263880d6706830\trefs/tags/mdadm-3.2\na201e6803f622d6f780edcabaaa6a3986485000b\trefs/tags/mdadm-3.2^{}\n9d1c6074da9e01b960179c8114b97cddf17af065\trefs/tags/mdadm-3.2.1\n7b0bbd0f7181cdc45c034459decc5a14549c15ec\trefs/tags/mdadm-3.2.1^{}\ne8ee04146a3b9191b70f4458f08ab27a6caad6fa\trefs/tags/mdadm-3.2.2\nef799cdd6968db25b3a3ea5d7d4e920391ec640a\trefs/tags/mdadm-3.2.2^{}\ned0952da50a568211228e28091ec0e496fe88a52\trefs/tags/mdadm-3.2.3\n1fbc5b7a5ea9709cdfff7fe7b63b43dfd4def124\trefs/tags/mdadm-3.2.3^{}\n87a2da1ea9d2890be6577bf370038e9f262f9cbd\trefs/tags/mdadm-3.2.4\nf648834d137df59c4902fa2942be2dbad664a810\trefs/tags/mdadm-3.2.4^{}\ncadbead894ae41a9732f19052d8ccf3dea16bc46\trefs/tags/mdadm-3.2.5\n3b2aad6e8b7fdcaeb3d9471af8de6ff3339291f9\trefs/tags/mdadm-3.2.5^{}\n859bdb85792bc8a740aedc93b5c129b47bc14b19\trefs/tags/mdadm-3.2.6\nc8f20a8a98c79c068f71bea77fa2bf3b57025a3a\trefs/tags/mdadm-3.2.6^{}\nd401257e61241bff7fdc544fb1a18f7eba61d680\trefs/tags/mdadm-3.3\n6f02172d2e9cbef03da07a16c9fffe46062d09e6\trefs/tags/mdadm-3.3^{}\n73ad841a94bdb733cb8c4434a2c4b3e7650535d2\trefs/tags/mdadm-3.3-rc1\n688eb823bc07b080d045c415836ceb6fff02cce0\trefs/tags/mdadm-3.3-rc1^{}\n6d94dbc21d745e62d9ebfed647a83b0d2c430ee7\trefs/tags/mdadm-3.3-rc2\n4b1679dd39c08df09b6c8aaa25e61311ab804707\trefs/tags/mdadm-3.3-rc2^{}\n0fa3d464f5401630b4343f96355dd8ffbc42c466\trefs/tags/mdadm-3.3.1\n9275a5ec5962cad9798fbae13ad645766af03e90\trefs/tags/mdadm-3.3.1^{}\ne703547329b356d534022adc0b80c4b5727ec403\trefs/tags/mdadm-3.3.2\nfed12d436b9803ad97d1f11cc8f312ab08c3a659\trefs/tags/mdadm-3.3.2^{}\n078a67f52e47f0be2940f483dac3519b8051b692\trefs/tags/mdadm-3.3.3\n3cab8baec57413e06191d8d719d7f3003c96d3f0\trefs/tags/mdadm-3.3.3^{}\nbb5c935d108b51ab4b142196c1f7f918bab6f8d8\trefs/tags/mdadm-3.3.4\n69818a5c75ba5982e9d866f94239a2f5975f988e\trefs/tags/mdadm-3.3.4^{}\nc3877ef04c7b0b6e8060528653989396d325366c\trefs/tags/mdadm-3.4\nc61b1c0bb5ee7a09bb25250e6c12bcd4d4cafb0c\trefs/tags/mdadm-3.4^{}\n4bc556c8230fce1ba0b34dca6e0c7b9cf0a0a78e\trefs/tags/mdadm-4.0\n25cfca3134b05e3af03825a1c40d06842f773ce6\trefs/tags/mdadm-4.0^{}\n201aba448fff84951e7a3021b2a52f32734f159e\trefs/tags/mdadm-4.1\n20e8fe52e7190b3ffda127566852eac2eb7fa1f7\trefs/tags/mdadm-4.1^{}\n52826846282e9e224e05dde6d2e4cb38d1fefec7\trefs/tags/mdctl-0.5\ncd29a5c835c11cbcedc10487677eac6a946ad61b\trefs/tags/mdctl-0.6\n64c4757e27fe7d688685e9a86ff87a3331a88979\trefs/tags/mdctl-v0.2\n682c705194a869b882cd710d5f996142912db390\trefs/tags/mdctl-v0.3\n82b27616de634964db1a71bd5d9813db71e391a1\trefs/tags/mdctl-v0.4\n5e52ae9ed043588e28a253fb0e794c8d1413c463\trefs/tags/mdctl-v0.4.1\n0db17fcbde740232955a7d5fd57896d8894c9eb5\trefs/tags/mdctl-v0.4.2\n" diff --git a/upstream-info/mongodb.yaml b/upstream-info/mongodb.yaml index 856616a019f53e4a8ee991367d0fffbf346575d2..5c88397e165f2654e5ac9d16f1de01d59f78a8a0 100644 --- a/upstream-info/mongodb.yaml +++ b/upstream-info/mongodb.yaml @@ -1,4 +1,311 @@ +--- version_control: github -src_repo: mongodb/mongo -tag_prefix: ^v -seperator: . +src_repo: mongodb/mongo +tag_prefix: "^r" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:39:02.566713170 +00:00 + raw_data: | + [ + { + "name": "show", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/show", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/show", + "commit": { + "sha": "a05603efcb16934a39a4dabaacdc4dd15fb3364c", + "url": "https://api.github.com/repos/mongodb/mongo/commits/a05603efcb16934a39a4dabaacdc4dd15fb3364c" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9zaG93" + }, + { + "name": "release-1.0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/release-1.0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/release-1.0", + "commit": { + "sha": "39935279cf4a63490604d834ecba8b076fabf030", + "url": "https://api.github.com/repos/mongodb/mongo/commits/39935279cf4a63490604d834ecba8b076fabf030" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yZWxlYXNlLTEuMA==" + }, + { + "name": "r4.5.0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.5.0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.5.0", + "commit": { + "sha": "08b67682e9da6cc625f837962805f613e4799685", + "url": "https://api.github.com/repos/mongodb/mongo/commits/08b67682e9da6cc625f837962805f613e4799685" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC41LjA=" + }, + { + "name": "r4.4.0-rc6", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc6", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc6", + "commit": { + "sha": "328c35e4b883540675fb4b626c53a08f74e43cf0", + "url": "https://api.github.com/repos/mongodb/mongo/commits/328c35e4b883540675fb4b626c53a08f74e43cf0" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmM2" + }, + { + "name": "r4.4.0-rc5", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc5", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc5", + "commit": { + "sha": "bbdf0a11d1c61be0760a829e82799129beac7be0", + "url": "https://api.github.com/repos/mongodb/mongo/commits/bbdf0a11d1c61be0760a829e82799129beac7be0" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmM1" + }, + { + "name": "r4.4.0-rc4", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc4", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc4", + "commit": { + "sha": "d2274bb6e1f8b21d73121a2fcb20b6628f652bbe", + "url": "https://api.github.com/repos/mongodb/mongo/commits/d2274bb6e1f8b21d73121a2fcb20b6628f652bbe" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmM0" + }, + { + "name": "r4.4.0-rc3", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc3", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc3", + "commit": { + "sha": "201b8eb58920634b4519a8d3ea9b4c8c022b0875", + "url": "https://api.github.com/repos/mongodb/mongo/commits/201b8eb58920634b4519a8d3ea9b4c8c022b0875" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmMz" + }, + { + "name": "r4.4.0-rc2", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc2", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc2", + "commit": { + "sha": "c8279c67d309858027cdb4d079ef9fd7122b1690", + "url": "https://api.github.com/repos/mongodb/mongo/commits/c8279c67d309858027cdb4d079ef9fd7122b1690" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmMy" + }, + { + "name": "r4.4.0-rc1", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc1", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc1", + "commit": { + "sha": "02869c7db07512f9492d00fcb7544e623fd21c84", + "url": "https://api.github.com/repos/mongodb/mongo/commits/02869c7db07512f9492d00fcb7544e623fd21c84" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmMx" + }, + { + "name": "r4.4.0-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.4.0-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.4.0-rc0", + "commit": { + "sha": "86339cd9b6d38ac3687b1fd6123b9e531c700f50", + "url": "https://api.github.com/repos/mongodb/mongo/commits/86339cd9b6d38ac3687b1fd6123b9e531c700f50" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC40LjAtcmMw" + }, + { + "name": "r4.3.6", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.6", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.6", + "commit": { + "sha": "f28ff6e7b41bdf20f1038b20fbd037db0e36fa63", + "url": "https://api.github.com/repos/mongodb/mongo/commits/f28ff6e7b41bdf20f1038b20fbd037db0e36fa63" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjY=" + }, + { + "name": "r4.3.5", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.5", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.5", + "commit": { + "sha": "4a8ace6c37683b8bc422ecb16d2c67d468c5eb9f", + "url": "https://api.github.com/repos/mongodb/mongo/commits/4a8ace6c37683b8bc422ecb16d2c67d468c5eb9f" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjU=" + }, + { + "name": "r4.3.4", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.4", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.4", + "commit": { + "sha": "56655b06ac46825c5937ccca5947dc84ccbca69c", + "url": "https://api.github.com/repos/mongodb/mongo/commits/56655b06ac46825c5937ccca5947dc84ccbca69c" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjQ=" + }, + { + "name": "r4.3.3", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.3", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.3", + "commit": { + "sha": "eca08e963444d77209f093a6137f5d70f7519e21", + "url": "https://api.github.com/repos/mongodb/mongo/commits/eca08e963444d77209f093a6137f5d70f7519e21" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjM=" + }, + { + "name": "r4.3.2", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.2", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.2", + "commit": { + "sha": "d86e8a5bf40f1c6edbab37bef38cd0f1d5dc062d", + "url": "https://api.github.com/repos/mongodb/mongo/commits/d86e8a5bf40f1c6edbab37bef38cd0f1d5dc062d" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjI=" + }, + { + "name": "r4.3.1", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.1", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.1", + "commit": { + "sha": "2d25d99fd8d1d372b50ee121a2052f8113c99b50", + "url": "https://api.github.com/repos/mongodb/mongo/commits/2d25d99fd8d1d372b50ee121a2052f8113c99b50" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjE=" + }, + { + "name": "r4.3.0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.3.0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.3.0", + "commit": { + "sha": "89e7419a897b2270931c9c029abf6de555d83e0f", + "url": "https://api.github.com/repos/mongodb/mongo/commits/89e7419a897b2270931c9c029abf6de555d83e0f" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4zLjA=" + }, + { + "name": "r4.2.7-rc1", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.7-rc1", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.7-rc1", + "commit": { + "sha": "51d9fe12b5d19720e72dcd7db0f2f17dd9a19212", + "url": "https://api.github.com/repos/mongodb/mongo/commits/51d9fe12b5d19720e72dcd7db0f2f17dd9a19212" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjctcmMx" + }, + { + "name": "r4.2.7-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.7-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.7-rc0", + "commit": { + "sha": "8b7d17c7d97146a3996505130ae5288269903726", + "url": "https://api.github.com/repos/mongodb/mongo/commits/8b7d17c7d97146a3996505130ae5288269903726" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjctcmMw" + }, + { + "name": "r4.2.6", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.6", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.6", + "commit": { + "sha": "20364840b8f1af16917e4c23c1b5f5efd8b352f8", + "url": "https://api.github.com/repos/mongodb/mongo/commits/20364840b8f1af16917e4c23c1b5f5efd8b352f8" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjY=" + }, + { + "name": "r4.2.6-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.6-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.6-rc0", + "commit": { + "sha": "20364840b8f1af16917e4c23c1b5f5efd8b352f8", + "url": "https://api.github.com/repos/mongodb/mongo/commits/20364840b8f1af16917e4c23c1b5f5efd8b352f8" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjYtcmMw" + }, + { + "name": "r4.2.5", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.5", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.5", + "commit": { + "sha": "2261279b51ea13df08ae708ff278f0679c59dc32", + "url": "https://api.github.com/repos/mongodb/mongo/commits/2261279b51ea13df08ae708ff278f0679c59dc32" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjU=" + }, + { + "name": "r4.2.5-rc1", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.5-rc1", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.5-rc1", + "commit": { + "sha": "2261279b51ea13df08ae708ff278f0679c59dc32", + "url": "https://api.github.com/repos/mongodb/mongo/commits/2261279b51ea13df08ae708ff278f0679c59dc32" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjUtcmMx" + }, + { + "name": "r4.2.5-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.5-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.5-rc0", + "commit": { + "sha": "06ec8a65d702e013c8dd70795d29342b1198cd15", + "url": "https://api.github.com/repos/mongodb/mongo/commits/06ec8a65d702e013c8dd70795d29342b1198cd15" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjUtcmMw" + }, + { + "name": "r4.2.4", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.4", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.4", + "commit": { + "sha": "b444815b69ab088a808162bdb4676af2ce00ff2c", + "url": "https://api.github.com/repos/mongodb/mongo/commits/b444815b69ab088a808162bdb4676af2ce00ff2c" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjQ=" + }, + { + "name": "r4.2.4-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.4-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.4-rc0", + "commit": { + "sha": "b444815b69ab088a808162bdb4676af2ce00ff2c", + "url": "https://api.github.com/repos/mongodb/mongo/commits/b444815b69ab088a808162bdb4676af2ce00ff2c" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjQtcmMw" + }, + { + "name": "r4.2.3", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.3", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.3", + "commit": { + "sha": "6874650b362138df74be53d366bbefc321ea32d4", + "url": "https://api.github.com/repos/mongodb/mongo/commits/6874650b362138df74be53d366bbefc321ea32d4" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjM=" + }, + { + "name": "r4.2.3-rc1", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.3-rc1", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.3-rc1", + "commit": { + "sha": "6874650b362138df74be53d366bbefc321ea32d4", + "url": "https://api.github.com/repos/mongodb/mongo/commits/6874650b362138df74be53d366bbefc321ea32d4" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjMtcmMx" + }, + { + "name": "r4.2.3-rc0", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.3-rc0", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.3-rc0", + "commit": { + "sha": "f304776caf5e2113347c3ea52a05eee396b9ce66", + "url": "https://api.github.com/repos/mongodb/mongo/commits/f304776caf5e2113347c3ea52a05eee396b9ce66" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjMtcmMw" + }, + { + "name": "r4.2.2", + "zipball_url": "https://api.github.com/repos/mongodb/mongo/zipball/r4.2.2", + "tarball_url": "https://api.github.com/repos/mongodb/mongo/tarball/r4.2.2", + "commit": { + "sha": "a0bbbff6ada159e19298d37946ac8dc4b497eadf", + "url": "https://api.github.com/repos/mongodb/mongo/commits/a0bbbff6ada159e19298d37946ac8dc4b497eadf" + }, + "node_id": "MDM6UmVmMTA4MTEwOnJlZnMvdGFncy9yNC4yLjI=" + } + ] +query_type: api.github.tags diff --git a/upstream-info/nginx.yaml b/upstream-info/nginx.yaml index d8fd43833fc3d590cf874c58d590407135169037..54f48db75499fe61116179316609e40482372e8a 100644 --- a/upstream-info/nginx.yaml +++ b/upstream-info/nginx.yaml @@ -4,5 +4,5 @@ src_repo: https://hg.nginx.org/nginx tag_prefix: release- seperator: "." last_query: - time_stamp: 2020-04-26 07:13:10.619305060 +00:00 - raw_data: "tip\t716eddd74bc2831537f5b3f7ecd16ad3e516d043\nrelease-1.18.0\tf8052414dbe9453578a9f6e753eb507be709c35a\nrelease-1.17.10\tc44970de01474f6f3e01b0adea85ec1d03e3a5f2\nrelease-1.17.9\t5e8d52bca714d4b85284ddb649d1ba4a3ca978a8\nrelease-1.17.8\tfdacd273711ddf20f778c1fb91529ab53979a454\nrelease-1.17.7\te56295fe0ea76bf53b06bffa77a2d3a9a335cb8c\nrelease-1.17.6\tde68d0d94320cbf033599c6f3ca37e5335c67fd7\nrelease-1.17.5\t9af0dddbddb2c368bfedd2801bc100ffad01e19b\nrelease-1.17.4\tce2ced3856909f36f8130c99eaa4dbdbae636ddc\nrelease-1.16.1\t123647025f4a0d3e8c0f869c1ab1f61b924d59e3\nrelease-1.17.3\ted4303aa1b31a9aad5440640c0840d9d0af45fed\nrelease-1.17.2\t2fc9f853a6b7cd29dc84e0af2ed3cf78e0da6ca8\nrelease-1.17.1\t7816bd7dabf6ee86c53c073b90a7143161546e06\nrelease-1.17.0\t054c1c46395caff79bb4caf16f40b331f71bb6dd\nrelease-1.16.0\tabd40ce603fa49b2b8b1cca622c96093b1e14275\nrelease-1.15.12\t0130ca3d58437b3c7c707cdddd813d530c68da9a\nrelease-1.15.11\t5155d0296a5ef9841f035920527ffdb771076b44\nrelease-1.15.10\t75f5c7f628411c79c7044102049f7ab4f7a246e7\nrelease-1.15.9\td2fd76709909767fc727a5b4affcf1dc9ca488a7\nrelease-1.15.8\tee551e3f6dba336c0d875e266d7d55385f379b42\nrelease-1.14.2\t72e39ad2427d02fa29e892715298013f043f2b80\nrelease-1.15.7\t051a039ce1c7e09144de4a4846669ec7116cecea\nrelease-1.14.1\tfe8e8322d9c13597f06b80f2015124446f0a900c\nrelease-1.15.6\t2351853ce6867b6166823bdf94333c0a76633c0a\nrelease-1.15.5\tf062e43d74fc2578bb100a9e82a953efa1eb9e4e\nrelease-1.15.4\t49d49835653857daa418e68d6cbfed4958c78fca\nrelease-1.15.3\t28b3e17ca7eba1e6a0891afde0e4bc5bcc99c861\nrelease-1.15.2\tb234199c7ed8a156a6bb98f7ff58302c857c954f\nrelease-1.15.1\t4189160cb946bb38d0bc0a452b5eb4cdd8979fb5\nrelease-1.15.0\t990b3e885636d763b97ed02d0d2cfc161a4e0c09\nrelease-1.14.0\t588054867fef65d3dc38df1ffefcade02a88f140\nrelease-1.13.12\t051e5fa03b92b8a564f6b12debd483d267391e82\nrelease-1.13.11\t64179f242cb55fc206bca59de9bfdc4cf5ebcec7\nrelease-1.13.10\t31c929e16910c38492581ef474e72fa67c28f124\nrelease-1.13.9\tfb1212c7eca4c5328fe17d6cd95b010c67336aac\nrelease-1.13.8\t20ca4bcff108d3e66977f4d97508637093492287\nrelease-1.13.7\t47cca243d0ed39bf5dcb9859184affc958b79b6f\nrelease-1.12.2\tc0c5f8b806fe2b8a6a059447c712376293d6ccde\nrelease-1.13.6\tf87da7d9ca02b8ced4caa6c5eb9013ccd47b0117\nrelease-1.13.5\t0d45b4cf7c2e4e626a5a16e1fe604402ace1cea5\nrelease-1.13.4\tbbc642c813c829963ce8197c0ca237ab7601f3d4\nrelease-1.12.1\t08b443b6b59dbe5d02354047c649a00c40e7b748\nrelease-1.13.3\t8457ce87640f9bfe6221c4ac4466ced20e03bebe\nrelease-1.13.2\t5be2b25bdc65775a85f18f68a4be4f58c7384415\nrelease-1.13.1\t539f7893ecb96bee60965528c8958d7eb2f1ce6b\nrelease-1.13.0\t3671096a45bce570a2afa20b9faf42c7fb0f7e66\nrelease-1.12.0\te265d962841f90f1fa148c8f4eed4a4d3a9b0208\nrelease-1.11.13\t3d0e8655f897959e48cc74e87670bb5492a58871\nrelease-1.11.12\t7f394e433f0003222aa6531931ecc0b24740d5e4\nrelease-1.11.11\td8b321a876d6254e9e98795e3b194ef053290354\nrelease-1.11.10\t1ad0999a7ded3d4fb01c7acf8ff57c80b643da7e\nrelease-1.10.3\t369b74459cf24dd35c5e1111d17c2cd4a6ecfd4b\nrelease-1.11.9\t20a45c768e5ed26b740679d0e22045c98727c3cc\nrelease-1.11.8\t4591da489a30f790def29bc5987f43409b503cae\nrelease-1.11.7\t5c8f60faf33ca8926473d2da27b4c3c417bd4630\nrelease-1.11.6\t5e371426b3bcba4312ce08606194b89b758927d1\nrelease-1.10.2\tb98f9fdee487b00556bea6a24f8f976d7fd60795\nrelease-1.11.5\t5253015a339aaca0a3111473d3e931b6d4752393\nrelease-1.11.4\t953512ca02c6f63b4fcbbc3e10d0d9835896bf99\nrelease-1.11.3\tb83a067949a3384a49fd3d943eb8d0997b31f87b\nrelease-1.11.2\t4d3b3a13a8cf5fc3351a7f167d1c13325e00f21c\nrelease-1.10.1\t7fcde9122088094471a97030161e347aa940f8ed\nrelease-1.11.1\tcb783d9cc19761e14e1285d91c38f4b84d0b8756\nrelease-1.11.0\t271ee30c6791847980cd139d31807541f5e569bf\nrelease-1.10.0\td4b7edd7fa81cbf554ee3dcfe9de53ad6d1dbc69\nrelease-1.9.15\t13070ecfda67397985f0e986eb9c42ecb46d05b5\nrelease-1.9.14\t4106db71cbcb9c8274700199ac17e520902c6c0f\nrelease-1.9.13\t5936b7ed929237f1a73b467f662611cdc0309e51\nrelease-1.9.12\tead3907d74f90a14d1646f1b2b56ba01d3d11702\nrelease-1.9.11\tfe66cff450a95beed36a2515210eb2d7ef62c9d3\nrelease-1.8.1\t5959efb40b07ea30693c92ddbdec82a78577e671\nrelease-1.9.10\tbe00ca08e41a69e585b6aff70a725ed6c9e1a876\nrelease-1.9.9\tef107f3ddc237a3007e2769ec04adde0dcf627fa\nrelease-1.9.8\t1bdc497c81607d854e3edf8b9a3be324c3d136b6\nrelease-1.9.7\t54117529e40b988590ea2d38aae909b0b191663f\nrelease-1.9.6\tb78018cfaa2f0ec20494fccb16252daa87c48a31\nrelease-1.9.5\t942475e10cb47654205ede7ccbe7d568698e665b\nrelease-1.9.4\t5cb7e2eed2031e32d2e5422caf9402758c38a6ad\nrelease-1.9.3\te27a215601292872f545a733859e06d01af1017d\nrelease-1.9.2\t3a32d6e7404a79a0973bcd8d0b83181c5bf66074\nrelease-1.9.1\t884a967c369f73ab16ea859670d690fb094d3850\nrelease-1.9.0\t53d850fe292f157d2fb999c52788ec1dc53c91ed\nrelease-1.8.0\t01d52c2b460da263fd1557ab5f8d0af5e404b47a\nrelease-1.6.3\t76d66e92c66c7d0df6e81288dafd625421126300\nrelease-1.7.12\t3ef00a71f56420a9c3e9cec311c9a2109a015d67\nrelease-1.7.11\t2b3b737b5456c05cd63d3d834f4fb4d3776953d0\nrelease-1.7.10\t860cfbcc4606ee36d898a9cd0c5ae8858db984d6\nrelease-1.7.9\t34b201c1abd1e2d4faeae4650a21574771a03c0e\nrelease-1.7.8\td5ea659b8bab2d6402a2266efa691f705e84001e\nrelease-1.7.7\t6d2fbc30f8a7f70136cf08f32d5ff3179d524873\nrelease-1.7.6\ta8d111bb68847f61d682a3c8792fecb2e52efa2c\nrelease-1.6.2\t7dab18c28f451ce5dd58f11b9f5c8c433953ea09\nrelease-1.7.5\tfe129aa02db9001d220f1db7c3c056f79482c111\nrelease-1.6.1\t0cf84a39c1db6d6477a1a5b68aee345289d4d87a\nrelease-1.7.4\tcbb146b120296852e781079d5138b04495bab6df\nrelease-1.7.3\tfe7cd01828d5ca7491059f0690bb4453645eb28b\nrelease-1.7.2\t0bd223a546192fdf2e862f33938f4ec2a3b5b283\nrelease-1.7.1\t0351a6d89c3dbcc7a76295024ba6b70e27b9a497\nrelease-1.7.0\td161d68df8be32e5cbf72b07db1a707714827803\nrelease-1.6.0\tdaa5384fd526a9c18fff4f5135646743628f6bc7\nrelease-1.5.13\tfd722b890eabc600394349730a093f50dac31639\nrelease-1.4.7\t636ce03634e7489b39a7108f2fed24649df19737\nrelease-1.5.12\t97b47d95e4449cbde976657cf8cbbc118351ffe0\nrelease-1.4.6\te201159f5d4ebe7ddbaf1e9247c843022ec202f3\nrelease-1.5.11\tf995a10d4c7e9a817157a6ce7b753297ad32897e\nrelease-1.4.5\t844b2af1d65cbb143e8ecaa1c3ad9968f60d1882\nrelease-1.5.10\tb798fc020e3a84ef68e6c9f47865a319c826d33c\nrelease-1.5.9\t5a1759f33b7fa6270e1617c08d7e655b7b127f26\nrelease-1.5.8\teaa76f24975948b0ce8be01838d949122d44ed67\nrelease-1.4.4\t7e9543faf5f0a443ba605d9d483cf4721fae30a5\nrelease-1.5.7\t9ba2542d75bf62a3972278c63561fc2ef5ec573a\nrelease-1.4.3\t69ffaca7795531e19f3827940cc28dca0b50d0b8\nrelease-1.5.6\t70c5cd3a61cb476c2afb3a61826e59c7cda0b7a7\nrelease-1.5.5\t60e0409b9ec7ee194c6d8102f0656598cc4a6cfe\nrelease-1.5.4\t376a5e7694004048a9d073e4feb81bb54ee3ba91\nrelease-1.5.3\t644a079526295aca11c52c46cb81e3754e6ad4ad\nrelease-1.4.2\t50f065641b4c52ced41fae1ce216c73aaf112306\nrelease-1.5.2\t5bdca4812974011731e5719a6c398b54f14a6d61\nrelease-1.5.1\t99eed1a88fc33f32d66e2ec913874dfef3e12fcc\nrelease-1.2.9\t0e80c5bf5e1bb42a6491fea5340a16e51cd37bb8\nrelease-1.4.1\t0702de638a4c51123d7b97801d393e8e25eb48de\nrelease-1.5.0\t48a84bc3ff074a65a63e353b9796ff2b14239699\nrelease-1.4.0\t7809529022b83157067e7d1e2fb65d57db5f4d99\nrelease-1.3.16\t23159600bdea695db8f9d2890aaf73424303e49c\nrelease-1.2.8\td50f390fa97eb9871622666b40703d497d65925e\nrelease-1.3.15\tcd84e467c72967b9f5fb4d96bfc708c93edeb634\nrelease-1.3.14\te04428778567dd4de329bbbe97ad653e22801612\nrelease-1.3.13\tdc195ffe0965b2b9072f8e213fe74ecce38f6773\nrelease-1.2.7\ta58e268f6c081f671667c0c929f0c5cec3e80958\nrelease-1.3.12\t560dc55e90c13860a79d8f3e0d67a81c7b0257bb\nrelease-1.3.11\t36409ac209872ce53019f084e4e07467c5d9d25e\nrelease-1.3.10\t2c053b2572694eb9cd4aed26a498b6cb1f51bbcc\nrelease-1.2.6\teb1043eaedacddb1bbada27822527049b99bde6d\nrelease-1.3.9\t1b1a9337a7399ad3cdc5e3a2f9fbaaec990271d5\nrelease-1.2.5\td763d5c9a13395fb78100f7c2d63c2323541f210\nrelease-1.3.8\tab7ce0eb4cf78a656750ab1d8e55ef61f7e535ec\nrelease-1.3.7\tdafd375f1c882b15fa4a9b7aa7c801c55082395e\nrelease-1.2.4\te8aa72e49ef3e5cf6aaebff6ab8d56207b8ab8b4\nrelease-1.3.6\t3aeb14f88daeb973e4708310daa3dc68ac1200f7\nrelease-1.3.5\t90f3b4ea7992a7bf9385851a3e77173363091eea\nrelease-1.2.3\te3786c39d06097a0e5d2d9791b5f3dc229313361\nrelease-1.3.4\ta43447fb82aa03eabcd85352758ae14606a84d35\nrelease-1.3.3\t2c5e1e88c8cf710caf551c5c67eba00443601efe\nrelease-1.2.2\tf9d796a201daa411de38c7a0e7282d743c163780\nrelease-1.3.2\t50107e2d96bbfc2c59e46f889b1a5f68dd10cf19\nrelease-1.3.1\t61b6a3438afef630774e568eefd89c53e3b93287\nrelease-1.3.0\t9ee68d629722f583d43d92271f2eb84281afc630\nrelease-1.2.0\tf582d662cc408eb7a132c21f4b298b71d0701abb\nrelease-1.0.15\tb165e34d45a30edaf309d28cbc8e4bc75610b8fd\nrelease-1.1.19\t0f0b425659e0b26f5bc8ea14a42dbf34de2eaba6\nrelease-1.1.18\t2b22743c3079b41233ded0fc35af8aa89bcfab91\nrelease-1.0.14\tea69e97a812bda9ff212bdd86cf8f0fdd353d6d4\nrelease-1.1.17\tf7e1113a9a1648cad122543e7080e895cf2d88f4\nrelease-1.0.13\tfa326e57ef4a8aac838650d12e2b7389de3517de\nrelease-1.1.16\t7b7c49639a7bceecabf4963c60b26b65a77d6ce0\nrelease-1.1.15\t2397e9c72f1bc5eac67006e12ad3e33e0ea9ba74\nrelease-1.0.12\tbd1a95dd6dd336e1f21eb5b6ac593b07907dd885\nrelease-1.1.14\t6845f4ac909233f5a08ed8a51de137713a888328\nrelease-1.1.13\t6a6836e65827fd3cb10a406e7bbbe36e0dad8736\nrelease-1.1.12\tade8fc136430cfc04a8d0885c757968b0987d56c\nrelease-1.0.11\t2203f8401ffe990fc6b1547bfe06e1679442bf11\nrelease-1.1.11\t9590f0cf5aab8e6e0b0c8ae59c70187b2b97d886\nrelease-1.1.10\tc7e65deabf0db5109e8d8f6cf64cd3fb7633a3d1\nrelease-1.1.9\t482d7d907f1ab92b78084d8b8631ed0eb7dd08f7\nrelease-1.0.10\t7671138872eb3f993744f987fff3980be4ec7768\nrelease-1.1.8\t71600ce67510af093d4bc0117a78b3b4678c6b3a\nrelease-1.0.9\tb5395c8ea2a392e164651853730f04775c077429\nrelease-1.1.7\t378c297bb7459fb99aa9c77decac0d35391a3932\nrelease-1.1.6\tf9ddecfe331462f870a95e4c1c3ba1bb8f19f2d3\nrelease-1.1.5\te47531dfabbf8e5f8b8aff9ff353642ea4aa7abb\nrelease-1.0.8\t83ec093b74f529aad286873c48f7fdad77f8ec24\nrelease-1.0.7\tb53b4ecfb089c930d0c7747da5958da6dca0ad53\nrelease-1.1.4\t911060bc8221d4113a693ae97952a1fa88663ca8\nrelease-1.1.3\tbac8ba08a6570bac2ecd3bf2ad64b0ac3030c903\nrelease-1.1.2\tda1289482a143dfa016769649bdff636c26f53c8\nrelease-1.0.6\t23166b41f9b3c4f8f93269c4821dda8bc5edbe0c\nrelease-1.1.1\t44bf95f670656fae01ccb266b3863843ea13d324\nrelease-1.1.0\tf31aea5b06654c9163be5acd6d9b7aaf0fdf6b33\nrelease-0.7.69\td62ef1c3477ec30f440c55ab07e422819d9f915b\nrelease-0.8.55\tcc221c55c43bb8a6174771a7b76fd9985318f7c7\nrelease-1.0.5\tfa2c37b1122c2c983b6e91d1188e387d72dde4d6\nrelease-1.0.4\tc9c2805ac9245cc48ce6efeba2b4a444f859d6aa\nrelease-1.0.3\t80d586db316512b5a9d39f00fe185f7f91523f52\nrelease-1.0.2\tc50df367648e53d55e80b60a447c9c66caa0d326\nrelease-1.0.1\tf8f89eb4e0c27e857ec517d893d4f9a454985084\nrelease-1.0.0\te0fd9f36005923b8f98d1ba1ea583cb7625f318f\nrelease-0.9.7\t657d05d63915ce2f6c4d763091059f5f85bb10e5\nrelease-0.9.6\t27e2f3b7a3db1819c5d0ba28327ceaba84a13c4e\nrelease-0.9.5\t70542931bc5436d1bbd38f152245d93ac063968d\nrelease-0.9.4\tfe671505a8ea86a76f0358b3ec4de84a9037ac2b\nrelease-0.7.68\t0275cdd45fd2bc50ffac6e9ef3faeaec9de8ed36\nrelease-0.8.54\tddb0727e51db3a37bf61c6476c3cb999cb58bfb3\nrelease-0.9.3\tb7b306325972661117694879d3e22faf4cf0df32\nrelease-0.9.2\t16cff36b0e49fc9fdeee13b2e92690286bcc1b3d\nrelease-0.9.1\t71281dd73b17a0ead5535d531afaee098da723cb\nrelease-0.9.0\t62b599022a2fa625b526c2ad1711dc6db7d66786\nrelease-0.8.53\t010468d890dbac33a4cae6dfb2017db70721b2fe\nrelease-0.8.52\t67dd7533b99c8945b5b8b5b393504d4e003a1c50\nrelease-0.8.51\t21dacebd12f65cb57ceb8d2688db5b07fad6e06d\nrelease-0.8.50\te7bdb8edc1bab2bc352a9fb6ce765c46575c35bf\nrelease-0.8.49\ta2b7e94b9807e981866bf07e37b715847d1b7120\nrelease-0.8.48\t0b65c962e0cd6783a854877b52c903cb058eec8c\nrelease-0.8.47\t4434dc967087315efcd0658206a67fe6c85528f3\nrelease-0.8.46\tf034d9173df0a433e0bbcf5974f12ea9eb9076c0\nrelease-0.8.45\te16dd52a0d226c23dcae9a11252564a04753bbed\nrelease-0.8.44\t00ec8cd76fb89af27363b76c40d9f88bf4679c3b\nrelease-0.8.43\t34df9fb22fed415cdad52def04095dc6d4b48222\nrelease-0.8.42\tb5a3065749093282ddd19845e0b77ffc2e54333e\nrelease-0.7.67\t389610e6fc538451a8e55dec6d9152b490e747d4\nrelease-0.8.41\t718b4cb3faf7efe4e0648140f064bf7a92c3f7e8\nrelease-0.7.66\ta4b5121bfb402c1b80f809e8e8405735d66f8d61\nrelease-0.8.40\t4846ec9f83cb5bc4c8519d5641b35fb9b190430c\nrelease-0.8.39\taf10bf9d4c6532850aa1f70cdf7504bd109b284c\nrelease-0.8.38\tfa5f1ca353c0c5aa5415f51d72fd7bbcc02d1ed7\nrelease-0.8.37\t265b7fd2ae21c75bbffa5115b83a0123d6c4acb4\nrelease-0.8.36\taed68639d4eb6afe944b7fb50499c16f7f3f503c\nrelease-0.8.35\t7cb3cb8d78ef7ae63561733ed91fd07933896bc8\nrelease-0.8.34\t21cb50799a20575a42f9733342d37a426f79db4d\nrelease-0.7.65\t92247d9294ed5b63b820ce3dbb193e58e53661bc\nrelease-0.8.33\ta4456378d234c07038456cf32bfe3c651f1d5e82\nrelease-0.8.32\t59dee6f7f3afeb1fad6ed5983756e48c81ad2a5c\nrelease-0.8.31\t4f84115914490e572bcbee5069157b7334df2744\nrelease-0.8.30\t9852c5965a3292a1b6127dbb4da9fce4912d898a\nrelease-0.8.29\t78d3582a30afe63fc0adb17c3ac8891a64e47146\nrelease-0.8.28\te68b1c35cad86105ff1c5b240f53442f4c36356e\nrelease-0.8.27\tea50b0d79ef1d7d901cd0e4dcd7373447849d719\nrelease-0.8.26\t06ce92293f6a65651b08c466f90f55bd69984b98\nrelease-0.7.64\t31aa7a54eae7840b1d9e260cdc4318b61ea04275\nrelease-0.8.25\taa550cb4159ae0d566006e091fb1c7a888771050\nrelease-0.8.24\t89b9173476de14688b1418fbf7df10f91d1719ef\nrelease-0.8.23\t3c6ac062b379b126212cbb27e98a3c8275ef381a\nrelease-0.8.22\td56c8b5df517c2bf6e7bc2827b8bf3e08cda90e1\nrelease-0.7.63\tae555c9ac9a4c9b8c285b541c7c33d57b0ff8dba\nrelease-0.8.21\t27951ca037e63dae45ff5b6279124c224ae1255a\nrelease-0.8.20\tea3d168fb99c32a5c3545717ecc61e85a375e5dd\nrelease-0.8.19\t4bc73c644329a510da4e96b7241b80ead7772f83\nrelease-0.8.18\t7aaa959da85e09e29bcac3b1cadec35b0a25b64d\nrelease-0.8.17\t06564e9a2d9ec5852132c212e85eda0bf1300307\nrelease-0.8.16\t52163a1027c3efd6b4c461b60a2ca6266c23e193\nrelease-0.5.38\t6dcc15f30295eb461569c41f3428784af7642b7c\nrelease-0.6.39\tfabd6e1028f29066a465e4a60342090ad1d7c8af\nrelease-0.7.62\t64659bcb92d40747cef2fb8d9156b3e6e639f7da\nrelease-0.8.15\td364c2c12dd9723a2dfac3f096f5e55d4cfe6838\nrelease-0.8.14\t3089486a8dc5844b5b6e9f78d536b4b26f7ffa16\nrelease-0.8.13\t81c8277cd8ed55febcb2dd9d9213076f6c0ccb09\nrelease-0.8.12\tca7a1c6c798a7eb5b294d4ac3179ec87ecf297d3\nrelease-0.8.11\td0d61c32331a6505381b5218318f7b69db167ca8\nrelease-0.8.10\t2d9faf2260df6c3e5d4aa1781493c31f27a557d0\nrelease-0.8.9\ta40f8475511d74a468ade29c1505e8986600d7a3\nrelease-0.8.8\t1cef1807bc12cb05ac52fb0e7a0f111d3760b569\nrelease-0.8.7\t7607237b4829fff1f60999f4663c50ed9d5182f7\nrelease-0.8.6\tff52ee9e6422f3759f43a442b7ba615595b3a3d4\nrelease-0.8.5\t0914802433b8678ba2cdf91280766f00f4b9b76e\nrelease-0.6.38\tdeae9eb8f8ad8b03211adf7371ac6ebe7c4a9b76\nrelease-0.7.61\te65e202792cb11983417a94f3f3cdf0f15abe65a\nrelease-0.8.4\tdb34ec0c53c4b9dec12ffdf70caf89a325ab9577\nrelease-0.8.3\tc98da980514a02ba81c421b25bf91803ffffddf3\nrelease-0.7.60\t868a381304dc040d9de358f08716e438f636df2c\nrelease-0.8.2\tb3503597c1a0f0f378afdc5e5e5b85e2c095a4be\nrelease-0.8.1\tf4acb784b53cd952559567971b97dde1e818a2b6\nrelease-0.8.0\t82d56c2425ef857cd430b8530a3f9e1127145a67\nrelease-0.7.59\t0c22cb4862c8beb4ee1b9e4627125162a29a5304\nrelease-0.6.37\tff9521c5a7787ddca25fd85719ba628c2f6b0460\nrelease-0.7.58\t87f4a49a9cc34a5b11c8784cc5ea89e97b4b2bd8\nrelease-0.7.57\tfbb1918a85e38a7becdb1a001dbaf5933f23a919\nrelease-0.7.56\ta1e44954549c35023b409f728c678be8bf898148\nrelease-0.7.55\t3ed9377e686f2521e6ec15873084381033fb490d\nrelease-0.7.54\t01c6fe6c2a55998434cd3b05dd10ca487ac3fb6c\nrelease-0.7.53\tb073eaa1dcea296a3488b83d455fab6621a73932\nrelease-0.7.52\t18e39e566781c9c187e2eb62bebd9d669d68f08c\nrelease-0.7.51\tf51f2bec766c8b6d7e1799d904f18f8ea631bd44\nrelease-0.7.50\te4350efa7cf7a0e868c2236a1137de8a33bd8ec6\nrelease-0.7.49\t452b9d09df8e3f2fb04b2a33d04d2f3a6436eb34\nrelease-0.7.48\t9816fb28eda599bfd53940e6d3b6617d1ecb6323\nrelease-0.6.36\t099c5b328fe2ec4d7af5d605b9ab9fcee1d906bb\nrelease-0.7.47\td1d0e6d7ff0ca3c0dd1be1ef1cfff2e3fd0b4e1c\nrelease-0.7.46\t9b5037e7ec7db25875c40f9d1cf20a853388b124\nrelease-0.7.45\t797e070d480a34b31ddac0d364784773f1bbbcf9\nrelease-0.7.44\t9be652e9114435fc6f1fdec84c0458d56702db91\nrelease-0.7.43\t7503d95d6eadad14c28b2db183ba09848265274b\nrelease-0.7.42\ta9575a57a5443df39611774cf3840e9088132b0e\nrelease-0.7.41\tc4a56c197eeafd71fc1caef7a9d890a330e3c23d\nrelease-0.7.40\t8a350e49d2b6751296db6d8e27277ccf63ed412a\nrelease-0.7.39\tf822655d4120629977794c32d3b969343b6c30db\nrelease-0.7.38\t11a4e2ed5b166b9c9f119171aa399a9e3aa4684a\nrelease-0.7.37\t3286f0bab8e77dbc7ebb370b1dc379592ccff123\nrelease-0.7.36\tb84548abe9b9d4f4e203f848696e52c8c82c308f\nrelease-0.7.35\tc7ee9e15717b54ead5f4a554686e74abe66c6b07\nrelease-0.7.34\t1e9a362c3dcee221ca6e34308c483ed93867aca2\nrelease-0.7.33\t83027471a25385b1c671968be761e9aa7a8591a7\nrelease-0.6.35\tda61aad8ec519f24658909dadc48f7dd1c0dc352\nrelease-0.7.32\t780b2ba1ec6daf6e3773774e26b05b9ff0d5483e\nrelease-0.7.31\t9fddd7e1a7a27f8463867f41a461aad57df461b2\nrelease-0.7.30\t87e07ccdf0a4ec53458d9d7a4ea66e1239910968\nrelease-0.7.29\t5176dfdf153fc785b18604197d58806f919829ad\nrelease-0.7.28\tfbc3e7e8b3ee756568a875f87d8a954a2f9d3bf6\nrelease-0.7.27\t9425d9c7f8ead95b00a3929a9a5e487e0e3c8499\nrelease-0.7.26\td04bfca0c7e3ae2e4422bc1d383553139d6f0a19\nrelease-0.7.25\t46b68faf271d6fdcaaf3ad2c69f6167ea9e9fa28\nrelease-0.7.24\t19c452ecd083550816873a8a31eb3ed9879085e6\nrelease-0.6.34\te47fbf6620a00b01ccdc2bd622d510b4c07ee47e\nrelease-0.7.23\t0562fb355a25266150cbe8c8d4e00f55e3654df3\nrelease-0.6.33\teb191501ece35bd82aabee90dc3b256a6cc0e45b\nrelease-0.7.22\t24763afa5efe91e54f00b2ae5b87666eb6c08c3b\nrelease-0.7.21\t5f665d0fa6a5f6e748157f2ccbc445b2db8125d0\nrelease-0.7.20\t61838d1bcbddc7bc4dd9f30d535573a6fddca8f9\nrelease-0.7.19\t9dba9779e37e5969a2d408c792084fd7acfec062\nrelease-0.7.18\tfc10f7b5cb1305fb930f8ac40b46882d0828d61e\nrelease-0.7.17\t91d7a9eb8ade90e9421d7b1e3c2e47a6bc427876\nrelease-0.7.16\teab2e87deba73ae6abd9cc740e8d4365bed96322\nrelease-0.7.15\t0cd7bb051f67eac2b179fb9f9cc988b9ba18ed76\nrelease-0.7.14\tc07d2d20d95c83d804079bbdcecbce4a0c8282f0\nrelease-0.7.13\td90ea21e24ea35379aef50c5d70564158e110a15\nrelease-0.7.12\t9ad1bd2b21d93902863807528e426862aedee737\nrelease-0.7.11\t0e7023bf6b2461309c29885935443449a41be807\nrelease-0.7.10\t511edfa732da637f5f0c9476335df7dca994706d\nrelease-0.7.9\t769f0dd7081e9011394f264aa22aa66fd79730d8\nrelease-0.7.8\t43bde71f0bbe5a33b161760d7f9f980d50386597\nrelease-0.7.7\tbbcf6d75556fdcee8bd4aba8f6c27014be9920ee\nrelease-0.5.37\t5cbd114a2b1d9d484aaac99bbe93aae613cf0a84\nrelease-0.6.32\t3bb1a1e2d19befec9cc830d2bd47bc51b27d124b\nrelease-0.7.6\tc2f0f7cf306f302254beae512bda18713922375c\nrelease-0.7.5\t9527137b4354a648a229c7169850c7c65272c00d\nrelease-0.7.4\t4dc24d50230fbadfc037a414a86390db2de69dd2\nrelease-0.7.3\t9992c4583513d2804fc2e7fec860fbc7ab043009\nrelease-0.7.2\ta07e258cef3b0a0b6e76a6ff4ba4651c5facc85a\nrelease-0.7.1\t6ab27a06f3346cf9ec8737f5dbcc82dd4031e30f\nrelease-0.7.0\t0a189588830b8629c4dfea68feb49af36b59e4a9\nrelease-0.6.31\td4288915bba73c4c3c9cf5d39d34e86879eb2b45\nrelease-0.5.36\t459fa0e9044d4d9c4be9a15a64dcee8769aa73b0\nrelease-0.6.30\t55408deb3cd171efa9b81d23d7a1dd1ccde0b839\nrelease-0.6.29\teb2bd21dc8d03f6c94016f04ffb9adaf83a2b606\nrelease-0.6.28\t58f05255d3a345d04baef5cff0ca1ae0ac7ecebb\nrelease-0.6.27\tbe531addfabe5214f409d457140c1038af10d199\nrelease-0.6.26\t07ad5b2606614c4be4ee720c46cf4af126059d31\nrelease-0.5.35\t77163816713f775793ee6ba95a36c7869d73e164\nrelease-0.6.25\t3b8607c05a8bebcfa59235c2126a70d737f0ccf5\nrelease-0.6.24\t3e2a58fb48f1e1a99ebf851e0d47a7034c52ae22\nrelease-0.6.23\t69a03d5e3b6e6660079ef1ef172db7ac08d8370e\nrelease-0.6.22\t95e6160d2b7d0af8ffd1b95a23cadadf8f0b3f6d\nrelease-0.5.34\te7800c8d37c12d7185bd916dbe7a48dd9a7641e4\nrelease-0.6.21\t143f4d65b1c875d6563ccb7f653d9157afc72194\nrelease-0.6.20\t3e0a27f9358ffc1b5249e0ea2311ce7da5c8967e\nrelease-0.6.19\t3c2a99d3a71af846855be35e62edb9a12f363f44\nrelease-0.6.18\t60707ebc037086cf004736a0d4979e2a608da033\nrelease-0.6.17\td8fcca555542619228d9fab89e1665b993f8c3ee\nrelease-0.5.33\tf7ff0e4b2e507370429ac147c64d42a0b72ffb0e\nrelease-0.6.16\t158aa4e8cc46fcf9504a61469d22daf3476b17bf\nrelease-0.6.15\t5e68764f0d6e91a983170fa806e7450a9e9b33fe\nrelease-0.6.14\t537b6ef014c4a133e0ab0b7dc817508e0647e315\nrelease-0.5.32\td82f8d4ed369376a3ccc4f64970ba9805a68234d\nrelease-0.6.13\t451b02cc770a794cd41363461b446948ae1d8bc8\nrelease-0.6.12\t5557460a7247a1602ae96efd1d0ccf781344cb58\nrelease-0.6.11\tf88a8b0b39601b19cd740e4db614ab0b5b874686\nrelease-0.6.10\t5a80c6ccbe2ad24fa3d4ff6f9fe4a2b07408d19d\nrelease-0.6.9\td1879c52326ecac45c713203670f54220879911e\nrelease-0.6.8\t0228185d4c5772947b842e856ad74cf7f7fd52f3\nrelease-0.5.31\t78bfaf37dc40578b06b1c0638ed6aaf2634d6fb7\nrelease-0.6.7\t1dcfd375100c4479611f71efb99271d0a3059215\nrelease-0.5.30\t75efe17d7af1adcbd7a5e6ca985801f35800664b\nrelease-0.6.6\t3b05edb2619d5935023b979ee7a9611b61b6c9e5\nrelease-0.5.29\tb0bbf0436b78f643b84befc6fde898ddb32a11d4\nrelease-0.6.5\t80de622646b0059fd4c553eff47c391bf7503b89\nrelease-0.5.28\tea64684856f5dccc9fa1d518371679b1373550dc\nrelease-0.6.4\t13e649b813d6ccba5db33a61e08ebe09d683cd5b\nrelease-0.6.3\tb94731c73d0922f472ff938b9d252ba29020f20c\nrelease-0.6.2\t4882735ebc71eeec0fbfe645bdfdb31306872d82\nrelease-0.5.27\t00cbe770ff75134fb3f93292f0b166d13c33baed\nrelease-0.6.1\t7ac0fe9bec9a2b5f8e191f6fdd6922bfd916a6cb\nrelease-0.5.26\t5d0112d6b1a59cd9466cf74be991c7949c190a37\nrelease-0.6.0\t2aefee4d4ed69eb7567680bf27a2efd212232488\nrelease-0.5.25\t77bf42576050862c268e267ef3e508b145845a25\nrelease-0.5.24\t2d5ef73671f690b65bf6d9e22e7155f68f484d5a\nrelease-0.5.23\tf461a49b6c747e0b67f721f2be172902afea5528\nrelease-0.5.22\t533a252896c4d1cff1586ae42129d610f7497811\nrelease-0.5.21\te9551132f7dd40da5719dd5bcf924c86f1436f85\nrelease-0.5.20\t8e8f6082654aedb4438c8fca408cfc316c7c5a2a\nrelease-0.5.19\t1f81c711d2a039e1f93b9b515065a2235372d455\nrelease-0.5.18\t796a6e30ca9d29504195c10210dbc8deced0ae83\nrelease-0.5.17\td1ffcf84ea1244f659145c36ff28de6fcdf528b2\nrelease-0.5.16\t64854c7c95d04f838585ca08492823000503fa61\nrelease-0.5.15\tcb447039152d85e9145139ff2575a6199b9af9d4\nrelease-0.5.14\t8a730c49f906d783b47e4b44d735efd083936c64\nrelease-0.5.13\tbd796ef5c9c9dd34bfac20261b98685e0410122a\nrelease-0.5.12\t613369e08810f36bbcc9734ef1059a03ccbf5e16\nrelease-0.5.11\tbb491c8197e38ca10ae63b1f1ecb36bf6fdaf950\nrelease-0.5.10\t9eeb585454f3daa30cf768e95c088a092fe229b9\nrelease-0.5.9\t779216610662c3a459935d506f66a9b16b9c9576\nrelease-0.5.8\t7642f45af67d805452df2667486201c36efaff85\nrelease-0.5.7\taed8a9de62456c4b360358bc112ccca32ce02e8d\nrelease-0.5.6\t6d1fcec2ea79101c756316c015f72e75f601a5ab\nrelease-0.5.5\t38cc7bd8e04f2c519fd4526c12841a876be353cb\nrelease-0.5.4\t393dbc659df15ccd411680b5c1ce87ed86d4c144\nrelease-0.5.3\te2ac5fa41bcba14adbbb722d45c083c30c07bb5c\nrelease-0.5.2\t06c58edc88831fb31c492a8eddcf2c6056567f18\nrelease-0.5.1\t13416db8a807e5acb4021bc3c581203de57e2f50\nrelease-0.5.0\t589ee12e8d7c2ae5e4f4676bcc7a1279a76f9e8e\nrelease-0.4.14\t93c94cfa9f78f0a5740595dde4466ec4fba664f8\nrelease-0.4.13\t979045fdcbd20cf7188545c1c589ff240251f890\nrelease-0.4.12\tfd57967d850d2361072c72562d1ed03598473478\nrelease-0.4.11\te372368dadd7b2ecd0182b2f1b11db86fc27b2c3\nrelease-0.4.10\td6f0a00015fdef861fd67fb583b9690638650656\nrelease-0.4.9\td24a717314365c857b9f283d6072c2a427d5e342\nrelease-0.4.8\t0f404f82a1343cb4e4b277a44e3417385798e5e5\nrelease-0.4.7\t119bad43bfd493400c57a05848eada2c35a46810\nrelease-0.4.6\t56e33c6efee7ff63cdc52bd1cf172bde195079df\nrelease-0.4.5\t40266f92b829a870808b3d4ee54c8fccdecbd2d6\nrelease-0.4.4\t5e42c1615f4de0079bd4d8913886d588ce6a295d\nrelease-0.4.3\t39dd0b045441e21512e0a6061a03d0df63414d8b\nrelease-0.4.2\t610267a772c7bf911b499d37f66c21ce8f2ebaf7\nrelease-0.4.1\t8183d4ba50f8500465efb27e66dd23f98775dd21\nrelease-0.4.0\t7e24168b0853ee7e46c9c7b943ef077dc64f17f5\nrelease-0.3.61\tdf95dcff753a6dc5e94257302aea02c18c7a7c87\nrelease-0.3.60\t921a7ce4baf42fd1091b7e40f89c858c6b23053e\nrelease-0.3.59\te924670896abe2769ea0fcfd2058b405bed8e8ec\nrelease-0.3.58\tb80f94fa2197b99db5e033fec92e0426d1fe5026\nrelease-0.3.57\tcec32b3753acf610ac1a6227d14032c1a89d6319\nrelease-0.3.56\t562806624c4afb1687cba83bc1852f5d0fecbac3\nrelease-0.3.55\t63a820b0bc6ca629c8e45a069b52d622ddc27a2d\nrelease-0.3.54\t5fd7a5e990477189c40718c8c3e01002a2c20b81\nrelease-0.3.53\t6d5c1535bb9dcd891c5963971f767421a334a728\nrelease-0.3.52\t9079ee4735aefa98165bb2cb26dee4f58d58c1d7\nrelease-0.3.51\t649c9063d0fda23620eaeaf0f6393be0a672ebe7\nrelease-0.3.50\t400711951595aef7cd2ef865b84b31df52b15782\nrelease-0.3.49\t4c8cd5ae5cc100add5c08c252d991b82b1838c6b\nrelease-0.3.48\t7cbef16c71a1f43a07f8141f02e0135c775f0f5b\nrelease-0.3.47\t39b7d7b33c918d8f4abc86c4075052d8c19da3c7\nrelease-0.3.46\t1e720b0be7ecd92358da8a60944669fa493e78cd\nrelease-0.3.45\t95d7da23ea5315a6e9255ce036ed2c51f091f180\nrelease-0.3.44\t4946078f0a79e6cc952d3e410813aac9b8bda650\nrelease-0.3.43\t947c6fd27699e0199249ad592151f844c8a900b0\nrelease-0.3.42\t5e8fb59c18c19347a5607fb5af075fe1e2925b9a\nrelease-0.3.41\t715d243270806d38be776fc3ed826d97514a73d6\nrelease-0.3.40\te60fe4cf1d4ea3c34be8c49047c712c6d46c1727\nrelease-0.3.39\t18268abd340cb351e0c01b9c44e9f8cc05492364\nrelease-0.3.38\tf971949ffb585d400e0f15508a56232a0f897c80\nrelease-0.3.37\t5d2b8078c1c2593b95ec50acfeeafbefa65be344\nrelease-0.3.36\t65bf042c0b4f39f18a235464c52f980e9fa24f6b\nrelease-0.3.35\t387450de0b4d21652f0b6242a5e26a31e3be8d8c\nrelease-0.3.34\tfbed40ce7cb4fd7203fecc22a617b9ce5b950fb3\nrelease-0.3.33\t0216fd1471f386168545f772836156761eddec08\nrelease-0.3.32\t93e85a79757c49d502e42a1cb8264a0f133b0b00\nrelease-0.3.31\t7a16e281c01f1c7ab3b79c64b43ddb754ea7935e\nrelease-0.3.30\t51b27717f140b71a2e9158807d79da17c888ce4c\nrelease-0.3.29\t5ef026a2ac7481f04154f29ab49377bf99aaf96f\nrelease-0.3.28\tc73c5c58c619c22dd3a5a26c91bb0567a62c6930\nrelease-0.3.27\t3f8a2132b93d66ac19bec006205a304a68524a0b\nrelease-0.3.26\t608cf78b24ef7baaf9705e4715a361f26bb16ba9\nrelease-0.3.25\t77cdfe394a94a625955e7585e09983b3af9b889b\nrelease-0.3.24\t5dac8c7fb71b86aafed8ea352305e7f85759f72e\nrelease-0.3.23\t858700ae46b453ea111b966b6d03f2c21ddcb94e\nrelease-0.3.22\t77f77f53214a0e3a68fef8226c15532b54f2c365\nrelease-0.3.21\t869b6444d2341a587183859d4df736c7f3381169\nrelease-0.3.20\t9262f520ce214d3d5fd7c842891519336ef85ca6\nrelease-0.3.19\tebc68d8ca4962fe3531b7e13444f7ac4395d9c6e\nrelease-0.3.18\t425af804d968f30eeff01e33b808bc2e8c467f2c\nrelease-0.3.17\t8c0cdd81580eb76d774cfc5724de68e7e5cbbdc2\nrelease-0.3.16\td4e858a5751a7fd08e64586795ed7d336011fbc0\nrelease-0.3.15\t284cc140593bb16ac71094acd509ab415ff4837d\nrelease-0.3.14\t401de5a43ba5a8acdb9c52465193c0ea7354afe7\nrelease-0.3.13\t4e296b7d25bf62390ca2afb599e395426b94f785\nrelease-0.3.12\t326634fb9d47912ad94221dc2f8fa4bec424d40c\nrelease-0.3.11\t4c5c2c55975c1152b5ca5d5d55b32d4dd7945f7a\nrelease-0.3.10\t4d9ea73a627a914d364e83e20c58eb1283f4031d\nrelease-0.3.9\tfcd6fc7ff7f9b132c35193d834e6e7d05026c716\nrelease-0.3.8\t58475592100cb792c125101b6d2d898f5adada30\nrelease-0.3.7\t458b6c3fea65a894c99dd429334a77bb164c7e83\nrelease-0.3.6\t174f1e853e1e831b01000aeccfd06a9c8d4d95a2\nrelease-0.3.5\t1af2fcb3be8a63796b6b23a488049c92a6bc12f4\nrelease-0.3.4\t7c1369d37c7eb0017c28ebcaa0778046f5aafdcc\nrelease-0.3.3\t9c2f3ed7a24711d3b42b124d5f831155c8beff95\nrelease-0.3.2\te48ebafc69393fc94fecfdf9997c4179fd1ce473\nrelease-0.3.1\tc1f965ef97188fd7ef81342dcf8719da18c554d2\nrelease-0.3.0\tecd9c160f25b7a7075dd93383d98a0fc8d8c0a41\nrelease-0.2.6\t7bd37aef1e7e87858c12b124e253e98558889b50\nrelease-0.2.5\t45033d85b30e3f12c407b7cfc518d76e0eda0263\nrelease-0.2.4\t483cca23060331f2078b1c2984870d80f288ad41\nrelease-0.2.3\te16a8d574da511622b97d6237d005f40f2cddb30\nrelease-0.2.2\t818fbd4750b99d14d2736212c939855a11b1f1ef\nrelease-0.2.1\t0148586012ab3dde69b394ec5a389d44bb11c869\nrelease-0.2.0\t511a89da35ada16ae806667d699f9610b4f8499a\nrelease-0.1.45\tb09ee85d0ac823e36861491eedfc4dfafe282997\nrelease-0.1.44\t371c1cee100d7a1b0e6cad4d188e05c98a641ee7\nrelease-0.1.43\tc9ad0d9c7d59b2fa2a5fe669f1e88debd03e6c04\nrelease-0.1.42\t563ad09abf5042eb41e8ecaf5b4e6c9deaa42731\nrelease-0.1.41\td6e48c08d718bf5a9e58c20a37e8ae172bff1139\nrelease-0.1.40\tc3bd8cdabb8f73e5600a91f198eb7df6fac65e92\nrelease-0.1.39\te5d7d0334fdb946133c17523c198800142ac9fe9\nrelease-0.1.38\t7fa11e5c6e9612ecff5eb58274cc846ae742d1d2\nrelease-0.1.37\t09b42134ac0c42625340f16628e29690a04f8db5\nrelease-0.1.36\t2019117e6b38cc3e89fe4f56a23b271479c627a6\nrelease-0.1.35\t6f00349b98e5f706b82115c6e4dc84456fc0d770\nrelease-0.1.34\t12234c998d83bfbbaa305273b3dd1b855ca325dc\nrelease-0.1.33\tdadfa78d227027348d7f9d1e7b7093d06ba545a0\nrelease-0.1.32\t417a087c9c4d9abb9b0b9b3f787aff515c43c035\nrelease-0.1.31\tfbbf16224844e7d560c00043e8ade8a560415bba\nrelease-0.1.30\tc12967aadd8726daf2d85e3f3e622d89c42db176\nrelease-0.1.29\t9b8c906f6e63ec2c71cecebfff35819a7d32227d\nrelease-0.1.28\tcd3117ad9aab9c58c6f7e677e551e1adbdeaba54\nrelease-0.1.27\tee66921ecd47a7fa459f70f4a9d660f91f6a1b94\nrelease-0.1.26\tb1648294f6935e993e436fd8a68bca75c74c826d\nrelease-0.1.25\td4ea69372b946dc4ec37fc3f5ddd93ff7c3da675\nrelease-0.1.24\t64d9afb209da0cd4a917202b7b77e51cc23e2229\nrelease-0.1.23\td7c90bb5ce83dab08715e98f9c7b81c7df4b37be\nrelease-0.1.22\tfc9909c369b2b4716304ac8e38da57b8fb781211\nrelease-0.1.21\t975f62e77f0244f1b631f740be77c72c8f2da1de\nrelease-0.1.20\t0f836f0288eee4980f57736d50a7a60fa082d8e9\nrelease-0.1.19\t45a460f82aec80b0f61136aa09f412436d42203a\nrelease-0.1.18\t31ff3e943e1675a2caf745ba7a981244445d4c98\nrelease-0.1.17\t4ebe09b07e3021f1a63b459903ec58f162183b26\nrelease-0.1.16\t621229427cba1b0af417ff2a101fc4f17a7d93c8\nrelease-0.1.15\tfd661d14a7fad212e326a7dad6234ea0de992fbf\nrelease-0.1.14\tc5240858380136a67bec261c59b1532560b57885\nrelease-0.1.13\tad1e9ebf93bb5ae4c748d471fad2de8a0afc4d2a\nrelease-0.1.12\tc3c2848fc081e19aec5ffa97e468ad20ddb81df0\nrelease-0.1.11\t8e8f3af115b5b903b2b8f3335de971f18891246f\nrelease-0.1.10\t31ee1b50354fb829564b81a6f34e8d6ceb2d3f48\nrelease-0.1.9\t2ff194b74f1e60cd04670986973e3b1a6aa3bece\nrelease-0.1.8\tbbd6b0b4a2b15ef8c8f1aaf7b027b6da47303524\nrelease-0.1.7\t5aecc125bc33d81d6214c91d73eb44230a903dde\nrelease-0.1.6\t1f31dc6d33a3a4e65240b08066bf186df9e33b79\nrelease-0.1.5\ta88a3e4e158fade0aaa6f3eb25597d5ced2c1075\nrelease-0.1.4\t0491b909ef7612d8411f1f59054186c1f3471b52\nrelease-0.1.3\tded1284520cc939ad5ae6ddab39925375e64237d\nrelease-0.1.2\t295d97d70c698585705345f1a8f92b02e63d6d0d\nrelease-0.1.1\t23fb87bddda14ce9faec90f774085634106aded4\nrelease-0.1.0\t551102312e19b704cd22bd7254a9444b9ea14e96\n" + time_stamp: 2020-05-18 06:23:13.702841500 +00:00 + raw_data: "tip\t3c8082c3f98ab7fdec8a598b55609701452b5254\nrelease-1.18.0\tf8052414dbe9453578a9f6e753eb507be709c35a\nrelease-1.17.10\tc44970de01474f6f3e01b0adea85ec1d03e3a5f2\nrelease-1.17.9\t5e8d52bca714d4b85284ddb649d1ba4a3ca978a8\nrelease-1.17.8\tfdacd273711ddf20f778c1fb91529ab53979a454\nrelease-1.17.7\te56295fe0ea76bf53b06bffa77a2d3a9a335cb8c\nrelease-1.17.6\tde68d0d94320cbf033599c6f3ca37e5335c67fd7\nrelease-1.17.5\t9af0dddbddb2c368bfedd2801bc100ffad01e19b\nrelease-1.17.4\tce2ced3856909f36f8130c99eaa4dbdbae636ddc\nrelease-1.16.1\t123647025f4a0d3e8c0f869c1ab1f61b924d59e3\nrelease-1.17.3\ted4303aa1b31a9aad5440640c0840d9d0af45fed\nrelease-1.17.2\t2fc9f853a6b7cd29dc84e0af2ed3cf78e0da6ca8\nrelease-1.17.1\t7816bd7dabf6ee86c53c073b90a7143161546e06\nrelease-1.17.0\t054c1c46395caff79bb4caf16f40b331f71bb6dd\nrelease-1.16.0\tabd40ce603fa49b2b8b1cca622c96093b1e14275\nrelease-1.15.12\t0130ca3d58437b3c7c707cdddd813d530c68da9a\nrelease-1.15.11\t5155d0296a5ef9841f035920527ffdb771076b44\nrelease-1.15.10\t75f5c7f628411c79c7044102049f7ab4f7a246e7\nrelease-1.15.9\td2fd76709909767fc727a5b4affcf1dc9ca488a7\nrelease-1.15.8\tee551e3f6dba336c0d875e266d7d55385f379b42\nrelease-1.14.2\t72e39ad2427d02fa29e892715298013f043f2b80\nrelease-1.15.7\t051a039ce1c7e09144de4a4846669ec7116cecea\nrelease-1.14.1\tfe8e8322d9c13597f06b80f2015124446f0a900c\nrelease-1.15.6\t2351853ce6867b6166823bdf94333c0a76633c0a\nrelease-1.15.5\tf062e43d74fc2578bb100a9e82a953efa1eb9e4e\nrelease-1.15.4\t49d49835653857daa418e68d6cbfed4958c78fca\nrelease-1.15.3\t28b3e17ca7eba1e6a0891afde0e4bc5bcc99c861\nrelease-1.15.2\tb234199c7ed8a156a6bb98f7ff58302c857c954f\nrelease-1.15.1\t4189160cb946bb38d0bc0a452b5eb4cdd8979fb5\nrelease-1.15.0\t990b3e885636d763b97ed02d0d2cfc161a4e0c09\nrelease-1.14.0\t588054867fef65d3dc38df1ffefcade02a88f140\nrelease-1.13.12\t051e5fa03b92b8a564f6b12debd483d267391e82\nrelease-1.13.11\t64179f242cb55fc206bca59de9bfdc4cf5ebcec7\nrelease-1.13.10\t31c929e16910c38492581ef474e72fa67c28f124\nrelease-1.13.9\tfb1212c7eca4c5328fe17d6cd95b010c67336aac\nrelease-1.13.8\t20ca4bcff108d3e66977f4d97508637093492287\nrelease-1.13.7\t47cca243d0ed39bf5dcb9859184affc958b79b6f\nrelease-1.12.2\tc0c5f8b806fe2b8a6a059447c712376293d6ccde\nrelease-1.13.6\tf87da7d9ca02b8ced4caa6c5eb9013ccd47b0117\nrelease-1.13.5\t0d45b4cf7c2e4e626a5a16e1fe604402ace1cea5\nrelease-1.13.4\tbbc642c813c829963ce8197c0ca237ab7601f3d4\nrelease-1.12.1\t08b443b6b59dbe5d02354047c649a00c40e7b748\nrelease-1.13.3\t8457ce87640f9bfe6221c4ac4466ced20e03bebe\nrelease-1.13.2\t5be2b25bdc65775a85f18f68a4be4f58c7384415\nrelease-1.13.1\t539f7893ecb96bee60965528c8958d7eb2f1ce6b\nrelease-1.13.0\t3671096a45bce570a2afa20b9faf42c7fb0f7e66\nrelease-1.12.0\te265d962841f90f1fa148c8f4eed4a4d3a9b0208\nrelease-1.11.13\t3d0e8655f897959e48cc74e87670bb5492a58871\nrelease-1.11.12\t7f394e433f0003222aa6531931ecc0b24740d5e4\nrelease-1.11.11\td8b321a876d6254e9e98795e3b194ef053290354\nrelease-1.11.10\t1ad0999a7ded3d4fb01c7acf8ff57c80b643da7e\nrelease-1.10.3\t369b74459cf24dd35c5e1111d17c2cd4a6ecfd4b\nrelease-1.11.9\t20a45c768e5ed26b740679d0e22045c98727c3cc\nrelease-1.11.8\t4591da489a30f790def29bc5987f43409b503cae\nrelease-1.11.7\t5c8f60faf33ca8926473d2da27b4c3c417bd4630\nrelease-1.11.6\t5e371426b3bcba4312ce08606194b89b758927d1\nrelease-1.10.2\tb98f9fdee487b00556bea6a24f8f976d7fd60795\nrelease-1.11.5\t5253015a339aaca0a3111473d3e931b6d4752393\nrelease-1.11.4\t953512ca02c6f63b4fcbbc3e10d0d9835896bf99\nrelease-1.11.3\tb83a067949a3384a49fd3d943eb8d0997b31f87b\nrelease-1.11.2\t4d3b3a13a8cf5fc3351a7f167d1c13325e00f21c\nrelease-1.10.1\t7fcde9122088094471a97030161e347aa940f8ed\nrelease-1.11.1\tcb783d9cc19761e14e1285d91c38f4b84d0b8756\nrelease-1.11.0\t271ee30c6791847980cd139d31807541f5e569bf\nrelease-1.10.0\td4b7edd7fa81cbf554ee3dcfe9de53ad6d1dbc69\nrelease-1.9.15\t13070ecfda67397985f0e986eb9c42ecb46d05b5\nrelease-1.9.14\t4106db71cbcb9c8274700199ac17e520902c6c0f\nrelease-1.9.13\t5936b7ed929237f1a73b467f662611cdc0309e51\nrelease-1.9.12\tead3907d74f90a14d1646f1b2b56ba01d3d11702\nrelease-1.9.11\tfe66cff450a95beed36a2515210eb2d7ef62c9d3\nrelease-1.8.1\t5959efb40b07ea30693c92ddbdec82a78577e671\nrelease-1.9.10\tbe00ca08e41a69e585b6aff70a725ed6c9e1a876\nrelease-1.9.9\tef107f3ddc237a3007e2769ec04adde0dcf627fa\nrelease-1.9.8\t1bdc497c81607d854e3edf8b9a3be324c3d136b6\nrelease-1.9.7\t54117529e40b988590ea2d38aae909b0b191663f\nrelease-1.9.6\tb78018cfaa2f0ec20494fccb16252daa87c48a31\nrelease-1.9.5\t942475e10cb47654205ede7ccbe7d568698e665b\nrelease-1.9.4\t5cb7e2eed2031e32d2e5422caf9402758c38a6ad\nrelease-1.9.3\te27a215601292872f545a733859e06d01af1017d\nrelease-1.9.2\t3a32d6e7404a79a0973bcd8d0b83181c5bf66074\nrelease-1.9.1\t884a967c369f73ab16ea859670d690fb094d3850\nrelease-1.9.0\t53d850fe292f157d2fb999c52788ec1dc53c91ed\nrelease-1.8.0\t01d52c2b460da263fd1557ab5f8d0af5e404b47a\nrelease-1.6.3\t76d66e92c66c7d0df6e81288dafd625421126300\nrelease-1.7.12\t3ef00a71f56420a9c3e9cec311c9a2109a015d67\nrelease-1.7.11\t2b3b737b5456c05cd63d3d834f4fb4d3776953d0\nrelease-1.7.10\t860cfbcc4606ee36d898a9cd0c5ae8858db984d6\nrelease-1.7.9\t34b201c1abd1e2d4faeae4650a21574771a03c0e\nrelease-1.7.8\td5ea659b8bab2d6402a2266efa691f705e84001e\nrelease-1.7.7\t6d2fbc30f8a7f70136cf08f32d5ff3179d524873\nrelease-1.7.6\ta8d111bb68847f61d682a3c8792fecb2e52efa2c\nrelease-1.6.2\t7dab18c28f451ce5dd58f11b9f5c8c433953ea09\nrelease-1.7.5\tfe129aa02db9001d220f1db7c3c056f79482c111\nrelease-1.6.1\t0cf84a39c1db6d6477a1a5b68aee345289d4d87a\nrelease-1.7.4\tcbb146b120296852e781079d5138b04495bab6df\nrelease-1.7.3\tfe7cd01828d5ca7491059f0690bb4453645eb28b\nrelease-1.7.2\t0bd223a546192fdf2e862f33938f4ec2a3b5b283\nrelease-1.7.1\t0351a6d89c3dbcc7a76295024ba6b70e27b9a497\nrelease-1.7.0\td161d68df8be32e5cbf72b07db1a707714827803\nrelease-1.6.0\tdaa5384fd526a9c18fff4f5135646743628f6bc7\nrelease-1.5.13\tfd722b890eabc600394349730a093f50dac31639\nrelease-1.4.7\t636ce03634e7489b39a7108f2fed24649df19737\nrelease-1.5.12\t97b47d95e4449cbde976657cf8cbbc118351ffe0\nrelease-1.4.6\te201159f5d4ebe7ddbaf1e9247c843022ec202f3\nrelease-1.5.11\tf995a10d4c7e9a817157a6ce7b753297ad32897e\nrelease-1.4.5\t844b2af1d65cbb143e8ecaa1c3ad9968f60d1882\nrelease-1.5.10\tb798fc020e3a84ef68e6c9f47865a319c826d33c\nrelease-1.5.9\t5a1759f33b7fa6270e1617c08d7e655b7b127f26\nrelease-1.5.8\teaa76f24975948b0ce8be01838d949122d44ed67\nrelease-1.4.4\t7e9543faf5f0a443ba605d9d483cf4721fae30a5\nrelease-1.5.7\t9ba2542d75bf62a3972278c63561fc2ef5ec573a\nrelease-1.4.3\t69ffaca7795531e19f3827940cc28dca0b50d0b8\nrelease-1.5.6\t70c5cd3a61cb476c2afb3a61826e59c7cda0b7a7\nrelease-1.5.5\t60e0409b9ec7ee194c6d8102f0656598cc4a6cfe\nrelease-1.5.4\t376a5e7694004048a9d073e4feb81bb54ee3ba91\nrelease-1.5.3\t644a079526295aca11c52c46cb81e3754e6ad4ad\nrelease-1.4.2\t50f065641b4c52ced41fae1ce216c73aaf112306\nrelease-1.5.2\t5bdca4812974011731e5719a6c398b54f14a6d61\nrelease-1.5.1\t99eed1a88fc33f32d66e2ec913874dfef3e12fcc\nrelease-1.2.9\t0e80c5bf5e1bb42a6491fea5340a16e51cd37bb8\nrelease-1.4.1\t0702de638a4c51123d7b97801d393e8e25eb48de\nrelease-1.5.0\t48a84bc3ff074a65a63e353b9796ff2b14239699\nrelease-1.4.0\t7809529022b83157067e7d1e2fb65d57db5f4d99\nrelease-1.3.16\t23159600bdea695db8f9d2890aaf73424303e49c\nrelease-1.2.8\td50f390fa97eb9871622666b40703d497d65925e\nrelease-1.3.15\tcd84e467c72967b9f5fb4d96bfc708c93edeb634\nrelease-1.3.14\te04428778567dd4de329bbbe97ad653e22801612\nrelease-1.3.13\tdc195ffe0965b2b9072f8e213fe74ecce38f6773\nrelease-1.2.7\ta58e268f6c081f671667c0c929f0c5cec3e80958\nrelease-1.3.12\t560dc55e90c13860a79d8f3e0d67a81c7b0257bb\nrelease-1.3.11\t36409ac209872ce53019f084e4e07467c5d9d25e\nrelease-1.3.10\t2c053b2572694eb9cd4aed26a498b6cb1f51bbcc\nrelease-1.2.6\teb1043eaedacddb1bbada27822527049b99bde6d\nrelease-1.3.9\t1b1a9337a7399ad3cdc5e3a2f9fbaaec990271d5\nrelease-1.2.5\td763d5c9a13395fb78100f7c2d63c2323541f210\nrelease-1.3.8\tab7ce0eb4cf78a656750ab1d8e55ef61f7e535ec\nrelease-1.3.7\tdafd375f1c882b15fa4a9b7aa7c801c55082395e\nrelease-1.2.4\te8aa72e49ef3e5cf6aaebff6ab8d56207b8ab8b4\nrelease-1.3.6\t3aeb14f88daeb973e4708310daa3dc68ac1200f7\nrelease-1.3.5\t90f3b4ea7992a7bf9385851a3e77173363091eea\nrelease-1.2.3\te3786c39d06097a0e5d2d9791b5f3dc229313361\nrelease-1.3.4\ta43447fb82aa03eabcd85352758ae14606a84d35\nrelease-1.3.3\t2c5e1e88c8cf710caf551c5c67eba00443601efe\nrelease-1.2.2\tf9d796a201daa411de38c7a0e7282d743c163780\nrelease-1.3.2\t50107e2d96bbfc2c59e46f889b1a5f68dd10cf19\nrelease-1.3.1\t61b6a3438afef630774e568eefd89c53e3b93287\nrelease-1.3.0\t9ee68d629722f583d43d92271f2eb84281afc630\nrelease-1.2.0\tf582d662cc408eb7a132c21f4b298b71d0701abb\nrelease-1.0.15\tb165e34d45a30edaf309d28cbc8e4bc75610b8fd\nrelease-1.1.19\t0f0b425659e0b26f5bc8ea14a42dbf34de2eaba6\nrelease-1.1.18\t2b22743c3079b41233ded0fc35af8aa89bcfab91\nrelease-1.0.14\tea69e97a812bda9ff212bdd86cf8f0fdd353d6d4\nrelease-1.1.17\tf7e1113a9a1648cad122543e7080e895cf2d88f4\nrelease-1.0.13\tfa326e57ef4a8aac838650d12e2b7389de3517de\nrelease-1.1.16\t7b7c49639a7bceecabf4963c60b26b65a77d6ce0\nrelease-1.1.15\t2397e9c72f1bc5eac67006e12ad3e33e0ea9ba74\nrelease-1.0.12\tbd1a95dd6dd336e1f21eb5b6ac593b07907dd885\nrelease-1.1.14\t6845f4ac909233f5a08ed8a51de137713a888328\nrelease-1.1.13\t6a6836e65827fd3cb10a406e7bbbe36e0dad8736\nrelease-1.1.12\tade8fc136430cfc04a8d0885c757968b0987d56c\nrelease-1.0.11\t2203f8401ffe990fc6b1547bfe06e1679442bf11\nrelease-1.1.11\t9590f0cf5aab8e6e0b0c8ae59c70187b2b97d886\nrelease-1.1.10\tc7e65deabf0db5109e8d8f6cf64cd3fb7633a3d1\nrelease-1.1.9\t482d7d907f1ab92b78084d8b8631ed0eb7dd08f7\nrelease-1.0.10\t7671138872eb3f993744f987fff3980be4ec7768\nrelease-1.1.8\t71600ce67510af093d4bc0117a78b3b4678c6b3a\nrelease-1.0.9\tb5395c8ea2a392e164651853730f04775c077429\nrelease-1.1.7\t378c297bb7459fb99aa9c77decac0d35391a3932\nrelease-1.1.6\tf9ddecfe331462f870a95e4c1c3ba1bb8f19f2d3\nrelease-1.1.5\te47531dfabbf8e5f8b8aff9ff353642ea4aa7abb\nrelease-1.0.8\t83ec093b74f529aad286873c48f7fdad77f8ec24\nrelease-1.0.7\tb53b4ecfb089c930d0c7747da5958da6dca0ad53\nrelease-1.1.4\t911060bc8221d4113a693ae97952a1fa88663ca8\nrelease-1.1.3\tbac8ba08a6570bac2ecd3bf2ad64b0ac3030c903\nrelease-1.1.2\tda1289482a143dfa016769649bdff636c26f53c8\nrelease-1.0.6\t23166b41f9b3c4f8f93269c4821dda8bc5edbe0c\nrelease-1.1.1\t44bf95f670656fae01ccb266b3863843ea13d324\nrelease-1.1.0\tf31aea5b06654c9163be5acd6d9b7aaf0fdf6b33\nrelease-0.7.69\td62ef1c3477ec30f440c55ab07e422819d9f915b\nrelease-0.8.55\tcc221c55c43bb8a6174771a7b76fd9985318f7c7\nrelease-1.0.5\tfa2c37b1122c2c983b6e91d1188e387d72dde4d6\nrelease-1.0.4\tc9c2805ac9245cc48ce6efeba2b4a444f859d6aa\nrelease-1.0.3\t80d586db316512b5a9d39f00fe185f7f91523f52\nrelease-1.0.2\tc50df367648e53d55e80b60a447c9c66caa0d326\nrelease-1.0.1\tf8f89eb4e0c27e857ec517d893d4f9a454985084\nrelease-1.0.0\te0fd9f36005923b8f98d1ba1ea583cb7625f318f\nrelease-0.9.7\t657d05d63915ce2f6c4d763091059f5f85bb10e5\nrelease-0.9.6\t27e2f3b7a3db1819c5d0ba28327ceaba84a13c4e\nrelease-0.9.5\t70542931bc5436d1bbd38f152245d93ac063968d\nrelease-0.9.4\tfe671505a8ea86a76f0358b3ec4de84a9037ac2b\nrelease-0.7.68\t0275cdd45fd2bc50ffac6e9ef3faeaec9de8ed36\nrelease-0.8.54\tddb0727e51db3a37bf61c6476c3cb999cb58bfb3\nrelease-0.9.3\tb7b306325972661117694879d3e22faf4cf0df32\nrelease-0.9.2\t16cff36b0e49fc9fdeee13b2e92690286bcc1b3d\nrelease-0.9.1\t71281dd73b17a0ead5535d531afaee098da723cb\nrelease-0.9.0\t62b599022a2fa625b526c2ad1711dc6db7d66786\nrelease-0.8.53\t010468d890dbac33a4cae6dfb2017db70721b2fe\nrelease-0.8.52\t67dd7533b99c8945b5b8b5b393504d4e003a1c50\nrelease-0.8.51\t21dacebd12f65cb57ceb8d2688db5b07fad6e06d\nrelease-0.8.50\te7bdb8edc1bab2bc352a9fb6ce765c46575c35bf\nrelease-0.8.49\ta2b7e94b9807e981866bf07e37b715847d1b7120\nrelease-0.8.48\t0b65c962e0cd6783a854877b52c903cb058eec8c\nrelease-0.8.47\t4434dc967087315efcd0658206a67fe6c85528f3\nrelease-0.8.46\tf034d9173df0a433e0bbcf5974f12ea9eb9076c0\nrelease-0.8.45\te16dd52a0d226c23dcae9a11252564a04753bbed\nrelease-0.8.44\t00ec8cd76fb89af27363b76c40d9f88bf4679c3b\nrelease-0.8.43\t34df9fb22fed415cdad52def04095dc6d4b48222\nrelease-0.8.42\tb5a3065749093282ddd19845e0b77ffc2e54333e\nrelease-0.7.67\t389610e6fc538451a8e55dec6d9152b490e747d4\nrelease-0.8.41\t718b4cb3faf7efe4e0648140f064bf7a92c3f7e8\nrelease-0.7.66\ta4b5121bfb402c1b80f809e8e8405735d66f8d61\nrelease-0.8.40\t4846ec9f83cb5bc4c8519d5641b35fb9b190430c\nrelease-0.8.39\taf10bf9d4c6532850aa1f70cdf7504bd109b284c\nrelease-0.8.38\tfa5f1ca353c0c5aa5415f51d72fd7bbcc02d1ed7\nrelease-0.8.37\t265b7fd2ae21c75bbffa5115b83a0123d6c4acb4\nrelease-0.8.36\taed68639d4eb6afe944b7fb50499c16f7f3f503c\nrelease-0.8.35\t7cb3cb8d78ef7ae63561733ed91fd07933896bc8\nrelease-0.8.34\t21cb50799a20575a42f9733342d37a426f79db4d\nrelease-0.7.65\t92247d9294ed5b63b820ce3dbb193e58e53661bc\nrelease-0.8.33\ta4456378d234c07038456cf32bfe3c651f1d5e82\nrelease-0.8.32\t59dee6f7f3afeb1fad6ed5983756e48c81ad2a5c\nrelease-0.8.31\t4f84115914490e572bcbee5069157b7334df2744\nrelease-0.8.30\t9852c5965a3292a1b6127dbb4da9fce4912d898a\nrelease-0.8.29\t78d3582a30afe63fc0adb17c3ac8891a64e47146\nrelease-0.8.28\te68b1c35cad86105ff1c5b240f53442f4c36356e\nrelease-0.8.27\tea50b0d79ef1d7d901cd0e4dcd7373447849d719\nrelease-0.8.26\t06ce92293f6a65651b08c466f90f55bd69984b98\nrelease-0.7.64\t31aa7a54eae7840b1d9e260cdc4318b61ea04275\nrelease-0.8.25\taa550cb4159ae0d566006e091fb1c7a888771050\nrelease-0.8.24\t89b9173476de14688b1418fbf7df10f91d1719ef\nrelease-0.8.23\t3c6ac062b379b126212cbb27e98a3c8275ef381a\nrelease-0.8.22\td56c8b5df517c2bf6e7bc2827b8bf3e08cda90e1\nrelease-0.7.63\tae555c9ac9a4c9b8c285b541c7c33d57b0ff8dba\nrelease-0.8.21\t27951ca037e63dae45ff5b6279124c224ae1255a\nrelease-0.8.20\tea3d168fb99c32a5c3545717ecc61e85a375e5dd\nrelease-0.8.19\t4bc73c644329a510da4e96b7241b80ead7772f83\nrelease-0.8.18\t7aaa959da85e09e29bcac3b1cadec35b0a25b64d\nrelease-0.8.17\t06564e9a2d9ec5852132c212e85eda0bf1300307\nrelease-0.8.16\t52163a1027c3efd6b4c461b60a2ca6266c23e193\nrelease-0.5.38\t6dcc15f30295eb461569c41f3428784af7642b7c\nrelease-0.6.39\tfabd6e1028f29066a465e4a60342090ad1d7c8af\nrelease-0.7.62\t64659bcb92d40747cef2fb8d9156b3e6e639f7da\nrelease-0.8.15\td364c2c12dd9723a2dfac3f096f5e55d4cfe6838\nrelease-0.8.14\t3089486a8dc5844b5b6e9f78d536b4b26f7ffa16\nrelease-0.8.13\t81c8277cd8ed55febcb2dd9d9213076f6c0ccb09\nrelease-0.8.12\tca7a1c6c798a7eb5b294d4ac3179ec87ecf297d3\nrelease-0.8.11\td0d61c32331a6505381b5218318f7b69db167ca8\nrelease-0.8.10\t2d9faf2260df6c3e5d4aa1781493c31f27a557d0\nrelease-0.8.9\ta40f8475511d74a468ade29c1505e8986600d7a3\nrelease-0.8.8\t1cef1807bc12cb05ac52fb0e7a0f111d3760b569\nrelease-0.8.7\t7607237b4829fff1f60999f4663c50ed9d5182f7\nrelease-0.8.6\tff52ee9e6422f3759f43a442b7ba615595b3a3d4\nrelease-0.8.5\t0914802433b8678ba2cdf91280766f00f4b9b76e\nrelease-0.6.38\tdeae9eb8f8ad8b03211adf7371ac6ebe7c4a9b76\nrelease-0.7.61\te65e202792cb11983417a94f3f3cdf0f15abe65a\nrelease-0.8.4\tdb34ec0c53c4b9dec12ffdf70caf89a325ab9577\nrelease-0.8.3\tc98da980514a02ba81c421b25bf91803ffffddf3\nrelease-0.7.60\t868a381304dc040d9de358f08716e438f636df2c\nrelease-0.8.2\tb3503597c1a0f0f378afdc5e5e5b85e2c095a4be\nrelease-0.8.1\tf4acb784b53cd952559567971b97dde1e818a2b6\nrelease-0.8.0\t82d56c2425ef857cd430b8530a3f9e1127145a67\nrelease-0.7.59\t0c22cb4862c8beb4ee1b9e4627125162a29a5304\nrelease-0.6.37\tff9521c5a7787ddca25fd85719ba628c2f6b0460\nrelease-0.7.58\t87f4a49a9cc34a5b11c8784cc5ea89e97b4b2bd8\nrelease-0.7.57\tfbb1918a85e38a7becdb1a001dbaf5933f23a919\nrelease-0.7.56\ta1e44954549c35023b409f728c678be8bf898148\nrelease-0.7.55\t3ed9377e686f2521e6ec15873084381033fb490d\nrelease-0.7.54\t01c6fe6c2a55998434cd3b05dd10ca487ac3fb6c\nrelease-0.7.53\tb073eaa1dcea296a3488b83d455fab6621a73932\nrelease-0.7.52\t18e39e566781c9c187e2eb62bebd9d669d68f08c\nrelease-0.7.51\tf51f2bec766c8b6d7e1799d904f18f8ea631bd44\nrelease-0.7.50\te4350efa7cf7a0e868c2236a1137de8a33bd8ec6\nrelease-0.7.49\t452b9d09df8e3f2fb04b2a33d04d2f3a6436eb34\nrelease-0.7.48\t9816fb28eda599bfd53940e6d3b6617d1ecb6323\nrelease-0.6.36\t099c5b328fe2ec4d7af5d605b9ab9fcee1d906bb\nrelease-0.7.47\td1d0e6d7ff0ca3c0dd1be1ef1cfff2e3fd0b4e1c\nrelease-0.7.46\t9b5037e7ec7db25875c40f9d1cf20a853388b124\nrelease-0.7.45\t797e070d480a34b31ddac0d364784773f1bbbcf9\nrelease-0.7.44\t9be652e9114435fc6f1fdec84c0458d56702db91\nrelease-0.7.43\t7503d95d6eadad14c28b2db183ba09848265274b\nrelease-0.7.42\ta9575a57a5443df39611774cf3840e9088132b0e\nrelease-0.7.41\tc4a56c197eeafd71fc1caef7a9d890a330e3c23d\nrelease-0.7.40\t8a350e49d2b6751296db6d8e27277ccf63ed412a\nrelease-0.7.39\tf822655d4120629977794c32d3b969343b6c30db\nrelease-0.7.38\t11a4e2ed5b166b9c9f119171aa399a9e3aa4684a\nrelease-0.7.37\t3286f0bab8e77dbc7ebb370b1dc379592ccff123\nrelease-0.7.36\tb84548abe9b9d4f4e203f848696e52c8c82c308f\nrelease-0.7.35\tc7ee9e15717b54ead5f4a554686e74abe66c6b07\nrelease-0.7.34\t1e9a362c3dcee221ca6e34308c483ed93867aca2\nrelease-0.7.33\t83027471a25385b1c671968be761e9aa7a8591a7\nrelease-0.6.35\tda61aad8ec519f24658909dadc48f7dd1c0dc352\nrelease-0.7.32\t780b2ba1ec6daf6e3773774e26b05b9ff0d5483e\nrelease-0.7.31\t9fddd7e1a7a27f8463867f41a461aad57df461b2\nrelease-0.7.30\t87e07ccdf0a4ec53458d9d7a4ea66e1239910968\nrelease-0.7.29\t5176dfdf153fc785b18604197d58806f919829ad\nrelease-0.7.28\tfbc3e7e8b3ee756568a875f87d8a954a2f9d3bf6\nrelease-0.7.27\t9425d9c7f8ead95b00a3929a9a5e487e0e3c8499\nrelease-0.7.26\td04bfca0c7e3ae2e4422bc1d383553139d6f0a19\nrelease-0.7.25\t46b68faf271d6fdcaaf3ad2c69f6167ea9e9fa28\nrelease-0.7.24\t19c452ecd083550816873a8a31eb3ed9879085e6\nrelease-0.6.34\te47fbf6620a00b01ccdc2bd622d510b4c07ee47e\nrelease-0.7.23\t0562fb355a25266150cbe8c8d4e00f55e3654df3\nrelease-0.6.33\teb191501ece35bd82aabee90dc3b256a6cc0e45b\nrelease-0.7.22\t24763afa5efe91e54f00b2ae5b87666eb6c08c3b\nrelease-0.7.21\t5f665d0fa6a5f6e748157f2ccbc445b2db8125d0\nrelease-0.7.20\t61838d1bcbddc7bc4dd9f30d535573a6fddca8f9\nrelease-0.7.19\t9dba9779e37e5969a2d408c792084fd7acfec062\nrelease-0.7.18\tfc10f7b5cb1305fb930f8ac40b46882d0828d61e\nrelease-0.7.17\t91d7a9eb8ade90e9421d7b1e3c2e47a6bc427876\nrelease-0.7.16\teab2e87deba73ae6abd9cc740e8d4365bed96322\nrelease-0.7.15\t0cd7bb051f67eac2b179fb9f9cc988b9ba18ed76\nrelease-0.7.14\tc07d2d20d95c83d804079bbdcecbce4a0c8282f0\nrelease-0.7.13\td90ea21e24ea35379aef50c5d70564158e110a15\nrelease-0.7.12\t9ad1bd2b21d93902863807528e426862aedee737\nrelease-0.7.11\t0e7023bf6b2461309c29885935443449a41be807\nrelease-0.7.10\t511edfa732da637f5f0c9476335df7dca994706d\nrelease-0.7.9\t769f0dd7081e9011394f264aa22aa66fd79730d8\nrelease-0.7.8\t43bde71f0bbe5a33b161760d7f9f980d50386597\nrelease-0.7.7\tbbcf6d75556fdcee8bd4aba8f6c27014be9920ee\nrelease-0.5.37\t5cbd114a2b1d9d484aaac99bbe93aae613cf0a84\nrelease-0.6.32\t3bb1a1e2d19befec9cc830d2bd47bc51b27d124b\nrelease-0.7.6\tc2f0f7cf306f302254beae512bda18713922375c\nrelease-0.7.5\t9527137b4354a648a229c7169850c7c65272c00d\nrelease-0.7.4\t4dc24d50230fbadfc037a414a86390db2de69dd2\nrelease-0.7.3\t9992c4583513d2804fc2e7fec860fbc7ab043009\nrelease-0.7.2\ta07e258cef3b0a0b6e76a6ff4ba4651c5facc85a\nrelease-0.7.1\t6ab27a06f3346cf9ec8737f5dbcc82dd4031e30f\nrelease-0.7.0\t0a189588830b8629c4dfea68feb49af36b59e4a9\nrelease-0.6.31\td4288915bba73c4c3c9cf5d39d34e86879eb2b45\nrelease-0.5.36\t459fa0e9044d4d9c4be9a15a64dcee8769aa73b0\nrelease-0.6.30\t55408deb3cd171efa9b81d23d7a1dd1ccde0b839\nrelease-0.6.29\teb2bd21dc8d03f6c94016f04ffb9adaf83a2b606\nrelease-0.6.28\t58f05255d3a345d04baef5cff0ca1ae0ac7ecebb\nrelease-0.6.27\tbe531addfabe5214f409d457140c1038af10d199\nrelease-0.6.26\t07ad5b2606614c4be4ee720c46cf4af126059d31\nrelease-0.5.35\t77163816713f775793ee6ba95a36c7869d73e164\nrelease-0.6.25\t3b8607c05a8bebcfa59235c2126a70d737f0ccf5\nrelease-0.6.24\t3e2a58fb48f1e1a99ebf851e0d47a7034c52ae22\nrelease-0.6.23\t69a03d5e3b6e6660079ef1ef172db7ac08d8370e\nrelease-0.6.22\t95e6160d2b7d0af8ffd1b95a23cadadf8f0b3f6d\nrelease-0.5.34\te7800c8d37c12d7185bd916dbe7a48dd9a7641e4\nrelease-0.6.21\t143f4d65b1c875d6563ccb7f653d9157afc72194\nrelease-0.6.20\t3e0a27f9358ffc1b5249e0ea2311ce7da5c8967e\nrelease-0.6.19\t3c2a99d3a71af846855be35e62edb9a12f363f44\nrelease-0.6.18\t60707ebc037086cf004736a0d4979e2a608da033\nrelease-0.6.17\td8fcca555542619228d9fab89e1665b993f8c3ee\nrelease-0.5.33\tf7ff0e4b2e507370429ac147c64d42a0b72ffb0e\nrelease-0.6.16\t158aa4e8cc46fcf9504a61469d22daf3476b17bf\nrelease-0.6.15\t5e68764f0d6e91a983170fa806e7450a9e9b33fe\nrelease-0.6.14\t537b6ef014c4a133e0ab0b7dc817508e0647e315\nrelease-0.5.32\td82f8d4ed369376a3ccc4f64970ba9805a68234d\nrelease-0.6.13\t451b02cc770a794cd41363461b446948ae1d8bc8\nrelease-0.6.12\t5557460a7247a1602ae96efd1d0ccf781344cb58\nrelease-0.6.11\tf88a8b0b39601b19cd740e4db614ab0b5b874686\nrelease-0.6.10\t5a80c6ccbe2ad24fa3d4ff6f9fe4a2b07408d19d\nrelease-0.6.9\td1879c52326ecac45c713203670f54220879911e\nrelease-0.6.8\t0228185d4c5772947b842e856ad74cf7f7fd52f3\nrelease-0.5.31\t78bfaf37dc40578b06b1c0638ed6aaf2634d6fb7\nrelease-0.6.7\t1dcfd375100c4479611f71efb99271d0a3059215\nrelease-0.5.30\t75efe17d7af1adcbd7a5e6ca985801f35800664b\nrelease-0.6.6\t3b05edb2619d5935023b979ee7a9611b61b6c9e5\nrelease-0.5.29\tb0bbf0436b78f643b84befc6fde898ddb32a11d4\nrelease-0.6.5\t80de622646b0059fd4c553eff47c391bf7503b89\nrelease-0.5.28\tea64684856f5dccc9fa1d518371679b1373550dc\nrelease-0.6.4\t13e649b813d6ccba5db33a61e08ebe09d683cd5b\nrelease-0.6.3\tb94731c73d0922f472ff938b9d252ba29020f20c\nrelease-0.6.2\t4882735ebc71eeec0fbfe645bdfdb31306872d82\nrelease-0.5.27\t00cbe770ff75134fb3f93292f0b166d13c33baed\nrelease-0.6.1\t7ac0fe9bec9a2b5f8e191f6fdd6922bfd916a6cb\nrelease-0.5.26\t5d0112d6b1a59cd9466cf74be991c7949c190a37\nrelease-0.6.0\t2aefee4d4ed69eb7567680bf27a2efd212232488\nrelease-0.5.25\t77bf42576050862c268e267ef3e508b145845a25\nrelease-0.5.24\t2d5ef73671f690b65bf6d9e22e7155f68f484d5a\nrelease-0.5.23\tf461a49b6c747e0b67f721f2be172902afea5528\nrelease-0.5.22\t533a252896c4d1cff1586ae42129d610f7497811\nrelease-0.5.21\te9551132f7dd40da5719dd5bcf924c86f1436f85\nrelease-0.5.20\t8e8f6082654aedb4438c8fca408cfc316c7c5a2a\nrelease-0.5.19\t1f81c711d2a039e1f93b9b515065a2235372d455\nrelease-0.5.18\t796a6e30ca9d29504195c10210dbc8deced0ae83\nrelease-0.5.17\td1ffcf84ea1244f659145c36ff28de6fcdf528b2\nrelease-0.5.16\t64854c7c95d04f838585ca08492823000503fa61\nrelease-0.5.15\tcb447039152d85e9145139ff2575a6199b9af9d4\nrelease-0.5.14\t8a730c49f906d783b47e4b44d735efd083936c64\nrelease-0.5.13\tbd796ef5c9c9dd34bfac20261b98685e0410122a\nrelease-0.5.12\t613369e08810f36bbcc9734ef1059a03ccbf5e16\nrelease-0.5.11\tbb491c8197e38ca10ae63b1f1ecb36bf6fdaf950\nrelease-0.5.10\t9eeb585454f3daa30cf768e95c088a092fe229b9\nrelease-0.5.9\t779216610662c3a459935d506f66a9b16b9c9576\nrelease-0.5.8\t7642f45af67d805452df2667486201c36efaff85\nrelease-0.5.7\taed8a9de62456c4b360358bc112ccca32ce02e8d\nrelease-0.5.6\t6d1fcec2ea79101c756316c015f72e75f601a5ab\nrelease-0.5.5\t38cc7bd8e04f2c519fd4526c12841a876be353cb\nrelease-0.5.4\t393dbc659df15ccd411680b5c1ce87ed86d4c144\nrelease-0.5.3\te2ac5fa41bcba14adbbb722d45c083c30c07bb5c\nrelease-0.5.2\t06c58edc88831fb31c492a8eddcf2c6056567f18\nrelease-0.5.1\t13416db8a807e5acb4021bc3c581203de57e2f50\nrelease-0.5.0\t589ee12e8d7c2ae5e4f4676bcc7a1279a76f9e8e\nrelease-0.4.14\t93c94cfa9f78f0a5740595dde4466ec4fba664f8\nrelease-0.4.13\t979045fdcbd20cf7188545c1c589ff240251f890\nrelease-0.4.12\tfd57967d850d2361072c72562d1ed03598473478\nrelease-0.4.11\te372368dadd7b2ecd0182b2f1b11db86fc27b2c3\nrelease-0.4.10\td6f0a00015fdef861fd67fb583b9690638650656\nrelease-0.4.9\td24a717314365c857b9f283d6072c2a427d5e342\nrelease-0.4.8\t0f404f82a1343cb4e4b277a44e3417385798e5e5\nrelease-0.4.7\t119bad43bfd493400c57a05848eada2c35a46810\nrelease-0.4.6\t56e33c6efee7ff63cdc52bd1cf172bde195079df\nrelease-0.4.5\t40266f92b829a870808b3d4ee54c8fccdecbd2d6\nrelease-0.4.4\t5e42c1615f4de0079bd4d8913886d588ce6a295d\nrelease-0.4.3\t39dd0b045441e21512e0a6061a03d0df63414d8b\nrelease-0.4.2\t610267a772c7bf911b499d37f66c21ce8f2ebaf7\nrelease-0.4.1\t8183d4ba50f8500465efb27e66dd23f98775dd21\nrelease-0.4.0\t7e24168b0853ee7e46c9c7b943ef077dc64f17f5\nrelease-0.3.61\tdf95dcff753a6dc5e94257302aea02c18c7a7c87\nrelease-0.3.60\t921a7ce4baf42fd1091b7e40f89c858c6b23053e\nrelease-0.3.59\te924670896abe2769ea0fcfd2058b405bed8e8ec\nrelease-0.3.58\tb80f94fa2197b99db5e033fec92e0426d1fe5026\nrelease-0.3.57\tcec32b3753acf610ac1a6227d14032c1a89d6319\nrelease-0.3.56\t562806624c4afb1687cba83bc1852f5d0fecbac3\nrelease-0.3.55\t63a820b0bc6ca629c8e45a069b52d622ddc27a2d\nrelease-0.3.54\t5fd7a5e990477189c40718c8c3e01002a2c20b81\nrelease-0.3.53\t6d5c1535bb9dcd891c5963971f767421a334a728\nrelease-0.3.52\t9079ee4735aefa98165bb2cb26dee4f58d58c1d7\nrelease-0.3.51\t649c9063d0fda23620eaeaf0f6393be0a672ebe7\nrelease-0.3.50\t400711951595aef7cd2ef865b84b31df52b15782\nrelease-0.3.49\t4c8cd5ae5cc100add5c08c252d991b82b1838c6b\nrelease-0.3.48\t7cbef16c71a1f43a07f8141f02e0135c775f0f5b\nrelease-0.3.47\t39b7d7b33c918d8f4abc86c4075052d8c19da3c7\nrelease-0.3.46\t1e720b0be7ecd92358da8a60944669fa493e78cd\nrelease-0.3.45\t95d7da23ea5315a6e9255ce036ed2c51f091f180\nrelease-0.3.44\t4946078f0a79e6cc952d3e410813aac9b8bda650\nrelease-0.3.43\t947c6fd27699e0199249ad592151f844c8a900b0\nrelease-0.3.42\t5e8fb59c18c19347a5607fb5af075fe1e2925b9a\nrelease-0.3.41\t715d243270806d38be776fc3ed826d97514a73d6\nrelease-0.3.40\te60fe4cf1d4ea3c34be8c49047c712c6d46c1727\nrelease-0.3.39\t18268abd340cb351e0c01b9c44e9f8cc05492364\nrelease-0.3.38\tf971949ffb585d400e0f15508a56232a0f897c80\nrelease-0.3.37\t5d2b8078c1c2593b95ec50acfeeafbefa65be344\nrelease-0.3.36\t65bf042c0b4f39f18a235464c52f980e9fa24f6b\nrelease-0.3.35\t387450de0b4d21652f0b6242a5e26a31e3be8d8c\nrelease-0.3.34\tfbed40ce7cb4fd7203fecc22a617b9ce5b950fb3\nrelease-0.3.33\t0216fd1471f386168545f772836156761eddec08\nrelease-0.3.32\t93e85a79757c49d502e42a1cb8264a0f133b0b00\nrelease-0.3.31\t7a16e281c01f1c7ab3b79c64b43ddb754ea7935e\nrelease-0.3.30\t51b27717f140b71a2e9158807d79da17c888ce4c\nrelease-0.3.29\t5ef026a2ac7481f04154f29ab49377bf99aaf96f\nrelease-0.3.28\tc73c5c58c619c22dd3a5a26c91bb0567a62c6930\nrelease-0.3.27\t3f8a2132b93d66ac19bec006205a304a68524a0b\nrelease-0.3.26\t608cf78b24ef7baaf9705e4715a361f26bb16ba9\nrelease-0.3.25\t77cdfe394a94a625955e7585e09983b3af9b889b\nrelease-0.3.24\t5dac8c7fb71b86aafed8ea352305e7f85759f72e\nrelease-0.3.23\t858700ae46b453ea111b966b6d03f2c21ddcb94e\nrelease-0.3.22\t77f77f53214a0e3a68fef8226c15532b54f2c365\nrelease-0.3.21\t869b6444d2341a587183859d4df736c7f3381169\nrelease-0.3.20\t9262f520ce214d3d5fd7c842891519336ef85ca6\nrelease-0.3.19\tebc68d8ca4962fe3531b7e13444f7ac4395d9c6e\nrelease-0.3.18\t425af804d968f30eeff01e33b808bc2e8c467f2c\nrelease-0.3.17\t8c0cdd81580eb76d774cfc5724de68e7e5cbbdc2\nrelease-0.3.16\td4e858a5751a7fd08e64586795ed7d336011fbc0\nrelease-0.3.15\t284cc140593bb16ac71094acd509ab415ff4837d\nrelease-0.3.14\t401de5a43ba5a8acdb9c52465193c0ea7354afe7\nrelease-0.3.13\t4e296b7d25bf62390ca2afb599e395426b94f785\nrelease-0.3.12\t326634fb9d47912ad94221dc2f8fa4bec424d40c\nrelease-0.3.11\t4c5c2c55975c1152b5ca5d5d55b32d4dd7945f7a\nrelease-0.3.10\t4d9ea73a627a914d364e83e20c58eb1283f4031d\nrelease-0.3.9\tfcd6fc7ff7f9b132c35193d834e6e7d05026c716\nrelease-0.3.8\t58475592100cb792c125101b6d2d898f5adada30\nrelease-0.3.7\t458b6c3fea65a894c99dd429334a77bb164c7e83\nrelease-0.3.6\t174f1e853e1e831b01000aeccfd06a9c8d4d95a2\nrelease-0.3.5\t1af2fcb3be8a63796b6b23a488049c92a6bc12f4\nrelease-0.3.4\t7c1369d37c7eb0017c28ebcaa0778046f5aafdcc\nrelease-0.3.3\t9c2f3ed7a24711d3b42b124d5f831155c8beff95\nrelease-0.3.2\te48ebafc69393fc94fecfdf9997c4179fd1ce473\nrelease-0.3.1\tc1f965ef97188fd7ef81342dcf8719da18c554d2\nrelease-0.3.0\tecd9c160f25b7a7075dd93383d98a0fc8d8c0a41\nrelease-0.2.6\t7bd37aef1e7e87858c12b124e253e98558889b50\nrelease-0.2.5\t45033d85b30e3f12c407b7cfc518d76e0eda0263\nrelease-0.2.4\t483cca23060331f2078b1c2984870d80f288ad41\nrelease-0.2.3\te16a8d574da511622b97d6237d005f40f2cddb30\nrelease-0.2.2\t818fbd4750b99d14d2736212c939855a11b1f1ef\nrelease-0.2.1\t0148586012ab3dde69b394ec5a389d44bb11c869\nrelease-0.2.0\t511a89da35ada16ae806667d699f9610b4f8499a\nrelease-0.1.45\tb09ee85d0ac823e36861491eedfc4dfafe282997\nrelease-0.1.44\t371c1cee100d7a1b0e6cad4d188e05c98a641ee7\nrelease-0.1.43\tc9ad0d9c7d59b2fa2a5fe669f1e88debd03e6c04\nrelease-0.1.42\t563ad09abf5042eb41e8ecaf5b4e6c9deaa42731\nrelease-0.1.41\td6e48c08d718bf5a9e58c20a37e8ae172bff1139\nrelease-0.1.40\tc3bd8cdabb8f73e5600a91f198eb7df6fac65e92\nrelease-0.1.39\te5d7d0334fdb946133c17523c198800142ac9fe9\nrelease-0.1.38\t7fa11e5c6e9612ecff5eb58274cc846ae742d1d2\nrelease-0.1.37\t09b42134ac0c42625340f16628e29690a04f8db5\nrelease-0.1.36\t2019117e6b38cc3e89fe4f56a23b271479c627a6\nrelease-0.1.35\t6f00349b98e5f706b82115c6e4dc84456fc0d770\nrelease-0.1.34\t12234c998d83bfbbaa305273b3dd1b855ca325dc\nrelease-0.1.33\tdadfa78d227027348d7f9d1e7b7093d06ba545a0\nrelease-0.1.32\t417a087c9c4d9abb9b0b9b3f787aff515c43c035\nrelease-0.1.31\tfbbf16224844e7d560c00043e8ade8a560415bba\nrelease-0.1.30\tc12967aadd8726daf2d85e3f3e622d89c42db176\nrelease-0.1.29\t9b8c906f6e63ec2c71cecebfff35819a7d32227d\nrelease-0.1.28\tcd3117ad9aab9c58c6f7e677e551e1adbdeaba54\nrelease-0.1.27\tee66921ecd47a7fa459f70f4a9d660f91f6a1b94\nrelease-0.1.26\tb1648294f6935e993e436fd8a68bca75c74c826d\nrelease-0.1.25\td4ea69372b946dc4ec37fc3f5ddd93ff7c3da675\nrelease-0.1.24\t64d9afb209da0cd4a917202b7b77e51cc23e2229\nrelease-0.1.23\td7c90bb5ce83dab08715e98f9c7b81c7df4b37be\nrelease-0.1.22\tfc9909c369b2b4716304ac8e38da57b8fb781211\nrelease-0.1.21\t975f62e77f0244f1b631f740be77c72c8f2da1de\nrelease-0.1.20\t0f836f0288eee4980f57736d50a7a60fa082d8e9\nrelease-0.1.19\t45a460f82aec80b0f61136aa09f412436d42203a\nrelease-0.1.18\t31ff3e943e1675a2caf745ba7a981244445d4c98\nrelease-0.1.17\t4ebe09b07e3021f1a63b459903ec58f162183b26\nrelease-0.1.16\t621229427cba1b0af417ff2a101fc4f17a7d93c8\nrelease-0.1.15\tfd661d14a7fad212e326a7dad6234ea0de992fbf\nrelease-0.1.14\tc5240858380136a67bec261c59b1532560b57885\nrelease-0.1.13\tad1e9ebf93bb5ae4c748d471fad2de8a0afc4d2a\nrelease-0.1.12\tc3c2848fc081e19aec5ffa97e468ad20ddb81df0\nrelease-0.1.11\t8e8f3af115b5b903b2b8f3335de971f18891246f\nrelease-0.1.10\t31ee1b50354fb829564b81a6f34e8d6ceb2d3f48\nrelease-0.1.9\t2ff194b74f1e60cd04670986973e3b1a6aa3bece\nrelease-0.1.8\tbbd6b0b4a2b15ef8c8f1aaf7b027b6da47303524\nrelease-0.1.7\t5aecc125bc33d81d6214c91d73eb44230a903dde\nrelease-0.1.6\t1f31dc6d33a3a4e65240b08066bf186df9e33b79\nrelease-0.1.5\ta88a3e4e158fade0aaa6f3eb25597d5ced2c1075\nrelease-0.1.4\t0491b909ef7612d8411f1f59054186c1f3471b52\nrelease-0.1.3\tded1284520cc939ad5ae6ddab39925375e64237d\nrelease-0.1.2\t295d97d70c698585705345f1a8f92b02e63d6d0d\nrelease-0.1.1\t23fb87bddda14ce9faec90f774085634106aded4\nrelease-0.1.0\t551102312e19b704cd22bd7254a9444b9ea14e96\n" diff --git a/upstream-info/open-isns.yaml b/upstream-info/open-isns.yaml index 21d4b56a35a5a717e988acaf1ff9d61e061dc9c7..0ff94a34a900207ce9b2a2aedf64de72389be6d0 100644 --- a/upstream-info/open-isns.yaml +++ b/upstream-info/open-isns.yaml @@ -1,4 +1,52 @@ +--- version_control: github -src_repo: open-iscsi/open-isns -tag_prefix: ^v -seperator: . +src_repo: open-iscsi/open-isns +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:42:29.787102980 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/open-iscsi/open-isns/releases/23087516", + "assets_url": "https://api.github.com/repos/open-iscsi/open-isns/releases/23087516/assets", + "upload_url": "https://uploads.github.com/repos/open-iscsi/open-isns/releases/23087516/assets{?name,label}", + "html_url": "https://github.com/open-iscsi/open-isns/releases/tag/v0.100", + "id": 23087516, + "node_id": "MDc6UmVsZWFzZTIzMDg3NTE2", + "tag_name": "v0.100", + "target_commitish": "master", + "name": "Working with IPv6, with new Python-based test suite", + "draft": false, + "author": { + "login": "gonzoleeman", + "id": 1872668, + "node_id": "MDQ6VXNlcjE4NzI2Njg=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1872668?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gonzoleeman", + "html_url": "https://github.com/gonzoleeman", + "followers_url": "https://api.github.com/users/gonzoleeman/followers", + "following_url": "https://api.github.com/users/gonzoleeman/following{/other_user}", + "gists_url": "https://api.github.com/users/gonzoleeman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gonzoleeman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gonzoleeman/subscriptions", + "organizations_url": "https://api.github.com/users/gonzoleeman/orgs", + "repos_url": "https://api.github.com/users/gonzoleeman/repos", + "events_url": "https://api.github.com/users/gonzoleeman/events{/privacy}", + "received_events_url": "https://api.github.com/users/gonzoleeman/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-01-23T21:33:27Z", + "published_at": "2020-01-23T21:44:40Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/open-iscsi/open-isns/tarball/v0.100", + "zipball_url": "https://api.github.com/repos/open-iscsi/open-isns/zipball/v0.100", + "body": "This release incorporates some bug fixes. One was a nasty memory corruption bug introduced recently. Also, IPv6 connections had one bug which was fixed. Lastly, the perl test suite is being replaced by Python3-based tests using the unittest package framework.\r\n\r\nAll test (perl and python) pass, both with and without security enabled. Note that the perl tests are now deprecated and will be removed in a future release." + } + ] +query_type: api.github.releases diff --git a/upstream-info/openblas.yaml b/upstream-info/openblas.yaml deleted file mode 100644 index 650dc784f34145b633496e2ca9f98e051857fb9f..0000000000000000000000000000000000000000 --- a/upstream-info/openblas.yaml +++ /dev/null @@ -1,4 +0,0 @@ -version_control: github -src_repo: xianyi/OpenBLAS/ -tag_prefix: ^v -seperator: . diff --git a/upstream-info/openldap.yaml b/upstream-info/openldap.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d5ff384347c89e0a4d20dbb351c0c966b69e00f3 --- /dev/null +++ b/upstream-info/openldap.yaml @@ -0,0 +1,8 @@ +--- +version_control: git +src_repo: https://git.openldap.org/openldap/openldap.git +tag_prefix: OPENLDAP_REL_ENG_ +seperator: _ +last_query: + time_stamp: 2020-05-20 10:10:09.548668170 +00:00 + raw_data: "198634e945541df095e0155b4cffc6ad637af6e1\trefs/tags/ACLCHECK_0\nb851a1a757c24cf5b1d0497783d1879aabcc4b1d\trefs/tags/AUTOCONF_2_57\n8b2170bcf4a5c85b39840f481dd55064015bd6ad\trefs/tags/FreeBSD_3_3\nbbb28386182e8fe07b59ee3c03f8378f38cb6425\trefs/tags/GTK_TOOL_0_0\ne66aa921027d1a8dfadbba85213a3bfcd3d4118e\trefs/tags/LDAP_3_3+prerelease\n0eac91fcc7affeb68f2dcb5d3e08ed29d53c9e21\trefs/tags/LDBM_POST_GIANT_RWLOCK\n14662be6923878e17b2092e754a0bbc06c634a20\trefs/tags/LDBM_PRE_GIANT_RWLOCK\n56e4e20ebca0ae6459c479de66cd174c10d2d4c6\trefs/tags/LMDB_0.9.15\n5d67c6aed16366ddcfac77eb6a166928a257ab7b\trefs/tags/LMDB_0.9.16\n2011eb37c1a3d390df2336cb2c55843771723a0c\trefs/tags/LMDB_0.9.17\n627c85175007bdd95c87054e4816dcf46ddff75c\trefs/tags/LMDB_0.9.18\nad8488cfac644d7a289e428ab3c403c859d844cb\trefs/tags/LMDB_0.9.18^{}\n14cff072ec29f48093a9d40cc79934cf5376af4a\trefs/tags/LMDB_0.9.19\n60d500206a108b2c64ca7e36b0113b2cd3711b98\trefs/tags/LMDB_0.9.21\nc760e564a0c043ccb69fa8d183bce411cc9476ec\trefs/tags/LMDB_0.9.22\n5033a08c86fb6ef0adddabad327422a1c0c0069a\trefs/tags/LMDB_0.9.22^{}\n8f24bb1b16b565721d27dc3223dff0b91157033d\trefs/tags/LMDB_0.9.23\n2a5eaad6919ce6941dec4f0d5cce370707a00ba7\trefs/tags/LMDB_0.9.23^{}\n0c357cc88a00bda03aa4a982fc227a5872707df2\trefs/tags/LMDB_0.9.24\nbe509acd4a5cccdc6e6a5c011fd415f068e3deed\trefs/tags/LMDB_0.9.25\n6a1af27ff252f5a1b350fbb52b26275fee8ef605\trefs/tags/LMDB_0.9.25^{}\nc97ef0a708304ad49f61dabe8d9999782a6af55f\trefs/tags/LOCKER_IDS\na9be06f39c5f1c19601680b65659f5a382cb0b8f\trefs/tags/MIGRATION_CVS2GIT\ne8e711018f90154207fdb37008f3bfa22e52e04c\trefs/tags/MIGRATION_CVS2GIT^{}\n9ac14af0515575794114517fcd88fe053488ad0d\trefs/tags/NO_SLAP_OP_BLOCKS\n05b81e623d6dd3915bda483fdffdc53536f28fc6\trefs/tags/OPENDLAP_REL_ENG_2_2_MP\ne93c8f18d4a4240a3f22265a1475fd09178589a2\trefs/tags/OPENLDAP_AC_BP\n5c5209f9735a607791a39ff3fe8b0c658e58f9b6\trefs/tags/OPENLDAP_REL_ENG_1_0_0\n7772d8727623a1ed32b987ef2863a4beb5255804\trefs/tags/OPENLDAP_REL_ENG_1_0_1\na09d7c3887eb6a5dc9cac52ca97ddaad6410b12a\trefs/tags/OPENLDAP_REL_ENG_1_0_2\nc6c4aaa18f7b6acec7f4ad7ab3e8698ab58087c1\trefs/tags/OPENLDAP_REL_ENG_1_0_3\n729fb83dd80bc7e2456455427af21e9db9bf66e7\trefs/tags/OPENLDAP_REL_ENG_1_1_0\nf10a98612d15448c9dd694706c076cb956792344\trefs/tags/OPENLDAP_REL_ENG_1_1_1\nabbcc73794ed138a49630ccf86d8b404c3f7c71e\trefs/tags/OPENLDAP_REL_ENG_1_1_2\n0bc3cd6f3a959f5b1cc685b57b480c7a32fc8f87\trefs/tags/OPENLDAP_REL_ENG_1_1_3\n40242fee4682cf74592ace9e92ea258fe56d97cf\trefs/tags/OPENLDAP_REL_ENG_1_1_4\nbac82ea3e4e96572d6c5d20b7af6706a06e2a9fb\trefs/tags/OPENLDAP_REL_ENG_1_1_ALPHA\nd5a626774716e5d93bc7f49210d53e8355b5c541\trefs/tags/OPENLDAP_REL_ENG_1_1_ALPHA2\n0f29dfddfa2c269255ae5c15609132b2c46019da\trefs/tags/OPENLDAP_REL_ENG_1_1_ALPHA3\n463f4f97b5cdff36d5b9133f79f1388e0935fdc2\trefs/tags/OPENLDAP_REL_ENG_1_1_BETA\n398893e60976fa926af7241cfe9c9e3e0e0839f0\trefs/tags/OPENLDAP_REL_ENG_1_2_0\n015c019f62cf9011ebccfb6b007c905f001bb204\trefs/tags/OPENLDAP_REL_ENG_1_2_1\n0e96b390b02d332b71f162fa682d0c863de4753b\trefs/tags/OPENLDAP_REL_ENG_1_2_10\n3cf98c272404e9556720c310902a6c55c6ab8ee3\trefs/tags/OPENLDAP_REL_ENG_1_2_11\n1327aa262063ac836eb37553f0784ebb34f2c2a2\trefs/tags/OPENLDAP_REL_ENG_1_2_12\n9a0b7afafb6f0021966a2372167ffa4f74021acd\trefs/tags/OPENLDAP_REL_ENG_1_2_13\nf9b108c3fc6ec54068853703d60c99f76ef4f02b\trefs/tags/OPENLDAP_REL_ENG_1_2_2\ne5f36ffdce72edca6ae6ba6a0e616891d14e167c\trefs/tags/OPENLDAP_REL_ENG_1_2_3\nea6ca18c7131b318ee342813bb27db3ba3529cdf\trefs/tags/OPENLDAP_REL_ENG_1_2_4\nfcca9948307249c5d308fe188f307e5b9592440a\trefs/tags/OPENLDAP_REL_ENG_1_2_5\n8d54b312247b9aae6b3a55a691ee8ef8fc042cfb\trefs/tags/OPENLDAP_REL_ENG_1_2_6\nd09b2fd158346f1c9d263705e85d6857f21ad231\trefs/tags/OPENLDAP_REL_ENG_1_2_7\nc0e6911deabed72ff743643b84423cc9634d93d6\trefs/tags/OPENLDAP_REL_ENG_1_2_8\n1ca3c43cdb719dd180b8a161e1f2073c0fd03b62\trefs/tags/OPENLDAP_REL_ENG_1_2_9\n39f93be77bc637f5fad7cd43f02be938e5c33f47\trefs/tags/OPENLDAP_REL_ENG_1_2_BETA\nfe8a50510b2f9b596be32047d803638a49baf7f7\trefs/tags/OPENLDAP_REL_ENG_1_2_BETA2\n060a5440efd3c03246d95515dc6f2004503876c4\trefs/tags/OPENLDAP_REL_ENG_2_0_0\nd20aed3ad6a62cd867fff0cdd6f57d948871a99e\trefs/tags/OPENLDAP_REL_ENG_2_0_1\n5926fbaa2d171a62a912d618a5ead352f10d76c3\trefs/tags/OPENLDAP_REL_ENG_2_0_10\n95db7a27c6b5c990bef1bdf8072bb8141bc613db\trefs/tags/OPENLDAP_REL_ENG_2_0_11\n63791721eb8c2489d20a84de4eb8a1e194ed06f8\trefs/tags/OPENLDAP_REL_ENG_2_0_12\n3c7b4d0473df84f3ba5e217c069861615d9450fe\trefs/tags/OPENLDAP_REL_ENG_2_0_13\n14f3a863f684ef68075270c33e4e6abf9577dc9d\trefs/tags/OPENLDAP_REL_ENG_2_0_14\n724f89c66ac1456207779c5db8672cbc529e0e2d\trefs/tags/OPENLDAP_REL_ENG_2_0_15\nbb414370d56ebc1f3795c676c52f6a663d71b7fa\trefs/tags/OPENLDAP_REL_ENG_2_0_16\n13bdb1ea8f184255998cf83eef4170a8a92c48af\trefs/tags/OPENLDAP_REL_ENG_2_0_17\n92281da32451e429c9c246731cab19a05a82857f\trefs/tags/OPENLDAP_REL_ENG_2_0_18\n4e4e8c0f2034cc7dbccca464dbcc4b5de6087530\trefs/tags/OPENLDAP_REL_ENG_2_0_19\n922c0637ca6255df2d1ee5ae91ded07af6a33e28\trefs/tags/OPENLDAP_REL_ENG_2_0_2\nb57910c0ceb6253c2bd334114e0ad0f353581ad7\trefs/tags/OPENLDAP_REL_ENG_2_0_20\nc3902cd0a4408e973aa2a11bb85755f2f528c1ae\trefs/tags/OPENLDAP_REL_ENG_2_0_21\nbfa0f7fa10efb68acda454566a86b0a6fa2d1918\trefs/tags/OPENLDAP_REL_ENG_2_0_22\n46fd6986d0162d8f7815429e8167f8752f5c92bf\trefs/tags/OPENLDAP_REL_ENG_2_0_23\n8de3617717059d4c4ad9d4a9ab9902ac07e85849\trefs/tags/OPENLDAP_REL_ENG_2_0_24\n564e6661267e6c6faedbcd275024380a1736a92e\trefs/tags/OPENLDAP_REL_ENG_2_0_25\n5562857f6885277af6a984f30cedeac7219eccd2\trefs/tags/OPENLDAP_REL_ENG_2_0_26\n0f17b657bd0313af2f69acde8faf06f258cc6bcc\trefs/tags/OPENLDAP_REL_ENG_2_0_27\nb2225f06f85c8ba10f58702bec0eed648b970f9b\trefs/tags/OPENLDAP_REL_ENG_2_0_3\n44bdf8445329516efcad75ce530fed0f8762a5c2\trefs/tags/OPENLDAP_REL_ENG_2_0_4\n24d44abbed904753144e33a70660336abdc69928\trefs/tags/OPENLDAP_REL_ENG_2_0_5\n7311bbb77ac92bcc1d60725918a5887a5995bc9e\trefs/tags/OPENLDAP_REL_ENG_2_0_6\nba321521e07a7cc26439b3886d2eee704b4519ee\trefs/tags/OPENLDAP_REL_ENG_2_0_7\n6028c8fd990076cbf1785ff68306d4f35f8aadef\trefs/tags/OPENLDAP_REL_ENG_2_0_8\n847cc4813fa98649ddecdd9580bf82f2b5ad38ce\trefs/tags/OPENLDAP_REL_ENG_2_0_9\nd5d07b70d9b84bdf5e95832f541012a318841273\trefs/tags/OPENLDAP_REL_ENG_2_0_ALPHA\n41595ab9e0694e5dddec14104bfb8fa324621763\trefs/tags/OPENLDAP_REL_ENG_2_0_ALPHA2\n6ed2b1af0362dcfe650824342f6cb2f61273a485\trefs/tags/OPENLDAP_REL_ENG_2_0_ALPHA3\n0f6d8abff6ea16a37d1550f630f527342bf0d2e5\trefs/tags/OPENLDAP_REL_ENG_2_0_ALPHA4\nf7c7092a9f655ccc629e561040e2b7d9f622d658\trefs/tags/OPENLDAP_REL_ENG_2_0_BETA\n9794f9fbe87267e8323c44a260abd2656d1652e7\trefs/tags/OPENLDAP_REL_ENG_2_0_GAMMA\n5f0e05238a8b4159466839ac890b53a922d5045d\trefs/tags/OPENLDAP_REL_ENG_2_1_10\naddaab9e686b19afc80d39443dba8be028ac3322\trefs/tags/OPENLDAP_REL_ENG_2_1_11\n2d6cad4056ca1b30b1da60adb5eebda0a3d7016a\trefs/tags/OPENLDAP_REL_ENG_2_1_12\nceec30ac39fd0ce43354ff95954b0b4a044f7c21\trefs/tags/OPENLDAP_REL_ENG_2_1_13\nf6084af3f514c51affcfe3fb99a6bff62ff98972\trefs/tags/OPENLDAP_REL_ENG_2_1_14\n92ca1b796a3ab6e49229194d6daf6114183fff50\trefs/tags/OPENLDAP_REL_ENG_2_1_15\n4b3bb050b69468def6d3c8877962b31ec59da763\trefs/tags/OPENLDAP_REL_ENG_2_1_16\nb0f7958dff26ccb25f4ec1cc57e6455d5d602d83\trefs/tags/OPENLDAP_REL_ENG_2_1_17\ncee5f9d801ddaad91a97eeb8b6e3045ac4f1c2d1\trefs/tags/OPENLDAP_REL_ENG_2_1_18\nebb4534d4b3eafecae62c19044ddaab86d9dea09\trefs/tags/OPENLDAP_REL_ENG_2_1_19\nc12f50b8ac48d2686615d1c5c9284a8a7a91e644\trefs/tags/OPENLDAP_REL_ENG_2_1_2\nc98b53340f44e1d8e9aa4749a20fe3a86b79118e\trefs/tags/OPENLDAP_REL_ENG_2_1_20\n313aefdd63d5c31b59a9ba54d3df94932ffd247f\trefs/tags/OPENLDAP_REL_ENG_2_1_21\nb4b88cd56272c27556cc03890babeebf0da09674\trefs/tags/OPENLDAP_REL_ENG_2_1_22\nef11f5b589b51c84072335c0d3703a379bda1bef\trefs/tags/OPENLDAP_REL_ENG_2_1_23\n8edbc888397f1640658a66bd2806af49c2212e02\trefs/tags/OPENLDAP_REL_ENG_2_1_24\n5cdce96d57bd25189dc56761603c80c6cced74b2\trefs/tags/OPENLDAP_REL_ENG_2_1_25\n7acb7b6b3fee9d45645121827abde785f8beecb1\trefs/tags/OPENLDAP_REL_ENG_2_1_26\n7a2bee33114a6132a3e9c37a8b1dfb1555f2cabc\trefs/tags/OPENLDAP_REL_ENG_2_1_27\neeb100ef30b0281c320f85a6c9b2bb04df3d8b91\trefs/tags/OPENLDAP_REL_ENG_2_1_28\n6b05ae88139b8f953f277e813120c943ad39c92a\trefs/tags/OPENLDAP_REL_ENG_2_1_29\nfbe9dce862563798779814c8363793d34f11c864\trefs/tags/OPENLDAP_REL_ENG_2_1_3\n6b62c4ad6675dbc045e50e28f2de2a5524220bc2\trefs/tags/OPENLDAP_REL_ENG_2_1_30\n95fb82311e2ec230382c1ca7d271337dce90a89e\trefs/tags/OPENLDAP_REL_ENG_2_1_4\n716ab9ad206356b4f3fdde0b569816603de22203\trefs/tags/OPENLDAP_REL_ENG_2_1_5\n30328b17ba12ec796b4fea03c5a1a791837977fd\trefs/tags/OPENLDAP_REL_ENG_2_1_6\n6548030517d9358a946861daaa751d7e4adf4262\trefs/tags/OPENLDAP_REL_ENG_2_1_7\n64e711f9533d43a9fee212cdd94fa6b631e816f9\trefs/tags/OPENLDAP_REL_ENG_2_1_8\n0d9ca77f4e0d4149a7e0a13f2f65d03300d480d1\trefs/tags/OPENLDAP_REL_ENG_2_1_9\n7b89df995aa12898aa963733447f57a9cc59d244\trefs/tags/OPENLDAP_REL_ENG_2_1_ALPHA0\nf7419e1c2e7c16ea27d92dcf81e546a4299e6f80\trefs/tags/OPENLDAP_REL_ENG_2_1_BETA1\nf9902a32b4db8993274d614fa56773147955010c\trefs/tags/OPENLDAP_REL_ENG_2_1_BP\n95b74beed8577df92f6489380c20a44020241c4a\trefs/tags/OPENLDAP_REL_ENG_2_1_MP\n588be01590c4c82790bd3a6b340536f921cc7cbb\trefs/tags/OPENLDAP_REL_ENG_2_2_0ALPHA\n001594d5adf13599eb6cad25bdb8a9a40297eca6\trefs/tags/OPENLDAP_REL_ENG_2_2_10\n313b6b8583e782967b3324fe9c7c5e715f54f0ca\trefs/tags/OPENLDAP_REL_ENG_2_2_11\nd916bc18154431b9bb691934299eb60f12e79b50\trefs/tags/OPENLDAP_REL_ENG_2_2_12\nf93214f181c07d05dac10ad35edc39e58bc7b0c7\trefs/tags/OPENLDAP_REL_ENG_2_2_13\ndb2b04311b891395b0d827d3ffe52283fb353672\trefs/tags/OPENLDAP_REL_ENG_2_2_14\n6c5c4741a50df688092ad0ad8ac4124141a283aa\trefs/tags/OPENLDAP_REL_ENG_2_2_15\nac12a5643501876222791def6e223ec6edb07e49\trefs/tags/OPENLDAP_REL_ENG_2_2_16\n2d1303fffbce42ee30ae426deac868a2dc4a8d10\trefs/tags/OPENLDAP_REL_ENG_2_2_17\nb32d83ad6632a981f182c9bea206ed509c0aac99\trefs/tags/OPENLDAP_REL_ENG_2_2_18\n1ada877cb10019193b2baca2aaf2b908e44dbc44\trefs/tags/OPENLDAP_REL_ENG_2_2_19\nd4037c97e5b412356a0f9dbb47a375b111876f23\trefs/tags/OPENLDAP_REL_ENG_2_2_1BETA\n8ce039fb4c75f3a96261700f252c60bd9ca267fe\trefs/tags/OPENLDAP_REL_ENG_2_2_20\ne47d233ef540c692aee4870db134f0c50d2993e2\trefs/tags/OPENLDAP_REL_ENG_2_2_21\n6fc546622693f38672a9def849c91257ab28f2f9\trefs/tags/OPENLDAP_REL_ENG_2_2_22\n5044f97d512ca99c0a2ae97079c383e779e638f6\trefs/tags/OPENLDAP_REL_ENG_2_2_23\n4cc18f942b91c2bdc3d1db7041dbefb5d0be7c08\trefs/tags/OPENLDAP_REL_ENG_2_2_24\n1573d9e10c4e7f0ee1ff5a8977b45caef43b6aba\trefs/tags/OPENLDAP_REL_ENG_2_2_25\n39893f04b767ece35405191120ad83911a87b7fa\trefs/tags/OPENLDAP_REL_ENG_2_2_26\n46d4edab1850d8d619c14da81e91705a95284285\trefs/tags/OPENLDAP_REL_ENG_2_2_27\n83e5ac9bb9c42be9125ee2865df70eec59ee4b5f\trefs/tags/OPENLDAP_REL_ENG_2_2_28\n560024338824e39c99b36ea81eb7a6aa21406c3c\trefs/tags/OPENLDAP_REL_ENG_2_2_29\nee04cef20c1e92f735ab1fe0dd368b820a706df8\trefs/tags/OPENLDAP_REL_ENG_2_2_2BETA\nd94e71c5f0cba882f8ac56e713115ee6a544f0d0\trefs/tags/OPENLDAP_REL_ENG_2_2_30\nea3b2312f2644e0b445ca2624914ada931fba072\trefs/tags/OPENLDAP_REL_ENG_2_2_3BETA\nbc117a9e40013b46678a259e38811c9024940ef4\trefs/tags/OPENLDAP_REL_ENG_2_2_4\n7c15c02a5ca1b2dda218ee332b9150f26cd2b3c9\trefs/tags/OPENLDAP_REL_ENG_2_2_5\nbd3a136a962b22a9865fdabaf13e04ff40259fd6\trefs/tags/OPENLDAP_REL_ENG_2_2_6\n5213f1462e59f8c9739423348be7ac01005804bd\trefs/tags/OPENLDAP_REL_ENG_2_2_7\na36e08c889b1ca2c6056a6090b4ee5073fdb227f\trefs/tags/OPENLDAP_REL_ENG_2_2_8\nf4e042e22f52457076d7f1376a8bf80389da68a8\trefs/tags/OPENLDAP_REL_ENG_2_2_9\na479b3b119c4f876f1f97c20a7763dcd2e024ad4\trefs/tags/OPENLDAP_REL_ENG_2_2_BP\n86fc534c8fe8a24819d18d51a708b7e0bbb089db\trefs/tags/OPENLDAP_REL_ENG_2_2_MP\ncc3bd5cca00b5aa86d2f4c116f07f0191b1ced72\trefs/tags/OPENLDAP_REL_ENG_2_3_0ALPHA\nb3c6ffadc11c7022d39f3cc2788b44f9b97494b3\trefs/tags/OPENLDAP_REL_ENG_2_3_10\n9b153ce3b4d757b92688dda6ddf58b124756c9e1\trefs/tags/OPENLDAP_REL_ENG_2_3_11\n35c5469f53614818d0f5ea2adbfa00b699f91f15\trefs/tags/OPENLDAP_REL_ENG_2_3_12\nade76f3af5cb96a6f891e4f8a6edd22eca13b951\trefs/tags/OPENLDAP_REL_ENG_2_3_13\n256c4037666924fa7940a4b9fc1ca81f48e185ec\trefs/tags/OPENLDAP_REL_ENG_2_3_14\ndccdfa26c1642cb3ff7a417d5e3e85e018f9f5c2\trefs/tags/OPENLDAP_REL_ENG_2_3_15\nd9b5c1b350c23970c7d2df0fcb141a99fd9af4ff\trefs/tags/OPENLDAP_REL_ENG_2_3_16\n0112190a4b35526b681c3dd4b1906a4774461856\trefs/tags/OPENLDAP_REL_ENG_2_3_17\n02fda911663a689329fba93016e7ad68b5255f06\trefs/tags/OPENLDAP_REL_ENG_2_3_18\ncdd7112624dd87d3e371f332b46f05fa179d8ac8\trefs/tags/OPENLDAP_REL_ENG_2_3_19\n7d101bcd9801fcfcc67fb0b20a3dd4127a3a4cdc\trefs/tags/OPENLDAP_REL_ENG_2_3_1ALPHA\ndeedb3aab98e2508c96dbfa18ce7d849d8eef513\trefs/tags/OPENLDAP_REL_ENG_2_3_20\n2fbbdaf770668078f7d5584b6d55c8f4b9b73d76\trefs/tags/OPENLDAP_REL_ENG_2_3_21\n3ccd4fe74646edda63c3741409f278924571fbba\trefs/tags/OPENLDAP_REL_ENG_2_3_22\n2d1930a43b94a0c185170b2ab9dd93475f981fa7\trefs/tags/OPENLDAP_REL_ENG_2_3_23\n1a90f5a9d5eb3c6d7c77de8a5df7b553a078e0c3\trefs/tags/OPENLDAP_REL_ENG_2_3_24\nc4ac8c2e6a74364b61e634f04cf2642f218d3c30\trefs/tags/OPENLDAP_REL_ENG_2_3_25\nb84eb0f4ebb7ec7eb5512435b4af5bbfa48c6481\trefs/tags/OPENLDAP_REL_ENG_2_3_26\ne9c9c2c4d9750b784d2f83a83bfb3ad3af15bb86\trefs/tags/OPENLDAP_REL_ENG_2_3_27\nec7c5cf83147545ad409a103113f61cca02f7a00\trefs/tags/OPENLDAP_REL_ENG_2_3_28\nb7cd8e108787dc1cac73090c464019f03e4e3be8\trefs/tags/OPENLDAP_REL_ENG_2_3_29\nff8fcc3bdfc0310c22dc37c0b85ba6fed3d3f557\trefs/tags/OPENLDAP_REL_ENG_2_3_2BETA\n24f3f7d6a0ffb62c9895f755c078b5dfa6905121\trefs/tags/OPENLDAP_REL_ENG_2_3_30\nae8b5598b109146b25f73734fe5e5eedaffd2646\trefs/tags/OPENLDAP_REL_ENG_2_3_31\na253df3100e1c0e99a223d643a3ab62ed8bda4c2\trefs/tags/OPENLDAP_REL_ENG_2_3_32\n64e221ed51a44360fe827866c8ed58354c8ba128\trefs/tags/OPENLDAP_REL_ENG_2_3_33\n05e5cb551874f28c2d48d92f4f465445a68fd176\trefs/tags/OPENLDAP_REL_ENG_2_3_34\n27025329f7b15ded49ac1bf2b9b8440bab9deea4\trefs/tags/OPENLDAP_REL_ENG_2_3_35\na000e4ed2e84fa8c19d1b04bf638028f3dfdf9d7\trefs/tags/OPENLDAP_REL_ENG_2_3_36\n8afda13008a3ce114ef58627c397139eac6c675e\trefs/tags/OPENLDAP_REL_ENG_2_3_37\na1292023d3542a6772450730026688c18e07fec6\trefs/tags/OPENLDAP_REL_ENG_2_3_38\n3911e937ef2cfa7206510344124adb59f86196b0\trefs/tags/OPENLDAP_REL_ENG_2_3_39\n53314000206349386dbc1ce35bff2297a38c6b0a\trefs/tags/OPENLDAP_REL_ENG_2_3_3BETA\nc1b415ce4b7a9bf444aed08cd4dc24d7d0c90a02\trefs/tags/OPENLDAP_REL_ENG_2_3_4\n85f0e7f716049ad81b8318a2d9eb64cd1f072a44\trefs/tags/OPENLDAP_REL_ENG_2_3_40\n5246dc5259b4117912eecd8e42402c749a581760\trefs/tags/OPENLDAP_REL_ENG_2_3_41\n160390ebc3ca38568a578645600d205c2d5d6d84\trefs/tags/OPENLDAP_REL_ENG_2_3_42\n41085dd7aebcf039c1ae65767f034463569e3526\trefs/tags/OPENLDAP_REL_ENG_2_3_43\nb44965810b3502a3a592f0cb43c33db2142c6aa7\trefs/tags/OPENLDAP_REL_ENG_2_3_5\n1d33fc497913473ccc94999b3c15592b2fc9e50a\trefs/tags/OPENLDAP_REL_ENG_2_3_6\n1dff9049f9b4788883e9b3820763483d01875fb3\trefs/tags/OPENLDAP_REL_ENG_2_3_7\n11cafd1e0bf44ab4639a852fe6f3a309a987bc25\trefs/tags/OPENLDAP_REL_ENG_2_3_8\n21698f6ed499486c6fa13ded8b6e2d065cd73d00\trefs/tags/OPENLDAP_REL_ENG_2_3_9\n58def8dd292aed83d8c71005c4e3c56851c86fba\trefs/tags/OPENLDAP_REL_ENG_2_3_BP\n6078dbef3c4b945530f1a88ddcb7f2d877bb84d4\trefs/tags/OPENLDAP_REL_ENG_2_3_MP\na5cbf490a9e79eae0a411c481e4d67abcd279579\trefs/tags/OPENLDAP_REL_ENG_2_4_0ALPHA\n889d49d7579756a5e3aa6b708db544c70a9f744e\trefs/tags/OPENLDAP_REL_ENG_2_4_10\n34c0109cd9cd3af51469d175db67ec222181ba2f\trefs/tags/OPENLDAP_REL_ENG_2_4_11\n3628ba623a0c9a68efab37e4d204e3aba8af122c\trefs/tags/OPENLDAP_REL_ENG_2_4_12\ncc5a2f1bb44de6347588a0ade4cf874941fced44\trefs/tags/OPENLDAP_REL_ENG_2_4_13\n382ca68416b5f7cd8ffe5f4ddafb3a12705c583c\trefs/tags/OPENLDAP_REL_ENG_2_4_14\n18b99255f1c0b1072e3fe6e387b8da49252afdf7\trefs/tags/OPENLDAP_REL_ENG_2_4_15\n38b79edeb54c324eaa480235120b6aa9989b6c1d\trefs/tags/OPENLDAP_REL_ENG_2_4_16\ne9c96a83d4856b9db2db5143e0edfe6928f645bd\trefs/tags/OPENLDAP_REL_ENG_2_4_17\nef4e1b331d498d2b5f5ec85f9158e6e0681b3923\trefs/tags/OPENLDAP_REL_ENG_2_4_18\n738bdabea763f41b7aca547af74d3e5eabce20fd\trefs/tags/OPENLDAP_REL_ENG_2_4_19\nccfcc642bf2e3ac990b9d3f223f15277deb0175d\trefs/tags/OPENLDAP_REL_ENG_2_4_1ALPHA\nf707e82c70a57bfacd530372bebf5267ea299021\trefs/tags/OPENLDAP_REL_ENG_2_4_20\n895ec95fe1f4dd26f1fe5eff2f93106c0d8fd843\trefs/tags/OPENLDAP_REL_ENG_2_4_21\n70792ad7a9fa962c98580f3a4c2a71d0aee982c0\trefs/tags/OPENLDAP_REL_ENG_2_4_22\n793d97d1b72acb15d33d13a4e24e1e8aece087c4\trefs/tags/OPENLDAP_REL_ENG_2_4_23\n7da0807e0611e698ccdb80fbeaa50eaa1d25be4a\trefs/tags/OPENLDAP_REL_ENG_2_4_24\na4197631a3964def8ee393994e11d8b262d19901\trefs/tags/OPENLDAP_REL_ENG_2_4_25\n614dd1741550beebfd51be3628630b0f2bef16e7\trefs/tags/OPENLDAP_REL_ENG_2_4_26\n4f782acaad1dd25d11de6ce93276c0001d3a2fbc\trefs/tags/OPENLDAP_REL_ENG_2_4_26^{}\nb6443c2ad352814496a532a721696a4b72690ecf\trefs/tags/OPENLDAP_REL_ENG_2_4_27\n65a49595f563573f91da936ea27f5eaf6b21a48d\trefs/tags/OPENLDAP_REL_ENG_2_4_27^{}\n9be1b2d98f8005ee771b75049559428eb73b472b\trefs/tags/OPENLDAP_REL_ENG_2_4_28\n0087592c0b062e09d18c5405507d6b9dc72f1903\trefs/tags/OPENLDAP_REL_ENG_2_4_28^{}\n5a873fb1163ad8f9b4690f5c2154ee9e178fa51e\trefs/tags/OPENLDAP_REL_ENG_2_4_29\n7b484b4014f5c98fa8dd91ee5445d2058165fadc\trefs/tags/OPENLDAP_REL_ENG_2_4_29^{}\n4d4f581d400476bbfed6659d837e86561261941f\trefs/tags/OPENLDAP_REL_ENG_2_4_2ALPHA\n5182287069ddf6b4bfb9f8e762af952c25532598\trefs/tags/OPENLDAP_REL_ENG_2_4_30\n5561a6e913b19bb07d7b64d01718da9508453cf6\trefs/tags/OPENLDAP_REL_ENG_2_4_30^{}\n977ec9bf1977e276242dded16095557e33aa1a7d\trefs/tags/OPENLDAP_REL_ENG_2_4_31\n94630a3ce66149d4d779658065ac6df45987c6c3\trefs/tags/OPENLDAP_REL_ENG_2_4_32\nf42e2e2a07a0e63857e3a7aefb3383d4d2f6977d\trefs/tags/OPENLDAP_REL_ENG_2_4_33\na54957bf558b331cf10e51d644934c5f7721e512\trefs/tags/OPENLDAP_REL_ENG_2_4_33^{}\nec513df936d1a5fde5585c26e7438ce93688e63a\trefs/tags/OPENLDAP_REL_ENG_2_4_34\neb55a3682592074b1b3df99d7d66cba5aaf93322\trefs/tags/OPENLDAP_REL_ENG_2_4_34^{}\n7ead52fcc0669c9e7efdf74ab62be63882ca8aa3\trefs/tags/OPENLDAP_REL_ENG_2_4_35\n45c7e4135a168a157d6baf43bdc6adaeaeeac1c6\trefs/tags/OPENLDAP_REL_ENG_2_4_35^{}\n177287bd34f07149425ffe980813d7e63e520a11\trefs/tags/OPENLDAP_REL_ENG_2_4_36\nc8c7002e289a7934db8e70143053b5796fbef9a6\trefs/tags/OPENLDAP_REL_ENG_2_4_36^{}\n9f6ceba9fd89acac6d1bfd0c46367cd9b30e127b\trefs/tags/OPENLDAP_REL_ENG_2_4_37\ne7b08140d07f51cd3f5f3161a3ce81de9f89209c\trefs/tags/OPENLDAP_REL_ENG_2_4_37^{}\nfc0c3e0674a8aa332b5de0c92934789290c32ceb\trefs/tags/OPENLDAP_REL_ENG_2_4_38\n33ab5a845b7825bdb6c7bdb29f7db81be6f1b0b7\trefs/tags/OPENLDAP_REL_ENG_2_4_38^{}\n391c38edbb586ddcc02dab470205b914004f17f7\trefs/tags/OPENLDAP_REL_ENG_2_4_39\n6bfa8256161618e62e56d139243aa234b3ece875\trefs/tags/OPENLDAP_REL_ENG_2_4_39^{}\nc987115c35cf97aa6cf03eb921ed59bf6cc904ed\trefs/tags/OPENLDAP_REL_ENG_2_4_3ALPHA\n67c54cd61c650f32be217487acff22da1c940102\trefs/tags/OPENLDAP_REL_ENG_2_4_40\ne648bdc22cd654d371a224a88973f986f67ba499\trefs/tags/OPENLDAP_REL_ENG_2_4_40^{}\na3da23644a3356000866d06ca73dcc2708c37219\trefs/tags/OPENLDAP_REL_ENG_2_4_41\nb0e621964928b93abab300eff9c5f6ace595a833\trefs/tags/OPENLDAP_REL_ENG_2_4_41^{}\nbbf096e3ec9af997f66140edcfd603f053fccadb\trefs/tags/OPENLDAP_REL_ENG_2_4_42\n2c705e47a38025c99a9b3cebb38b8b09a804c5c5\trefs/tags/OPENLDAP_REL_ENG_2_4_42^{}\n09bf5a1f86db29734459ef0d028835a29fb0acbf\trefs/tags/OPENLDAP_REL_ENG_2_4_43\n2e3d6c6ec2c259b5229e9be81ab104e9a8d1a349\trefs/tags/OPENLDAP_REL_ENG_2_4_43^{}\n9a266da29f85d708764dfdc5b9f78b5e77497983\trefs/tags/OPENLDAP_REL_ENG_2_4_44\nd690e90fec0ecba6e9eb47bfc7ef8e311dce9eac\trefs/tags/OPENLDAP_REL_ENG_2_4_44^{}\n6598f01041644fc7a41810fab840b2b141ea1173\trefs/tags/OPENLDAP_REL_ENG_2_4_45\n40421915e08ed1a10b5703973116705a94190ab0\trefs/tags/OPENLDAP_REL_ENG_2_4_45^{}\n362b3950ba85f9a3930b480570799507778365b3\trefs/tags/OPENLDAP_REL_ENG_2_4_46\n1c9416493bd219b08d839cd9e93fc64daa89b752\trefs/tags/OPENLDAP_REL_ENG_2_4_46^{}\n08792f4857ee20c596f9f4204ec0c94af6d94777\trefs/tags/OPENLDAP_REL_ENG_2_4_47\ne736c44a7c6a83bb03e52fa9c7dbddb71bf9eeaf\trefs/tags/OPENLDAP_REL_ENG_2_4_47^{}\n1b5e1449011f1e49da451b8a63bb3c49874db29f\trefs/tags/OPENLDAP_REL_ENG_2_4_48\n1f25fbc9b92823540db460b7618988d3feafbc50\trefs/tags/OPENLDAP_REL_ENG_2_4_48^{}\n94b8121865052b83366aafc1c2324ed09cdcbb4c\trefs/tags/OPENLDAP_REL_ENG_2_4_49\n19c9a12634d6342444c7ef96bc6f651adcdf3d0b\trefs/tags/OPENLDAP_REL_ENG_2_4_49^{}\nd5e52ce49256fe100df06c35d5d6414f7c39428a\trefs/tags/OPENLDAP_REL_ENG_2_4_4ALPHA\nb2eb32f717cf3307843202444c9433da87e9fa9b\trefs/tags/OPENLDAP_REL_ENG_2_4_50\n733124b32fc4798384f06e16098229ff7b721d0e\trefs/tags/OPENLDAP_REL_ENG_2_4_50^{}\nac3554cb29190d1fda3945631f4e4270683bccc8\trefs/tags/OPENLDAP_REL_ENG_2_4_5BETA\n4573300c7397ecf9c43fcba44bbd86c6b9b2d63e\trefs/tags/OPENLDAP_REL_ENG_2_4_6\n36714384ce532531416a00d338af3bc0cd13fa04\trefs/tags/OPENLDAP_REL_ENG_2_4_7\n55ea57edc1818c94773241392013462aea6725ce\trefs/tags/OPENLDAP_REL_ENG_2_4_8\n5c958c5259dfc301f426254d5e4a83db9e6a544d\trefs/tags/OPENLDAP_REL_ENG_2_4_9\nb03d8abcdeb6201bbd656838c24a74e40c64f273\trefs/tags/OPENLDAP_REL_ENG_2_4_BP\nc73520ec083543fdda1d85efaa0389a31606bb9c\trefs/tags/OPENLDAP_REL_ENG_2_4_MP\n428faea410451453a642143ffbfac3ca82695260\trefs/tags/OPENLDAP_REL_ENG_2_BP\nfe86a81e251bda73f04841f765b2a93ac0354396\trefs/tags/OPENLDAP_REL_ENG_2_MP\n967d1dcb2dd35c0977118fe12e544815d5a701ed\trefs/tags/OPENLDAP_SLAPD_BACK_LDAP\na638506bd55b6963aaa1dba3d489e7d8c7943c64\trefs/tags/PHP3_TOOL_0_0\nfc3f8ebd9cab3188c426b18b004a53dac4e8a3aa\trefs/tags/TWEB_OL_BASE\ne135935e06c71ae5194450a4bdab0975e6f1b503\trefs/tags/UCDATA_2_4\n59a6663312aba6ef9ae2a839f4681481bbe3e71d\trefs/tags/UMICH_LDAP_3_3\n0e5efc3337c623730c776dd5be01787b1e7f54ca\trefs/tags/URE_0_5\nc75e45fb98b0277b4da1e04046365ede2969e063\trefs/tags/UTBM_0_2\n" diff --git a/upstream-info/pytz.yaml b/upstream-info/pytz.yaml index 227b602735825d5095d3b8da994c989dda479103..ad383299362f425f1b956c1e552c425c7ae5934c 100644 --- a/upstream-info/pytz.yaml +++ b/upstream-info/pytz.yaml @@ -1,4 +1,311 @@ +--- version_control: github -src_repo: stub42/pytz -tag_prefix: ^v -seperator: . +src_repo: stub42/pytz +tag_prefix: release_ +seperator: "." +last_query: + time_stamp: 2020-05-20 09:43:13.414808150 +00:00 + raw_data: | + [ + { + "name": "release_2020.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2020.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2020.1", + "commit": { + "sha": "164d6af6dc335c0adf6f7fa97800b6fa6d17cc9f", + "url": "https://api.github.com/repos/stub42/pytz/commits/164d6af6dc335c0adf6f7fa97800b6fa6d17cc9f" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAyMC4x" + }, + { + "name": "release_2019.3", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2019.3", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2019.3", + "commit": { + "sha": "3db12139c6da6ae3fb2f6fb4988adc9db14e3838", + "url": "https://api.github.com/repos/stub42/pytz/commits/3db12139c6da6ae3fb2f6fb4988adc9db14e3838" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOS4z" + }, + { + "name": "release_2019.2", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2019.2", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2019.2", + "commit": { + "sha": "62f872054dde69e5c510094093cd6e221d96d5db", + "url": "https://api.github.com/repos/stub42/pytz/commits/62f872054dde69e5c510094093cd6e221d96d5db" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOS4y" + }, + { + "name": "release_2019.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2019.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2019.1", + "commit": { + "sha": "c09737e968b232aa8f824d94506a4962fc655814", + "url": "https://api.github.com/repos/stub42/pytz/commits/c09737e968b232aa8f824d94506a4962fc655814" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOS4x" + }, + { + "name": "release_2018.9", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.9", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.9", + "commit": { + "sha": "e7193ead5ace1ccaeb4a33d185a42b50c9cbaef9", + "url": "https://api.github.com/repos/stub42/pytz/commits/e7193ead5ace1ccaeb4a33d185a42b50c9cbaef9" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC45" + }, + { + "name": "release_2018.7", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.7", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.7", + "commit": { + "sha": "024e87765ac37cd5b818347c3e6afa98a1e4f5a6", + "url": "https://api.github.com/repos/stub42/pytz/commits/024e87765ac37cd5b818347c3e6afa98a1e4f5a6" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC43" + }, + { + "name": "release_2018.6", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.6", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.6", + "commit": { + "sha": "c9df7ae6222875f943245c14782873c0863fd99c", + "url": "https://api.github.com/repos/stub42/pytz/commits/c9df7ae6222875f943245c14782873c0863fd99c" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC42" + }, + { + "name": "release_2018.5", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.5", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.5", + "commit": { + "sha": "b70911542755aeeea7b5a9e066df5e1c87e8f2c8", + "url": "https://api.github.com/repos/stub42/pytz/commits/b70911542755aeeea7b5a9e066df5e1c87e8f2c8" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC41" + }, + { + "name": "release_2018.4", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.4", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.4", + "commit": { + "sha": "fae0ac547f40eed5a9cce27e0b53cfc2fadfaabe", + "url": "https://api.github.com/repos/stub42/pytz/commits/fae0ac547f40eed5a9cce27e0b53cfc2fadfaabe" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC40" + }, + { + "name": "release_2018.3", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2018.3", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2018.3", + "commit": { + "sha": "fe7d934c4c6fe0b0e81eab4cd5a4881f0d3c2864", + "url": "https://api.github.com/repos/stub42/pytz/commits/fe7d934c4c6fe0b0e81eab4cd5a4881f0d3c2864" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxOC4z" + }, + { + "name": "release_2017.3", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2017.3", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2017.3", + "commit": { + "sha": "b4dfd2cc2099185d8bf507592bc4ff8d50cfaa6c", + "url": "https://api.github.com/repos/stub42/pytz/commits/b4dfd2cc2099185d8bf507592bc4ff8d50cfaa6c" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNy4z" + }, + { + "name": "release_2017.2", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2017.2", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2017.2", + "commit": { + "sha": "c00dbe290bd1aa896b01db94f2e93449cf3bfd07", + "url": "https://api.github.com/repos/stub42/pytz/commits/c00dbe290bd1aa896b01db94f2e93449cf3bfd07" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNy4y" + }, + { + "name": "release_2016.10", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.10", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.10", + "commit": { + "sha": "4e3b609f67bd31c0ef6dd205e08e5135dfee397e", + "url": "https://api.github.com/repos/stub42/pytz/commits/4e3b609f67bd31c0ef6dd205e08e5135dfee397e" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi4xMA==" + }, + { + "name": "release_2016.7", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.7", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.7", + "commit": { + "sha": "aea262738d341cff78131934155ff9c1f84a5ac7", + "url": "https://api.github.com/repos/stub42/pytz/commits/aea262738d341cff78131934155ff9c1f84a5ac7" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi43" + }, + { + "name": "release_2016.6.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.6.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.6.1", + "commit": { + "sha": "f55399cddbef67c56db1b83e0939ecc1e276cf42", + "url": "https://api.github.com/repos/stub42/pytz/commits/f55399cddbef67c56db1b83e0939ecc1e276cf42" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi42LjE=" + }, + { + "name": "release_2016.6", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.6", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.6", + "commit": { + "sha": "da34db62c844307ff170e130cfd0c2d2b33df7bb", + "url": "https://api.github.com/repos/stub42/pytz/commits/da34db62c844307ff170e130cfd0c2d2b33df7bb" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi42" + }, + { + "name": "release_2016.4", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.4", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.4", + "commit": { + "sha": "53a9db37a96524ee500230cee5865d81dad93a51", + "url": "https://api.github.com/repos/stub42/pytz/commits/53a9db37a96524ee500230cee5865d81dad93a51" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi40" + }, + { + "name": "release_2016.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2016.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2016.1", + "commit": { + "sha": "b418e3fb41fec1fd2cba09e6bdbd10bf0fdb0908", + "url": "https://api.github.com/repos/stub42/pytz/commits/b418e3fb41fec1fd2cba09e6bdbd10bf0fdb0908" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNi4x" + }, + { + "name": "release_2015.6", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2015.6", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2015.6", + "commit": { + "sha": "d53e863459e1a61075af44209e3581636682a162", + "url": "https://api.github.com/repos/stub42/pytz/commits/d53e863459e1a61075af44209e3581636682a162" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNS42" + }, + { + "name": "release_2015.2", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2015.2", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2015.2", + "commit": { + "sha": "0b9d95f6caec79698ace872366cf88c720912f66", + "url": "https://api.github.com/repos/stub42/pytz/commits/0b9d95f6caec79698ace872366cf88c720912f66" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNS4y" + }, + { + "name": "release_2014.10", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.10", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.10", + "commit": { + "sha": "625e5644587277f56a082d15e828cdf380b9b4f1", + "url": "https://api.github.com/repos/stub42/pytz/commits/625e5644587277f56a082d15e828cdf380b9b4f1" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC4xMA==" + }, + { + "name": "release_2014.9", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.9", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.9", + "commit": { + "sha": "46021a739fac6878f7250bb4a57acd0f789f5362", + "url": "https://api.github.com/repos/stub42/pytz/commits/46021a739fac6878f7250bb4a57acd0f789f5362" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC45" + }, + { + "name": "release_2014.7", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.7", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.7", + "commit": { + "sha": "880f0956d1eb9b64d64786f4f53fdf0cbf8b00b4", + "url": "https://api.github.com/repos/stub42/pytz/commits/880f0956d1eb9b64d64786f4f53fdf0cbf8b00b4" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC43" + }, + { + "name": "release_2014.4", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.4", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.4", + "commit": { + "sha": "056207cdda4a8f01f7f0bd924e89d0df434c7547", + "url": "https://api.github.com/repos/stub42/pytz/commits/056207cdda4a8f01f7f0bd924e89d0df434c7547" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC40" + }, + { + "name": "release_2014.3", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.3", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.3", + "commit": { + "sha": "54b09ec9de8f5a1ab29a261db4a465b9bb27e159", + "url": "https://api.github.com/repos/stub42/pytz/commits/54b09ec9de8f5a1ab29a261db4a465b9bb27e159" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC4z" + }, + { + "name": "release_2014.2", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.2", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.2", + "commit": { + "sha": "766a3160ed86adbfc8498734f1c84650f02728ca", + "url": "https://api.github.com/repos/stub42/pytz/commits/766a3160ed86adbfc8498734f1c84650f02728ca" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC4y" + }, + { + "name": "release_2014.1.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.1.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.1.1", + "commit": { + "sha": "4252eaa41454da5b41f9f7d8bf4fcd22fe83cd58", + "url": "https://api.github.com/repos/stub42/pytz/commits/4252eaa41454da5b41f9f7d8bf4fcd22fe83cd58" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC4xLjE=" + }, + { + "name": "release_2014.1", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2014.1", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2014.1", + "commit": { + "sha": "6d7de33f12264e88456b0c91c152c178aa25dbfe", + "url": "https://api.github.com/repos/stub42/pytz/commits/6d7de33f12264e88456b0c91c152c178aa25dbfe" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxNC4x" + }, + { + "name": "release_2013.9", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2013.9", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2013.9", + "commit": { + "sha": "4ed0cfa6d3ae3ba79bf4e8d3347b4c385fb405e7", + "url": "https://api.github.com/repos/stub42/pytz/commits/4ed0cfa6d3ae3ba79bf4e8d3347b4c385fb405e7" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxMy45" + }, + { + "name": "release_2013.8", + "zipball_url": "https://api.github.com/repos/stub42/pytz/zipball/release_2013.8", + "tarball_url": "https://api.github.com/repos/stub42/pytz/tarball/release_2013.8", + "commit": { + "sha": "d4ac4e52e0da663fe4c0c0c9f1e0a78bf583278b", + "url": "https://api.github.com/repos/stub42/pytz/commits/d4ac4e52e0da663fe4c0c0c9f1e0a78bf583278b" + }, + "node_id": "MDM6UmVmNjMxNTU2Mzg6cmVmcy90YWdzL3JlbGVhc2VfMjAxMy44" + } + ] +query_type: api.github.tags diff --git a/upstream-info/pyxdg.yaml b/upstream-info/pyxdg.yaml index eb5872d1dafcc04c48ef00d8e4f3dfcea89ff36d..1a000995fe2c7bbc8a3d62c3e1295335eb2c6593 100644 --- a/upstream-info/pyxdg.yaml +++ b/upstream-info/pyxdg.yaml @@ -4,9 +4,9 @@ src_repo: pyxdg tag_prefix: "^v" seperator: "." last_query: - time_stamp: 2020-04-26 03:24:14.472448500 +00:00 + time_stamp: 2020-05-20 09:43:05.776718170 +00:00 raw_data: '{"info":{"author":"Freedesktop.org","author_email":"xdg@lists.freedesktop.org","bugtrack_url":null,"classifiers":["License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)","Programming Language :: Python :: 2.6","Programming Language :: Python :: 2.7","Programming Language :: Python :: 3","Topic :: Desktop Environment"],"description":"UNKNOWN\n\n\n","description_content_type":null,"docs_url":null,"download_url":"","downloads":{"last_day":-1,"last_month":-1,"last_week":-1},"home_page":"http://freedesktop.org/wiki/Software/pyxdg","keywords":"","license":"","maintainer":"","maintainer_email":"","name":"pyxdg","package_url":"https://pypi.org/project/pyxdg/","platform":"","project_url":"https://pypi.org/project/pyxdg/","project_urls":{"Homepage":"http://freedesktop.org/wiki/Software/pyxdg"},"release_url":"https://pypi.org/project/pyxdg/0.26/","requires_dist":null,"requires_python":"","summary":"PyXDG - contains implementations of freedesktop.org standards in python.","version":"0.26","yanked":false},"last_serial":3546420,"releases":{"0.19":[{"comment_text":"","digests":{"md5":"0a8aab85b1f186a834d9df558558d734","sha256":"7a51fe373ba9e8a438efb5a605389b33c05d4e48d61ba401e1195fb88ff9ae19"},"downloads":-1,"filename":"pyxdg-0.19.tar.gz","has_sig":false,"md5_digest":"0a8aab85b1f186a834d9df558558d734","packagetype":"sdist","python_version":"source","requires_python":null,"size":27535,"upload_time":"2011-10-09T16:27:36","upload_time_iso_8601":"2011-10-09T16:27:36.538395Z","url":"https://files.pythonhosted.org/packages/f9/58/0930f66d16543015bfab497dc79541b62f078049308e8a05730f0be6ebdc/pyxdg-0.19.tar.gz","yanked":false}],"0.20":[{"comment_text":"","digests":{"md5":"187eaecd1ef0504fe61bbfbed9c1b23f","sha256":"7f405662bb5224eaa84812dee4d79e1210129c45b800b361070adb2e2b061199"},"downloads":-1,"filename":"pyxdg-0.20.tar.gz","has_sig":false,"md5_digest":"187eaecd1ef0504fe61bbfbed9c1b23f","packagetype":"sdist","python_version":"source","requires_python":null,"size":39866,"upload_time":"2012-07-13T21:14:56","upload_time_iso_8601":"2012-07-13T21:14:56.207984Z","url":"https://files.pythonhosted.org/packages/e4/b2/e6f09519928fcd34ec95c365602bbaea9dfd6e47824b9ddaf4eff69b7776/pyxdg-0.20.tar.gz","yanked":false}],"0.21":[{"comment_text":"","digests":{"md5":"7908a251cf0dada552d7f84d7d04173b","sha256":"85da4c37eedc2088035362ed7edd5d1c8fbd45d2bfecfe3f325fa85e6297f18b"},"downloads":-1,"filename":"pyxdg-0.21.tar.gz","has_sig":true,"md5_digest":"7908a251cf0dada552d7f84d7d04173b","packagetype":"sdist","python_version":"source","requires_python":null,"size":44062,"upload_time":"2012-07-25T01:25:59","upload_time_iso_8601":"2012-07-25T01:25:59.011435Z","url":"https://files.pythonhosted.org/packages/b5/bd/aae38c2c82b27fc178e3870103fd301d902729d6e8b008dce7087796a26f/pyxdg-0.21.tar.gz","yanked":false}],"0.22":[{"comment_text":"","digests":{"md5":"d31ceab3d68f235be4e4421a9bf110bd","sha256":"e2580a45996c5e904dccb2b577b07a998757f567a41c8eb05e23e25028413e85"},"downloads":-1,"filename":"pyxdg-0.22.tar.gz","has_sig":true,"md5_digest":"d31ceab3d68f235be4e4421a9bf110bd","packagetype":"sdist","python_version":"source","requires_python":null,"size":45002,"upload_time":"2012-07-28T20:59:17","upload_time_iso_8601":"2012-07-28T20:59:17.176036Z","url":"https://files.pythonhosted.org/packages/e5/3b/b5850627c9a62f4541f661a49eee2fc020f211ae1ff0b360e90590661734/pyxdg-0.22.tar.gz","yanked":false}],"0.23":[{"comment_text":"","digests":{"md5":"f690179b7c01875e47b1b34a64ddcbf7","sha256":"3bc1ecc85455f0fccceb95eaf998f6c56b483da59aa00d3beb5e095704866f4a"},"downloads":-1,"filename":"pyxdg-0.23.tar.gz","has_sig":true,"md5_digest":"f690179b7c01875e47b1b34a64ddcbf7","packagetype":"sdist","python_version":"source","requires_python":null,"size":45030,"upload_time":"2012-07-30T20:08:04","upload_time_iso_8601":"2012-07-30T20:08:04.224756Z","url":"https://files.pythonhosted.org/packages/ea/bd/5580dcb0ebdb201a1de6b47394a9d51a1947925c79b2ae897a1d2fb348fa/pyxdg-0.23.tar.gz","yanked":false}],"0.24":[{"comment_text":"","digests":{"md5":"f87bcec485261a59030df4ecf7dfe035","sha256":"220487bcea2d67c8da2a21bb261d647e03519a0b1a631365e45c77632c9491b6"},"downloads":-1,"filename":"pyxdg-0.24.tar.gz","has_sig":true,"md5_digest":"f87bcec485261a59030df4ecf7dfe035","packagetype":"sdist","python_version":"source","requires_python":null,"size":47039,"upload_time":"2012-11-05T23:53:34","upload_time_iso_8601":"2012-11-05T23:53:34.239951Z","url":"https://files.pythonhosted.org/packages/16/de/251b8d47206ca0f869268c7c059821841e7501af26412d1376723283d273/pyxdg-0.24.tar.gz","yanked":false}],"0.25":[{"comment_text":"","digests":{"md5":"bedcdb3a0ed85986d40044c87f23477c","sha256":"81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d"},"downloads":-1,"filename":"pyxdg-0.25.tar.gz","has_sig":true,"md5_digest":"bedcdb3a0ed85986d40044c87f23477c","packagetype":"sdist","python_version":"source","requires_python":null,"size":48935,"upload_time":"2012-12-06T22:19:11","upload_time_iso_8601":"2012-12-06T22:19:11.932766Z","url":"https://files.pythonhosted.org/packages/26/28/ee953bd2c030ae5a9e9a0ff68e5912bd90ee50ae766871151cd2572ca570/pyxdg-0.25.tar.gz","yanked":false}],"0.26":[{"comment_text":"","digests":{"md5":"29e18d2fef42e05ad4be2fc1e5493e3a","sha256":"1948ff8e2db02156c0cccd2529b43c0cff56ebaa71f5f021bbd755bc1419190e"},"downloads":-1,"filename":"pyxdg-0.26-py2.py3-none-any.whl","has_sig":false,"md5_digest":"29e18d2fef42e05ad4be2fc1e5493e3a","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":40671,"upload_time":"2018-02-02T17:49:31","upload_time_iso_8601":"2018-02-02T17:49:31.744468Z","url":"https://files.pythonhosted.org/packages/39/03/12eb9062f43adb94e30f366743cb5c83fd15fef026500cd4de42c7c12280/pyxdg-0.26-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"db1c2af8300ca64ce3955b3cf2490c92","sha256":"fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06"},"downloads":-1,"filename":"pyxdg-0.26.tar.gz","has_sig":false,"md5_digest":"db1c2af8300ca64ce3955b3cf2490c92","packagetype":"sdist","python_version":"source","requires_python":null,"size":57879,"upload_time":"2018-02-02T17:49:33","upload_time_iso_8601":"2018-02-02T17:49:33.461338Z","url":"https://files.pythonhosted.org/packages/47/6e/311d5f22e2b76381719b5d0c6e9dc39cd33999adae67db71d7279a6d70f4/pyxdg-0.26.tar.gz","yanked":false}]},"urls":[{"comment_text":"","digests":{"md5":"29e18d2fef42e05ad4be2fc1e5493e3a","sha256":"1948ff8e2db02156c0cccd2529b43c0cff56ebaa71f5f021bbd755bc1419190e"},"downloads":-1,"filename":"pyxdg-0.26-py2.py3-none-any.whl","has_sig":false,"md5_digest":"29e18d2fef42e05ad4be2fc1e5493e3a","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":40671,"upload_time":"2018-02-02T17:49:31","upload_time_iso_8601":"2018-02-02T17:49:31.744468Z","url":"https://files.pythonhosted.org/packages/39/03/12eb9062f43adb94e30f366743cb5c83fd15fef026500cd4de42c7c12280/pyxdg-0.26-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"db1c2af8300ca64ce3955b3cf2490c92","sha256":"fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06"},"downloads":-1,"filename":"pyxdg-0.26.tar.gz","has_sig":false,"md5_digest":"db1c2af8300ca64ce3955b3cf2490c92","packagetype":"sdist","python_version":"source","requires_python":null,"size":57879,"upload_time":"2018-02-02T17:49:33","upload_time_iso_8601":"2018-02-02T17:49:33.461338Z","url":"https://files.pythonhosted.org/packages/47/6e/311d5f22e2b76381719b5d0c6e9dc39cd33999adae67db71d7279a6d70f4/pyxdg-0.26.tar.gz","yanked":false}]}' + contains implementations of freedesktop.org standards in python.","version":"0.26","yanked":false,"yanked_reason":null},"last_serial":3546420,"releases":{"0.19":[{"comment_text":"","digests":{"md5":"0a8aab85b1f186a834d9df558558d734","sha256":"7a51fe373ba9e8a438efb5a605389b33c05d4e48d61ba401e1195fb88ff9ae19"},"downloads":-1,"filename":"pyxdg-0.19.tar.gz","has_sig":false,"md5_digest":"0a8aab85b1f186a834d9df558558d734","packagetype":"sdist","python_version":"source","requires_python":null,"size":27535,"upload_time":"2011-10-09T16:27:36","upload_time_iso_8601":"2011-10-09T16:27:36.538395Z","url":"https://files.pythonhosted.org/packages/f9/58/0930f66d16543015bfab497dc79541b62f078049308e8a05730f0be6ebdc/pyxdg-0.19.tar.gz","yanked":false,"yanked_reason":null}],"0.20":[{"comment_text":"","digests":{"md5":"187eaecd1ef0504fe61bbfbed9c1b23f","sha256":"7f405662bb5224eaa84812dee4d79e1210129c45b800b361070adb2e2b061199"},"downloads":-1,"filename":"pyxdg-0.20.tar.gz","has_sig":false,"md5_digest":"187eaecd1ef0504fe61bbfbed9c1b23f","packagetype":"sdist","python_version":"source","requires_python":null,"size":39866,"upload_time":"2012-07-13T21:14:56","upload_time_iso_8601":"2012-07-13T21:14:56.207984Z","url":"https://files.pythonhosted.org/packages/e4/b2/e6f09519928fcd34ec95c365602bbaea9dfd6e47824b9ddaf4eff69b7776/pyxdg-0.20.tar.gz","yanked":false,"yanked_reason":null}],"0.21":[{"comment_text":"","digests":{"md5":"7908a251cf0dada552d7f84d7d04173b","sha256":"85da4c37eedc2088035362ed7edd5d1c8fbd45d2bfecfe3f325fa85e6297f18b"},"downloads":-1,"filename":"pyxdg-0.21.tar.gz","has_sig":true,"md5_digest":"7908a251cf0dada552d7f84d7d04173b","packagetype":"sdist","python_version":"source","requires_python":null,"size":44062,"upload_time":"2012-07-25T01:25:59","upload_time_iso_8601":"2012-07-25T01:25:59.011435Z","url":"https://files.pythonhosted.org/packages/b5/bd/aae38c2c82b27fc178e3870103fd301d902729d6e8b008dce7087796a26f/pyxdg-0.21.tar.gz","yanked":false,"yanked_reason":null}],"0.22":[{"comment_text":"","digests":{"md5":"d31ceab3d68f235be4e4421a9bf110bd","sha256":"e2580a45996c5e904dccb2b577b07a998757f567a41c8eb05e23e25028413e85"},"downloads":-1,"filename":"pyxdg-0.22.tar.gz","has_sig":true,"md5_digest":"d31ceab3d68f235be4e4421a9bf110bd","packagetype":"sdist","python_version":"source","requires_python":null,"size":45002,"upload_time":"2012-07-28T20:59:17","upload_time_iso_8601":"2012-07-28T20:59:17.176036Z","url":"https://files.pythonhosted.org/packages/e5/3b/b5850627c9a62f4541f661a49eee2fc020f211ae1ff0b360e90590661734/pyxdg-0.22.tar.gz","yanked":false,"yanked_reason":null}],"0.23":[{"comment_text":"","digests":{"md5":"f690179b7c01875e47b1b34a64ddcbf7","sha256":"3bc1ecc85455f0fccceb95eaf998f6c56b483da59aa00d3beb5e095704866f4a"},"downloads":-1,"filename":"pyxdg-0.23.tar.gz","has_sig":true,"md5_digest":"f690179b7c01875e47b1b34a64ddcbf7","packagetype":"sdist","python_version":"source","requires_python":null,"size":45030,"upload_time":"2012-07-30T20:08:04","upload_time_iso_8601":"2012-07-30T20:08:04.224756Z","url":"https://files.pythonhosted.org/packages/ea/bd/5580dcb0ebdb201a1de6b47394a9d51a1947925c79b2ae897a1d2fb348fa/pyxdg-0.23.tar.gz","yanked":false,"yanked_reason":null}],"0.24":[{"comment_text":"","digests":{"md5":"f87bcec485261a59030df4ecf7dfe035","sha256":"220487bcea2d67c8da2a21bb261d647e03519a0b1a631365e45c77632c9491b6"},"downloads":-1,"filename":"pyxdg-0.24.tar.gz","has_sig":true,"md5_digest":"f87bcec485261a59030df4ecf7dfe035","packagetype":"sdist","python_version":"source","requires_python":null,"size":47039,"upload_time":"2012-11-05T23:53:34","upload_time_iso_8601":"2012-11-05T23:53:34.239951Z","url":"https://files.pythonhosted.org/packages/16/de/251b8d47206ca0f869268c7c059821841e7501af26412d1376723283d273/pyxdg-0.24.tar.gz","yanked":false,"yanked_reason":null}],"0.25":[{"comment_text":"","digests":{"md5":"bedcdb3a0ed85986d40044c87f23477c","sha256":"81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d"},"downloads":-1,"filename":"pyxdg-0.25.tar.gz","has_sig":true,"md5_digest":"bedcdb3a0ed85986d40044c87f23477c","packagetype":"sdist","python_version":"source","requires_python":null,"size":48935,"upload_time":"2012-12-06T22:19:11","upload_time_iso_8601":"2012-12-06T22:19:11.932766Z","url":"https://files.pythonhosted.org/packages/26/28/ee953bd2c030ae5a9e9a0ff68e5912bd90ee50ae766871151cd2572ca570/pyxdg-0.25.tar.gz","yanked":false,"yanked_reason":null}],"0.26":[{"comment_text":"","digests":{"md5":"29e18d2fef42e05ad4be2fc1e5493e3a","sha256":"1948ff8e2db02156c0cccd2529b43c0cff56ebaa71f5f021bbd755bc1419190e"},"downloads":-1,"filename":"pyxdg-0.26-py2.py3-none-any.whl","has_sig":false,"md5_digest":"29e18d2fef42e05ad4be2fc1e5493e3a","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":40671,"upload_time":"2018-02-02T17:49:31","upload_time_iso_8601":"2018-02-02T17:49:31.744468Z","url":"https://files.pythonhosted.org/packages/39/03/12eb9062f43adb94e30f366743cb5c83fd15fef026500cd4de42c7c12280/pyxdg-0.26-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"db1c2af8300ca64ce3955b3cf2490c92","sha256":"fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06"},"downloads":-1,"filename":"pyxdg-0.26.tar.gz","has_sig":false,"md5_digest":"db1c2af8300ca64ce3955b3cf2490c92","packagetype":"sdist","python_version":"source","requires_python":null,"size":57879,"upload_time":"2018-02-02T17:49:33","upload_time_iso_8601":"2018-02-02T17:49:33.461338Z","url":"https://files.pythonhosted.org/packages/47/6e/311d5f22e2b76381719b5d0c6e9dc39cd33999adae67db71d7279a6d70f4/pyxdg-0.26.tar.gz","yanked":false,"yanked_reason":null}]},"urls":[{"comment_text":"","digests":{"md5":"29e18d2fef42e05ad4be2fc1e5493e3a","sha256":"1948ff8e2db02156c0cccd2529b43c0cff56ebaa71f5f021bbd755bc1419190e"},"downloads":-1,"filename":"pyxdg-0.26-py2.py3-none-any.whl","has_sig":false,"md5_digest":"29e18d2fef42e05ad4be2fc1e5493e3a","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":null,"size":40671,"upload_time":"2018-02-02T17:49:31","upload_time_iso_8601":"2018-02-02T17:49:31.744468Z","url":"https://files.pythonhosted.org/packages/39/03/12eb9062f43adb94e30f366743cb5c83fd15fef026500cd4de42c7c12280/pyxdg-0.26-py2.py3-none-any.whl","yanked":false,"yanked_reason":null},{"comment_text":"","digests":{"md5":"db1c2af8300ca64ce3955b3cf2490c92","sha256":"fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06"},"downloads":-1,"filename":"pyxdg-0.26.tar.gz","has_sig":false,"md5_digest":"db1c2af8300ca64ce3955b3cf2490c92","packagetype":"sdist","python_version":"source","requires_python":null,"size":57879,"upload_time":"2018-02-02T17:49:33","upload_time_iso_8601":"2018-02-02T17:49:33.461338Z","url":"https://files.pythonhosted.org/packages/47/6e/311d5f22e2b76381719b5d0c6e9dc39cd33999adae67db71d7279a6d70f4/pyxdg-0.26.tar.gz","yanked":false,"yanked_reason":null}]}' diff --git a/upstream-info/qpid-proton.yaml b/upstream-info/qpid-proton.yaml index 712e597d91fbb6f9f2ac86ee78923b5f789ae5f1..5857d16fcd89428654e3d5a579fecd4fd899ce35 100644 --- a/upstream-info/qpid-proton.yaml +++ b/upstream-info/qpid-proton.yaml @@ -3,8 +3,9 @@ version_control: github src_repo: apache/qpid-proton tag_prefix: "^v" seperator: "." +query_type: api.github.tags last_query: - time_stamp: 2020-04-26 10:58:48.079145800 +00:00 + time_stamp: 2020-05-20 09:45:30.335547450 +00:00 raw_data: | [ { @@ -15,7 +16,7 @@ last_query: "sha": "1071c08501b7ef73f5f99df7751a6bb426693f4e", "url": "https://api.github.com/repos/apache/qpid-proton/commits/1071c08501b7ef73f5f99df7751a6bb426693f4e" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6cHlwaS1yZWxlYXNlLTAuMTIuMg==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzL3B5cGktcmVsZWFzZS0wLjEyLjI=" }, { "name": "pypi-release-0.11.1.post1", @@ -25,7 +26,7 @@ last_query: "sha": "0903e55aba0b16841b502895e23b2e15248540e6", "url": "https://api.github.com/repos/apache/qpid-proton/commits/0903e55aba0b16841b502895e23b2e15248540e6" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6cHlwaS1yZWxlYXNlLTAuMTEuMS5wb3N0MQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzL3B5cGktcmVsZWFzZS0wLjExLjEucG9zdDE=" }, { "name": "pypi-release-0.10", @@ -35,7 +36,47 @@ last_query: "sha": "c2af3f23108590cb2bad5fce2f11b37a230b1512", "url": "https://api.github.com/repos/apache/qpid-proton/commits/c2af3f23108590cb2bad5fce2f11b37a230b1512" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6cHlwaS1yZWxlYXNlLTAuMTA=" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzL3B5cGktcmVsZWFzZS0wLjEw" + }, + { + "name": "0.31.0", + "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.31.0", + "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.31.0", + "commit": { + "sha": "6b2bd3eae21a85c3cea4b1748636cf1ff78c5048", + "url": "https://api.github.com/repos/apache/qpid-proton/commits/6b2bd3eae21a85c3cea4b1748636cf1ff78c5048" + }, + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzEuMA==" + }, + { + "name": "0.31.0-rc3", + "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.31.0-rc3", + "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.31.0-rc3", + "commit": { + "sha": "6b2bd3eae21a85c3cea4b1748636cf1ff78c5048", + "url": "https://api.github.com/repos/apache/qpid-proton/commits/6b2bd3eae21a85c3cea4b1748636cf1ff78c5048" + }, + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzEuMC1yYzM=" + }, + { + "name": "0.31.0-rc2", + "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.31.0-rc2", + "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.31.0-rc2", + "commit": { + "sha": "4d0ad6c2c06d6779cca937b3f2d01b19da1e4b92", + "url": "https://api.github.com/repos/apache/qpid-proton/commits/4d0ad6c2c06d6779cca937b3f2d01b19da1e4b92" + }, + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzEuMC1yYzI=" + }, + { + "name": "0.31.0-rc1", + "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.31.0-rc1", + "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.31.0-rc1", + "commit": { + "sha": "b6532632d6b0877136621daeba55b2e105d810d2", + "url": "https://api.github.com/repos/apache/qpid-proton/commits/b6532632d6b0877136621daeba55b2e105d810d2" + }, + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzEuMC1yYzE=" }, { "name": "0.30.0", @@ -45,7 +86,7 @@ last_query: "sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49", "url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4zMC4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzAuMA==" }, { "name": "0.30.0-rc1", @@ -55,7 +96,7 @@ last_query: "sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49", "url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4zMC4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzAuMC1yYzE=" }, { "name": "0.29.0", @@ -65,7 +106,7 @@ last_query: "sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947", "url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOS4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjkuMA==" }, { "name": "0.29.0-rc1", @@ -75,7 +116,7 @@ last_query: "sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947", "url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOS4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjkuMC1yYzE=" }, { "name": "0.28.0", @@ -85,7 +126,7 @@ last_query: "sha": "0481a507c6e427a99a5d626e073d58af38c9995b", "url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOC4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjguMA==" }, { "name": "0.28.0-rc1", @@ -95,7 +136,7 @@ last_query: "sha": "0481a507c6e427a99a5d626e073d58af38c9995b", "url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOC4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjguMC1yYzE=" }, { "name": "0.27.1", @@ -105,7 +146,7 @@ last_query: "sha": "b86adcb625f2a17d0465f222c91147b53f82179a", "url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4x" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMQ==" }, { "name": "0.27.1-rc1", @@ -115,7 +156,7 @@ last_query: "sha": "b86adcb625f2a17d0465f222c91147b53f82179a", "url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4xLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMS1yYzE=" }, { "name": "0.27.0", @@ -125,7 +166,7 @@ last_query: "sha": "e5816f38b2d80d24e8af78954b79e05421633c00", "url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMA==" }, { "name": "0.27.0-rc1", @@ -135,7 +176,7 @@ last_query: "sha": "e5816f38b2d80d24e8af78954b79e05421633c00", "url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMC1yYzE=" }, { "name": "0.26.0", @@ -145,7 +186,7 @@ last_query: "sha": "5b5927de939c83162b543801532c61fdb0434826", "url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMA==" }, { "name": "0.26.0-rc2", @@ -155,7 +196,7 @@ last_query: "sha": "5b5927de939c83162b543801532c61fdb0434826", "url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4wLXJjMg==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMC1yYzI=" }, { "name": "0.26.0-rc1", @@ -165,7 +206,7 @@ last_query: "sha": "fd518f29b532c4e692ca7684b0917234e4bfff1d", "url": "https://api.github.com/repos/apache/qpid-proton/commits/fd518f29b532c4e692ca7684b0917234e4bfff1d" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMC1yYzE=" }, { "name": "0.25.0", @@ -175,7 +216,7 @@ last_query: "sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49", "url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNS4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjUuMA==" }, { "name": "0.25.0-rc1", @@ -185,7 +226,7 @@ last_query: "sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49", "url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNS4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjUuMC1yYzE=" }, { "name": "0.24.0", @@ -195,7 +236,7 @@ last_query: "sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187", "url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNC4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjQuMA==" }, { "name": "0.24.0-rc1", @@ -205,7 +246,7 @@ last_query: "sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187", "url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNC4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjQuMC1yYzE=" }, { "name": "0.23.0", @@ -215,7 +256,7 @@ last_query: "sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9", "url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMy4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjMuMA==" }, { "name": "0.23.0-rc1", @@ -225,7 +266,7 @@ last_query: "sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9", "url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMy4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjMuMC1yYzE=" }, { "name": "0.22.0", @@ -235,7 +276,7 @@ last_query: "sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7", "url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMi4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjIuMA==" }, { "name": "0.22.0-rc1", @@ -245,7 +286,7 @@ last_query: "sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7", "url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMi4wLXJjMQ==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjIuMC1yYzE=" }, { "name": "0.21.0", @@ -255,7 +296,7 @@ last_query: "sha": "61c0c03e270001d50225157e123420159ce6bf33", "url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMS4w" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjEuMA==" }, { "name": "0.21.0-rc1", @@ -265,47 +306,6 @@ last_query: "sha": "61c0c03e270001d50225157e123420159ce6bf33", "url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33" }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMS4wLXJjMQ==" - }, - { - "name": "0.20.0", - "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.20.0", - "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.20.0", - "commit": { - "sha": "2da6fc6b52184c6eb39d1a37a846864bdcbb266c", - "url": "https://api.github.com/repos/apache/qpid-proton/commits/2da6fc6b52184c6eb39d1a37a846864bdcbb266c" - }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMC4w" - }, - { - "name": "0.20.0-rc1", - "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.20.0-rc1", - "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.20.0-rc1", - "commit": { - "sha": "2da6fc6b52184c6eb39d1a37a846864bdcbb266c", - "url": "https://api.github.com/repos/apache/qpid-proton/commits/2da6fc6b52184c6eb39d1a37a846864bdcbb266c" - }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMC4wLXJjMQ==" - }, - { - "name": "0.19.0", - "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.19.0", - "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.19.0", - "commit": { - "sha": "fe3c38ccf1cfb27a23793f414755befa146e7c01", - "url": "https://api.github.com/repos/apache/qpid-proton/commits/fe3c38ccf1cfb27a23793f414755befa146e7c01" - }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4xOS4w" - }, - { - "name": "0.19.0-rc2", - "zipball_url": "https://api.github.com/repos/apache/qpid-proton/zipball/0.19.0-rc2", - "tarball_url": "https://api.github.com/repos/apache/qpid-proton/tarball/0.19.0-rc2", - "commit": { - "sha": "fe3c38ccf1cfb27a23793f414755befa146e7c01", - "url": "https://api.github.com/repos/apache/qpid-proton/commits/fe3c38ccf1cfb27a23793f414755befa146e7c01" - }, - "node_id": "MDM6UmVmMjYzMDk3OTk6MC4xOS4wLXJjMg==" + "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjEuMC1yYzE=" } ] -query_type: api.github.tags diff --git a/upstream-info/rdma-core.yaml b/upstream-info/rdma-core.yaml index b3fd59d2a95cc4ac2c04df45f8080df188c316b6..85583a12c9d1d8e34dc24d6ed1cdccb39ab097e2 100644 --- a/upstream-info/rdma-core.yaml +++ b/upstream-info/rdma-core.yaml @@ -1,4 +1,9 @@ +--- version_control: github -src_repo: linux-rdma/rdma-core -tag_prefix: ^v -seperator: . +src_repo: linux-rdma/rdma-core +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:46:27.318553780 +00:00 + raw_data: "4159ae4b4ca8c96d9c87a87544225d41eb6ebe49\trefs/tags/debian/15-1\na595791989875b76ed662b23f24d636e66b19133\trefs/tags/debian/15-1^{}\n0465722dae55dbd76520bb04576a455c5dba3dc7\trefs/tags/debian/15-2\n7c15f5d6f21a8ae5b5ecb5ddab9d422fcb2407f7\trefs/tags/debian/15-2^{}\nfb740274980eca09a47aef001b16c88ddc9206c3\trefs/tags/debian/15-3\n7aa2d9aa766d25e7667d341313717f89d7ce4ac2\trefs/tags/debian/15-3^{}\n873db7f0c9ad33a7da90fa8b6a295bdfc7b6bf60\trefs/tags/debian/15.1-1\ne0be76a286357db87f9f1c87478fa5602a6d2bfd\trefs/tags/debian/15.1-1^{}\n12c9f37a8a0b96d7e6a97ddd3fd86b6ea2d073ee\trefs/tags/debian/16.0-1\ndf23fbd03bea0cd4cffd1905f1963514b53aee9d\trefs/tags/debian/16.0-1^{}\n57641e29d7b14ae2ed4e0d3f4b24445ba43c3569\trefs/tags/debian/16.1-1\n5eb3a7a234a8925d16693271dabdbe241cb12405\trefs/tags/debian/16.1-1^{}\n81de35dc2192cb3e215741aa8d39fc7edcf40bba\trefs/tags/debian/16.2-1\n1029978a90f843e539e7832f5cbc91f59d9ae809\trefs/tags/debian/16.2-1^{}\ndd514d4ec500112f14a37bfd9813c93fc7a7364d\trefs/tags/debian/17.0-1\n56198b649e405d750fa52a1c0ba873a29e569ee8\trefs/tags/debian/17.0-1^{}\nf157b699eb76919c5b72ecafe8e12837d9593d10\trefs/tags/debian/17.1-1\n6870a6e52f92af5eac16e8991a8a87fa2f0dd530\trefs/tags/debian/17.1-1^{}\n58856176c53ec88867a714f318febabb54ec95a9\trefs/tags/debian/17.1-2\n1996175d2a3937758e67c67369b265a894dc984c\trefs/tags/debian/17.1-2^{}\n000912fd5751e907361844b0f49db552926e3694\trefs/tags/debian/18.0-1\nc4ea903b48173aa50ef839ff46783d33c3165aa4\trefs/tags/debian/18.0-1^{}\nae3f2064cde025e803750cc0802a1bae4aef65fc\trefs/tags/debian/18.1-1\nc9745387d9e142323380bc6879f44dd267e35777\trefs/tags/debian/18.1-1^{}\nc0696b68b1d4af54d58038d8ed5499a3eb47c28d\trefs/tags/debian/19.0-1\n451d903c01f5f07ae0ea54465b4ee2d166154534\trefs/tags/debian/19.0-1^{}\n2c5feb263496169da1e7d35c38d63db95a2cebbe\trefs/tags/debian/20.0-1\nd333877373434896c9dd40a571c0b56814353ac2\trefs/tags/debian/20.0-1^{}\n7d4e0e6a2ab8079d1b4a123af0bd1b337556e598\trefs/tags/debian/21.0-1\ne25ba2f22936dd830a68015c07082623bd34e821\trefs/tags/debian/21.0-1^{}\n9ccd6d0ceaef93be1df2423bfd4fee3999f14cda\trefs/tags/debian/22.0-1\n3cde5ec92b6e2796d8cf36a1808dbc881d1766ad\trefs/tags/debian/22.0-1^{}\na73453cc6f7902cbdbeb09a2bec41b97a4ae6386\trefs/tags/debian/22.1-1\ne5651d0133bfe9da08c9b4c5b1143dab94935ec1\trefs/tags/debian/22.1-1^{}\n28e196789ca257016941be12c0c08ad4e0c1da0c\trefs/tags/debian/24.0-1\na4e820dc1575cd932d8feb6bc50640492bfbd1c2\trefs/tags/debian/24.0-1^{}\n4402fde6acc6b4aa02aa66dd8f71326ff7ab8bc9\trefs/tags/debian/24.0-2\n28d9fb7ed655a68f44b2504b46d88d3d6c5fbf65\trefs/tags/debian/24.0-2^{}\n9938d006c9e2bf8ba46e3ad653b839f7370d7149\trefs/tags/debian/26.0-1\n0c7e865529a04f8c96c7ced6e8084b1877a27d53\trefs/tags/debian/26.0-1^{}\nda43450b472649ccdea231b1b32ea95aba45af2d\trefs/tags/debian/26.0-2\n4e9aee7e35191a7ecaabaf3ab0ab94007a6caff6\trefs/tags/debian/26.0-2^{}\ne556ca23c07ac2f9732ff75c29fbbf3460eb0a13\trefs/tags/debian/27.0-1\n773b2f7930c6a781975d33f05cbb7c906c0617a0\trefs/tags/debian/27.0-1^{}\n36f6ff29fedd5870c9ef3df75c95e321a7c280fc\trefs/tags/debian/27.0-2\n844aaeaf57954913ab082e502414b85244c5ffc1\trefs/tags/debian/27.0-2^{}\na4f28f2115e30028eab6354aa7e2d81af94edd8e\trefs/tags/debian/28.0-1\n2898c7155ae8d96b7ca7ca156b37c19f2d9744c8\trefs/tags/debian/28.0-1^{}\n2c0dfb12c22cd8030b2864bdf3d91ba1731f5caa\trefs/tags/debian/29.0-1\n3439d8cea445339fafa0b262777f4fadbb396073\trefs/tags/debian/29.0-1^{}\n379472122b0dc143a403bc0731010ceffad70ea4\trefs/tags/rdma-core-12\n26398cbf74de32f622ae86ad4cbfa6a3792ba616\trefs/tags/rdma-core-12^{}\n2050861c9afe926f7350189c7a742ef7e99f7712\trefs/tags/rdma-core-12-rc1\n9a702ff0a9ac415996bb55ee85a6bd1e95c69ece\trefs/tags/rdma-core-12-rc1^{}\n4bf81881a774e280c144d62912e5c89b062044d9\trefs/tags/rdma-core-12-rc2\n5bd1f13d4824bd62c1afdbef3780f7f0c0043ec3\trefs/tags/rdma-core-12-rc2^{}\nde4fd19c36eadd90dafe0bd8cfb058c4037d8e80\trefs/tags/rdma-core-12-rc3\n9d1acdae6d8f2ed1a6ce57b734ccb1efa56f6dd6\trefs/tags/rdma-core-12-rc3^{}\n487f8003df24f18b044a35ceb4a24c11a6f18ca9\trefs/tags/rdma-core-12-rc4\n8a77a3009fadc3183f4565f7bb6eaa96a384ed95\trefs/tags/rdma-core-12-rc4^{}\n989ecbfc80a47d194277c97c7c09f58d36c3d879\trefs/tags/rdma-core-12-rc5\nfc645ff22e54361f809acc38d8f8e40035eda517\trefs/tags/rdma-core-12-rc5^{}\n151d95d7b7a368cdaa8355dfd4ecfca38b4da3b6\trefs/tags/v12-rc1\n9a702ff0a9ac415996bb55ee85a6bd1e95c69ece\trefs/tags/v12-rc1^{}\n5bd1f13d4824bd62c1afdbef3780f7f0c0043ec3\trefs/tags/v12-rc2\n9f3eb7eb227c6b6aed4a7083378abd9d57599edc\trefs/tags/v12-rc3\n9d1acdae6d8f2ed1a6ce57b734ccb1efa56f6dd6\trefs/tags/v12-rc3^{}\n8c57d0e317b4bd86548daa554c76b1a6be6c016e\trefs/tags/v13\n2c696047cbacbaaa8a4c0871c678c26dbb1e6f92\trefs/tags/v13^{}\na058983e3013bcf95079deef16b8b45aff1bc6bf\trefs/tags/v13-rc1\nd8c3ec40d5ca51ca3279184962d08fab6fc696ef\trefs/tags/v13-rc1^{}\n90aa314f35c5cafc3ae76d868677149bcea98e68\trefs/tags/v13-rc2\nfae29792d7078c4c094796648da192c91fe4cfe6\trefs/tags/v13-rc2^{}\n1a5d8fe24184b21d9f133509134aca76853198db\trefs/tags/v13-rc3\n9878b3586c14066aaa890d9e429932fd60c46c08\trefs/tags/v13-rc3^{}\n61edadce3c517506cb2765d0f73e391b138a4f2d\trefs/tags/v13-rc4\n2c696047cbacbaaa8a4c0871c678c26dbb1e6f92\trefs/tags/v13-rc4^{}\n000d8f397a270f191b76ead7e178c06b5d6a40c8\trefs/tags/v14\nb2f6a3699b2a4bb1478e919b29e9a39307457e48\trefs/tags/v14^{}\n1772a6f0186a8d7aba9b79333d7e081f3ce9aff6\trefs/tags/v14-rc1\n5f217bcfc21341d877de0ea394882d1252b8db0f\trefs/tags/v14-rc1^{}\naa1709d780fdb36343235aa6189e7120ce26c707\trefs/tags/v15\ndc927a0380346c7857f005b8ff3747a6a42ecdb0\trefs/tags/v15^{}\n01c8cd4cd6a94a841a42a897431a8d0d16370a65\trefs/tags/v15-rc1\nd779dd9a9e8f2e6500dbc8e88d6716ad2681ca85\trefs/tags/v15-rc1^{}\nd2478f2bcbce60f26fe9273ede7c3593acd7b2e6\trefs/tags/v15-rc2\n7d7f03e9f57e24ac6909c2a12de74050efb2128b\trefs/tags/v15-rc2^{}\n37a00d59801e9d2067b878572b717638b3bb707a\trefs/tags/v15-rc3\n49211a63fc61e02840a402fe85afd8843a148273\trefs/tags/v15-rc3^{}\ne7448a889e5c36e5f6dbb289b21f0ea807991b83\trefs/tags/v15.1\n6ade95efedf3099cacf05928ae7aa874f9e5c61d\trefs/tags/v15.1^{}\n029e41dc052dd2ab2dafc3bd828b5416e20804be\trefs/tags/v15.10\nd12bb07d5bcc8dbeb5d85c58acf088576bf8056c\trefs/tags/v15.10^{}\n6abab4cc7a83bbac7b63eb417c048c4564629ffb\trefs/tags/v15.11\nb190a1739c721463727ec87ab1a3fd4c0894636f\trefs/tags/v15.11^{}\n30f6d77203fa979552633675a38b6f66d0420cb4\trefs/tags/v15.2\nbb4384dc5d51772bbd65c74c961edd9c57847e76\trefs/tags/v15.2^{}\nbfacff29471e4d460341255f497cf107849c901c\trefs/tags/v15.3\nb3685b31b91515d3e886769d1e76644f400e75a4\trefs/tags/v15.3^{}\nb78670667ee81c022f8ab4d9f854a5c5db8f8800\trefs/tags/v15.4\n7641d50dbbad112b39c89a48266e49f94e423950\trefs/tags/v15.4^{}\ndd77138d26eaed7b257c0a8479db870bf27824f7\trefs/tags/v15.5\n42d6c123804f2c3bc49840304171b960e098758c\trefs/tags/v15.5^{}\n319025eba8a9aa1fe477174aba6138f810af16bd\trefs/tags/v15.6\n558c80a98055a9564ae049f28103ca565dfe0189\trefs/tags/v15.6^{}\nc893b372083ec5c7a7f076bb9b3452b989ceb1de\trefs/tags/v15.7\nafddedaa79a8ef2cd32069a818b47e21ecb315ee\trefs/tags/v15.7^{}\n45b7b3066a1990f70d6ce09d5eaa6b3e8c9e9038\trefs/tags/v15.8\n2fcf1ff234673293b6023c5ae80bf73ec1a5051b\trefs/tags/v15.8^{}\n754c14c2c316b7195273cb7029b2b8d5b64ee502\trefs/tags/v15.9\n403803cd39947e4534f0f33133ef48f235025056\trefs/tags/v15.9^{}\nb1226e267137831d3d2c96a201c0fae6eb2dd900\trefs/tags/v16\nbf2450ea9afd7ec10c3f108927e2978e39823d62\trefs/tags/v16^{}\nd303a65bad8288bd9a179bd9dda3dfed348f2bdf\trefs/tags/v16.1\n9b91e2e5287160025f6fc0b555c8f0debfaf9b12\trefs/tags/v16.1^{}\n66509e5248a743c2204e8980105eb7fef80849b1\trefs/tags/v16.10\ncbeb425769b659fcf5ee558fd8cc1a9ce00cea91\trefs/tags/v16.10^{}\ne9961122c7a9126d9f77a04aff069bdbc94207f4\trefs/tags/v16.11\n27f44f292e88ca71ff0a5ca7f9713dc6c7dfdbfc\trefs/tags/v16.11^{}\na31a5e4686393a600201bf24dba005f04ed170a2\trefs/tags/v16.12\n617c9fc6fda0e706aa1361b01eaca3daef02e3e2\trefs/tags/v16.12^{}\n4b0732438769ba4d73d79259e8d484fe46fb40f8\trefs/tags/v16.2\n20197e29921a558c2552665b52784fcfa1fd8982\trefs/tags/v16.2^{}\n9c4bf3f643fc00a5eefd8eee5141a54486af04d4\trefs/tags/v16.3\ne77f84e38251a7e8541688dffae93890eed45ed0\trefs/tags/v16.3^{}\nedae8d50c00d86a48fbd668d1cdb9bb051bfe9f6\trefs/tags/v16.4\n9cb939b92bea70bf0bca28fd996d2019c79c5cb3\trefs/tags/v16.4^{}\nf24120e56107b79a2d2aabc65fdedf5089356e70\trefs/tags/v16.5\n8745c05f4fca7fe33c96c9a18964bdd88a907c94\trefs/tags/v16.5^{}\n14bbb634489831f91981b03679ba09cc992a7cb8\trefs/tags/v16.6\n273be827a8fcb2f3b12461e5919fb3f520c9278b\trefs/tags/v16.6^{}\nadb6d1b343d011e4f0c155b79dc9455ce2cafdb7\trefs/tags/v16.7\nfb6b34a522baece3a77e3a70d18115710249e50e\trefs/tags/v16.7^{}\n64a24fd0ee709f07eb963a8e33b64fdcbbab7e6f\trefs/tags/v16.8\n714cf1d6084e8fcabc0eb3fb62175251c0ca7f7f\trefs/tags/v16.8^{}\n68e5dd6bc4b60fae86abd8e0085ddd8c1b4a0af6\trefs/tags/v16.9\n3965dd1bafd14a64238293dbbf7c2185e3ff5345\trefs/tags/v16.9^{}\ne47a819ddf38c0f52ebed8588c556934560fc988\trefs/tags/v17\n5ce12bd51ebb0a4db35dea382b1ebdc701bab224\trefs/tags/v17^{}\nb0260244bb1959b92f8ce06188a9a55416182859\trefs/tags/v17-rc1\n7ebed9d65a53d04dd7e0d1f3d56f104937c956a4\trefs/tags/v17-rc1^{}\nc8c673dd49abbf161a902c308c663315c1bcddf3\trefs/tags/v17.1\n2f8d8ca04bbc6baba6624ec32f176e21a57b8132\trefs/tags/v17.1^{}\na27157f5bbd87f57574435d5bd5723fb4d00e388\trefs/tags/v17.2\n2fd0ffc5be880da1f4f329bd8ab89803ad5da61f\trefs/tags/v17.2^{}\n9833a5de640df63d30b2d829ba2b0ebb00b43bb1\trefs/tags/v17.3\ne46ad263d8de31fcd0c96001ed33563c6ae875d5\trefs/tags/v17.3^{}\n9443eaab7518c7bd197df9850a790b8ec72ec208\trefs/tags/v17.4\n346da4ab04bd145edb9168012eec7243566fbde0\trefs/tags/v17.4^{}\ne023cada5bb14463f9f286f7d0b1812812131118\trefs/tags/v17.5\nd9a313c7470ef4b0c4e70d74eeff2d869372d3d7\trefs/tags/v17.5^{}\n067d7240c50fdd2ccc09aa1ddca00c6e589cea49\trefs/tags/v17.6\n0a8a933ec1150c31341b492d6ccce34a246db383\trefs/tags/v17.6^{}\nbdbbc8ae751e076a1813306621f9dd7db19d0886\trefs/tags/v17.7\n42a7b2f38d4393229f14ed60639b2a55f6ae754a\trefs/tags/v17.7^{}\n16fb9ceebb3d55312253562df74dc5be23ea1455\trefs/tags/v17.8\n9b3b3bb322a9ed1325e69af71b11febdddfb8dbb\trefs/tags/v17.8^{}\ncbafa1d956eef3d235caf32e522a591072ce624d\trefs/tags/v18\n1eee3c837e0290f1ac7e5ac453ed69e8fd927aab\trefs/tags/v18^{}\n18f5900c400e61b71e86d8509c4ed6357bef70c7\trefs/tags/v18.1\n1f4780139d626c9d5cdd8386edf76a1c0043741e\trefs/tags/v18.1^{}\nef08db2de3d4dbb0dc8c92ba6125c7f722d887f0\trefs/tags/v18.2\n95a099017313589e71d423073a301b3b4f247e40\trefs/tags/v18.2^{}\ndc60ee1dc46f8c77151597bf8c41ff35af12c421\trefs/tags/v18.3\n6447eceb90692c2f251424582420333a3a65bf11\trefs/tags/v18.3^{}\na17729e4d6e1dda2332f4fec2a6f2026c143fbe4\trefs/tags/v18.4\nd8e8c6f12a1c845ffe827b6d98ba4c8511dfbe57\trefs/tags/v18.4^{}\n29e557262f65e551d1b23bfbcb7036e352b445f3\trefs/tags/v18.5\n02eef38b6a69b45468d8d58ce7c3ee2382f4257e\trefs/tags/v18.5^{}\na90322a737b9d807c8f254d5399ad5c30993e77a\trefs/tags/v18.6\n5cf371c5e3caab3a523e713292c16ce7ceecd024\trefs/tags/v18.6^{}\n51e39ec09b6e272eb3b3c6b217f4f24fdcf2f550\trefs/tags/v18.7\nc76dd77bfe674702e77a61349350224c8b6e2d07\trefs/tags/v18.7^{}\n9006fef26a246fdf209f011201fb582df0786937\trefs/tags/v19\n6a669675be31ea5e3254b8b80c7593033b0447ea\trefs/tags/v19^{}\n126ac194ca700ab2a871e6fdc3c0d8f03d7af83a\trefs/tags/v19.1\n20c98ed8878ce8d8bf260dc9b7ab8ed7afeaf872\trefs/tags/v19.1^{}\nab384cc176e220cee736be3c172b1d76ee7c2a20\trefs/tags/v19.2\n4bb6072902fa4e28d11f8c7416a97ff0f19067c3\trefs/tags/v19.2^{}\n1fb5a1611612aa428b4d6001c77e50013d6f4f9d\trefs/tags/v19.3\n9060cca634ea27b2fb7e89a6a5a5f1f437549f35\trefs/tags/v19.3^{}\n24d40179becfa4ee8c7b6c104bbf75dfeb983ee2\trefs/tags/v19.4\nd56368d937994e1968212ef39591f939d68c3ee8\trefs/tags/v19.4^{}\n2ac5be311211d6f51a2d44175f94adff52a4438a\trefs/tags/v19.5\naae6059602f88867cc28ff84d44e08460be0aa08\trefs/tags/v19.5^{}\n8346ea53c9116d25077047af5742102e2d94ec1c\trefs/tags/v19.6\nae3147ffdae0157e27bef1ea241fdc3dd4178730\trefs/tags/v19.6^{}\nd1c059eeaae1e211ce961f8553f7a0bcca877b21\trefs/tags/v20\na2e3979ecfc6eaad5d7b8663f2ed1af6df9d2f17\trefs/tags/v20^{}\n6d310197926276e162ed853b9da04cc2fc9f771b\trefs/tags/v20.1\n222fa83a789cd24a1e0900389587d47812fba086\trefs/tags/v20.1^{}\n13443267199e13740a83c656ec4a7f50408c9635\trefs/tags/v20.2\nf29e37ea266fa8a9758d21a8e16436ad6aab9925\trefs/tags/v20.2^{}\n8b9ba1752baef0f2e59c25797903104eb7d6c2bd\trefs/tags/v20.3\n1146d93e83acbf5efc21b6b960fed4841214076c\trefs/tags/v20.3^{}\nf9ed77862ee28b2e7c6571ebe755ee548f9c592a\trefs/tags/v20.4\n38b0dbfac67f2ba81ddf3a0982da1710fa5d55fe\trefs/tags/v20.4^{}\nfd29bd8b912818ee771eec9f471dc141ef6b3126\trefs/tags/v20.5\n556fc7f4329728ebc9565c3bc294d07261a5f973\trefs/tags/v20.5^{}\n526d32536d612da838db629db949e578b53ac006\trefs/tags/v20.6\n7a72c4316ad62e7eafb35b6fdd7d9126af272afd\trefs/tags/v20.6^{}\n8fe4739d1fe2765caf7c0f50c4dfa2bfcc487a89\trefs/tags/v21\na4b744d2cd6e5ccb0c9e60ebaf681184dadb6da0\trefs/tags/v21^{}\n0d5f5b02e149d6f1ebe4f7851a4e9550e9be512f\trefs/tags/v21.1\nce7e567d5760484865ed4c664feac5bebc191674\trefs/tags/v21.1^{}\n4a489371ab7991696bcf04545a519306adf30085\trefs/tags/v21.2\n29f8897a8ee75aa5a5062d8f8e85a02871ce3409\trefs/tags/v21.2^{}\n11c8d3dbf0ac8198b4b3762d3dea9fbbcdf9dd75\trefs/tags/v21.3\n1d842ec1d1da2586d0029928143c3464aeb5a9e5\trefs/tags/v21.3^{}\ncad5a2eb430ccd787611b5e436337e0f1d74d46f\trefs/tags/v21.4\ne7f546d850878dff672898422b52832b1879d7d2\trefs/tags/v21.4^{}\nd9b4317e12d7d06fa97c890b465317cab457e396\trefs/tags/v21.5\nf147fd5cc7628de7551c358f51f5fbb755d6f5ba\trefs/tags/v21.5^{}\n51e0f926048685b9e5516e1036a9125a4e78ff0d\trefs/tags/v22\n00f9175f3ea4345409a254b49490f9bc499f900b\trefs/tags/v22^{}\n44efd34d0e803631ad9cbc9ea2e2b37ac085d7bb\trefs/tags/v22.1\n2b42a75b60aacd6773d7198b4ef4f0e4aa0ceb86\trefs/tags/v22.1^{}\n7eb89a03b03fab59424c9364f66406c8e337f28d\trefs/tags/v22.2\na17190e0c4473a6e5155c107c7af8dcb218fbae4\trefs/tags/v22.2^{}\n1a54fa26532aa563be97381635a8427e8efb4dc5\trefs/tags/v22.3\n49915713cc7161a83025a1b4d055a440ff3c70ce\trefs/tags/v22.3^{}\n949ffd527e0807a8106a19a69c16d4dd22d61a84\trefs/tags/v22.4\n3fabe55fe8e97c862f826b702c20f1f1f9476521\trefs/tags/v22.4^{}\na84bf5dfe9972b88fb5b5e2fe63c1c48e53a325f\trefs/tags/v22.5\n31d465132d31eeac1c0bc0328ae179c8c2054af6\trefs/tags/v22.5^{}\n109e0ebdca64e3fe5d1ea9e1df717602a9eb912a\trefs/tags/v22.6\n924fc3c09a8b3b9cdaf256362d7c4398c83e8d32\trefs/tags/v22.6^{}\n941b3e909063bfed642d9430baa6db73e59bf7ad\trefs/tags/v23\n43adee5e3196fc1d1219fd1e66e54e7d18766d2d\trefs/tags/v23^{}\nd4ebe5aebcb832ae1facfc86416de78d6707783d\trefs/tags/v23.1\n352dd809dde8648949bb8ead9357dfe03bb8664e\trefs/tags/v23.1^{}\n8085e18a3e722041d664d1fd5b1f4e95c0865967\trefs/tags/v23.2\nafe9e163d65ef705a019c63eb782090f66f89235\trefs/tags/v23.2^{}\nfddf9bb988d022c73e4805f3af27b2fedf9938ed\trefs/tags/v23.3\n203873b10525fb1a763cba99264ca925f722c469\trefs/tags/v23.3^{}\n5c85123bb0b5885b575fb8f5ae638b07cc0b8df0\trefs/tags/v23.4\n3295c7a3cd6276efcde96e2e6c4c1f039955393c\trefs/tags/v23.4^{}\n4f6c88cf78dcdc2096a6ebd89f87b96cc89aece2\trefs/tags/v24.0\n240594e862c5044fdfcff06702959dca6a73e095\trefs/tags/v24.0^{}\n30896ea9cd46db4443304d697105d1e53fce9a97\trefs/tags/v24.1\n72897a623cd31df724b55f0a58b9774cb818dfa8\trefs/tags/v24.1^{}\n690828be0f1886be3cb06478f231b6a3f2527897\trefs/tags/v24.2\n6471bc81800dc0485e683ecc3164859430c6e1b2\trefs/tags/v24.2^{}\n84160dbead4a8f283a1eedaaf30034974e3f3323\trefs/tags/v24.3\n0bc90bd4ed27d251cb3912f95677df2c2b30e9e4\trefs/tags/v24.3^{}\n159106c0705252394c7680063c702706fae6bca2\trefs/tags/v25.0\n556d512629116851bc62916cf558cf95e51b0659\trefs/tags/v25.0^{}\n56653f9fbde8c49e0f90df308b3843f6a3ff7439\trefs/tags/v25.1\n1841d48eec9d845daef961ac21795e5493a376ff\trefs/tags/v25.1^{}\n585e3aef56fccb0858817b83ab047d293d1afaf2\trefs/tags/v25.2\nbdae1b9a5789d38a9a7f73b5bfd567a53697e044\trefs/tags/v25.2^{}\n3f68f9575782f98ebd035f738bb9688c49994c50\trefs/tags/v25.3\nba0fbcfc2ffd456b9530740b81767834aba2335f\trefs/tags/v25.3^{}\ne2f156e85a1ffdb97b497a9dc7e3d5402c76baa3\trefs/tags/v25.4\n17e7ff2ecdb77e82f24fa30f5846606e246104ad\trefs/tags/v25.4^{}\n586a3d99193e5fae00d69df2e99a7955727b2d8c\trefs/tags/v26.0\n4159490ba040416f66b28863e9fea37c61fe1338\trefs/tags/v26.0^{}\n9f6e9d8e19f13c5f537feb4edc70fe90a0cf9259\trefs/tags/v26.1\n9f820de9ca7d6e315be92bc830d354afad3e7960\trefs/tags/v26.1^{}\nf74754a8fefd90a5694ade22892f87853ffa3024\trefs/tags/v26.2\n29573b48ae79176ade62f45f80e495ad15dc2b58\trefs/tags/v26.2^{}\n08d6e5be22b211b474bd0bff9a99751703b86a54\trefs/tags/v27.0\n84caf035ae6123e2296b72006cd2cf698c65eb46\trefs/tags/v27.0^{}\n59cc48b1a10152c6ac85f831d2c05c438ce357ff\trefs/tags/v27.1\nba66d565a860c2bed39f6a60fb53285b871522c9\trefs/tags/v27.1^{}\n57184e3cc259312d58aee8e0e801fcbaf38ed0d2\trefs/tags/v28.0\nf12c953f0864691eacc9fcc4cda489b92ffd5a85\trefs/tags/v28.0^{}\n383b09ed1110d6b89b21cc423a4da1ac847beeda\trefs/tags/v28.1\n3cba3a8c63f4c1b776e03e4a89367e8d909e15a8\trefs/tags/v28.1^{}\n514eb0bf2a3705f7501facf40e93f16ba61a562c\trefs/tags/v29.0\nc7c6985343563f6f7a6e4157fdd4e30748b57d71\trefs/tags/v29.0^{}\n" +query_type: git-ls diff --git a/upstream-info/sos.yaml b/upstream-info/sos.yaml index 115df8561440489e3478cb9e35efa4aebca74258..6e64e64f6c702079431994ebc29d74f1948a7a45 100644 --- a/upstream-info/sos.yaml +++ b/upstream-info/sos.yaml @@ -1,4 +1,585 @@ +--- version_control: github -src_repo: sosreport/sos -tag_prefix: ^v -seperator: . +src_repo: sosreport/sos +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:47:13.604470810 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/sosreport/sos/releases/24943121", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/24943121/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/24943121/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.9.1", + "id": 24943121, + "node_id": "MDc6UmVsZWFzZTI0OTQzMTIx", + "tag_name": "3.9.1", + "target_commitish": "master", + "name": "sos-3.9.1", + "draft": false, + "author": { + "login": "TurboTurtle", + "id": 1704155, + "node_id": "MDQ6VXNlcjE3MDQxNTU=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1704155?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TurboTurtle", + "html_url": "https://github.com/TurboTurtle", + "followers_url": "https://api.github.com/users/TurboTurtle/followers", + "following_url": "https://api.github.com/users/TurboTurtle/following{/other_user}", + "gists_url": "https://api.github.com/users/TurboTurtle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TurboTurtle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TurboTurtle/subscriptions", + "organizations_url": "https://api.github.com/users/TurboTurtle/orgs", + "repos_url": "https://api.github.com/users/TurboTurtle/repos", + "events_url": "https://api.github.com/users/TurboTurtle/events{/privacy}", + "received_events_url": "https://api.github.com/users/TurboTurtle/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-03-24T15:33:13Z", + "published_at": "2020-03-27T18:18:37Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.9.1", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.9.1", + "body": "The sos team is pleased to announce the release of 3.9.1. This is a maintenance release tag designed to aide downstreams with 3.9 maintenance by signalling the end of 3.x development, while including all merged changes following the 3.9 release to date.\r\n\r\nThis maintenance release includes:\r\n\r\n* New plugins: `sos_extras`, `ovirt_engine_backup`, `console`, `validation_framework`\r\n* `lxd` plugin collections have been overhauled\r\n* Fixed handling of the `namespace` pattern for the `networking` plugin\r\n* A basic path is now defined in `Policy` for all subclasses\r\n\r\n* Plugin API Enhancements:\r\n * Enablement checks have been extended to include architecture constraints\r\n * `SoSPredicate` has been extended to include architecture constraints, as well as negative constraints for all elements\r\n * Plugins will now capture service status information for all services defined in the `services` class attr\r\n\r\nFor full information on the changes contained in this release, please refer to the Git commit logs. Further release information and tarballs are available at:\r\n\r\nhttps://github.com/sosreport/sos/releases/tag/3.9.1\r\n\r\nPlease report any problems to the sos-devel mailing list, or the GitHub issue tracker:\r\n\r\nhttps://github.com/sosreport/sos/issues/\r\n\r\nThe team would like to thank everyone who contributed fixes, new features, testing, and feedback for this release.\r\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/23694128", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/23694128/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/23694128/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.9", + "id": 23694128, + "node_id": "MDc6UmVsZWFzZTIzNjk0MTI4", + "tag_name": "3.9", + "target_commitish": "master", + "name": "sos-3.9", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-02-14T20:36:42Z", + "published_at": "2020-02-14T21:05:14Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.9", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.9", + "body": "The sos team is pleased to announce the release of sos-3.9. This is a significant release containing a large number of enhancements, new features, and bug fixes, including:\r\n\r\n* Improved human-readable archive naming and support for archive labels\r\n\r\n* Improved reporting of archive output and properties\r\n\r\n* Support for automatic uploading of report archives via FTP and HTTPS\r\n * Policy or command line specified URL and authentication\r\n * Policy specified URLs for Red Hat and Canonical uploads\r\n\r\n* Automatic PATH support on Ubuntu distributions\r\n\r\n* Improved policy performance\r\n\r\n* Improved service status collection API\r\n\r\n* 9 new plugins:\r\n cloud_init, convert2rhel, ebpf, fwupd, login, nginx, nvidia, openstack_tripleo\r\n\r\n* 6 obsolete plugins removed or merged into other plugins:\r\n katello, last, mrggrid, mrgmessg, satellite\r\n\r\n* Significant updates to 14 plugins:\r\n dlm, dnf, ceph, foreman, gluster, gnocchi, juju, kubernetes, logs, maas, networking,\r\n openvswitch, python, plugins\r\n\r\n* The openswan plugin was renamed to libreswan to reflect the active upstream project name\r\n\r\n* Updated Red Hat presets and new Cloud Forms preset\r\n\r\n* Updates to networking plugin namespace handling\r\n\r\n* Updates to the OVN plugins (ovn_central, ovn_host)\r\n\r\n* Kernel eBPF data consolidated in a single plugin\r\n\r\nFor full information on the changes contained in this release, please refer to the Git commit logs. Further release information and tarballs are available at:\r\n\r\nhttps://github.com/sosreport/sos/releases/tag/3.9\r\n\r\nPlease report any problems to the sos-devel mailing list, or the GitHub issue tracker:\r\n\r\nhttps://github.com/sosreport/sos/issues/\r\n\r\nThe team would like to thank everyone who contributed fixes, new features, testing, and feedback for this release." + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/19554528", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/19554528/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/19554528/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.8", + "id": 19554528, + "node_id": "MDc6UmVsZWFzZTE5NTU0NTI4", + "tag_name": "3.8", + "target_commitish": "master", + "name": "sos-3.8", + "draft": false, + "author": { + "login": "pmoravec", + "id": 4340368, + "node_id": "MDQ6VXNlcjQzNDAzNjg=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4340368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pmoravec", + "html_url": "https://github.com/pmoravec", + "followers_url": "https://api.github.com/users/pmoravec/followers", + "following_url": "https://api.github.com/users/pmoravec/following{/other_user}", + "gists_url": "https://api.github.com/users/pmoravec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pmoravec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pmoravec/subscriptions", + "organizations_url": "https://api.github.com/users/pmoravec/orgs", + "repos_url": "https://api.github.com/users/pmoravec/repos", + "events_url": "https://api.github.com/users/pmoravec/events{/privacy}", + "received_events_url": "https://api.github.com/users/pmoravec/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-08-27T08:17:45Z", + "published_at": "2019-08-27T08:29:04Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.8", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.8", + "body": "The sos team is pleased to announce the release of sos-3.8. This release contains a number of enhancements, new features, and bug fixes including:\r\n\r\n- 6 new plugins: container_log, frr, leapp, openstack_placement, qt, and vdsm (both backported from downstream)\r\n\r\n- The `kubernetes` plugin can now optionally grab logs only for certain pods\r\n\r\n- The `kdump` plugin will now collect `initramfs` content\r\n\r\n- The `pulp` and `foreman` plugins now support collecting from an external database\r\n\r\n- The `sar` plugin will now collect the full sar log dir\r\n\r\n- The `vdsm` and `ovirt` plugins will now collect host certificates\r\n\r\n- The `openvswitch` plugin will now enable on `openvswitch2.*` packages\r\n\r\n- Added support for only capturing logs after a specific date, see the new `--since` option\r\n\r\n- Fixed an issue causing high CPU utilization which slowed journal collection\r\n\r\n- Fixed an issue where plugins could continue executing commands after their timeout was hit\r\n\r\n- `sosreport` will no longer abort execution on Red Hat family systems when the package manager fails to query a file list\r\n\r\n- Plugin API enhancements\r\n - Plugins may now capture environment variables, which will be written to `/environment` in the sos archive root\r\n\r\n - Plugins may now write command output to subdirs within their own `sos_commands/plugin` directory\r\n - The container plugins have been updated to make use of this functionality\r\n\r\n - `SoSPredicate` usage may now be match either `any` or `all` of the provided elements, and may mix requirements of `kmods` and `services` to determine if a command should be collected\r\n\r\n\r\n- Significant changes to the reporting system of sos\r\n\r\n - HTML reports replaced by a `Report` subclass\r\n - HTML report creation time is significantly improved\r\n - Added a JSON formatted report option\r\n\r\n\r\n- Allow system changes option\r\n - A new `--allow-system-changes` option has been added that will allow users to collect certain data, even if it means the host system would be changed. For example, the `networking` plugin will not run certain commands if specific kernel modules are not loaded, unless `--allow-system-changes` is specified, in which case the missing kernel modules will be loaded when the command(s) run.\r\n\r\n\r\nFor full information on the changes contained in this release, please refer to the Git commit logs.\r\n\r\nPlease report any problems to the sos-devel mailing list, or the GitHub issue tracker:\r\n\r\nhttps://github.com/sosreport/sos/issues/\r\n\r\nThe team would like to thank everyone who contributed fixes, new features, testing, and feedback for this release." + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/16387054", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/16387054/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/16387054/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.7", + "id": 16387054, + "node_id": "MDc6UmVsZWFzZTE2Mzg3MDU0", + "tag_name": "3.7", + "target_commitish": "master", + "name": "sos-3.7", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-03-27T21:00:56Z", + "published_at": "2019-03-27T18:03:19Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.7", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.7", + "body": "The sos team is pleased to announce the release of sos-3.7. This is a significant release containing a large number of enhancements, new features, and bug fixes, including:\r\n\r\n* New distribution policies for CentOS and Amazon Linux\r\n\r\n* 19 new plugins:\r\n candlepin, cifs, cockpit, composer, crio, gssproxy, katello, openstack_novajoin, ovirt_node, peripety, podman, pulp, rasdaemon, rhcos, rhv_analyzer, rpmostree, ruby, stratis, sudo\r\n\r\n* Obsolete IPSec plugin removed (in favour of OpenSwan)\r\n\r\n* Support for passphrase and key based encryption of the report archive\r\n * Ability to encrypt the archive using GPG, with either a key or passphrase\r\n * New `--encrypt-key` and `--encrypt-pass` arguments to `sosreport`\r\n\r\n* Improved handling of paths containing directory symbolic links (for e.g. `/sys`)\r\n * Previous versions of sos would replace intermediate path components that contain a symbolic link to a directory in the host file system with an actual directory in the report archive. The host file system structure is now reflected properly in the report directory structure.\r\n\r\n* New InitSystem abstraction\r\n * Allows plugin and collection enablement based on the presence of a service, and methods to test whether a given service is currently running\r\n\r\n* LVM2 plugin enhancements\r\n * Locking fixes for LVM2 metadata and reporting output capture\r\n * Additional LVM2 logical volume manager report data\r\n\r\n* Append plugin exceptions to `sos_logs/*-plugin-exception.txt`\r\n * Previous versions of sos would overwrite earlier exceptions if more than one exception occurred while running a plugin (for example, when an exception occurs in both `setup()` and `postproc()` phases).\r\n\r\n* *Dry run* mode (`--dry-run`)\r\n * Allows sos to run without collecting data, or executing commands, and proving a log of actions that would have been taken by a normal run on the current system configuration.\r\n\r\n* Plugin API enhancements\r\n * SoSPredicates for gating collection on service and kernel module presence, and during dry-run mode\r\n\r\n* Significant enhancements to core features and existing plugins\r\n\r\n * Fixes to threaded exception handling, and interactive debugging with `--debug`\r\n\r\n * Support for OpenShift 3.10 deployments\r\n\r\n * Improved multipath data collection\r\n\r\n * Fixed RHEL Atomic default command line preset\r\n\r\n * Support for PowerPC DLPAR and LPM logs\r\n\r\n * Additional FIPS and crypto-policies data collection\r\n\r\n * Test suite and CI support for Python-3.7 final\r\n\r\n * Additional systemd listings and statuses\r\n\r\n * Support for user-controlled per-plugin timeouts\r\n\r\n * Do not leave report artefacts in TMP when executing list commands\r\n\r\n * Improvements to command termination in the event of plugin timeouts\r\n\r\n * Policy support for Red Hat Enterprise Linux 8.0\r\n\r\n * Improved STONITH and watchdog data collection for Pacemaker clusters\r\n\r\n * Support for Debian journald logging in the logs plugin\r\n\r\n * New built-in 'cantboot' preset for collecting information relevant to failed boots\r\n\r\n * Ability to disable default presets on the command line (`--preset=none`)\r\n\r\n * Support for setting all `sosreport` command line options (including global and plugin options) in the `sos.conf` configuration file\r\n\r\n * The deprecated XML reporting module has been removed\r\n\r\n * Continuous integration with the LGTM static analyser (rated 'A')\r\n\r\n * Apache plugin fixed to support `--log-size` global option\r\n\r\n * Native support for collecting `foreman-debug` equivalent data in `sos`\r\n\r\nFor full information on the changes contained in this release, please refer to the Git commit logs. Further release information and tarballs are available at:\r\n\r\nhttps://github.com/sosreport/sos/releases/tag/3.7\r\n\r\nPlease report any problems to the sos-devel mailing list, or the GitHub issue tracker:\r\n\r\nhttps://github.com/sosreport/sos/issues/\r\n\r\nThe team would like to thank everyone who contributed fixes, new features, testing, and feedback for this release." + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/11611240", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/11611240/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/11611240/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.6", + "id": 11611240, + "node_id": "MDc6UmVsZWFzZTExNjExMjQw", + "tag_name": "3.6", + "target_commitish": "master", + "name": "sos-3.6", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-06-25T10:43:27Z", + "published_at": "2018-06-25T10:50:55Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.6", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.6", + "body": "The sos team is pleased to announce the release of sos-3.6. This is a\r\nsignificant release containing a number of enhancements, new features,\r\nand bug fixes, including:\r\n\r\n* 29 new plugins:\r\n alternatives, ansible, btrfs, buildah, clear_containers, date,\r\n elastic, fibrechannel, host, kata_containers, lustre, memcached,\r\n mssql, networkmanager, nvme, omnipath_client, omnipath_manager, \r\n opendaylight, openstack_octavia, ovirt_provider_ovn, ovn_central, \r\n ovn_host, rear, release, runc, skydive, unpackaged, watchdog, wireless\r\n\r\n* User and policy defined command line presets\r\n * The ability to save and recall specific combinations of command\r\n line parameters\r\n * Policy authors may define presets for specific situations, products\r\n or other uses (e.g. \"cantboot\", \"rhel\", \"openshift\" etc.).\r\n\r\n* Size limits for external commands\r\n * Certain commands produce large volumes of data, inflating report\r\n size (e.g. journalctl): the command collection interface now allows\r\n an arbitrary size limit to be applied, which includes memory used\r\n during the run (reducing sosreport's peak memory usage).\r\n\r\n* Automatic file and command size limits\r\n * Plugins that do not specify an explicit size limit for files or\r\n commands are now subject to the default value (specified with the\r\n --log-size command line option).\r\n * Plugin authors may override this behaviour if needed\r\n\r\n* Concurrent plugin execution\r\n * Plugins are now run in parallel using a thread pool\r\n * Reduces runtime by up to 50% (workload dependent)\r\n * Command line --threads option to set the number of threads to\r\n use, or to disable parallel execution\r\n\r\n* New profiles (including containers and the Apache webserver)\r\n\r\n* major enhancements to core features and existing plugins:\r\n\r\n * better package manager version information\r\n * policy support for detecting package managed files\r\n * fixed exit status propagation\r\n * deprecated optparse replaced with argparse\r\n * simplified and improved SoSOptions interface\r\n * better error handling during interactive prompting\r\n * allow journal collection by identifier\r\n * allow collection of journal message catalogs\r\n * support for collecting binary file data\r\n * more fine-grained system plugins (date etc.)\r\n * policy defined report file name patterns\r\n - more human-readable report file names by default\r\n * increased default log size (25MiB vs. 10MiB)\r\n * support for forbidden path lists and forbid logging\r\n * support for enabling plugins by kernel module name\r\n * support for enabling plugins by executable name\r\n * support for collecting eBPF (bpftool) data\r\n * support for device information via add_udev_info()\r\n * support for detecting and reporting unpackaged binaries\r\n * optional collection of the RPMDB\r\n * improved archive compression level and multithreading\r\n * default log size increased from 10MiB to 25MiB\r\n * improved debug logging and ENOSPC handling\r\n * major updates to the IPA plugin\r\n * major updates to the Docker plugin\r\n * string decoding fixes\r\n * DNF and Yum module support\r\n * OpenShift 3.10 support\r\n * Python3 fixes\r\n\r\nFurther release information and tarballs are available at:\r\n\r\n https://github.com/sosreport/sos/releases/tag/3.6\r\n\r\nPlease report any problems to the sos-devel mailing list, or the\r\nGitHub issue tracker:\r\n\r\n https://github.com/sosreport/sos/issues/\r\n\r\nI'd like to thank everyone who contributed fixes, new features,\r\ntesting, and feedback for this release." + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/11216182", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/11216182/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/11216182/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.5.1", + "id": 11216182, + "node_id": "MDc6UmVsZWFzZTExMjE2MTgy", + "tag_name": "3.5.1", + "target_commitish": "master", + "name": "sos-3.5.1", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-05-29T11:53:42Z", + "published_at": "2018-05-29T09:49:20Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.5.1", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.5.1", + "body": "The sos team is pleased to announce the release of sos-3.5.1. This is a maintenance release containing a number of enhancements, new features, and bug fixes, including:\r\n\r\n* 22 new plugins:\r\n - alternatives, ansible, btrfs, buildah, clear_containers, date, fibrechannel, host, kata_containers, lustre, memcached, networkmanager, nvme, opendaylight, openstack_octavia, ovirt_provider_ovn, ovn_central, ovn_host, rear, release\r\nrunc, wireless\r\n\r\n* New profiles (including containers and the Apache webserver)\r\n\r\n* major enhancements to core features and existing plugins:\r\n * better package manager version information\r\n * fixed exit status propagation\r\n * deprecated optparse replaced with argparse\r\n * better error handling during interactive prompting\r\n * allow journal collection by identifier\r\n * allow collection of journal message catalogs\r\n * support for collecting binary file data\r\n * more fine-grained system plugins (date etc.)\r\n * policy defined report file name patterns\r\n - more human-readable report file names by default\r\n * support for forbidden path lists and forbid logging\r\n * support for enabling plugins by kernel module name\r\n * support for enabling plugins by executable name\r\n * support for collecting eBPF (bpftool) data\r\n * support for device information via add_udev_info()\r\n * optional collection of the RPMDB\r\n * default log size increased from 10MiB to 25MiB\r\n * string decoding fixes\r\n * improved debug logging and ENOSPC handling\r\n * OpenShift 3.10 support\r\n * Python3 fixes\r\n\r\nThis release allows distribution packagers to update to a new upstream release before the final release of 3.6. The 3.6 release will include further enhancements in core `sosreport` functionality and is planned for late June 2018." + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/8357833", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/8357833/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/8357833/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.5", + "id": 8357833, + "node_id": "MDc6UmVsZWFzZTgzNTc4MzM=", + "tag_name": "3.5", + "target_commitish": "master", + "name": "sos-3.5", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-11-02T12:56:45Z", + "published_at": "2017-11-14T14:54:50Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.5", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.5", + "body": "The sos team is pleased to announce the release of sos-3.5. This release includes a number of enhancements, new features, and bug fixes, including:\r\n\r\n* New plugins for perl, boom, vdo, os_net_config, conntrackd, ovirt_imageio, nss, sas3ircu, openstack_aodh, docker_distribution, gluster_block, snappy\r\n* Plugin API enhancements\r\n * Plugin triggers by executable name\r\n * Improved log size limit handling\r\n * Better handling of compressed log files\r\n * Per-plugin package verification lists\r\n* Updates to 74 plugins\r\n\r\nThanks to everyone who submitted patches, testing feedback, and filed issues that helped to make this a quality release with many new features and improvements.\r\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/5897223", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/5897223/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/5897223/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.4", + "id": 5897223, + "node_id": "MDc6UmVsZWFzZTU4OTcyMjM=", + "tag_name": "3.4", + "target_commitish": "master", + "name": "sos-3.4", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-03-28T16:17:23Z", + "published_at": "2017-03-28T16:44:37Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.4", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.4", + "body": "The sos team is pleased to announce the release of sos-3.4. This release includes a number of enhancements, new features, and bug fixes, including:\r\n\r\n* New plugins for virt-who, nodejs, npm, dracut, juju 2.0, grafana, nfsganesha, collectd, canonical_livepatch, jars, salt, saltmaster, storageconsole, gnocchi, crypto, azure/Red Hat, zfs\r\n* Plugin API enhancements\r\n* Internationalisation updates\r\n\r\nThanks to everyone who submitted patches, testing feedback, and filed issues that helped to make this a quality release with many new features and improvements.\r\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/3557026", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/3557026/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/3557026/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.3", + "id": 3557026, + "node_id": "MDc6UmVsZWFzZTM1NTcwMjY=", + "tag_name": "3.3", + "target_commitish": "master", + "name": "3.3", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-06-29T18:24:58Z", + "published_at": "2016-06-30T07:50:35Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.3", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.3", + "body": "The sos team is pleased to announce the release of sos-3.3. This release includes a number of enhancements, new features, and bug fixes, including:\n- Support for OpenShift Enterprise 3.x\n- Improved and expanded OpenStack plugins\n- Enhanced support for Open vSwitch\n- Enhanced Kubernetes data collection\n- Improved support for systemd journal collection\n- Policy support for the SuSE family of Linux distributions\n- Policy support for the IBMKvm hypervisor distribution\n- Enhanced display manager and 3D acceleration data capture\n- Improved support for Linux clusters, including Pacemaker \n- Expanded CPU and NUMA topology collection\n- Expanded mainframe (s390x) coverage\n- Collection of multipath topology\n\nThanks to everyone who submitted patches, testing feedback, and filed issues that helped to make this a quality release with many new features and improvements.\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/593756", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/593756/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/593756/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.2", + "id": 593756, + "node_id": "MDc6UmVsZWFzZTU5Mzc1Ng==", + "tag_name": "3.2", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-09-30T17:40:22Z", + "published_at": "2014-09-30T17:42:39Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.2", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.2", + "body": "The sos team is pleased to announce the release of sos-3.2. This release includes a large number of enhancements and fixes, including:\n- Profiles for plugin selection\n- Improved log size limiting\n- File archiving enhancements and robustness improvements\n- Global plugin options:\n - `--verify`, `--log-size`, `--all-logs`\n- Better plugin descriptions\n- Improved journalctl log capture\n- PEP8 compliant code base\n- oVirt support improvements\n- New plugins: hpasm, ctdb, dbus, oVirt engine hosted, MongoDB, ActiveMQ, OpenShift 2.0, MegaCLI, FCoE, python, Ubuntu, NUMA, Team network driver\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/563389", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/563389/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/563389/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.2beta1", + "id": 563389, + "node_id": "MDc6UmVsZWFzZTU2MzM4OQ==", + "tag_name": "3.2beta1", + "target_commitish": "master", + "name": "sos-3.2beta1", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2014-09-17T09:15:58Z", + "published_at": "2014-09-17T09:31:31Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.2beta1", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.2beta1", + "body": "The sos team is pleased to announce the beta release of sos-3.2. This release includes a large number of enhancements and fixes, including:\n- Profiles for plugin selection\n- Improved log size limiting\n- File archiving enhancements and robustness improvements\n- Global plugin options:\n - `--verify`, `--log-size`, `--all-logs`\n- Better plugin descriptions\n- Improved journalctl log capture\n- PEP8 compliant code base\n- oVirt support improvements\n- New plugins: hpasm, ctdb, dbus, oVirt engine hosted, MongoDB, ActiveMQ, OpenShift 2.0, MegaCLI, FCoE, python, Ubuntu, NUMA, Team network driver\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/371440", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/371440/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/371440/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.2alpha1", + "id": 371440, + "node_id": "MDc6UmVsZWFzZTM3MTQ0MA==", + "tag_name": "3.2alpha1", + "target_commitish": "master", + "name": "sos-3.2alpha1", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2014-06-12T16:27:44Z", + "published_at": "2014-06-12T16:41:55Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.2alpha1", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.2alpha1", + "body": "The sos team is pleased to announce the first alpha release of sos-3.2. This release includes a large number of enhancements and fixes, including:\n- Native oVirt support\n- New plugins for Docker, distupgrade, ipvs, oVirt, pcp, rabbitmq, tuned, FirewallD, HAproxy, keepalived \n- Improved logging\n- Better handling of catastrophic file system errors (EROFS, ENOSPC etc.)\n- Improved sar data handling\n- PowerPC arch improvements\n- Improved python3 support\n\nFor full change information please refer to the git repository logs.\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/251265", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/251265/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/251265/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.1", + "id": 251265, + "node_id": "MDc6UmVsZWFzZTI1MTI2NQ==", + "tag_name": "3.1", + "target_commitish": "master", + "name": "sos-3.1", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-04-01T15:17:41Z", + "published_at": "2014-04-01T15:29:56Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.1", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.1", + "body": "The sos team is pleased to announce the release of sos-3.1. This release includes a large number of enhancements and fixes, including:\n- Modular OpenStack plugins\n- Python3 support\n- New plugins for XFS, OpenShift, Kerberos, OpenHPI, apt, Foreman, Katello, PowerPC, NFS client\n\nFor full change information please refer to the git repository logs.\n" + }, + { + "url": "https://api.github.com/repos/sosreport/sos/releases/251245", + "assets_url": "https://api.github.com/repos/sosreport/sos/releases/251245/assets", + "upload_url": "https://uploads.github.com/repos/sosreport/sos/releases/251245/assets{?name,label}", + "html_url": "https://github.com/sosreport/sos/releases/tag/3.0", + "id": 251245, + "node_id": "MDc6UmVsZWFzZTI1MTI0NQ==", + "tag_name": "3.0", + "target_commitish": "master", + "name": "sos-3.0", + "draft": false, + "author": { + "login": "bmr-cymru", + "id": 910549, + "node_id": "MDQ6VXNlcjkxMDU0OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/910549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bmr-cymru", + "html_url": "https://github.com/bmr-cymru", + "followers_url": "https://api.github.com/users/bmr-cymru/followers", + "following_url": "https://api.github.com/users/bmr-cymru/following{/other_user}", + "gists_url": "https://api.github.com/users/bmr-cymru/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bmr-cymru/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bmr-cymru/subscriptions", + "organizations_url": "https://api.github.com/users/bmr-cymru/orgs", + "repos_url": "https://api.github.com/users/bmr-cymru/repos", + "events_url": "https://api.github.com/users/bmr-cymru/events{/privacy}", + "received_events_url": "https://api.github.com/users/bmr-cymru/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-04-01T15:14:26Z", + "published_at": "2014-04-01T15:22:24Z", + "assets": [ + + ], + "tarball_url": "https://api.github.com/repos/sosreport/sos/tarball/3.0", + "zipball_url": "https://api.github.com/repos/sosreport/sos/zipball/3.0", + "body": "The sos team is pleased to announce the release of sos-3.0. This release includes a large number of enhancements and fixes. For full change information please refer to the git repository logs.\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/tmux.yaml b/upstream-info/tmux.yaml index e9cc595fa1d9d7f7afb13441491634ecdd488ea2..97ac9bcbf53db929df159ebca366f95cdd6051cc 100644 --- a/upstream-info/tmux.yaml +++ b/upstream-info/tmux.yaml @@ -1,4 +1,2191 @@ +--- version_control: github -src_repo: tmux/tmux -tag_prefix: ^v -seperator: . +src_repo: tmux/tmux +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:47:36.150443170 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/26132543", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/26132543/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/26132543/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/3.1b", + "id": 26132543, + "node_id": "MDc6UmVsZWFzZTI2MTMyNTQz", + "tag_name": "3.1b", + "target_commitish": "master", + "name": "tmux 3.1b", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-05-04T08:07:09Z", + "published_at": "2020-05-04T08:11:10Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/20391041", + "id": 20391041, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIwMzkxMDQx", + "name": "tmux-3.1b.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 561152, + "download_count": 5049, + "created_at": "2020-05-04T08:10:52Z", + "updated_at": "2020-05-04T08:10:58Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.1b/tmux-3.1b.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/3.1b", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/3.1b", + "body": "This is a bug fix release of 3.1\r\n\r\nFor a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/3.1b/CHANGES)\r\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/26021249", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/26021249/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/26021249/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/3.1a", + "id": 26021249, + "node_id": "MDc6UmVsZWFzZTI2MDIxMjQ5", + "tag_name": "3.1a", + "target_commitish": "master", + "name": "tmux 3.1a", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-04-27T08:38:25Z", + "published_at": "2020-04-29T20:03:31Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/20275674", + "id": 20275674, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIwMjc1Njc0", + "name": "tmux-3.1a.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 561121, + "download_count": 3199, + "created_at": "2020-04-29T20:03:24Z", + "updated_at": "2020-04-29T20:03:30Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.1a/tmux-3.1a.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/3.1a", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/3.1a", + "body": "This is a bug fix release of 3.1\r\n\r\nFor a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/3.1a/CHANGES)\r\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/23363559", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/23363559/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/23363559/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/3.1", + "id": 23363559, + "node_id": "MDc6UmVsZWFzZTIzMzYzNTU5", + "tag_name": "3.1", + "target_commitish": "master", + "name": "tmux 3.1", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2020-04-24T08:58:13Z", + "published_at": "2020-02-04T07:26:13Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/20110006", + "id": 20110006, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIwMTEwMDA2", + "name": "tmux-3.1.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 561086, + "download_count": 2431, + "created_at": "2020-04-24T09:01:30Z", + "updated_at": "2020-04-24T09:01:36Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.1/tmux-3.1.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/3.1", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/3.1", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/3.1/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/21876869", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/21876869/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/21876869/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/3.0a", + "id": 21876869, + "node_id": "MDc6UmVsZWFzZTIxODc2ODY5", + "tag_name": "3.0a", + "target_commitish": "master", + "name": "tmux 3.0a", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-12-01T08:53:16Z", + "published_at": "2019-12-01T08:55:42Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/17595528", + "id": 17595528, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE3NTk1NTI4", + "name": "tmux-3.0a-x86_64.AppImage", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 659432, + "download_count": 1107, + "created_at": "2020-01-27T08:55:19Z", + "updated_at": "2020-01-27T08:55:25Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.0a/tmux-3.0a-x86_64.AppImage" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/16510146", + "id": 16510146, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTEwMTQ2", + "name": "tmux-3.0a.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 546377, + "download_count": 36426, + "created_at": "2019-12-01T08:55:38Z", + "updated_at": "2019-12-01T08:55:40Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.0a/tmux-3.0a.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/3.0a", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/3.0a", + "body": "This is a bug fix release of 3.0\r\n\r\nFor a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/3.0a/CHANGES)\r\n\r\n`tmux-3.0a.tar.gz` is the source tarball; `tmux-3.0a-x86_64.AppImage` is an [AppImage](https://appimage.org/) package for Linux" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/17651798", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/17651798/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/17651798/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/3.0", + "id": 17651798, + "node_id": "MDc6UmVsZWFzZTE3NjUxNzk4", + "tag_name": "3.0", + "target_commitish": "master", + "name": "tmux 3.0", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-11-26T13:17:03Z", + "published_at": "2019-05-29T10:33:15Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/16408402", + "id": 16408402, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NDA4NDAy", + "name": "tmux-3.0.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 546099, + "download_count": 6612, + "created_at": "2019-11-26T13:19:58Z", + "updated_at": "2019-11-26T13:19:59Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/3.0/tmux-3.0.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/3.0", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/3.0", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/3.0/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/17083657", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/17083657/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/17083657/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.9a", + "id": 17083657, + "node_id": "MDc6UmVsZWFzZTE3MDgzNjU3", + "tag_name": "2.9a", + "target_commitish": "master", + "name": "tmux 2.9a", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-01T06:16:27Z", + "published_at": "2019-05-01T06:18:48Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/12330301", + "id": 12330301, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzMwMzAx", + "name": "tmux-2.9a.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 510915, + "download_count": 34427, + "created_at": "2019-05-01T06:17:40Z", + "updated_at": "2019-05-01T06:17:47Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.9a/tmux-2.9a.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.9a", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.9a", + "body": "This is a bug fix release of 2.9\r\n\r\nFor a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.9a/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/16356265", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/16356265/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/16356265/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.9", + "id": 16356265, + "node_id": "MDc6UmVsZWFzZTE2MzU2MjY1", + "tag_name": "2.9", + "target_commitish": "master", + "name": "tmux 2.9", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-04-24T21:35:29Z", + "published_at": "2019-03-26T14:43:38Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/12223322", + "id": 12223322, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjIzMzIy", + "name": "tmux-2.9.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 510966, + "download_count": 107871, + "created_at": "2019-04-24T21:40:07Z", + "updated_at": "2019-04-24T21:40:08Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.9/tmux-2.9.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.9", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.9", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.9/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/12452064", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/12452064/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/12452064/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.8", + "id": 12452064, + "node_id": "MDc6UmVsZWFzZTEyNDUyMDY0", + "tag_name": "2.8", + "target_commitish": "2.8-rc", + "name": "tmux 2.8", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-10-17T18:29:48Z", + "published_at": "2018-08-17T10:44:17Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/9214434", + "id": 9214434, + "node_id": "MDEyOlJlbGVhc2VBc3NldDkyMTQ0MzQ=", + "name": "tmux-2.8.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 491195, + "download_count": 80923, + "created_at": "2018-10-17T18:32:15Z", + "updated_at": "2018-10-17T18:32:17Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.8/tmux-2.8.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.8", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.8", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.8/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/10208327", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/10208327/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/10208327/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.7", + "id": 10208327, + "node_id": "MDc6UmVsZWFzZTEwMjA4MzI3", + "tag_name": "2.7", + "target_commitish": "master", + "name": "tmux 2.7", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-04-03T11:29:32Z", + "published_at": "2018-03-22T11:22:25Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/6838264", + "id": 6838264, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY4MzgyNjQ=", + "name": "tmux-2.7.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 487585, + "download_count": 105330, + "created_at": "2018-04-13T16:49:28Z", + "updated_at": "2018-04-13T16:49:29Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.7/tmux-2.7.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.7", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.7", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.7/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/7564074", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/7564074/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/7564074/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.6", + "id": 7564074, + "node_id": "MDc6UmVsZWFzZTc1NjQwNzQ=", + "tag_name": "2.6", + "target_commitish": "master", + "name": "tmux 2.6", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-10-05T13:32:09Z", + "published_at": "2017-08-29T21:11:57Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/4990887", + "id": 4990887, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQ5OTA4ODc=", + "name": "tmux-2.6.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 481000, + "download_count": 367654, + "created_at": "2017-10-05T13:33:59Z", + "updated_at": "2017-10-05T13:34:04Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.6/tmux-2.6.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.6", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.6", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.6/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/6331582", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/6331582/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/6331582/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.5", + "id": 6331582, + "node_id": "MDc6UmVsZWFzZTYzMzE1ODI=", + "tag_name": "2.5", + "target_commitish": "2.5-rc", + "name": "tmux-2.5", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-05-29T07:12:58Z", + "published_at": "2017-05-09T22:05:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/3980701", + "id": 3980701, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM5ODA3MDE=", + "name": "tmux-2.5.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 475717, + "download_count": 95612, + "created_at": "2017-05-29T07:16:53Z", + "updated_at": "2017-05-29T07:16:58Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.5/tmux-2.5.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.5", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.5", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/2.5/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/6133984", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/6133984/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/6133984/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.4", + "id": 6133984, + "node_id": "MDc6UmVsZWFzZTYxMzM5ODQ=", + "tag_name": "2.4", + "target_commitish": "master", + "name": "tmux-2.4", + "draft": false, + "author": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-04-20T10:52:35Z", + "published_at": "2017-04-20T10:56:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/3698343", + "id": 3698343, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2OTgzNDM=", + "name": "tmux-2.4.tar.gz", + "label": null, + "uploader": { + "login": "nicm", + "id": 304243, + "node_id": "MDQ6VXNlcjMwNDI0Mw==", + "avatar_url": "https://avatars1.githubusercontent.com/u/304243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicm", + "html_url": "https://github.com/nicm", + "followers_url": "https://api.github.com/users/nicm/followers", + "following_url": "https://api.github.com/users/nicm/following{/other_user}", + "gists_url": "https://api.github.com/users/nicm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicm/subscriptions", + "organizations_url": "https://api.github.com/users/nicm/orgs", + "repos_url": "https://api.github.com/users/nicm/repos", + "events_url": "https://api.github.com/users/nicm/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicm/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 470549, + "download_count": 31089, + "created_at": "2017-04-20T10:56:17Z", + "updated_at": "2017-04-20T10:56:21Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.4/tmux-2.4.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.4", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.4", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/4267967", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/4267967/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/4267967/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.3", + "id": 4267967, + "node_id": "MDc6UmVsZWFzZTQyNjc5Njc=", + "tag_name": "2.3", + "target_commitish": "master", + "name": "tmux-2.3", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-09-29T20:54:41Z", + "published_at": "2016-09-29T21:00:42Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/2399563", + "id": 2399563, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIzOTk1NjM=", + "name": "tmux-2.3.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 473944, + "download_count": 141679, + "created_at": "2016-09-29T20:59:13Z", + "updated_at": "2016-09-29T20:59:20Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.3", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.3", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/2990356", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/2990356/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/2990356/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.2", + "id": 2990356, + "node_id": "MDc6UmVsZWFzZTI5OTAzNTY=", + "tag_name": "2.2", + "target_commitish": "master", + "name": "tmux-2.2", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-04-11T00:03:37Z", + "published_at": "2016-04-11T00:05:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/1532464", + "id": 1532464, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE1MzI0NjQ=", + "name": "tmux-2.2.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 466852, + "download_count": 186778, + "created_at": "2016-04-11T00:05:39Z", + "updated_at": "2016-04-11T00:05:45Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.2/tmux-2.2.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.2", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.2", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1978740", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1978740/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1978740/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.1", + "id": 1978740, + "node_id": "MDc6UmVsZWFzZTE5Nzg3NDA=", + "tag_name": "2.1", + "target_commitish": "master", + "name": "tmux-2.1", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-10-18T17:11:07Z", + "published_at": "2015-10-18T17:16:32Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/954306", + "id": 954306, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk1NDMwNg==", + "name": "tmux-2.1.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 462965, + "download_count": 113990, + "created_at": "2015-10-18T17:16:18Z", + "updated_at": "2015-10-18T17:16:27Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.1/tmux-2.1.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.1", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.1", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375534", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375534/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375534/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/2.0", + "id": 1375534, + "node_id": "MDc6UmVsZWFzZTEzNzU1MzQ=", + "tag_name": "2.0", + "target_commitish": "master", + "name": "tmux-2.0", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-05-05T20:20:41Z", + "published_at": "2015-06-04T08:41:16Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621132", + "id": 621132, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEzMg==", + "name": "tmux-2.0.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 455754, + "download_count": 202297, + "created_at": "2015-06-04T08:41:13Z", + "updated_at": "2015-06-04T08:41:15Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/2.0/tmux-2.0.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/2.0", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/2.0", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375531", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375531/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375531/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.9a", + "id": 1375531, + "node_id": "MDc6UmVsZWFzZTEzNzU1MzE=", + "tag_name": "1.9a", + "target_commitish": "master", + "name": "tmux-1.9a", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-02-22T21:00:09Z", + "published_at": "2015-06-04T08:40:59Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621131", + "id": 621131, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEzMQ==", + "name": "tmux-1.9a.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 447938, + "download_count": 8094, + "created_at": "2015-06-04T08:40:50Z", + "updated_at": "2015-06-04T08:40:52Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.9a/tmux-1.9a.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.9a", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.9a", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375530", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375530/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375530/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.9", + "id": 1375530, + "node_id": "MDc6UmVsZWFzZTEzNzU1MzA=", + "tag_name": "1.9", + "target_commitish": "master", + "name": "tmux-1.9", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2014-02-20T21:33:09Z", + "published_at": "2015-06-04T08:40:33Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621195", + "id": 621195, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTE5NQ==", + "name": "tmux-1.9.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 447027, + "download_count": 3708, + "created_at": "2015-06-04T09:13:00Z", + "updated_at": "2015-06-04T09:13:02Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.9/tmux-1.9.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.9", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.9", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375528", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375528/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375528/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.8", + "id": 1375528, + "node_id": "MDc6UmVsZWFzZTEzNzU1Mjg=", + "tag_name": "1.8", + "target_commitish": "master", + "name": "tmux-1.8", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2013-03-26T20:19:58Z", + "published_at": "2015-06-04T08:40:16Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621129", + "id": 621129, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyOQ==", + "name": "tmux-1.8.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 417537, + "download_count": 4787, + "created_at": "2015-06-04T08:40:09Z", + "updated_at": "2015-06-04T08:40:10Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.8/tmux-1.8.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.8", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.8", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375525", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375525/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375525/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.7", + "id": 1375525, + "node_id": "MDc6UmVsZWFzZTEzNzU1MjU=", + "tag_name": "1.7", + "target_commitish": "master", + "name": "tmux-1.7", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-10-13T10:56:38Z", + "published_at": "2015-06-04T08:39:43Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621128", + "id": 621128, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyOA==", + "name": "tmux-1.7.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 407164, + "download_count": 1322, + "created_at": "2015-06-04T08:39:37Z", + "updated_at": "2015-06-04T08:39:38Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.7/tmux-1.7.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.7", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.7", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375521", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375521/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375521/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.6", + "id": 1375521, + "node_id": "MDc6UmVsZWFzZTEzNzU1MjE=", + "tag_name": "1.6", + "target_commitish": "master", + "name": "tmux-1.6", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2012-01-23T12:59:12Z", + "published_at": "2015-06-04T08:39:16Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621127", + "id": 621127, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyNw==", + "name": "tmux-1.6.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 388633, + "download_count": 25276, + "created_at": "2015-06-04T08:39:13Z", + "updated_at": "2015-06-04T08:39:14Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.6/tmux-1.6.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.6", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.6", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375517", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375517/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375517/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.5", + "id": 1375517, + "node_id": "MDc6UmVsZWFzZTEzNzU1MTc=", + "tag_name": "1.5", + "target_commitish": "master", + "name": "tmux-1.5", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2011-07-09T16:10:35Z", + "published_at": "2015-06-04T08:38:00Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621125", + "id": 621125, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyNQ==", + "name": "tmux-1.5.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 374093, + "download_count": 358, + "created_at": "2015-06-04T08:37:54Z", + "updated_at": "2015-06-04T08:37:56Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.5/tmux-1.5.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.5", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.5", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375515", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375515/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375515/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.4", + "id": 1375515, + "node_id": "MDc6UmVsZWFzZTEzNzU1MTU=", + "tag_name": "1.4", + "target_commitish": "master", + "name": "tmux-1.4", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2010-12-27T21:37:43Z", + "published_at": "2015-06-04T08:37:17Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621123", + "id": 621123, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyMw==", + "name": "tmux-1.4.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 259614, + "download_count": 304, + "created_at": "2015-06-04T08:37:04Z", + "updated_at": "2015-06-04T08:37:06Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.4/tmux-1.4.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.4", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.4", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375512", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375512/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375512/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.3", + "id": 1375512, + "node_id": "MDc6UmVsZWFzZTEzNzU1MTI=", + "tag_name": "1.3", + "target_commitish": "master", + "name": "tmux-1.3", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2010-07-18T13:41:00Z", + "published_at": "2015-06-04T08:36:45Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621122", + "id": 621122, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyMg==", + "name": "tmux-1.3.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 251999, + "download_count": 237, + "created_at": "2015-06-04T08:36:42Z", + "updated_at": "2015-06-04T08:36:43Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.3/tmux-1.3.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.3", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.3", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375510", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375510/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375510/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.2", + "id": 1375510, + "node_id": "MDc6UmVsZWFzZTEzNzU1MTA=", + "tag_name": "1.2", + "target_commitish": "master", + "name": "tmux-1.2", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2010-03-10T15:18:50Z", + "published_at": "2015-06-04T08:36:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621121", + "id": 621121, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyMQ==", + "name": "tmux-1.2.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 241779, + "download_count": 227, + "created_at": "2015-06-04T08:36:13Z", + "updated_at": "2015-06-04T08:36:14Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.2/tmux-1.2.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.2", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.2", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375509", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375509/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375509/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.1", + "id": 1375509, + "node_id": "MDc6UmVsZWFzZTEzNzU1MDk=", + "tag_name": "1.1", + "target_commitish": "master", + "name": "tmux-1.1", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2009-11-05T12:35:48Z", + "published_at": "2015-06-04T08:35:57Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621120", + "id": 621120, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEyMA==", + "name": "tmux-1.1.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 230955, + "download_count": 221, + "created_at": "2015-06-04T08:35:54Z", + "updated_at": "2015-06-04T08:35:55Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.1/tmux-1.1.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.1", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.1", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375507", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375507/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375507/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/1.0", + "id": 1375507, + "node_id": "MDc6UmVsZWFzZTEzNzU1MDc=", + "tag_name": "1.0", + "target_commitish": "master", + "name": "tmux-1.0", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2009-09-20T18:54:22Z", + "published_at": "2015-06-04T08:35:30Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621119", + "id": 621119, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTExOQ==", + "name": "tmux-1.0.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 215329, + "download_count": 260, + "created_at": "2015-06-04T08:35:28Z", + "updated_at": "2015-06-04T08:35:29Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/1.0/tmux-1.0.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/1.0", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/1.0", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375505", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375505/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375505/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/0.9", + "id": 1375505, + "node_id": "MDc6UmVsZWFzZTEzNzU1MDU=", + "tag_name": "0.9", + "target_commitish": "master", + "name": "tmux-0.9", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2009-07-02T18:26:56Z", + "published_at": "2015-06-04T08:35:09Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621108", + "id": 621108, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEwOA==", + "name": "tmux-0.9.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 179064, + "download_count": 206, + "created_at": "2015-06-04T08:35:04Z", + "updated_at": "2015-06-04T08:35:05Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/0.9/tmux-0.9.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/0.9", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/0.9", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + }, + { + "url": "https://api.github.com/repos/tmux/tmux/releases/1375501", + "assets_url": "https://api.github.com/repos/tmux/tmux/releases/1375501/assets", + "upload_url": "https://uploads.github.com/repos/tmux/tmux/releases/1375501/assets{?name,label}", + "html_url": "https://github.com/tmux/tmux/releases/tag/0.8", + "id": 1375501, + "node_id": "MDc6UmVsZWFzZTEzNzU1MDE=", + "tag_name": "0.8", + "target_commitish": "master", + "name": "tmux-0.8", + "draft": false, + "author": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2009-04-21T20:10:23Z", + "published_at": "2015-06-04T08:34:06Z", + "assets": [ + { + "url": "https://api.github.com/repos/tmux/tmux/releases/assets/621106", + "id": 621106, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYyMTEwNg==", + "name": "tmux-0.8.tar.gz", + "label": null, + "uploader": { + "login": "ThomasAdam", + "id": 101281, + "node_id": "MDQ6VXNlcjEwMTI4MQ==", + "avatar_url": "https://avatars3.githubusercontent.com/u/101281?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ThomasAdam", + "html_url": "https://github.com/ThomasAdam", + "followers_url": "https://api.github.com/users/ThomasAdam/followers", + "following_url": "https://api.github.com/users/ThomasAdam/following{/other_user}", + "gists_url": "https://api.github.com/users/ThomasAdam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ThomasAdam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ThomasAdam/subscriptions", + "organizations_url": "https://api.github.com/users/ThomasAdam/orgs", + "repos_url": "https://api.github.com/users/ThomasAdam/repos", + "events_url": "https://api.github.com/users/ThomasAdam/events{/privacy}", + "received_events_url": "https://api.github.com/users/ThomasAdam/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/gzip", + "state": "uploaded", + "size": 175515, + "download_count": 268, + "created_at": "2015-06-04T08:33:52Z", + "updated_at": "2015-06-04T08:33:54Z", + "browser_download_url": "https://github.com/tmux/tmux/releases/download/0.8/tmux-0.8.tar.gz" + } + ], + "tarball_url": "https://api.github.com/repos/tmux/tmux/tarball/0.8", + "zipball_url": "https://api.github.com/repos/tmux/tmux/zipball/0.8", + "body": "For a list of changes [please read the CHANGES file](https://raw.githubusercontent.com/tmux/tmux/master/CHANGES)\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/udisks2.yaml b/upstream-info/udisks2.yaml index 97fbcf1c2201b944763765d136b25cd1e953820d..316d5274e1c72884dce4c05dc5ac3286f925312e 100644 --- a/upstream-info/udisks2.yaml +++ b/upstream-info/udisks2.yaml @@ -1,4 +1,2429 @@ +--- version_control: github -src_repo: storaged-project/udisks +src_repo: storaged-project/udisks tag_prefix: udisks- -seperator: . +seperator: "." +last_query: + time_stamp: 2020-05-20 10:02:01.180619550 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/18778666", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/18778666/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/18778666/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.4", + "id": 18778666, + "node_id": "MDc6UmVsZWFzZTE4Nzc4NjY2", + "tag_name": "udisks-2.8.4", + "target_commitish": "master", + "name": "udisks 2.8.4", + "draft": false, + "author": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-07-22T16:24:44Z", + "published_at": "2019-07-22T16:48:23Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/13848914", + "id": 13848914, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzODQ4OTE0", + "name": "udisks-2.8.4.tar.bz2", + "label": null, + "uploader": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1619051, + "download_count": 4653, + "created_at": "2019-07-22T16:45:57Z", + "updated_at": "2019-07-22T16:45:59Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.8.4/udisks-2.8.4.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.8.4", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.8.4", + "body": "The `udisks` project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThis `udisks-2.8.4` release brings couple of bugfixes, docs and test fixes and translation updates. With ongoing focus on development towards `udisks-2.9.0`, this is just a small maintenance release.\r\n\r\nFull list of changes is available in the _NEWS_ file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/17970494", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/17970494/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/17970494/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.3", + "id": 17970494, + "node_id": "MDc6UmVsZWFzZTE3OTcwNDk0", + "tag_name": "udisks-2.8.3", + "target_commitish": "master", + "name": "udisks 2.8.3", + "draft": false, + "author": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-06-13T12:28:42Z", + "published_at": "2019-06-13T14:09:20Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/13178878", + "id": 13178878, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTc4ODc4", + "name": "udisks-2.8.3.tar.bz2", + "label": null, + "uploader": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1613373, + "download_count": 1109, + "created_at": "2019-06-13T12:59:18Z", + "updated_at": "2019-06-13T12:59:19Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.8.3/udisks-2.8.3.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.8.3", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.8.3", + "body": "The `udisks` project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThis `udisks-2.8.3` release brings many memory leak fixes with similar work done in `libblockdev-2.22`. While `libblockdev` version requirement remains unchanged, it's strongly recommended to use both releases together to get full coverage of the fixes.\r\n\r\nOther notable changes include:\r\n* default and supported encryption types are now exposed on the `org.freedesktop.UDisks2.Manager` interface\r\n* minor `org.freedesktop.UDisks2.Filesystem` improvements related to updating properties upon method call return\r\n* various test fixes and improvements\r\n* translation updates\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/15897182", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/15897182/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/15897182/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.2", + "id": 15897182, + "node_id": "MDc6UmVsZWFzZTE1ODk3MTgy", + "tag_name": "udisks-2.8.2", + "target_commitish": "master", + "name": "udisks 2.8.2", + "draft": false, + "author": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-03-04T13:59:07Z", + "published_at": "2019-03-04T14:40:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/11353578", + "id": 11353578, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExMzUzNTc4", + "name": "udisks-2.8.2.tar.bz2", + "label": null, + "uploader": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1589149, + "download_count": 6974, + "created_at": "2019-03-04T14:39:47Z", + "updated_at": "2019-03-04T14:39:49Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.8.2/udisks-2.8.2.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.8.2", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.8.2", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.8.2 release brings mostly bugfixes without any changes to the public API. Notable changes include:\r\n * migration from intltool to gettext, udisks no longer depends on gnome-common\r\n * added _'windows_names'_ as a default mount option for ntfs-3g\r\n * fixed an issue potentially leading to open filedescriptors exhaustion\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/13178033", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/13178033/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/13178033/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.8", + "id": 13178033, + "node_id": "MDc6UmVsZWFzZTEzMTc4MDMz", + "tag_name": "udisks-2.7.8", + "target_commitish": "master", + "name": "udisks 2.7.8", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-10-01T08:50:13Z", + "published_at": "2018-10-01T11:00:41Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/8916375", + "id": 8916375, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg5MTYzNzU=", + "name": "udisks-2.7.8.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1304114, + "download_count": 548, + "created_at": "2018-10-01T11:00:38Z", + "updated_at": "2018-10-01T11:00:40Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.8/udisks-2.7.8.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.8", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.8", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.8 release is a bugfix release for 2.7 release. It contains fix for CVE-2018-17336.\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/13177957", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/13177957/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/13177957/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.6.6", + "id": 13177957, + "node_id": "MDc6UmVsZWFzZTEzMTc3OTU3", + "tag_name": "udisks-2.6.6", + "target_commitish": "master", + "name": "udisks 2.6.6", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-10-01T10:32:16Z", + "published_at": "2018-10-01T10:55:42Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/8916316", + "id": 8916316, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg5MTYzMTY=", + "name": "udisks-2.6.6.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1235537, + "download_count": 802, + "created_at": "2018-10-01T10:55:35Z", + "updated_at": "2018-10-01T10:55:37Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.6.6/udisks-2.6.6.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.6.6", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.6.6", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.6.6 release is a bugfix release for 2.6 release. It contains fix for CVE-2018-17336." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/13097886", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/13097886/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/13097886/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.1", + "id": 13097886, + "node_id": "MDc6UmVsZWFzZTEzMDk3ODg2", + "tag_name": "udisks-2.8.1", + "target_commitish": "master", + "name": "udisks 2.8.1", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-09-26T07:18:38Z", + "published_at": "2018-09-26T07:50:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/8847193", + "id": 8847193, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg4NDcxOTM=", + "name": "udisks-2.8.1.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1354879, + "download_count": 2246, + "created_at": "2018-09-26T07:49:54Z", + "updated_at": "2018-09-26T07:49:56Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.8.1/udisks-2.8.1.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.8.1", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.8.1", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.8.1 release contains mostly bug fixes.\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/12378741", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/12378741/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/12378741/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.0", + "id": 12378741, + "node_id": "MDc6UmVsZWFzZTEyMzc4NzQx", + "tag_name": "udisks-2.8.0", + "target_commitish": "master", + "name": "udisks-2.8.0", + "draft": false, + "author": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-08-13T14:47:28Z", + "published_at": "2018-08-13T15:00:16Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/8235141", + "id": 8235141, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyMzUxNDE=", + "name": "udisks-2.8.0.tar.bz2", + "label": null, + "uploader": { + "login": "tbzatek", + "id": 7337582, + "node_id": "MDQ6VXNlcjczMzc1ODI=", + "avatar_url": "https://avatars1.githubusercontent.com/u/7337582?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tbzatek", + "html_url": "https://github.com/tbzatek", + "followers_url": "https://api.github.com/users/tbzatek/followers", + "following_url": "https://api.github.com/users/tbzatek/following{/other_user}", + "gists_url": "https://api.github.com/users/tbzatek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tbzatek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tbzatek/subscriptions", + "organizations_url": "https://api.github.com/users/tbzatek/orgs", + "repos_url": "https://api.github.com/users/tbzatek/repos", + "events_url": "https://api.github.com/users/tbzatek/events{/privacy}", + "received_events_url": "https://api.github.com/users/tbzatek/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1351412, + "download_count": 2288, + "created_at": "2018-08-13T14:52:57Z", + "updated_at": "2018-08-13T14:53:00Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.8.0/udisks-2.8.0.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.8.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.8.0", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.8.0 release introduces new VDO module that is built on top of `libblockdev-vdo`. Apart from number of general bugfixes this release also brings support for creating LUKS 2 encrypted devices and other LUKS-related enhancements.\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.8.0) for more detailed information.\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/11752377", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/11752377/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/11752377/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.7", + "id": 11752377, + "node_id": "MDc6UmVsZWFzZTExNzUyMzc3", + "tag_name": "udisks-2.7.7", + "target_commitish": "master", + "name": "udisks 2.7.7", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-07-02T13:47:32Z", + "published_at": "2018-07-03T07:27:53Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/7744978", + "id": 7744978, + "node_id": "MDEyOlJlbGVhc2VBc3NldDc3NDQ5Nzg=", + "name": "udisks-2.7.7.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1330588, + "download_count": 2607, + "created_at": "2018-07-03T07:22:36Z", + "updated_at": "2018-07-03T07:22:38Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.7/udisks-2.7.7.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.7", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.7", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.7 release contains mostly bug fixes. New functionality includes support for unlocking TrueCrypt/VeraCrypt devices (using existing `Unlock` function from `org.freedesktop.UDisks2.Encrypted` interface).\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.7.7) for more detailed information.\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/9591355", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/9591355/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/9591355/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.6", + "id": 9591355, + "node_id": "MDc6UmVsZWFzZTk1OTEzNTU=", + "tag_name": "udisks-2.7.6", + "target_commitish": "master", + "name": "udisks 2.7.6", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-02-08T13:07:14Z", + "published_at": "2018-02-08T13:29:01Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/6148955", + "id": 6148955, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYxNDg5NTU=", + "name": "udisks-2.7.6.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1315047, + "download_count": 15683, + "created_at": "2018-02-08T13:33:12Z", + "updated_at": "2018-02-08T13:33:14Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.6/udisks-2.7.6.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.6", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.6", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.6 release contains mostly bug fixes.\r\n\r\n\r\nNewly available functions:\r\n* `org.freedesktop.UDisks2.Filesystem`\r\n * `Size` -- property, size of the filesystem\r\n* `org.freedesktop.UDisks2.Block`\r\n * `UserspaceMountOptions` -- property, list of userspace mountpoint options (e.g. `x-something`)\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.7.6) for more detailed information.\r\n\r\nFull list of changes is available in the NEWS file.\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/8757773", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/8757773/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/8757773/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.5", + "id": 8757773, + "node_id": "MDc6UmVsZWFzZTg3NTc3NzM=", + "tag_name": "udisks-2.7.5", + "target_commitish": "master", + "name": "udisks 2.7.5", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-12-04T09:29:18Z", + "published_at": "2017-12-04T11:22:22Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/5521346", + "id": 5521346, + "node_id": "MDEyOlJlbGVhc2VBc3NldDU1MjEzNDY=", + "name": "udisks-2.7.5.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1270965, + "download_count": 2208, + "created_at": "2017-12-04T11:23:43Z", + "updated_at": "2017-12-04T11:23:46Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.5/udisks-2.7.5.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.5", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.5", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.5 release contains mostly bug fixes.\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/8339863", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/8339863/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/8339863/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.4", + "id": 8339863, + "node_id": "MDc6UmVsZWFzZTgzMzk4NjM=", + "tag_name": "udisks-2.7.4", + "target_commitish": "master", + "name": "udisks 2.7.4", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-11-01T09:48:32Z", + "published_at": "2017-11-01T10:06:15Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/5218163", + "id": 5218163, + "node_id": "MDEyOlJlbGVhc2VBc3NldDUyMTgxNjM=", + "name": "udisks-2.7.4.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1205615, + "download_count": 262, + "created_at": "2017-11-01T10:06:28Z", + "updated_at": "2017-11-01T10:06:31Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.4/udisks-2.7.4.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.4", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.4", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.4 release contains mostly bug fixes.\r\n\r\nNewly available functions:\r\n* `org.freedesktop.UDisks2.Swapspapce`\r\n * `SetLabel` -- change label of an existing swap device.\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.7.4) for more detailed information.\r\n\r\nFull list of changes is available in the NEWS file." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/7589139", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/7589139/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/7589139/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.3", + "id": 7589139, + "node_id": "MDc6UmVsZWFzZTc1ODkxMzk=", + "tag_name": "udisks-2.7.3", + "target_commitish": "master", + "name": "udisks 2.7.3", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-08-31T11:48:27Z", + "published_at": "2017-08-31T12:09:50Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/4712569", + "id": 4712569, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQ3MTI1Njk=", + "name": "udisks-2.7.3.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1264599, + "download_count": 433, + "created_at": "2017-08-31T12:09:45Z", + "updated_at": "2017-08-31T12:09:47Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.3/udisks-2.7.3.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.3", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.3", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.3 release contains mostly bug fixes and some new functionality for device querying and block device opening.\r\n\r\nNewly available functions:\r\n* `org.freedesktop.UDisks2.Manager` interface\r\n * `ResolveDevice` -- find device(s) specified by path, UUID or label\r\n* `org.freedesktop.UDisks2.BlockDevice`\r\n * `DeviceOpen` -- generic \"open\" function intended to replace `OpenForBenchmark`, `OpenForBackup` and `OpenForRestore` functions. These functions are now **deprecated**.\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.7.3) for more detailed information.\r\n\r\nFull list of changes is available in the NEWS file.\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/7269178", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/7269178/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/7269178/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.2", + "id": 7269178, + "node_id": "MDc6UmVsZWFzZTcyNjkxNzg=", + "tag_name": "udisks-2.7.2", + "target_commitish": "master", + "name": "udisks 2.7.2", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-08-03T10:47:01Z", + "published_at": "2017-08-03T11:17:52Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/4494061", + "id": 4494061, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQ0OTQwNjE=", + "name": "udisks-2.7.2.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1245552, + "download_count": 519, + "created_at": "2017-08-03T11:17:31Z", + "updated_at": "2017-08-03T11:17:32Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.2/udisks-2.7.2.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.2", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.2", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.2 release contains mostly bug fixes and some new functionality for working with partitions and filesystems. Please see the NEWS file for more detailed information.\r\n\r\nNewly available functions:\r\n* `org.freedesktop.UDisks2.Manager` interface\r\n * `CanFormat`, `CanResize`, `CanCheck`, `CanRepair` -- check support for formatting/resizing/checking/repairing of given filesystem type\r\n * `GetBlockDevices` -- get list of block devices\r\n* `org.freedesktop.UDisks2.PartitionTable`\r\n * `Partitions` (property) -- list of partitions on device with this interface\r\n* `org.freedesktop.UDisks2.Filesystem`\r\n * `Resize`, `Check`, `Repair` -- resize/check/repair given filesystem\r\n* `org.freedesktop.UDisks2.Partition`\r\n * `Resize` -- resize given partition\r\n\r\nCheck [UDisks2 API documentation](http://storaged.org/doc/udisks2-api/2.7.2) for more detailed information.\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/6911602", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/6911602/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/6911602/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.1", + "id": 6911602, + "node_id": "MDc6UmVsZWFzZTY5MTE2MDI=", + "tag_name": "udisks-2.7.1", + "target_commitish": "master", + "name": "udisks 2.7.1", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-07-03T11:39:46Z", + "published_at": "2017-07-03T11:57:22Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/4240146", + "id": 4240146, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyNDAxNDY=", + "name": "udisks-2.7.1.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1229875, + "download_count": 189, + "created_at": "2017-07-03T12:17:22Z", + "updated_at": "2017-07-03T12:17:24Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.1/udisks-2.7.1.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.1", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.1", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.1 release contains mostly bug fixes and new tests. Please see the NEWS file for more detailed information.\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/6585814", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/6585814/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/6585814/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.7.0", + "id": 6585814, + "node_id": "MDc6UmVsZWFzZTY1ODU4MTQ=", + "tag_name": "udisks-2.7.0", + "target_commitish": "master", + "name": "udisks 2.7.0", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-06-02T13:27:07Z", + "published_at": "2017-06-02T13:34:04Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/4016170", + "id": 4016170, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwMTYxNzA=", + "name": "udisks-2.7.0.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1236317, + "download_count": 195, + "created_at": "2017-06-02T13:52:40Z", + "updated_at": "2017-06-02T13:52:43Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.7.0/udisks-2.7.0.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.7.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.7.0", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.7.0 release is the first release using libblockdev library for all low level storage management tasks instead of calling command line tools. Please see the NEWS file for more detailed information." + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/6385984", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/6385984/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/6385984/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.6.5", + "id": 6385984, + "node_id": "MDc6UmVsZWFzZTYzODU5ODQ=", + "tag_name": "udisks-2.6.5", + "target_commitish": "master", + "name": "udisks 2.6.5", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-05-15T10:54:14Z", + "published_at": "2017-05-15T10:56:47Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/3876663", + "id": 3876663, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM4NzY2NjM=", + "name": "udisks-2.6.5.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1215793, + "download_count": 1716, + "created_at": "2017-05-15T11:29:05Z", + "updated_at": "2017-05-15T11:29:07Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.6.5/udisks-2.6.5.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.6.5", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.6.5", + "body": "The udisks project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nThe 2.6.5 release contains numerous bugfixes, new tests, and continues with moving much of the functionality to libblockdev library. Please see the NEWS file for more detailed information\r\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/5737806", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/5737806/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/5737806/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/udisks-2.6.4", + "id": 5737806, + "node_id": "MDc6UmVsZWFzZTU3Mzc4MDY=", + "tag_name": "udisks-2.6.4", + "target_commitish": "master", + "name": "udisks 2.6.4", + "draft": false, + "author": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-03-14T12:53:25Z", + "published_at": "2017-03-14T13:04:11Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/3394338", + "id": 3394338, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMzOTQzMzg=", + "name": "udisks-2.6.4.tar.bz2", + "label": null, + "uploader": { + "login": "vojtechtrefny", + "id": 5063197, + "node_id": "MDQ6VXNlcjUwNjMxOTc=", + "avatar_url": "https://avatars0.githubusercontent.com/u/5063197?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vojtechtrefny", + "html_url": "https://github.com/vojtechtrefny", + "followers_url": "https://api.github.com/users/vojtechtrefny/followers", + "following_url": "https://api.github.com/users/vojtechtrefny/following{/other_user}", + "gists_url": "https://api.github.com/users/vojtechtrefny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vojtechtrefny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vojtechtrefny/subscriptions", + "organizations_url": "https://api.github.com/users/vojtechtrefny/orgs", + "repos_url": "https://api.github.com/users/vojtechtrefny/repos", + "events_url": "https://api.github.com/users/vojtechtrefny/events{/privacy}", + "received_events_url": "https://api.github.com/users/vojtechtrefny/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1236631, + "download_count": 403, + "created_at": "2017-03-14T13:33:36Z", + "updated_at": "2017-03-14T13:33:38Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/udisks-2.6.4/udisks-2.6.4.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/udisks-2.6.4", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/udisks-2.6.4", + "body": "The storaged project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\r\n\r\nSince this version storaged merged back with the udisks project (storaged was originally fork of udisks) using the original name udisks.\r\n\r\nThe 2.6.4 release contains numerous bugfixes, new tests, and continues with moving much of the functionality to libblockdev library. Please see the NEWS file for more detailed information" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/4651173", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/4651173/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/4651173/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.6.3", + "id": 4651173, + "node_id": "MDc6UmVsZWFzZTQ2NTExNzM=", + "tag_name": "storaged-2.6.3", + "target_commitish": "master", + "name": "storaged 2.6.3", + "draft": false, + "author": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-11-14T11:57:27Z", + "published_at": "2016-11-14T12:09:02Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/2641070", + "id": 2641070, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDEwNzA=", + "name": "storaged-2.6.3.tar.bz2", + "label": null, + "uploader": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1212693, + "download_count": 326, + "created_at": "2016-11-14T13:46:29Z", + "updated_at": "2016-11-14T13:46:31Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.6.3/storaged-2.6.3.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.6.3", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.6.3", + "body": "The storaged project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\n\nThe 2.6.3 release contains numerous bugfixes, new tests, and continues with moving much of the functionality to libblockdev library. Please see the NEWS file for more detailed information.\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/3458549", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/3458549/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/3458549/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.6.2", + "id": 3458549, + "node_id": "MDc6UmVsZWFzZTM0NTg1NDk=", + "tag_name": "storaged-2.6.2", + "target_commitish": "master", + "name": "storaged 2.6.2", + "draft": false, + "author": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-06-16T11:41:40Z", + "published_at": "2016-06-16T12:39:42Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1858345", + "id": 1858345, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE4NTgzNDU=", + "name": "storaged-2.6.2.tar.bz2", + "label": null, + "uploader": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1195601, + "download_count": 276, + "created_at": "2016-06-16T12:40:00Z", + "updated_at": "2016-06-16T12:40:02Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.6.2/storaged-2.6.2.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.6.2", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.6.2", + "body": "The storaged project provides a daemon, tools and libraries to access and manipulate disks, storage devices and technologies.\n\nThe 2.6.2 version completely replaces the API in order to become completely backward-compatible with udisks2. This means the 2.6.x versions will no longer be able to co-exist in the system with udisks2. The existing udisks2 consumers should not notice any change. The applications that are using the storaged-specific API need to be ported.\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/3380025", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/3380025/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/3380025/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.5.2", + "id": 3380025, + "node_id": "MDc6UmVsZWFzZTMzODAwMjU=", + "tag_name": "storaged-2.5.2", + "target_commitish": "master", + "name": "storaged 2.5.2", + "draft": false, + "author": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-06-06T10:04:00Z", + "published_at": "2016-06-06T10:14:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1800430", + "id": 1800430, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE4MDA0MzA=", + "name": "storaged-2.5.2.tar.bz2", + "label": null, + "uploader": { + "login": "tsmetana", + "id": 4759699, + "node_id": "MDQ6VXNlcjQ3NTk2OTk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/4759699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tsmetana", + "html_url": "https://github.com/tsmetana", + "followers_url": "https://api.github.com/users/tsmetana/followers", + "following_url": "https://api.github.com/users/tsmetana/following{/other_user}", + "gists_url": "https://api.github.com/users/tsmetana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tsmetana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tsmetana/subscriptions", + "organizations_url": "https://api.github.com/users/tsmetana/orgs", + "repos_url": "https://api.github.com/users/tsmetana/repos", + "events_url": "https://api.github.com/users/tsmetana/events{/privacy}", + "received_events_url": "https://api.github.com/users/tsmetana/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1184736, + "download_count": 44, + "created_at": "2016-06-06T11:00:07Z", + "updated_at": "2016-06-06T11:00:09Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.5.2/storaged-2.5.2.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.5.2", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.5.2", + "body": "The storaged project provides a daemon, tools and libraries to access\nand manipulate disks, storage devices and technologies.\n\n## Changes since 2.5.1:\n\nMarius Vollmer (4):\n- LVM2: Correctly retrieve meta data size\n- Core: Don't complete partition/format methods twice\n- Revert \"Reread partition table before wiping when creating new partitions\"\n- Core: Lock the table while creating a new partition\n\nPeter Hatina (6):\n- Build: introduce generate script for spec file (fixes #56)\n- Build: get the package version from configure script\n- Core: add missing ifdef for libblockdev-part label\n- Core: fix C99 error in DriveObject (fixes #55)\n- Revert \"Build: get the package version from configure script\"\n- Fix some memory leaks\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/3127225", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/3127225/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/3127225/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.5.1", + "id": 3127225, + "node_id": "MDc6UmVsZWFzZTMxMjcyMjU=", + "tag_name": "storaged-2.5.1", + "target_commitish": "master", + "name": "storaged-2.5.1", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-04-29T12:40:19Z", + "published_at": "2016-04-29T12:52:06Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1617339", + "id": 1617339, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MTczMzk=", + "name": "storaged-2.5.1.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1240390, + "download_count": 269, + "created_at": "2016-04-29T12:51:59Z", + "updated_at": "2016-04-29T12:52:01Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.5.1/storaged-2.5.1.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1617340", + "id": 1617340, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2MTczNDA=", + "name": "storaged-2.5.1.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 4, + "created_at": "2016-04-29T12:51:59Z", + "updated_at": "2016-04-29T12:52:01Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.5.1/storaged-2.5.1.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.5.1", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.5.1", + "body": "# Changes since 2.5.0\n\nMarius Vollmer (2):\n- LVM2: Include metadata size in Size property.\n- drives: Try harder when looking for a serial number\n\nMathieu Trudel-Lapierre (1):\n- Reread partition table before wiping when creating new partitions\n\nPeter Hatina (9):\n- Packaging: bump release version in spec file\n- ZRAM: %lu format\n- Fix permissions set for storaged_lsm.conf so it is readable only by root (fixes #51)\n- ZRAM: Fix typo in udev rules file\n- Build: introduce Debian packaging\n- TODO: possible features update\n- Block: fix segfault when no configuration is given for a LUKS device\n- Core: use libblockdev-part instead of parted\n- Doc: remove already implemented features\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/2806891", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/2806891/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/2806891/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.5.0", + "id": 2806891, + "node_id": "MDc6UmVsZWFzZTI4MDY4OTE=", + "tag_name": "storaged-2.5.0", + "target_commitish": "master", + "name": "storaged-2.5.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-03-14T14:20:41Z", + "published_at": "2016-03-14T14:26:36Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1420043", + "id": 1420043, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MjAwNDM=", + "name": "storaged-2.5.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1238560, + "download_count": 213, + "created_at": "2016-03-14T14:24:53Z", + "updated_at": "2016-03-14T14:24:55Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.5.0/storaged-2.5.0.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1420044", + "id": 1420044, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE0MjAwNDQ=", + "name": "storaged-2.5.0.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 6, + "created_at": "2016-03-14T14:24:53Z", + "updated_at": "2016-03-14T14:24:55Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.5.0/storaged-2.5.0.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.5.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.5.0", + "body": "# Changes since 2.4.0\n\nDavid Heidelberger (1):\n- Backport: allow disabling ACL\n\nDominika Hodovska (6):\n- ZRAM: add configuration for setup after reboot\n- ZRAM: fix configuration files handling\n- ZRAM: code reability change\n- ZRAM: add configuration for setup after reboot\n- ZRAM: fix configuration files handling\n- ZRAM: code reability change\n\nKylie McClain (1):\n- Backport: storagectl: Properly redirect stdout\n\nMarius Vollmer (2):\n- lvm2: Use \"NNN%FREE\" syntax when creating thin pools\n- lvm2: Add 'force' option to LogicalVolume.Resize\n\nMartin Pitt (11):\n- Backport: Fix udiskctl help for glib 2.45\n- Backport: integration-test: Explicitly require UDisks 2.0 gir\n- Backport: integration-test: Fix wait_timeout/busy error messages\n- Backport: integration-test: PEP-8 fixes\n- Backport: integration-test: Fix Polkit.test_removable_fs\n- Backport: test_polkitd.py: Fix race condition in waiting for test polkitd\n- Backport: storaged.service.in: Add [Install] section\n- Backport: Fix translator comments in storagedobjectinfo.c\n- Backport: integration-test: Fix race condition in fake CD drive creation\n- Backport: integration-test: Fix race condition in fake CD drive creation harder\n- Backport: integration-test: Add timeout to readd_device()\n\nPeter Hatina (18):\n- LinuxProvider: EnableModules() is now sync function\n- README: add build status badge\n- Build: introduce packaging/storaged.spec\n- Introduce configuration file for storaged\n- Add storaged.conf man page\n- Build: fix subdirs for packaging\n- Doc: add missing CLI options for storaged\n- Build: package zram-setup@.service template\n- gitignore: add build directories and vim files\n- Doc: fix storaged.conf typo in title\n- Doc: rewrite storaged_lsm man page to docbook\n- ZRAM: drop num_devices parameter from CreateDevices()\n- ZRAM: fix compiler warnings\n- Manager: introduce property with supported filesystems (fixes #38)\n- MDRaid: check UDISKS_\\* and STORAGED_\\* properties when handling uevents\n- MDRaid: handle UDISKS_\\* and STORAGED_\\* udev properties when updating D-Bus interfaces\n- MDRaid: introduce RAID jobs (fixes #37)\n- Remove unused variables in DriveObject class\n\nTom Yan (1):\n- Backport: Add support for read look-ahead ATA settings\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/2418249", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/2418249/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/2418249/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.4.0", + "id": 2418249, + "node_id": "MDc6UmVsZWFzZTI0MTgyNDk=", + "tag_name": "storaged-2.4.0", + "target_commitish": "master", + "name": "storaged-2.4.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2016-01-13T09:05:13Z", + "published_at": "2016-01-13T09:21:19Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1206251", + "id": 1206251, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDYyNTE=", + "name": "storaged-2.4.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip", + "state": "uploaded", + "size": 1194525, + "download_count": 266, + "created_at": "2016-01-13T09:21:05Z", + "updated_at": "2016-01-13T09:21:08Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.4.0/storaged-2.4.0.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/1206252", + "id": 1206252, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDYyNTI=", + "name": "storaged-2.4.0.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 5, + "created_at": "2016-01-13T09:21:05Z", + "updated_at": "2016-01-13T09:21:06Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.4.0/storaged-2.4.0.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.4.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.4.0", + "body": "# Changes since 2.3.0\n\nDominika Hodovska (3):\n- ZRAM: fix typos in code and comment\n- Bcache: introduce module\n- Bcache: error check correction\n\nMarius Vollmer (2):\n- Daemon: Look at /sys/.../dm/uuid to identify multipath masters.\n- Daemon: Ignore device mapper when working with multipath drives.\n\nPeter Hatina (21):\n- Doc: clarify the original author of man pages\n- Merge pull request #23 from hodovska/master\n- ISCSI: redesign passing CHAP authentication data to Login, Discover (#24)\n- Rename storagedctl to storagectl (fixes #25)\n- LSM: conditionally install storaged_lsm.conf\n- ISCSI: fix coding style in utility module\n- Merge pull request #27 from hodovska/master\n- Merge pull request #28 from hodovska/master\n- Merge branch 'master' of github.com:storaged-project/storaged\n- ISCSI: make error reporting more specific (fixes #26)\n- ISCSI: fix reverse username/password retrieval from options\n- ISCSI: introduce parameters passing for nodes when Login/Logout is issued (fixes #31)\n- Merge pull request #29 from mvollmer/multipath-fixeses\n- TODO: bcache already supported\n- ISCSI: improve node and CHAP parameters passing to libiscsi\n- ISCSI: fix compilation when iscsi_err.h is available on the system\n- TODO: module loading thoughts\n- ISCSI: introduce GetFirmwareInitiatorName() (resolves #34)\n- Build: remove deprecated variable in autogen.sh\n- Bcache: add missing POTFILES dependencies\n- Bcache: add new strings to translations' files\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1808144", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1808144/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1808144/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.3.0", + "id": 1808144, + "node_id": "MDc6UmVsZWFzZTE4MDgxNDQ=", + "tag_name": "storaged-2.3.0", + "target_commitish": "master", + "name": "storaged-2.3.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-09-14T08:03:59Z", + "published_at": "2015-09-14T08:05:45Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/862567", + "id": 862567, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MjU2Nw==", + "name": "storaged-2.3.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1163847, + "download_count": 237, + "created_at": "2015-09-14T08:05:13Z", + "updated_at": "2015-09-14T08:05:16Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.3.0/storaged-2.3.0.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/862566", + "id": 862566, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MjU2Ng==", + "name": "storaged-2.3.0.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 7, + "created_at": "2015-09-14T08:05:13Z", + "updated_at": "2015-09-14T08:05:14Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.3.0/storaged-2.3.0.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.3.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.3.0", + "body": "# Changes since 2.2.0\n\nDominika Hodovska (7):\n- LVM2: add LVMCache support\n- LVMCache: code fix\n- LVM: add policy action_id\n- LVMCache: memory leak fix\n- ZRAM: introduce module\n- ZRAM: code cleanup\n- ZRAM: remove newlines at the end of files\n\nGris Ge (3):\n- Fix memory leak in storaged_log().\n- New lsm module using LibStorageMgmt API.\n- Fix warning about removing non-exist interface.\n\nPeter Hatina (56):\n- Post-release bump to 2.2.1\n- BTRFS: move DBus types to storagedbtrfstypes.h\n- Deps: add missing rpm dependencies\n- Deps: pack rpm_dependencies.txt to tarball\n- BTRFS: refactor dev_file getter in filesystem update\n- Post release bump to 2.3.0\n- BTRFS: introduce check and repair method\n- BTRFS: introduce resize method\n- BTRFS: introduce create volume method\n- ZRAM: fix makefile to build the gtk docs\n- ZRAM: add translations macro for policy kit checks\n- ZRAM: add translation sources\n- ZRAM: remove whitespaces from sources\n- ISCSI: mark error messages for translation\n- BTRFS: fix subvolumes retrieval when no subvolume is present\n- BTRFS: fix reflink for @devices in o.s.S.M.BTRFS.CreateVolume()\n- BTRFS: introduce o.s.S.Filesystem.BTRFS.AddDevice()\n- BTRFS: fix misleading comment in btrfs_subvolume_perform_action()\n- BTRFS: introduce o.s.S.Filesystem.BTRFS.RemoveDevice()\n- BTRFS: update the o.s.S.F.BTRFS when Add/RemoveDevice() is called\n- Merge pull request #8 from cathay4t/lsm_module\n- LSM: add version for interfaces\n- BTRFS: add version for interface\n- LSM: allow to run with --uninstalled mode in builddir\n- BTRFS: fix @since tags coding style\n- ISCSI: fix @since tags coding style\n- Man: update month of release wrt HACKING\n- HACKING: update wrt storaged project\n- AUTHORS: add maintainer and most active contributors\n- LVM2: port to STORAGED_DAEMON_CHECK_AUTHORIZATION\n- ZRAM: update TODO-POSSIBLE-FEATURES\n- BTRFS: update TODO-POSSIBLE-FEATURES\n- Core: add method storaged_linux_block_object_get_device_file()\n- BTRFS: add exported object to STORAGED_DAEMON_CHECK_AUTHORIZATION()\n- ZRAM: add exported object to STORAGED_DAEMON_CHECK_AUTHORIZATION()\n- ISCSI: add exported object to STORAGED_DAEMON_CHECK_AUTHORIZATION()\n- ZRAM: fix typo in Makefile.am\n- LSM: fix documentation build\n- BTRFS: fix documentation build\n- Merge pull request #22 from hodovska/upstream\n- TODO: lvm cache is now supported\n- LVM2: drop duplicit lvm2_policy_action_id\n- LVM2: update doc sections for StoragedLogicalVolume\n- BTRFS: add types to the gtkdoc output\n- ISCSI: add types to the gtkdoc output\n- ZRAM: add types to the gtkdoc output\n- LSM: add types to the gtkdoc output\n- ZRAM: add optional interface to Block devices section in documentation\n- Doc: add new strings to translations' files\n- LVM2: fix typo in LogicalVolume\n- LVM2: fix uninitialized values in CacheAttach(), CacheSplit()\n- ZRAM: fix typos in translatable strings\n- Doc: disable explicit language translations\n- LSM: use sysconfdir for config file path construction\n- LSM: fix installation of storaged_lsm.conf\n- HACKING: add information about Zanata workflow\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1718903", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1718903/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1718903/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.2.0", + "id": 1718903, + "node_id": "MDc6UmVsZWFzZTE3MTg5MDM=", + "tag_name": "storaged-2.2.0", + "target_commitish": "master", + "name": "storaged-2.2.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-08-25T10:27:15Z", + "published_at": "2015-08-25T11:28:20Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/815591", + "id": 815591, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgxNTU5MQ==", + "name": "storaged-2.2.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1095341, + "download_count": 33, + "created_at": "2015-08-25T11:27:57Z", + "updated_at": "2015-08-25T11:27:59Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.2.0/storaged-2.2.0.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/815590", + "id": 815590, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgxNTU5MA==", + "name": "storaged-2.2.0.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 6, + "created_at": "2015-08-25T11:27:57Z", + "updated_at": "2015-08-25T11:27:58Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.2.0/storaged-2.2.0.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.2.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.2.0", + "body": "# Changes since 2.1.2\n\nMarius Vollmer (2):\n- lvm2: Properly monitor fstab and crypttab.\n- Do the wipe before returning for a 'no-block' Format.\n\nPeter Hatina (14):\n- BTRFS: add missing sources to POTFILES.in\n- ISCSI: add missing sources to POTFILES.in\n- BTRFS: add additional options passed also to policy kit\n- ISCSI: add additional options passed also to policy kit\n- Core: rename properties to options in STORAGED_DAEMON_CHECK_AUTHORIZATION\n- ISCSI: add missing doc strings for /o/s/S/iscsi/sessionX Logout(Interface) methods\n- BTRFS: Fix DBus SetLabel() doc string\n- BTRFS: introduce snapshots API\n- BTRFS: introduce subvolumes API\n- ISCSI: refactor discovery utility functions\n- ISCSI: introduce /o/s/S/iscsi/sessionX Logout method\n- ISCSI: add missing policy checks\n- ISCSI: fix typo in StoragedLinuxISCSISession documentation\n- BTRFS: introduce module\n\nStef Walter (1):\n- lvm2: Minor DBus interface doc fix\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1540459", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1540459/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1540459/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.1.2", + "id": 1540459, + "node_id": "MDc6UmVsZWFzZTE1NDA0NTk=", + "tag_name": "storaged-2.1.2", + "target_commitish": "master", + "name": "storaged-2.1.2", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-08-06T07:09:00Z", + "published_at": "2015-07-15T13:17:10Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/708525", + "id": 708525, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcwODUyNQ==", + "name": "storaged-2.1.2.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1090567, + "download_count": 194, + "created_at": "2015-07-15T13:17:01Z", + "updated_at": "2015-07-15T13:17:03Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.2/storaged-2.1.2.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/708524", + "id": 708524, + "node_id": "MDEyOlJlbGVhc2VBc3NldDcwODUyNA==", + "name": "storaged-2.1.2.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 6, + "created_at": "2015-07-15T13:17:01Z", + "updated_at": "2015-07-15T13:17:02Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.2/storaged-2.1.2.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.1.2", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.1.2", + "body": "# Changes since 2.1.1\n\nMarius Vollmer (1):\n- Catch bogus UUID changes of MDRAIDs.\n\nPeter Hatina (5):\n- ISCSI: fix polkit action typo\n- Merge pull request #14 from mvollmer/mdraid-bogus-uuid\n- Merge branch 'master' of https://github.com/storaged-project/storaged\n- ISCSI: code cleanup in initiator module\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1490746", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1490746/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1490746/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.1.1", + "id": 1490746, + "node_id": "MDc6UmVsZWFzZTE0OTA3NDY=", + "tag_name": "storaged-2.1.1", + "target_commitish": "master", + "name": "storaged-2.1.1", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-08-06T07:09:00Z", + "published_at": "2015-07-02T21:34:55Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/682257", + "id": 682257, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY4MjI1Nw==", + "name": "storaged-2.1.1.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1090184, + "download_count": 10, + "created_at": "2015-07-02T21:54:45Z", + "updated_at": "2015-07-02T21:55:06Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.1/storaged-2.1.1.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/682258", + "id": 682258, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY4MjI1OA==", + "name": "storaged-2.1.1.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 5, + "created_at": "2015-07-02T21:54:45Z", + "updated_at": "2015-07-02T21:55:06Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.1/storaged-2.1.1.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.1.1", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.1.1", + "body": "# Changes since 2.1.0\n\nMarius Vollmer (1):\n- MDRaid: Add 'Running' property.\n\nMartin Pitt (3):\n- Backport: UDF: Drop umask=0077 default\n- Backport: Fix crash on inaccessible RAID member \"state\" attribute\n- Backport: udev rules: Stop hardcoding sed path\n\nMichael Catanzaro (1):\n- Backport: Install storaged into a libexecdir\n\nOndrej Holy (1):\n- Backport: Fail before formatting if partition contains a partition table\n\nPeter Hatina (8):\n- Merge pull request #13 from mvollmer/mdraid-running-property\n- Remove deprecated g_io_scheduler_\\* calls\n- TODO: add new features\n- TODO: mkswap already supported\n- Build: make all rules silent by default\n- Tests: build storaged with all modules\n- Build: rename yum_dependencies to rpm_dependencies\n- TODO: update possible features\n\nRoss Lagerwall (5):\n- Backport: Add support for creating f2fs filesystems\n- Backport: Don't ignore isohybrid udf filesystems\n- Backport: integration-tests: Add a wrapper to write and flush stderr\n- Backport: integration-tests: Don't fail if a SMART test was aborted\n- Backport: integration-tests: Settle while waiting for property change\n\nSimon McVittie (1):\n- Backport: Decide whether devices are on the same seat by uid, not pid\n\nTomas Bzatek (1):\n- Backport: StoragedSpawnedJob: Retrieve uid/gid info before forking\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1403065", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1403065/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1403065/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.1.0", + "id": 1403065, + "node_id": "MDc6UmVsZWFzZTE0MDMwNjU=", + "tag_name": "storaged-2.1.0", + "target_commitish": "master", + "name": "storaged-2.1.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-06-11T08:48:47Z", + "published_at": "2015-06-11T09:08:45Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/636480", + "id": 636480, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYzNjQ4MA==", + "name": "storaged-2.1.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1084661, + "download_count": 16, + "created_at": "2015-06-11T09:08:02Z", + "updated_at": "2015-06-11T09:08:04Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.0/storaged-2.1.0.tar.bz2" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/636479", + "id": 636479, + "node_id": "MDEyOlJlbGVhc2VBc3NldDYzNjQ3OQ==", + "name": "storaged-2.1.0.tar.bz2.sign", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 473, + "download_count": 5, + "created_at": "2015-06-11T09:08:02Z", + "updated_at": "2015-06-11T09:08:03Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.1.0/storaged-2.1.0.tar.bz2.sign" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.1.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.1.0", + "body": "# Changes since 2.0.0\n\nMarius Vollmer (9):\n- Return correct parent UUID for mdraids.\n- Fix forgotten braces.\n- DBG - only load \".so\" modules\n- Block, Partition, MDRaid, LVM2: Optional teardown.\n- Util: Add storaged_daemon_util_check_authorization_sync_with_error.\n- Block, Encrypted, MDRaid, LVM2: Child configuration tracking.\n- PartitionTable: Add CreatePartitionAndFormat.\n- Block: Add \"config-items\" option to Format.\n- Daemon: Also check UDISKS_\\* udev properties.\n\nMartin Hatina (1):\n- Tests: introduce install-storaged and storagedctl tests\n\nPeter Hatina (35):\n- LVM2: fix launching storaged-lvm helper when --uninstalled is passed to storaged\n- LVM2: fix C90 warning; mixed declaration and code\n- Build: get rid of deprecated INCLUDES\n- Build: add sign target to main makefile\n- TODO: add list of several possible features\n- LVM2: re-add module build flags\n- Build: fix make distcheck (fixes #6)\n- TODO-ISCSI: drop implemented features\n- ISCSI: update documentation for sessions\n- Doc: escape and for Storaged.Block interface\n- Modules: fix uninstalled rules\n- Translations: move from transifex to zanata\n- ISCSI: fix build without iscsi session objects\n- Merge pull request #9 from mvollmer/fix-track-parent\n- Merge pull request #10 from mvollmer/fix-mdraid-stop\n- ISCSI: initiator code cleanup\n- ISCSI: introduce listing iSCSI sessions\n- Modules: introduce storaged_module_teardown()\n- Modules: pass StoragedDaemon to storaged_module_init()\n- Build: fix C90 compilation issues\n- Merge pull request #5 from mvollmer/batching\n- Build: introduce --enable-all-modules option\n- ISCSI: add better error reporting for libiscsi calls\n- ISCSI: fix typos\n- ISCSI: introduce login/logout API\n- ISCSI: introduce target discovery API\n- README: update configure options\n- Build: introduce --enable-modules option\n- Build: rename module-dummy to dummy\n- Build: link dummy module into modules dir\n- Build: clean makefiles a bit\n- Polkit: fix upstream url\n- ISCSI: introduce module\n- Daemon: introduce --uninistalled option\n- Doc: drop version info for StoragedModuleManager\n\nSamikshan Bairagya (1):\n- Fixed README.md\n" + }, + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/1114068", + "assets_url": "https://api.github.com/repos/storaged-project/udisks/releases/1114068/assets", + "upload_url": "https://uploads.github.com/repos/storaged-project/udisks/releases/1114068/assets{?name,label}", + "html_url": "https://github.com/storaged-project/udisks/releases/tag/storaged-2.0.0", + "id": 1114068, + "node_id": "MDc6UmVsZWFzZTExMTQwNjg=", + "tag_name": "storaged-2.0.0", + "target_commitish": "master", + "name": "storaged-2.0.0", + "draft": false, + "author": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2015-04-01T08:08:35Z", + "published_at": "2015-04-01T08:16:51Z", + "assets": [ + { + "url": "https://api.github.com/repos/storaged-project/udisks/releases/assets/501155", + "id": 501155, + "node_id": "MDEyOlJlbGVhc2VBc3NldDUwMTE1NQ==", + "name": "storaged-2.0.0.tar.bz2", + "label": null, + "uploader": { + "login": "phatina", + "id": 1381504, + "node_id": "MDQ6VXNlcjEzODE1MDQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/1381504?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/phatina", + "html_url": "https://github.com/phatina", + "followers_url": "https://api.github.com/users/phatina/followers", + "following_url": "https://api.github.com/users/phatina/following{/other_user}", + "gists_url": "https://api.github.com/users/phatina/gists{/gist_id}", + "starred_url": "https://api.github.com/users/phatina/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/phatina/subscriptions", + "organizations_url": "https://api.github.com/users/phatina/orgs", + "repos_url": "https://api.github.com/users/phatina/repos", + "events_url": "https://api.github.com/users/phatina/events{/privacy}", + "received_events_url": "https://api.github.com/users/phatina/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-bzip2", + "state": "uploaded", + "size": 1013754, + "download_count": 86, + "created_at": "2015-04-01T08:16:34Z", + "updated_at": "2015-04-01T08:16:35Z", + "browser_download_url": "https://github.com/storaged-project/udisks/releases/download/storaged-2.0.0/storaged-2.0.0.tar.bz2" + } + ], + "tarball_url": "https://api.github.com/repos/storaged-project/udisks/tarball/storaged-2.0.0", + "zipball_url": "https://api.github.com/repos/storaged-project/udisks/zipball/storaged-2.0.0", + "body": "# Changes since initial import\n\nPeter Hatina (14):\n- Post-release version bump to 2.0.1\n- Update NEWS for 2.0.0 release\n- Doc: add link to man page for storaged-lvm\n- Man: fix upstream links\n- Man: introduce storaged-lvm.8 man page\n- Doc: fix yum_dependencies.txt filename in README.md\n- Build: fix coding style in storaged/Makefile.am\n- Doc: update links for generated documentation\n- gitignore: update for generated files\n- Doc: add LVM2 documentation\n- Man: Consolidate man pages\n- fix typos in integration-test\n- Fix storaged_daemon_util_file_set_contents() return value handling\n- Update NEWS\n\nTomas Smetana (1):\n- Fix links for the documentation\n\nDavid King (1):\n- Fix format string signedness warnings\n\nMartin Pitt (15):\n- integration-test: Skip double mount check for NTFS\n- Support mounting in /media for FHS compatibility\n- Make StoragedClient.get_size_for_display() units translatable\n- Provide fallback for systems without ACL support\n- Fix crash in storaged_client_finalize()\n- Drop unused goto label\n- integration-test: Stop requiring the build dependencies\n- integration-test: Test fstab parsing\n- Recognize PARTUUID and PARTLABEL in fstab\n- Drop default [df]mask for VFAT and NTFS\n- integration-tests: Don't assume ordering in mount-points property\n- Update translations from transifex\n\nStefan Sauer (2):\n- configure: stop using tmpl files for docs\n- docs: include the annotation glossary\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/umoci.yaml b/upstream-info/umoci.yaml index c5cd70b9e517621545183037a2f4f0c589ac0b1d..474772a59a7b2ece759e7b3ade04e5a9792ecd13 100644 --- a/upstream-info/umoci.yaml +++ b/upstream-info/umoci.yaml @@ -1,4 +1,2515 @@ +--- version_control: github -src_repo: openSUSE/umoci -tag_prefix: ^v -seperator: . +src_repo: openSUSE/umoci +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:48:35.624294720 +00:00 + raw_data: | + [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/21930406", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/21930406/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/21930406/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.5", + "id": 21930406, + "node_id": "MDc6UmVsZWFzZTIxOTMwNDA2", + "tag_name": "v0.4.5", + "target_commitish": "master", + "name": "umoci 0.4.5", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-12-03T14:17:44Z", + "published_at": "2019-12-03T15:42:23Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/16564479", + "id": 16564479, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTY0NDc5", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 5685056, + "download_count": 459, + "created_at": "2019-12-03T14:22:15Z", + "updated_at": "2019-12-03T14:22:41Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.5/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/16564480", + "id": 16564480, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTY0NDgw", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 6, + "created_at": "2019-12-03T14:22:16Z", + "updated_at": "2019-12-03T14:22:42Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.5/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/16564481", + "id": 16564481, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTY0NDgx", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1060, + "download_count": 13, + "created_at": "2019-12-03T14:22:16Z", + "updated_at": "2019-12-03T14:22:42Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.5/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/16564482", + "id": 16564482, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTY0NDgy", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 1472948, + "download_count": 74, + "created_at": "2019-12-03T14:22:16Z", + "updated_at": "2019-12-03T14:22:44Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.5/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/16564483", + "id": 16564483, + "node_id": "MDEyOlJlbGVhc2VBc3NldDE2NTY0NDgz", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 4, + "created_at": "2019-12-03T14:22:17Z", + "updated_at": "2019-12-03T14:22:45Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.5/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.5", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.5", + "body": " + Expose umoci subcommands as part of the API, so they can be used by other Go\r\n projects. openSUSE/umoci#289\r\n + Add extensible hooking to the core libraries in umoci, to allow for\r\n third-party media-types to be treated just like first-party ones (the key\r\n difference is the introspection and parsing logic). openSUSE/umoci#299\r\n openSUSE/umoci#307\r\n * Use `type: bind` for generated `config.json` bind-mounts. While this doesn't\r\n make too much sense (see opencontainers/runc#2035), it does mean that\r\n rootless containers work properly with newer `runc` releases (which appear to\r\n have regressed when handling file-based bind-mounts with a \"bad\" `type`).\r\n openSUSE/umoci#294 openSUSE/umoci#295\r\n * Don't insert a new layer if there is no diff. openSUSE/umoci#293\r\n * Only output a warning if forbidden extended attributes are present inside the\r\n tar archive -- otherwise we fail on certain (completely broken) Docker\r\n images. openSUSE/umoci#304\r\n\r\nThanks to all of the people who made this release possible:\r\n\r\n * Aleksa Sarai \r\n * David Trudgian \r\n * Tycho Andersen \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/15282791", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/15282791/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/15282791/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.4", + "id": 15282791, + "node_id": "MDc6UmVsZWFzZTE1MjgyNzkx", + "tag_name": "v0.4.4", + "target_commitish": "master", + "name": "umoci 0.4.4", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-01-31T04:45:27Z", + "published_at": "2019-01-31T05:57:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/10861476", + "id": 10861476, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODYxNDc2", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 8750016, + "download_count": 7822, + "created_at": "2019-01-31T05:57:01Z", + "updated_at": "2019-01-31T05:57:13Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.4/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/10861477", + "id": 10861477, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODYxNDc3", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 7, + "created_at": "2019-01-31T05:57:02Z", + "updated_at": "2019-01-31T05:57:13Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.4/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/10861478", + "id": 10861478, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODYxNDc4", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1060, + "download_count": 20, + "created_at": "2019-01-31T05:57:02Z", + "updated_at": "2019-01-31T05:57:14Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.4/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/10861479", + "id": 10861479, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODYxNDc5", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 1488872, + "download_count": 96, + "created_at": "2019-01-31T05:57:02Z", + "updated_at": "2019-01-31T05:57:15Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.4/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/10861480", + "id": 10861480, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEwODYxNDgw", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 8, + "created_at": "2019-01-31T05:57:03Z", + "updated_at": "2019-01-31T05:57:15Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.4/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.4", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.4", + "body": "+ Full-stack verification of blob hashes and descriptor sizes is now done on\r\n all operations, improving our hardening against bad blobs (we already did\r\n some verification of layer DiffIDs but this is far more thorough).\r\n openSUSE/umoci#278 openSUSE/umoci#280 openSUSE/umoci#282\r\n\r\nThanks to all of the people that made this release possible:\r\n\r\n * Aleksa Sarai \r\n * Cameron Nemo \r\n * Tobias Klauser \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/13938367", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/13938367/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/13938367/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.3", + "id": 13938367, + "node_id": "MDc6UmVsZWFzZTEzOTM4MzY3", + "tag_name": "v0.4.3", + "target_commitish": "master", + "name": "umoci 0.4.3", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-11-11T07:49:48Z", + "published_at": "2018-11-11T08:54:34Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/9643769", + "id": 9643769, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk2NDM3Njk=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 8725440, + "download_count": 6538, + "created_at": "2018-11-11T07:53:04Z", + "updated_at": "2018-11-11T07:55:31Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.3/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/9643764", + "id": 9643764, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk2NDM3NjQ=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 858, + "download_count": 5, + "created_at": "2018-11-11T07:52:30Z", + "updated_at": "2018-11-11T07:52:32Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.3/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/9643765", + "id": 9643765, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk2NDM3NjU=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1064, + "download_count": 9, + "created_at": "2018-11-11T07:52:31Z", + "updated_at": "2018-11-11T07:52:32Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.3/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/9643766", + "id": 9643766, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk2NDM3NjY=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 1483672, + "download_count": 107, + "created_at": "2018-11-11T07:52:31Z", + "updated_at": "2018-11-11T07:52:57Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.3/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/9643767", + "id": 9643767, + "node_id": "MDEyOlJlbGVhc2VBc3NldDk2NDM3Njc=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 858, + "download_count": 6, + "created_at": "2018-11-11T07:52:31Z", + "updated_at": "2018-11-11T07:52:58Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.3/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.3", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.3", + "body": "+ All umoci commands that had `--history.*` options can now decide to omit a\r\n history entry with `--no-history`. Note that while this is supported for\r\n commands that create layers (`umoci repack`, `umoci insert`, and `umoci raw\r\n add-layer`) it is not recommended to use it for those commands since it can\r\n cause other tools to become confused when inspecting the image history. The\r\n primary usecase is to allow `umoci config --no-history` to leave no traces in\r\n the history. See SUSE/kiwi#871. openSUSE/umoci#270\r\n+ `umoci insert` now has a `--tag` option that allows you to non-destructively\r\n insert files into an image. The semantics match `umoci config --tag`.\r\n openSUSE/umoci#273\r\n\r\nThanks to all of the people that made this release possible:\r\n\r\n * Aleksa Sarai \r\n * Jintao Zhang \r\n * Tycho Andersen \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/12828651", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/12828651/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/12828651/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.2", + "id": 12828651, + "node_id": "MDc6UmVsZWFzZTEyODI4NjUx", + "tag_name": "v0.4.2", + "target_commitish": "master", + "name": "umoci 0.4.2", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-09-11T02:42:47Z", + "published_at": "2018-09-11T03:32:22Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8617444", + "id": 8617444, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MTc0NDQ=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 7443456, + "download_count": 3920, + "created_at": "2018-09-11T02:45:08Z", + "updated_at": "2018-09-11T02:45:13Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.2/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8617445", + "id": 8617445, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MTc0NDU=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 5, + "created_at": "2018-09-11T02:45:08Z", + "updated_at": "2018-09-11T02:45:13Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.2/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8617446", + "id": 8617446, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MTc0NDY=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1039, + "download_count": 6, + "created_at": "2018-09-11T02:45:09Z", + "updated_at": "2018-09-11T02:45:14Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.2/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8617447", + "id": 8617447, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MTc0NDc=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 1484384, + "download_count": 49, + "created_at": "2018-09-11T02:45:09Z", + "updated_at": "2018-09-11T02:45:15Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.2/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8617448", + "id": 8617448, + "node_id": "MDEyOlJlbGVhc2VBc3NldDg2MTc0NDg=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 6, + "created_at": "2018-09-11T02:45:09Z", + "updated_at": "2018-09-11T02:45:15Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.2/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.2", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.2", + "body": "+ umoci now has an exposed Go API. At the moment it's unclear whether it will\r\n be changed significantly, but at the least now users can use\r\n umoci-as-a-library in a fairly sane way. openSUSE/umoci#245\r\n+ Added `umoci unpack --keep-dirlinks` (in the same vein as rsync's flag with\r\n the same name) which allows layers that contain entries which have a symlink\r\n as a path component. openSUSE/umoci#246\r\n+ `umoci insert` now supports whiteouts in two significant ways. You can use\r\n `--whiteout` to \"insert\" a deletion of a given path, while you can use\r\n `--opaque` to replace a directory by adding an opaque whiteout (the default\r\n behaviour causes the old and new directories to be merged).\r\n openSUSE/umoci#257\r\n* Docker has changed how they handle whiteouts for non-existent files. The\r\n specification is loose on this (and in umoci we've always been liberal with\r\n whiteout generation -- to avoid cases where someone was confused we didn't\r\n have a whiteout for every entry). But now that they have deviated from the\r\n spec, in the interest of playing nice, we can just follow their new\r\n restriction (even though it is not supported by the spec). This also makes\r\n our layers *slightly* smaller. openSUSE/umoci#254\r\n* `umoci unpack` now no longer erases `system.nfs4_acl` and also has some more\r\n sophisticated handling of forbidden xattrs. openSUSE/umoci#252\r\n openSUSE/umoci#248\r\n* `umoci unpack` now appears to work correctly on SELinux-enabled systems\r\n (previously we had various issues where `umoci` wouldn't like it when it was\r\n trying to ensure the filesystem was reproducibly generated and SELinux xattrs\r\n would act strangely). To fix this, now `umoci unpack` will only cause errors\r\n if it has been asked to change a forbidden xattr to a value different than\r\n it's current on-disk value. openSUSE/umoci#235 openSUSE/umoci#259\r\n\r\nThanks to all of the people that made this release possible:\r\n\r\n* Aleksa Sarai \r\n* Tycho Andersen \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/12427101", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/12427101/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/12427101/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.1", + "id": 12427101, + "node_id": "MDc6UmVsZWFzZTEyNDI3MTAx", + "tag_name": "v0.4.1", + "target_commitish": "master", + "name": "umoci 0.4.1", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-08-16T03:31:10Z", + "published_at": "2018-08-16T04:22:40Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8271230", + "id": 8271230, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyNzEyMzA=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 7422944, + "download_count": 22, + "created_at": "2018-08-16T04:22:32Z", + "updated_at": "2018-08-16T04:22:37Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.1/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8271228", + "id": 8271228, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyNzEyMjg=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 2, + "created_at": "2018-08-16T04:22:31Z", + "updated_at": "2018-08-16T04:22:32Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.1/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8271226", + "id": 8271226, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyNzEyMjY=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1039, + "download_count": 2, + "created_at": "2018-08-16T04:22:30Z", + "updated_at": "2018-08-16T04:22:32Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.1/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8271229", + "id": 8271229, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyNzEyMjk=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 1477136, + "download_count": 10, + "created_at": "2018-08-16T04:22:31Z", + "updated_at": "2018-08-16T04:22:35Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.1/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/8271227", + "id": 8271227, + "node_id": "MDEyOlJlbGVhc2VBc3NldDgyNzEyMjc=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 4, + "created_at": "2018-08-16T04:22:31Z", + "updated_at": "2018-08-16T04:22:32Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.1/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.1", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.1", + "body": "+ The number of possible tags that are now valid with `umoci` subcommands has\r\n increased significantly due to an expansion in the specification of the\r\n format of the `ref.name` annotation. To quote the specification, the\r\n following is the EBNF of valid `refname` values. openSUSE/umoci#234\r\n ```\r\n refname ::= component (\"/\" component)*\r\n component ::= alphanum (separator alphanum)*\r\n alphanum ::= [A-Za-z0-9]+\r\n separator ::= [-._:@+] | \"--\"\r\n ```\r\n+ A new `umoci insert` subcommand which adds a given file to a path inside the\r\n container. openSUSE/umoci#237\r\n+ A new `umoci raw unpack` subcommand in order to allow users to unpack images\r\n without needing a configuration or any of the manifest generation.\r\n openSUSE/umoci#239\r\n+ `umoci` how has a logo. Thanks to [Max Bailey][maxbailey] for contributing\r\n this to the project. openSUSE/umoci#165 openSUSE/umoci#249\r\n* `umoci unpack` now handles out-of-order regular whiteouts correctly (though\r\n this ordering is not recommended by the spec -- nor is it required). This is\r\n an extension of openSUSE/umoci#229 that was missed during review.\r\n openSUSE/umoci#232\r\n* `umoci unpack` and `umoci repack` now make use of a far more optimised `gzip`\r\n compression library. In some benchmarks this has resulted in `umoci repack`\r\n speedups of up to 3x (though of course, you should do your own benchmarks).\r\n `umoci unpack` unfortunately doesn't have as significant of a performance\r\n improvement, due to the nature of `gzip` decompression (in future we may\r\n switch to `zlib` wrappers). openSUSE/umoci#225 openSUSE/umoci#233\r\n\r\n[maxbailey]: http://www.maxbailey.me/\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Abhilash Raj \r\n* Akihiro Suda \r\n* Aleksa Sarai \r\n* Felix Abecassis \r\n* Max Bailey \r\n* Tycho Andersen \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/10027338", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/10027338/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/10027338/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.4.0", + "id": 10027338, + "node_id": "MDc6UmVsZWFzZTEwMDI3MzM4", + "tag_name": "v0.4.0", + "target_commitish": "master", + "name": "umoci 0.4.0", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2018-03-10T08:03:19Z", + "published_at": "2018-03-10T09:11:51Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6466418", + "id": 6466418, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NjY0MTg=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4342848, + "download_count": 268, + "created_at": "2018-03-10T08:06:42Z", + "updated_at": "2018-03-10T08:08:05Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.0/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6466416", + "id": 6466416, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NjY0MTY=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 13, + "created_at": "2018-03-10T08:06:41Z", + "updated_at": "2018-03-10T08:06:44Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.0/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6466414", + "id": 6466414, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NjY0MTQ=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1039, + "download_count": 11, + "created_at": "2018-03-10T08:06:40Z", + "updated_at": "2018-03-10T08:06:42Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.0/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6466417", + "id": 6466417, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NjY0MTc=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 408456, + "download_count": 43, + "created_at": "2018-03-10T08:06:42Z", + "updated_at": "2018-03-10T08:06:51Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.0/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6466415", + "id": 6466415, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0NjY0MTU=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 9, + "created_at": "2018-03-10T08:06:41Z", + "updated_at": "2018-03-10T08:06:43Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.4.0/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.4.0", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.4.0", + "body": "+ `umoci repack` now supports `--refresh-bundle` which will update the\r\n OCI bundle's metadata (mtree and umoci-specific manifests) after packing the\r\n image tag. This means that the bundle can be used as a base layer for\r\n future diffs without needing to unpack the image again. openSUSE/umoci#196\r\n+ Added a website, and reworked the documentation to be better structured. You\r\n can visit the website at [`umo.ci`][umo.ci]. openSUSE/umoci#188\r\n+ Added support for the `user.rootlesscontainers` specification, which allows\r\n for persistent on-disk emulation of `chown(2)` inside rootless containers.\r\n This implementation is interoperable with [@AkihiroSuda's `PRoot`\r\n fork][as-proot-fork] (though we do not test its interoperability at the\r\n moment) as both tools use [the same protobuf\r\n specification][rootlesscontainers-proto]. openSUSE/umoci#227\r\n+ `umoci unpack` now has support for opaque whiteouts (whiteouts which remove\r\n all children of a directory in the lower layer), though `umoci repack` does\r\n not currently have support for generating them. While this is technically a\r\n spec requirement, through testing we've never encountered an actual user of\r\n these whiteouts. openSUSE/umoci#224 openSUSE/umoci#229\r\n+ `umoci unpack` will now use some rootless tricks inside user namespaces for\r\n operations that are known to fail (such as `mknod(2)`) while other operations\r\n will be carried out as normal (such as `lchown(2)`). It should be noted that\r\n the `/proc/self/uid_map` checking we do can be tricked into not detecting\r\n user namespaces, but you would need to be trying to break it on purpose.\r\n openSUSE/umoci#171 openSUSE/umoci#230\r\n* Fix a bug in our \"parent directory restore\" code, which is responsible for\r\n ensuring that the mtime and other similar properties of a directory are not\r\n modified by extraction inside said directory. The bug would manifest as\r\n xattrs not being restored properly in certain edge-cases (which we\r\n incidentally hit in a test-case). openSUSE/umoci#161 openSUSE/umoci#162\r\n* `umoci unpack` will now \"clean up\" the bundle generated if an error occurs\r\n during unpacking. Previously this didn't happen, which made cleaning up the\r\n responsibility of the caller (which was quite difficult if you were\r\n unprivileged). This is a breaking change, but is in the error path so it's\r\n not critical. openSUSE/umoci#174 openSUSE/umoci#187\r\n* `umoci gc` now will no longer remove unknown files and directories that\r\n aren't `flock(2)`ed, thus ensuring that any possible OCI image-spec\r\n extensions or other users of an image being operated on will no longer\r\n break. openSUSE/umoci#198\r\n* `umoci unpack --rootless` will now correctly handle regular file unpacking\r\n when overwriting a file that `umoci` doesn't have write access to. In\r\n addition, the semantics of pre-existing hardlinks to a clobbered file are\r\n clarified (the hard-links will not refer to the new layer's inode).\r\n openSUSE/umoci#222 openSUSE/umoci#223\r\n\r\n[as-proot-fork]: https://github.com/AkihiroSuda/runrootless\r\n[rootlesscontainers-proto]: https://rootlesscontaine.rs/proto/rootlesscontainers.proto\r\n[umo.ci]: https://umo.ci/\r\n\r\n
\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai \r\n* Jonathan Boulle \r\n* Serge Hallyn \r\n* Tobias Klauser \r\n* Tycho Andersen \r\n* W. Trevor King \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/9932934", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/9932934/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/9932934/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.3.1", + "id": 9932934, + "node_id": "MDc6UmVsZWFzZTk5MzI5MzQ=", + "tag_name": "v0.3.1", + "target_commitish": "master", + "name": "umoci 0.3.1", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-10-04T02:45:33Z", + "published_at": "2018-03-05T01:21:59Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6402002", + "id": 6402002, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0MDIwMDI=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 4054784, + "download_count": 729, + "created_at": "2018-03-05T01:20:20Z", + "updated_at": "2018-03-05T01:21:37Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.1/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6402000", + "id": 6402000, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0MDIwMDA=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 720, + "created_at": "2018-03-05T01:20:19Z", + "updated_at": "2018-03-05T01:20:20Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.1/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6401998", + "id": 6401998, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0MDE5OTg=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1039, + "download_count": 7, + "created_at": "2018-03-05T01:20:18Z", + "updated_at": "2018-03-05T01:20:20Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.1/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6402001", + "id": 6402001, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0MDIwMDE=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 341716, + "download_count": 6, + "created_at": "2018-03-05T01:20:19Z", + "updated_at": "2018-03-05T01:20:26Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.1/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/6401999", + "id": 6401999, + "node_id": "MDEyOlJlbGVhc2VBc3NldDY0MDE5OTk=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 4, + "created_at": "2018-03-05T01:20:18Z", + "updated_at": "2018-03-05T01:20:20Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.1/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.3.1", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.3.1", + "body": "- Fix several minor bugs in `hack/release.sh` that caused the release artefacts\r\n to not match the intended style, as well as making it more generic so other\r\n projects can use it. openSUSE/umoci#155 openSUSE/umoci#163\r\n- A recent configuration issue caused `go vet` and `go lint` to not run as part\r\n of our CI jobs. This means that some of the information submitted as part of\r\n [CII best practices badging][cii] was not accurate. This has been corrected,\r\n and after review we concluded that only stylistic issues were discovered by\r\n static analysis. openSUSE/umoci#158\r\n- 32-bit unit test builds were broken in a refactor in [0.3.0]. This has been\r\n fixed, and we've added tests to our CI to ensure that something like this\r\n won't go unnoticed in the future. openSUSE/umoci#157\r\n- `umoci unpack` would not correctly preserve set{uid,gid} bits. While this\r\n would not cause issues when building an image (as we only create a manifest\r\n of the final extracted rootfs), it would cause issues for other users of\r\n `umoci`. openSUSE/umoci#166 openSUSE/umoci#169\r\n- Updated to [v0.4.1 of `go-mtree`][gomtree-v0.4.1], which fixes several minor\r\n bugs with manifest generation. openSUSE/umoci#176\r\n- `umoci unpack` would not handle \"weird\" tar archive layers previously (it\r\n would error out with DiffID errors). While this wouldn't cause issues for\r\n layers generated using Go's `archive/tar` implementation, it would cause\r\n issues for GNU gzip and other such tools. openSUSE/umoci#178\r\n openSUSE/umoci#179\r\n\r\n- `umoci unpack`'s mapping options (`--uid-map` and `--gid-map`) have had an\r\n interface change, to better match the [`user_namespaces(7)`][user_namespaces]\r\n interfaces. Note that this is a **breaking change**, but the workaround is to\r\n switch to the trivially different (but now more consistent) format.\r\n openSUSE/umoci#167\r\n\r\n- `umoci unpack` used to create the bundle and rootfs with world\r\n read-and-execute permissions by default. This could potentially result in an\r\n unsafe rootfs (containing dangerous setuid binaries for instance) being\r\n accessible by an unprivileged user. This has been fixed by always setting the\r\n mode of the bundle to `0700`, which requires a user to explicitly work around\r\n this basic protection. This scenario was documented in our security\r\n documentation previously, but has now been fixed. openSUSE/umoci#181\r\n openSUSE/umoci#182\r\n\r\n
\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai \r\n* Jonathan Boulle \r\n* Serge Hallyn \r\n\r\n[cii]: https://bestpractices.coreinfrastructure.org/projects/1084\r\n[gomtree-v0.4.1]: https://github.com/vbatts/go-mtree/releases/tag/v0.4.1\r\n[user_namespaces]: http://man7.org/linux/man-pages/man7/user_namespaces.7.html\r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/7111870", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/7111870/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/7111870/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.3.0", + "id": 7111870, + "node_id": "MDc6UmVsZWFzZTcxMTE4NzA=", + "tag_name": "v0.3.0", + "target_commitish": "master", + "name": "umoci 0.3.0", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-07-20T15:28:46Z", + "published_at": "2017-07-20T16:47:59Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/4390754", + "id": 4390754, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzOTA3NTQ=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-m64py", + "state": "uploaded", + "size": 3766016, + "download_count": 43, + "created_at": "2017-07-22T15:47:25Z", + "updated_at": "2017-07-22T15:48:33Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.0/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/4390757", + "id": 4390757, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzOTA3NTc=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 6, + "created_at": "2017-07-22T15:47:25Z", + "updated_at": "2017-07-22T15:48:35Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.0/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/4390756", + "id": 4390756, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzOTA3NTY=", + "name": "umoci.sha256sum", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1039, + "download_count": 7, + "created_at": "2017-07-22T15:47:25Z", + "updated_at": "2017-07-22T15:48:33Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.0/umoci.sha256sum" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/4390758", + "id": 4390758, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzOTA3NTg=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 316896, + "download_count": 9, + "created_at": "2017-07-22T15:47:25Z", + "updated_at": "2017-07-22T15:48:40Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.0/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/4390755", + "id": 4390755, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzOTA3NTU=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 7, + "created_at": "2017-07-22T15:47:25Z", + "updated_at": "2017-07-22T15:48:33Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.3.0/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.3.0", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.3.0", + "body": "+ `umoci` now passes all of the requirements for the [CII best practices\r\n bading program][cii]. openSUSE/umoci#134\r\n+ `umoci` also now has more extensive architecture, quick-start and\r\n roadmap documentation. openSUSE/umoci#134\r\n+ `umoci` now supports [`1.0.0` of the OCI image\r\n specification][ispec-v1.0.0] and [`1.0.0` of the OCI runtime\r\n specification][rspec-v1.0.0], which are the first milestone release.\r\n Note that there are still some remaining UX issues with `--image` and\r\n other parts of `umoci` which may be subject to change in future\r\n versions. In particular, this update of the specification now means\r\n that images may have ambiguous tags. `umoci` will warn you if an\r\n operation may have an ambiguous result, but we plan to improve this\r\n functionality far more in the future. openSUSE/umoci#133\r\n openSUSE/umoci#142\r\n+ `umoci` also now supports more complicated descriptor walk structures,\r\n and also handles mutation of such structures more sanely. At the\r\n moment, this functionality has not been used \"in the wild\" and `umoci`\r\n doesn't have the UX to create such structures (yet) but these will be\r\n implemented in future versions. openSUSE/umoci#145\r\n+ `umoci repack` now supports `--mask-path` to ignore changes in the\r\n rootfs that are in a child of at least one of the provided masks when\r\n generating new layers. openSUSE/umoci#127\r\n\r\n* Error messages from `github.com/openSUSE/umoci/oci/cas/drivers/dir`\r\n actually make sense now. openSUSE/umoci#121\r\n* `umoci unpack` now generates `config.json` blobs according to the\r\n [still proposed][ispec-pr492] OCI image specification conversion\r\n document. openSUSE/umoci#120\r\n* `umoci repack` also now automatically adding `Config.Volumes` from the\r\n image configuration to the set of masked paths. This matches recently\r\n added [recommendations by the spec][ispec-pr694], but is a\r\n backwards-incompatible change because the new default is that\r\n `Config.Volumes` **will** be masked. If you wish to retain the old\r\n semantics, use `--no-mask-volumes` (though make sure to be aware of\r\n the reasoning behind `Config.Volume` masking). openSUSE/umoci#127\r\n* `umoci` now uses [`SecureJoin`][securejoin] rather than a patched\r\n version of `FollowSymlinkInScope`. The two implementations are roughly\r\n equivalent, but `SecureJoin` has a nicer API and is maintained as a\r\n separate project. openSUSE/umoci#148\r\n* Switched to using `golang.org/x/sys/unix` over `syscall` where\r\n possible, which makes the codebase significantly cleaner.\r\n openSUSE/umoci#141\r\n\r\n
\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai \r\n* Maximilian Meister \r\n* Valentin Rothberg \r\n\r\n[cii]: https://bestpractices.coreinfrastructure.org/projects/1084\r\n[rspec-v1.0.0]: https://github.com/opencontainers/runtime-spec/releases/tag/v1.0.0\r\n[ispec-v1.0.0]: https://github.com/opencontainers/image-spec/releases/tag/v1.0.0\r\n[ispec-pr492]: https://github.com/opencontainers/image-spec/pull/492\r\n[ispec-pr694]: https://github.com/opencontainers/image-spec/pull/694\r\n[securejoin]: https://github.com/cyphar/filepath-securejoin\r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/6053234", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/6053234/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/6053234/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.2.1", + "id": 6053234, + "node_id": "MDc6UmVsZWFzZTYwNTMyMzQ=", + "tag_name": "v0.2.1", + "target_commitish": "master", + "name": "umoci 0.2.1", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-04-12T00:07:47Z", + "published_at": "2017-04-12T01:25:33Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3632944", + "id": 3632944, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MzI5NDQ=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-m64py", + "state": "uploaded", + "size": 3702720, + "download_count": 17, + "created_at": "2017-04-12T00:11:52Z", + "updated_at": "2017-04-12T00:13:00Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.1/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3632945", + "id": 3632945, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MzI5NDU=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 4, + "created_at": "2017-04-12T00:11:52Z", + "updated_at": "2017-04-12T00:13:02Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.1/umoci.amd64.asc" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3632947", + "id": 3632947, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MzI5NDc=", + "name": "umoci.tar.xz", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-xz", + "state": "uploaded", + "size": 171776, + "download_count": 9, + "created_at": "2017-04-12T00:11:52Z", + "updated_at": "2017-04-12T00:13:03Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.1/umoci.tar.xz" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3632946", + "id": 3632946, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MzI5NDY=", + "name": "umoci.tar.xz.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 6, + "created_at": "2017-04-12T00:11:52Z", + "updated_at": "2017-04-12T00:13:02Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.1/umoci.tar.xz.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.2.1", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.2.1", + "body": "* `hack/release.sh` automates the process of generating all of the published\r\n artefacts for releases. The new script also generates signed source code\r\n archives. openSUSE/umoci#116\r\n* `umoci` now outputs configurations that are compliant with [`v1.0.0-rc5` of\r\n the OCI runtime-spec][rspec-v1.0.0-rc5]. This means that now you can use runc\r\n v1.0.0-rc3 with `umoci` (and rootless containers should work out of the box\r\n if you use a development build of runc). openSUSE/umoci#114\r\n* `umoci unpack` no longer adds a dummy linux.seccomp entry, and instead just\r\n sets it to null. openSUSE/umoci#114\r\n\r\n[rspec-v1.0.0-rc5]: https://github.com/opencontainers/runtime-spec/releases/tag/v1.0.0-rc5\r\n\r\nSigned-off-by: Aleksa Sarai \r\n" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/6034048", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/6034048/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/6034048/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.2.0", + "id": 6034048, + "node_id": "MDc6UmVsZWFzZTYwMzQwNDg=", + "tag_name": "v0.2.0", + "target_commitish": "master", + "name": "umoci 0.2.0", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-04-10T14:19:02Z", + "published_at": "2017-04-10T15:32:54Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3620861", + "id": 3620861, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjA4NjE=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-m64py", + "state": "uploaded", + "size": 3735488, + "download_count": 8, + "created_at": "2017-04-10T15:27:53Z", + "updated_at": "2017-04-10T15:29:08Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.0/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3620862", + "id": 3620862, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MjA4NjI=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 4, + "created_at": "2017-04-10T15:27:54Z", + "updated_at": "2017-04-10T15:29:09Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.2.0/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.2.0", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.2.0", + "body": "* `umoci` now has some automated scripts for generated RPMs that are used in\r\n openSUSE to automatically submit packages to OBS. openSUSE/umoci#101\r\n* `--clear=config.{cmd,entrypoint}` is now supported. While this interface is a\r\n bit weird (`cmd` and `entrypoint` aren't treated atomically) this makes the\r\n UX more consistent while we come up with a better `cmd` and `entrypoint` UX.\r\n openSUSE/umoci#107\r\n* New subcommand: `umoci raw runtime-config`. It generates the runtime-spec\r\n config.json for a particular image without also unpacking the root\r\n filesystem, allowing for users of `umoci` that are regularly parsing\r\n `config.json` without caring about the root filesystem to be more efficient.\r\n However, a downside of this approach is that some image-spec fields\r\n (`Config.User`) require a root filesystem in order to make sense, which is\r\n why this command is hidden under the `umoci-raw(1)` subcommand (to make sure\r\n only users that understand what they're doing use it). openSUSE/umoci#110\r\n* `umoci`'s `oci/cas` and `oci/config` libraries have been massively refactored\r\n and rewritten, to allow for third-parties to use the OCI libraries. The plan\r\n is for these to eventually become part of an OCI project. openSUSE/umoci#90\r\n* The `oci/cas` interface has been modifed to switch from `*ispec.Descriptor`\r\n to `ispec.Descriptor`. This is a breaking, but fairly insignificant, change.\r\n openSUSE/umoci#89\r\n* `umoci` now uses an updated version of `go-mtree`, which has a complete\r\n rewrite of `Vis` and `Unvis`. The rewrite ensures that unicode handling is\r\n handled in a far more consistent and sane way. openSUSE/umoci#88\r\n* `umoci` used to set `process.user.additionalGids` to the \"normal value\" when\r\n unpacking an image in rootless mode, causing issues when trying to actually\r\n run said bundle with runC. openSUSE/umoci#109\r\n\r\nThanks to all of the contributors that helped make this release happen:\r\n\r\n* Aleksa Sarai \r\n* Erik Hollensbe \r\n* Vincent Batts \r\n* Maximilian Meister \r\n* Antonio Murdaca \r\n\r\nSigned-off-by: Aleksa Sarai " + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/5423443", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/5423443/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/5423443/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.1.0", + "id": 5423443, + "node_id": "MDc6UmVsZWFzZTU0MjM0NDM=", + "tag_name": "v0.1.0", + "target_commitish": "master", + "name": "umoci 0.1.0", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-02-10T17:57:50Z", + "published_at": "2017-02-10T18:00:29Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3166670", + "id": 3166670, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxNjY2NzA=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3685248, + "download_count": 12, + "created_at": "2017-02-10T18:00:22Z", + "updated_at": "2017-02-10T18:00:25Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.1.0/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3166671", + "id": 3166671, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxNjY2NzE=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 5, + "created_at": "2017-02-10T18:00:23Z", + "updated_at": "2017-02-10T18:00:25Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.1.0/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.1.0", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.1.0", + "body": "- `CHANGELOG.md` has now been added. openSUSE/umoci#76\r\n- `umoci` now supports `v1.0.0-rc4` images, which has made fairly minimal\r\n changes to the schema (mainly related to `mediaType`s). While this change\r\n **is** backwards compatible (several fields were removed from the schema, but\r\n the specification allows for \"additional fields\"), tools using older versions\r\n of the specification may fail to operate on newer OCI images. There was no UX\r\n change associated with this update.\r\n- `umoci tag` would fail to clobber existing tags, which was in contrast to how\r\n the rest of the tag clobbering commands operated. This has been fixed and is\r\n now consistent with the other commands. openSUSE/umoci#78\r\n- `umoci repack` now can correctly handle unicode-encoded filenames, allowing\r\n the creation of containers that have oddly named files. This required fixes\r\n to go-mtree (where the issue was). openSUSE/umoci#80\r\n\r\nSigned-off-by: Aleksa Sarai asarai@suse.de\r\n" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/5372782", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/5372782/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/5372782/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.0.0", + "id": 5372782, + "node_id": "MDc6UmVsZWFzZTUzNzI3ODI=", + "tag_name": "v0.0.0", + "target_commitish": "master", + "name": "umoci 0.0.0", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2017-02-06T15:02:41Z", + "published_at": "2017-02-06T16:59:07Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3135301", + "id": 3135301, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMzUzMDE=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3656448, + "download_count": 6, + "created_at": "2017-02-06T16:58:25Z", + "updated_at": "2017-02-06T16:58:28Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/3135302", + "id": 3135302, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMzUzMDI=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 854, + "download_count": 4, + "created_at": "2017-02-06T16:58:25Z", + "updated_at": "2017-02-06T16:58:28Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.0.0", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.0.0", + "body": "This is the first beta release of umoci, and it includes very few\r\nchanges from v0.0.0-rc3. However, at this point the UX is effectively\r\nstable and umoci is properly tested. The (small) list of changes in this\r\nrelease from -rc3 is:\r\n- Static compilation now works properly. openSUSE/umoci#64\r\n- 32-bit builds have been fixed, and now umoci works on 32-bit\r\n architectures. openSUSE/umoci#70\r\n- The unit tests can now be run inside the %check section of an rpmbuild\r\n script, allowing for proper testing of packages when they are built on\r\n openSUSE (and Fedora). openSUSE/umoci#65\r\n- Unit tests have been massively expanded, as have the integration\r\n tests. In addition, full coverage profiles (both unit and integration)\r\n are generated to fully understand how much of the code is properly\r\n tested. Currently it is at ~80%. openSUSE/umoci#68 openSUSE/umoci#69\r\n- The logging output has been cleaned up to be much better for end-users\r\n to read. It's also a lot less chatty now. openSUSE/umoci#73\r\n- This project has now been moved to become an openSUSE project.\r\n openSUSE/umoci#75\r\n\r\nSigned-off-by: Aleksa Sarai asarai@suse.de\r\n" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/4956481", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/4956481/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/4956481/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.0.0-rc3", + "id": 4956481, + "node_id": "MDc6UmVsZWFzZTQ5NTY0ODE=", + "tag_name": "v0.0.0-rc3", + "target_commitish": "master", + "name": "umoci 0.0.0~rc3", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2016-12-19T12:40:58Z", + "published_at": "2016-12-19T13:04:14Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2852329", + "id": 2852329, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4NTIzMjk=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3672224, + "download_count": 9, + "created_at": "2016-12-19T21:19:56Z", + "updated_at": "2016-12-19T21:21:01Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc3/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2852330", + "id": 2852330, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4NTIzMzA=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 3, + "created_at": "2016-12-19T21:19:56Z", + "updated_at": "2016-12-19T21:21:01Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc3/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.0.0-rc3", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.0.0-rc3", + "body": "umoci has now gone a large amount of cleanup, and included the addition\r\nof a few previously missing features. The main thing blocking a full\r\nrelease is that manifest lists are still unsupported, and there are some\r\nupstream PRs that define some of umoci's operations that need to be\r\nmerged before umoci can be considered a compliant implementation. In\r\naddition, the logging library needs to be swapped (and the amount of\r\noutput reduced).\r\n\r\nHere's a short list of features added:\r\n- xattr support for both packing and unpacking was added, in particular\r\n this code also handles the issue of security.selinux. More policy\r\n decisions need to be added, but those are being discussed upstream.\r\n cyphar/umoci#52 cyphar/umoci#49\r\n- Ensure that environment variables have no duplicates. This ensures\r\n that umoci won't duplicate environment variables in either Config.Env\r\n or the extracted process.env. cyphar/umoci#30\r\n- Add support for read-only CAS operations with a read-only filesystem.\r\n Previously, attempting to open an OCI image on a read-only filesystem\r\n would fail miserably, now you can do read-only operations without\r\n issue. cyphar/umoci#47\r\n- Garbage collection now also garbage collects old tmpdirs, and other\r\n garbage from inside an image layout. cyphar/umoci#17\r\n- Output a helpful comment about --rootless if you're getting EPERMs.\r\n- Enable stack traces from an error if the --debug flag was applied to\r\n umoci. This is a feature that hopefully will be added to pkg/errors\r\n upstream.\r\n- Cleanups to vendoring of go-mtree so that it's much more\r\n upstream-friendly.\r\n\r\nSigned-off-by: Aleksa Sarai asarai@suse.com\r\n" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/4887801", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/4887801/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/4887801/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.0.0-rc2", + "id": 4887801, + "node_id": "MDc6UmVsZWFzZTQ4ODc4MDE=", + "tag_name": "v0.0.0-rc2", + "target_commitish": "master", + "name": "umoci 0.0.0~rc2", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2016-12-11T13:32:08Z", + "published_at": "2016-12-11T13:37:40Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2854487", + "id": 2854487, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4NTQ0ODc=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 3634720, + "download_count": 6, + "created_at": "2016-12-20T05:25:16Z", + "updated_at": "2016-12-20T05:26:19Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc2/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2854488", + "id": 2854488, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4NTQ0ODg=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 833, + "download_count": 3, + "created_at": "2016-12-20T05:25:16Z", + "updated_at": "2016-12-20T05:26:19Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc2/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.0.0-rc2", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.0.0-rc2", + "body": "umoci now has a stable UX, as well as proper documentation for the UX in\r\nthe form of generated man pages. Here's the full list of cool features:\r\n- umoci v0.0.0-rc2 has support for rootless unpacking and repacking!\r\n cyphar/umoci#26\r\n- It also has support for regular UID and GID mapping! cyphar/umoci#26\r\n- Symlinks and other similarly tricky unpacking problems have been\r\n resolved. All symlink path components are resolved inside the root\r\n filesystem of the container during unpacking. cyphar/umoci#27\r\n- Tag modification commands (such as umoci-tag(1), umoci-rm(1),\r\n umoci-ls(1)) have been implemented. cyphar/umoci#6 cyphar/umoci#40\r\n- umoci-stat(1) has been implemented. Currently it only outputs history\r\n information, but this will change in the future. It has stable JSON\r\n output. cyphar/umoci#38\r\n- umoci-init(1) and umoci-new(1) have been implemented, allowing for the\r\n creation of entirely new images from scratch. cyphar/umoci#5\r\n cyphar/umoci#42\r\n- umoci-repack(1) and umoci-config(1) now automatically generate history\r\n entries (since the history is actually used by tooling like skopeo). In\r\n addition, the history mutation from umoci-config(1) has been removed\r\n because it was just unsafe. In order for users to be able to configure\r\n history entries' values, --history.\\* flags have been introduced.\r\n cyphar/umoci#\r\n- umoci-unpack(1) now saves all of the important argument metadata\r\n provided to it inside the generated bundle. These saved arguments are\r\n loaded by umoci-repack(1) to make the workflow much more sane.\r\n- --image and --from arguments have been combined into skopeo-style\r\n [:] arguments to --image. cyphar/umoci#39\r\n- Errors encountered during generation of a delta layer now are\r\n correctly propagated. cyphar/umoci#33\r\n- Hardlinks are now correctly unpacked as bone-fide hardlinks.\r\n cyphar/umoci#25\r\n- Support for unpacking and configuring annotations (which is a\r\n v1.0.0-rc3 feature of the OCI image specification). There's still some\r\n work to be done upstream in making the unpacking procedure specified\r\n but this is as good as you're going to get for a while.\r\n cyphar/umoci#43\r\n- umoci has full integration and unit testing. cyphar/umoci#12\r\n- umoci now has validation integration tests to ensure that at every\r\n stage of a test we could stop and still have a completely valid OCI\r\n image and that every extracted bundle is a valid OCI runtime bundle.\r\n\r\nThis code is still being reworked (though much more slowly than before).\r\nHold off on using it anywhere until we hit the proper 0.0.0 release!\r\n\r\nSigned-off-by: Aleksa Sarai asarai@suse.com\r\n" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/4743032", + "assets_url": "https://api.github.com/repos/openSUSE/umoci/releases/4743032/assets", + "upload_url": "https://uploads.github.com/repos/openSUSE/umoci/releases/4743032/assets{?name,label}", + "html_url": "https://github.com/openSUSE/umoci/releases/tag/v0.0.0-rc1", + "id": 4743032, + "node_id": "MDc6UmVsZWFzZTQ3NDMwMzI=", + "tag_name": "v0.0.0-rc1", + "target_commitish": "master", + "name": "umoci 0.0.0~rc1", + "draft": false, + "author": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2016-11-09T16:54:23Z", + "published_at": "2016-11-23T16:24:40Z", + "assets": [ + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2704308", + "id": 2704308, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3MDQzMDg=", + "name": "umoci.amd64", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 11085352, + "download_count": 4, + "created_at": "2016-11-23T16:21:24Z", + "updated_at": "2016-11-23T16:24:37Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc1/umoci.amd64" + }, + { + "url": "https://api.github.com/repos/openSUSE/umoci/releases/assets/2704309", + "id": 2704309, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3MDQzMDk=", + "name": "umoci.amd64.asc", + "label": null, + "uploader": { + "login": "cyphar", + "id": 2888411, + "node_id": "MDQ6VXNlcjI4ODg0MTE=", + "avatar_url": "https://avatars1.githubusercontent.com/u/2888411?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cyphar", + "html_url": "https://github.com/cyphar", + "followers_url": "https://api.github.com/users/cyphar/followers", + "following_url": "https://api.github.com/users/cyphar/following{/other_user}", + "gists_url": "https://api.github.com/users/cyphar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cyphar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cyphar/subscriptions", + "organizations_url": "https://api.github.com/users/cyphar/orgs", + "repos_url": "https://api.github.com/users/cyphar/repos", + "events_url": "https://api.github.com/users/cyphar/events{/privacy}", + "received_events_url": "https://api.github.com/users/cyphar/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain", + "state": "uploaded", + "size": 801, + "download_count": 3, + "created_at": "2016-11-23T16:21:25Z", + "updated_at": "2016-11-23T16:24:37Z", + "browser_download_url": "https://github.com/openSUSE/umoci/releases/download/v0.0.0-rc1/umoci.amd64.asc" + } + ], + "tarball_url": "https://api.github.com/repos/openSUSE/umoci/tarball/v0.0.0-rc1", + "zipball_url": "https://api.github.com/repos/openSUSE/umoci/zipball/v0.0.0-rc1", + "body": "At this point, umoci implements enough functionality to be able to\r\nextract, repack and modify OCI images. It is still missing major\r\nfunctionality (such as the ability to create an entirely new image or\r\njust create tags for images), but should be enough for a demo.\r\n\r\n**Please don't use this anywhere important. There are known security\r\nissues with this release (which will be fixed before 0.0.0).**\r\n\r\nSigned-off-by: Aleksa Sarai asarai@suse.com\r\n" + } + ] +query_type: api.github.releases diff --git a/upstream-info/urlview.yaml b/upstream-info/urlview.yaml deleted file mode 100644 index 37a67fbd8f595d294c0afe345d4239d1a83f15ca..0000000000000000000000000000000000000000 --- a/upstream-info/urlview.yaml +++ /dev/null @@ -1,4 +0,0 @@ -version_control: github -src_repo: sigpipe/urlview -tag_prefix: ^v -seperator: . diff --git a/upstream-info/uthash.yaml b/upstream-info/uthash.yaml index f08d1f33d6d9ecab62b428aebe80717f017fda6e..30ecd3ea04eb639a0d63d8e93fe0497cbefc2edc 100644 --- a/upstream-info/uthash.yaml +++ b/upstream-info/uthash.yaml @@ -1,4 +1,81 @@ +--- version_control: github -src_repo: troydhanson/uthash -tag_prefix: ^v -seperator: . +src_repo: troydhanson/uthash +tag_prefix: "^v" +seperator: "." +last_query: + time_stamp: 2020-05-20 09:49:23.365070810 +00:00 + raw_data: | + [ + { + "name": "v2.1.0", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v2.1.0", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v2.1.0", + "commit": { + "sha": "8b214aefcb81df86a7e5e0d4fa20e59a6c18bc02", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/8b214aefcb81df86a7e5e0d4fa20e59a6c18bc02" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjIuMS4w" + }, + { + "name": "v2.0.2", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v2.0.2", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v2.0.2", + "commit": { + "sha": "7f1b50be94ceffcc7acd7a7f3f0f8f9aae52cc2f", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/7f1b50be94ceffcc7acd7a7f3f0f8f9aae52cc2f" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjIuMC4y" + }, + { + "name": "v2.0.1", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v2.0.1", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v2.0.1", + "commit": { + "sha": "539b4504b052cfca54ed66b82ca99e3aed403d46", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/539b4504b052cfca54ed66b82ca99e3aed403d46" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjIuMC4x" + }, + { + "name": "v2.0.0", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v2.0.0", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v2.0.0", + "commit": { + "sha": "5b9de71e678f7458bf98d0d945817a5c2e46f6a3", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/5b9de71e678f7458bf98d0d945817a5c2e46f6a3" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjIuMC4w" + }, + { + "name": "v1.9.9.1", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v1.9.9.1", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v1.9.9.1", + "commit": { + "sha": "22646fcb7ce80be08d8917e153dabb272476c710", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/22646fcb7ce80be08d8917e153dabb272476c710" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjEuOS45LjE=" + }, + { + "name": "v1.9.9", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v1.9.9", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v1.9.9", + "commit": { + "sha": "bac80b264f7b15de93f8d8922021bfdaa606bf37", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/bac80b264f7b15de93f8d8922021bfdaa606bf37" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjEuOS45" + }, + { + "name": "v1.9.8", + "zipball_url": "https://api.github.com/repos/troydhanson/uthash/zipball/v1.9.8", + "tarball_url": "https://api.github.com/repos/troydhanson/uthash/tarball/v1.9.8", + "commit": { + "sha": "612210597851809c456375e12930d0d71cc38811", + "url": "https://api.github.com/repos/troydhanson/uthash/commits/612210597851809c456375e12930d0d71cc38811" + }, + "node_id": "MDM6UmVmNzQ3Njk0ODpyZWZzL3RhZ3MvdjEuOS44" + } + ] +query_type: api.github.tags diff --git a/upstream-info/vala.yaml b/upstream-info/vala.yaml index 7975df326278fe2b5cbea1da9f582ddc6ceb1c73..5fa7ad62adcb9d624b0893cf3d7f6408a8c9ba3d 100644 --- a/upstream-info/vala.yaml +++ b/upstream-info/vala.yaml @@ -4,561 +4,5 @@ src_repo: vala tag_prefix: VALA_ seperator: _ last_query: - time_stamp: 2020-04-24 13:55:43.259947240 +00:00 - raw_data: | - 0.10.0 - 0.10.0^{} - 0.10.1 - 0.10.1^{} - 0.10.2 - 0.10.2^{} - 0.10.3 - 0.10.3^{} - 0.10.4 - 0.10.4^{} - 0.11.0 - 0.11.0^{} - 0.11.1 - 0.11.1^{} - 0.11.2 - 0.11.2^{} - 0.11.3 - 0.11.3^{} - 0.11.4 - 0.11.4^{} - 0.11.5 - 0.11.5^{} - 0.11.6 - 0.11.6^{} - 0.11.7 - 0.11.7^{} - 0.12.0 - 0.12.0^{} - 0.12.1 - 0.12.1^{} - 0.13.0 - 0.13.0^{} - 0.13.1 - 0.13.1^{} - 0.13.2 - 0.13.2^{} - 0.13.3 - 0.13.3^{} - 0.13.4 - 0.13.4^{} - 0.14.0 - 0.14.0^{} - 0.14.1 - 0.14.1^{} - 0.14.2 - 0.14.2^{} - 0.15.0 - 0.15.0^{} - 0.15.1 - 0.15.1^{} - 0.15.2 - 0.15.2^{} - 0.16.0 - 0.16.0^{} - 0.16.1 - 0.16.1^{} - 0.17.0 - 0.17.0^{} - 0.17.1 - 0.17.1^{} - 0.17.2 - 0.17.2^{} - 0.17.3 - 0.17.3^{} - 0.17.4 - 0.17.4^{} - 0.17.5 - 0.17.5^{} - 0.17.6 - 0.17.6^{} - 0.17.7 - 0.17.7^{} - 0.18.0 - 0.18.0^{} - 0.18.1 - 0.18.1^{} - 0.19.0 - 0.19.0^{} - 0.20.0 - 0.20.0^{} - 0.20.1 - 0.20.1^{} - 0.21.1 - 0.21.1^{} - 0.21.2 - 0.21.2^{} - 0.22.0 - 0.22.0^{} - 0.22.1 - 0.22.1^{} - 0.23.1 - 0.23.1^{} - 0.23.2 - 0.23.2^{} - 0.23.3 - 0.23.3^{} - 0.24.0 - 0.24.0^{} - 0.25.1 - 0.25.1^{} - 0.25.2 - 0.25.2^{} - 0.25.3 - 0.25.3^{} - 0.25.4 - 0.25.4^{} - 0.26.0 - 0.26.0^{} - 0.26.1 - 0.26.1^{} - 0.26.2 - 0.26.2^{} - 0.27.1 - 0.27.1^{} - 0.27.2 - 0.27.2^{} - 0.28.0 - 0.28.0^{} - 0.28.1 - 0.28.1^{} - 0.29.1 - 0.29.1^{} - 0.29.2 - 0.29.2^{} - 0.29.3 - 0.29.3^{} - 0.30.0 - 0.30.0^{} - 0.30.1 - 0.30.1^{} - 0.30.2 - 0.30.2^{} - 0.31.1 - 0.31.1^{} - 0.32.0 - 0.32.0^{} - 0.32.1 - 0.32.1^{} - 0.33.1 - 0.33.1^{} - 0.34.0 - 0.34.0^{} - 0.34.1 - 0.34.1^{} - 0.34.10 - 0.34.10^{} - 0.34.11 - 0.34.11^{} - 0.34.12 - 0.34.12^{} - 0.34.13 - 0.34.13^{} - 0.34.14 - 0.34.14^{} - 0.34.15 - 0.34.15^{} - 0.34.16 - 0.34.16^{} - 0.34.17 - 0.34.17^{} - 0.34.18 - 0.34.18^{} - 0.34.2 - 0.34.2^{} - 0.34.3 - 0.34.3^{} - 0.34.4 - 0.34.4^{} - 0.34.5 - 0.34.5^{} - 0.34.6 - 0.34.6^{} - 0.34.7 - 0.34.7^{} - 0.34.8 - 0.34.8^{} - 0.34.9 - 0.34.9^{} - 0.35.1 - 0.35.1^{} - 0.35.2 - 0.35.2^{} - 0.35.3 - 0.35.3^{} - 0.35.4 - 0.35.4^{} - 0.35.5 - 0.35.5^{} - 0.35.6 - 0.35.6^{} - 0.35.7 - 0.35.7^{} - 0.35.90 - 0.35.90^{} - 0.36.0 - 0.36.0^{} - 0.36.1 - 0.36.1^{} - 0.36.10 - 0.36.10^{} - 0.36.11 - 0.36.11^{} - 0.36.12 - 0.36.12^{} - 0.36.13 - 0.36.13^{} - 0.36.14 - 0.36.14^{} - 0.36.15 - 0.36.15^{} - 0.36.16 - 0.36.16^{} - 0.36.17 - 0.36.17^{} - 0.36.18 - 0.36.18^{} - 0.36.19 - 0.36.19^{} - 0.36.2 - 0.36.2^{} - 0.36.20 - 0.36.20^{} - 0.36.3 - 0.36.3^{} - 0.36.4 - 0.36.4^{} - 0.36.5 - 0.36.5^{} - 0.36.6 - 0.36.6^{} - 0.36.7 - 0.36.7^{} - 0.36.8 - 0.36.8^{} - 0.36.9 - 0.36.9^{} - 0.37.1 - 0.37.1^{} - 0.37.2 - 0.37.2^{} - 0.37.90 - 0.37.90^{} - 0.37.91 - 0.37.91^{} - 0.38.0 - 0.38.0^{} - 0.38.1 - 0.38.1^{} - 0.38.10 - 0.38.10^{} - 0.38.2 - 0.38.2^{} - 0.38.3 - 0.38.3^{} - 0.38.4 - 0.38.4^{} - 0.38.5 - 0.38.5^{} - 0.38.6 - 0.38.6^{} - 0.38.7 - 0.38.7^{} - 0.38.8 - 0.38.8^{} - 0.38.9 - 0.38.9^{} - 0.39.1 - 0.39.1^{} - 0.39.2 - 0.39.2^{} - 0.39.3 - 0.39.3^{} - 0.39.4 - 0.39.4^{} - 0.39.5 - 0.39.5^{} - 0.39.6 - 0.39.6^{} - 0.39.7 - 0.39.7^{} - 0.39.91 - 0.39.91^{} - 0.39.92 - 0.39.92^{} - 0.40.0 - 0.40.0^{} - 0.40.1 - 0.40.1^{} - 0.40.10 - 0.40.10^{} - 0.40.11 - 0.40.11^{} - 0.40.12 - 0.40.12^{} - 0.40.13 - 0.40.13^{} - 0.40.14 - 0.40.14^{} - 0.40.15 - 0.40.15^{} - 0.40.16 - 0.40.16^{} - 0.40.17 - 0.40.17^{} - 0.40.18 - 0.40.18^{} - 0.40.19 - 0.40.19^{} - 0.40.2 - 0.40.2^{} - 0.40.20 - 0.40.20^{} - 0.40.21 - 0.40.21^{} - 0.40.22 - 0.40.22^{} - 0.40.3 - 0.40.3^{} - 0.40.4 - 0.40.4^{} - 0.40.5 - 0.40.5^{} - 0.40.6 - 0.40.6^{} - 0.40.7 - 0.40.7^{} - 0.40.8 - 0.40.8^{} - 0.40.9 - 0.40.9^{} - 0.41.90 - 0.41.90^{} - 0.41.91 - 0.41.91^{} - 0.41.92 - 0.41.92^{} - 0.42.0 - 0.42.0^{} - 0.42.1 - 0.42.1^{} - 0.42.2 - 0.42.2^{} - 0.42.3 - 0.42.3^{} - 0.42.4 - 0.42.4^{} - 0.42.5 - 0.42.5^{} - 0.42.6 - 0.42.6^{} - 0.42.7 - 0.42.7^{} - 0.43.1 - 0.43.1^{} - 0.43.2 - 0.43.2^{} - 0.43.4 - 0.43.4^{} - 0.43.5 - 0.43.5^{} - 0.43.6 - 0.43.6^{} - 0.43.90 - 0.43.90^{} - 0.43.91 - 0.43.91^{} - 0.43.92 - 0.43.92^{} - 0.44.0 - 0.44.0^{} - 0.44.1 - 0.44.1^{} - 0.44.10 - 0.44.10^{} - 0.44.11 - 0.44.11^{} - 0.44.2 - 0.44.2^{} - 0.44.3 - 0.44.3^{} - 0.44.4 - 0.44.4^{} - 0.44.5 - 0.44.5^{} - 0.44.6 - 0.44.6^{} - 0.44.7 - 0.44.7^{} - 0.44.8 - 0.44.8^{} - 0.44.9 - 0.44.9^{} - 0.45.1 - 0.45.1^{} - 0.45.2 - 0.45.2^{} - 0.45.3 - 0.45.3^{} - 0.45.90 - 0.45.90^{} - 0.45.91 - 0.45.91^{} - 0.46.0 - 0.46.0^{} - 0.46.1 - 0.46.1^{} - 0.46.2 - 0.46.2^{} - 0.46.3 - 0.46.3^{} - 0.46.4 - 0.46.4^{} - 0.46.5 - 0.46.5^{} - 0.46.6 - 0.46.6^{} - 0.46.7 - 0.46.7^{} - 0.46.8 - 0.46.8^{} - 0.46.9 - 0.46.9^{} - 0.47.1 - 0.47.1^{} - 0.47.2 - 0.47.2^{} - 0.47.3 - 0.47.3^{} - 0.47.4 - 0.47.4^{} - 0.47.91 - 0.47.91^{} - 0.47.92 - 0.47.92^{} - 0.48.0 - 0.48.0^{} - 0.48.1 - 0.48.1^{} - 0.48.2 - 0.48.2^{} - 0.48.3 - 0.48.3^{} - 0.48.4 - 0.48.4^{} - 0.48.5 - 0.48.5^{} - 0.5.7 - 0.5.7^{} - 0.6.0 - 0.6.0^{} - 0.6.1 - 0.6.1^{} - 0.7.0 - 0.7.0^{} - 0.7.1 - 0.7.1^{} - 0.7.10 - 0.7.10^{} - 0.7.2 - 0.7.2^{} - 0.7.3 - 0.7.3^{} - 0.7.4 - 0.7.4^{} - 0.7.5 - 0.7.5^{} - 0.7.6 - 0.7.6^{} - 0.7.7 - 0.7.7^{} - 0.7.8 - 0.7.8^{} - 0.7.9 - 0.7.9^{} - 0.8.0 - 0.8.0^{} - 0.8.1 - 0.8.1^{} - 0.9.1 - 0.9.1^{} - 0.9.2 - 0.9.2^{} - 0.9.3 - 0.9.3^{} - 0.9.4 - 0.9.4^{} - 0.9.5 - 0.9.5^{} - 0.9.6 - 0.9.6^{} - 0.9.7 - 0.9.7^{} - 0.9.8 - 0.9.8^{} - VALA_0_0_1 - VALA_0_0_1^{} - VALA_0_0_2 - VALA_0_0_2^{} - VALA_0_0_3 - VALA_0_0_3^{} - VALA_0_0_4 - VALA_0_0_4^{} - VALA_0_0_5 - VALA_0_0_5^{} - VALA_0_0_6 - VALA_0_0_6^{} - VALA_0_0_7 - VALA_0_0_7^{} - VALA_0_0_8 - VALA_0_0_8^{} - VALA_0_0_9 - VALA_0_0_9^{} - VALA_0_1_0 - VALA_0_1_0^{} - VALA_0_1_1 - VALA_0_1_1^{} - VALA_0_1_2 - VALA_0_1_2^{} - VALA_0_1_3 - VALA_0_1_3^{} - VALA_0_1_4 - VALA_0_1_4^{} - VALA_0_1_5 - VALA_0_1_5^{} - VALA_0_1_6 - VALA_0_1_6^{} - VALA_0_1_7 - VALA_0_1_7^{} - VALA_0_2_0 - VALA_0_2_0^{} - VALA_0_3_1 - VALA_0_3_1^{} - VALA_0_3_2 - VALA_0_3_2^{} - VALA_0_3_3 - VALA_0_3_3^{} - VALA_0_3_4 - VALA_0_3_4^{} - VALA_0_3_5 - VALA_0_3_5^{} - VALA_0_4_0 - VALA_0_4_0^{} - VALA_0_5_1 - VALA_0_5_1^{} - VALA_0_5_2 - VALA_0_5_2^{} - VALA_0_5_3 - VALA_0_5_3^{} - VALA_0_5_4 - VALA_0_5_4^{} - VALA_0_5_5 - VALA_0_5_5^{} - VALA_0_5_6 - VALA_0_5_6^{} - VALA_0_5_7 - VALA_0_5_7^{} + time_stamp: 2020-05-20 07:00:36.966672860 +00:00 + raw_data: "de72d4f2f25aa090b84e01258d031fe7aadab42d\trefs/tags/0.10.0\n8a22d9b783a73a56c877a0402781f0af65f42d75\trefs/tags/0.10.0^{}\n6977c191663777247a8dc2187f1254c03151807b\trefs/tags/0.10.1\n65f1c598c2c741fd92416a712df2b5c8c2d3b741\trefs/tags/0.10.1^{}\ndbbb165ec133b3915311f5def52f878006c03331\trefs/tags/0.10.2\ncc6e94f0ca42d6731d0edd2cd7b1e9104f408362\trefs/tags/0.10.2^{}\n79a387d8efb4447987ba71d0f9e8b0d5d128cc62\trefs/tags/0.10.3\nebf56a7a98a5ef9e0574ff1386b76e2d4f2f446e\trefs/tags/0.10.3^{}\na0fedc7a179194e7439b662b800a6a50ff71c7aa\trefs/tags/0.10.4\nd5dbecd48e405a932cb7aff4b73cb2fce23910f7\trefs/tags/0.10.4^{}\n5dd9f6090984ff4f37de6047639a02d71f115ae4\trefs/tags/0.11.0\na68eddc3584ed5479b3fdf894ed335c0f78c3df9\trefs/tags/0.11.0^{}\n229d5820d2b1abe478b944fc2b20b0bdc8876698\trefs/tags/0.11.1\n047ea9ca5f7282bcce8545f50cd7825f7cc3b301\trefs/tags/0.11.1^{}\ncbe1392c675b15bac5d59e48dc56717fb8330e22\trefs/tags/0.11.2\n41d6607e9afbab3b8a7148ce9b85136adaa3c4f5\trefs/tags/0.11.2^{}\ndbb2364eccc0375c28aedab8813d38b48b86697c\trefs/tags/0.11.3\n6ce6a19b4b1a329fbb67171780664d71b8fe37a9\trefs/tags/0.11.3^{}\nffe5efa99e610c776a0c04fe227ed1de6d338afc\trefs/tags/0.11.4\n84fd4e80dbea1426707e4995e1232b004ef2ddc6\trefs/tags/0.11.4^{}\n08a657c8ad0138d4ef6661ae7c9e026e449bfe94\trefs/tags/0.11.5\n4832e6fe443b580026072993e85ec78a401704b8\trefs/tags/0.11.5^{}\nca6c5f63a5e1aae971d913a06528c56d186c510c\trefs/tags/0.11.6\n51f2a3f7c66f759bfbc06c9164fd708e695d3e72\trefs/tags/0.11.6^{}\nd1cff6afcb9457c978841cb206a18566aa9437ad\trefs/tags/0.11.7\n3236f5b19cdb88566addc386355e8bde336299e4\trefs/tags/0.11.7^{}\nba18fafcb10125e0bdb1484cafd7fc1152f2342d\trefs/tags/0.12.0\nfbff85a711ba6ad37dd01a5d55d3be55423f9526\trefs/tags/0.12.0^{}\n89698dad69b219df9bd6c7f76d22039abb207507\trefs/tags/0.12.1\n439c74b7e56811272999c8cd03eb7c72bdb3fcbb\trefs/tags/0.12.1^{}\n4b0f2e968aa2721ca50cb4b4758c8b3bd0bf6f3b\trefs/tags/0.13.0\nd793655a46aba4ca7fd91de6eafa24d3b85a6344\trefs/tags/0.13.0^{}\n217d95a182a08c6b38e916b9d76b4ff90f3dcec0\trefs/tags/0.13.1\n22e6ff1c87049ab9d9bb24f699f98fa108f19047\trefs/tags/0.13.1^{}\na82e854c9adbcf446dc2fdb6e424c8945e6e5427\trefs/tags/0.13.2\n240d7ad1beef0eb17e75afa27d7c041fabca700c\trefs/tags/0.13.2^{}\nc04be699a31c93cb196e389b25db986e37dea635\trefs/tags/0.13.3\nd57276070f74295e278b1850d2545f5e7fb194ad\trefs/tags/0.13.3^{}\n8680132d89c88c3973463bb2a2a5b2e9b9274792\trefs/tags/0.13.4\nbdf1c100f87cc2b05c28782cd6df2f948af1ec51\trefs/tags/0.13.4^{}\n89a21d4dc10499e1f527d5c9ef98b56753dcfc3b\trefs/tags/0.14.0\n20a2ccb30c8f6b2b50f297ed7233cf56bde8c7ea\trefs/tags/0.14.0^{}\n97a96395a2fb1f92a8cc7c7c3f85153d4857d637\trefs/tags/0.14.1\n68ddb0da43678c2bdff68f27263121765ccc0a3e\trefs/tags/0.14.1^{}\nda0ed6befb1fd53c2b07e89456bbb7a0a867e7f2\trefs/tags/0.14.2\n98c4e1b602af0c330a60a8131b9de348edf26613\trefs/tags/0.14.2^{}\n86cea9dd153ccff9fd9e16794bc160e11aaf674c\trefs/tags/0.15.0\n42f508b7762e83438fb9479641cb88caf8b739bf\trefs/tags/0.15.0^{}\n31203ff107c0eccf2ff9d85902d8627f58682339\trefs/tags/0.15.1\n4b2930b9c6f9613d1a855807d2f38d040f49ae3f\trefs/tags/0.15.1^{}\n1d9c1bb29b1c63680cf07472d15268149fb4bb04\trefs/tags/0.15.2\n6d73a485d4b27c09b29fae10bf1465b5d98c1671\trefs/tags/0.15.2^{}\n87e39b5e134b086fb7f60ec5a04ce88fa6fbada6\trefs/tags/0.16.0\n176e5944ac1f3151a379a00c329fc86ae638190c\trefs/tags/0.16.0^{}\nd40dd70b38ff6fa5f5ae380694cd52972738c393\trefs/tags/0.16.1\n8837967a5b93f88a9feddc7372e9bfd388fa6b04\trefs/tags/0.16.1^{}\n2f60362153b1035134127c04e21686c1f359f611\trefs/tags/0.17.0\n5d0cb5e76dc0f4131adf67f33078d075ad52aa30\trefs/tags/0.17.0^{}\nf93b27cee4a28453ac548c83eb17fbc6a5de3d87\trefs/tags/0.17.1\n1db249c58851eafed412b6f0b7e66020629fce5e\trefs/tags/0.17.1^{}\na4a79f7bac30772363228c00cb08aac6d12ad022\trefs/tags/0.17.2\n8f54ea4cfe42feb23a839138c2afddddad3be901\trefs/tags/0.17.2^{}\ncdff03ada2c03d5e6480b9f61c8bbbda94d685df\trefs/tags/0.17.3\n7763d971337f04b3a976857fe8b107e7f68abc41\trefs/tags/0.17.3^{}\n716f63d5089ec0b5054c1d64f75d1a6917a0af71\trefs/tags/0.17.4\n5face185f6f46984ea9ce9742f0e916ee762bb06\trefs/tags/0.17.4^{}\n8c868a3f8c4c40fdc25a72c876e79d8f2b765d0d\trefs/tags/0.17.5\n2d4477a3d2481954ace2d18fcedc0f6e7d71b6aa\trefs/tags/0.17.5^{}\nadbb7fd3af8f07d54dfb4994b2da4d9f68c51c54\trefs/tags/0.17.6\neb634ab3c90668638f92f6428acd5e09cbc4112e\trefs/tags/0.17.6^{}\naebb07ef977a982632af142bc867640977618e52\trefs/tags/0.17.7\n7dd0292f27df2e8ca76301f96aac6c2ff7d7bcc1\trefs/tags/0.17.7^{}\n807770f34df44363021c396beefaabc7aaaa7aa7\trefs/tags/0.18.0\n6d60ee201e170ff2179850cad55a67b6b6ff40e1\trefs/tags/0.18.0^{}\nc42c8b65c0e24906d12e9326347ac8dcf5d2a5eb\trefs/tags/0.18.1\n255b3d325f5ca78b3131b89a11a5c8bcd37b67da\trefs/tags/0.18.1^{}\n197a2954053bf20979e24d6cd6fa40cf93837034\trefs/tags/0.19.0\n3146d24db0988e5c74340ae8c53b88e5c6c3f32e\trefs/tags/0.19.0^{}\n21e2096bd5c982d0ea780155fa7cffe7729049d8\trefs/tags/0.20.0\n344bad9c0e3fce4d9907bd34d63d0281e363e55e\trefs/tags/0.20.0^{}\n644c05dc490d9d7e6a5c8e3457030b94169d5ffc\trefs/tags/0.20.1\n216367ae477c20a902007aa9efb7541d519cacf5\trefs/tags/0.20.1^{}\nc2e5856093fd009648eef96e1b8d24100417c195\trefs/tags/0.21.1\n466aab8fd513b308f94baed68ad8f3298b37c301\trefs/tags/0.21.1^{}\n50b1ff0c72723a89d97ae01919d3f0c1a25e67b5\trefs/tags/0.21.2\n0c11c2ad4770fb0643beb79a79da85018bd72be9\trefs/tags/0.21.2^{}\n7c2b534f388fc91c2783c0507f3bf5a3410b9f54\trefs/tags/0.22.0\n893a4318a5f351d769bbc0c75f0d1dfdeac518a2\trefs/tags/0.22.0^{}\nebae43a6704dcd890eddd84933a84374892ddf15\trefs/tags/0.22.1\nfb8a841ab9ee677adc96d17158a3204b8fe19772\trefs/tags/0.22.1^{}\n457a25e5b8543f0494b8c3a162c2a1efb3906a01\trefs/tags/0.23.1\n9035483cb7e6e36cf748e066b4740c74518fde67\trefs/tags/0.23.1^{}\n5cd54b9c620ebb2e5ad39920449371b30482a75c\trefs/tags/0.23.2\n01fa2bfab504b40b01a9fb14e3ce80f790d0a949\trefs/tags/0.23.2^{}\n0de3d5efdd5b041376ef19f7d6668c4250828b4c\trefs/tags/0.23.3\n5a7347ab116417f367046cf2cebd93bc69abbe87\trefs/tags/0.23.3^{}\n047c93ce33a9ad2829616686727973c0ebb77cf1\trefs/tags/0.24.0\n5d370fcd029c39c621449f8d29768dec7a294a24\trefs/tags/0.24.0^{}\nb97aea51e93efc56ab37c7da5f3e97e8bc685297\trefs/tags/0.25.1\nba051c4084af9729317e77b1bbc5f45893a0175c\trefs/tags/0.25.1^{}\n8b673b28751575b83d3ea5535f27bf830d36ef49\trefs/tags/0.25.2\n20bb8007797e30dcd7066aad2e679f281adbf769\trefs/tags/0.25.2^{}\n4e747b8c4197aa06153d42d6a274eca46ee2b5b0\trefs/tags/0.25.3\n7ffafc2b2dd70cd3f426fe4d402d2b2602ead51b\trefs/tags/0.25.3^{}\n39fedf432a926a7cfc2804566b1f3b104d69806e\trefs/tags/0.25.4\n3658f709ba698bf6fcfb989c193a5451ff5a147d\trefs/tags/0.25.4^{}\ndf2e2b82e6c478eb4d8ba6e15a1b1499e1170965\trefs/tags/0.26.0\n499ffcad643fef7560b2f6c99a44fd2e5c3d2b94\trefs/tags/0.26.0^{}\n0855f0ba4e5d5b989f61d5494a393b6d93a50df8\trefs/tags/0.26.1\n5024007c11b28b4cfb690bb718cc1c7f5c53d535\trefs/tags/0.26.1^{}\n857e20fb0e77345a19c63c4264d84f88b8ced700\trefs/tags/0.26.2\n682eba5880fbd76402dec10118883da913a7b255\trefs/tags/0.26.2^{}\n3bbd544ea6da01b20f5e18981ac3268b5ed17967\trefs/tags/0.27.1\n32e79cad231fc400d9cc1ab5ca7aca1ed2e1473d\trefs/tags/0.27.1^{}\n5ecf3008754df9854bbec7a9a1fc6c9e9ee7abfb\trefs/tags/0.27.2\n144e504a0b2fdf9e402a4c44aa65a04b517b9756\trefs/tags/0.27.2^{}\n3b476a1527c506a1f0930fed17c918a5ba5ee68a\trefs/tags/0.28.0\n5f6ebe007050be12bdc4aa7c902ae4059f28874a\trefs/tags/0.28.0^{}\naa8279bf1707e787189cec003bae44012c1ed326\trefs/tags/0.28.1\nd828c23bf5480cf545f103e197a8e3a41d04ea12\trefs/tags/0.28.1^{}\n4d1bb775771b9841dfa4ac3b0545456284294db2\trefs/tags/0.29.1\ncc038c16056db9f05349eb7f45343bbf793817e4\trefs/tags/0.29.1^{}\nb8de3d7fae10383814749ca4160ede272ad2d9f3\trefs/tags/0.29.2\n7d5a445e2644568b3c85063603baa2b1802c527f\trefs/tags/0.29.2^{}\n8a581bffe8d880b0ef89752285bea39365de0f89\trefs/tags/0.29.3\n02995b7434649b6c93c1ee618450c1f8cc79a661\trefs/tags/0.29.3^{}\nf73f2c2c874dcffbaa98bbe32bfd7ca9e9d45e97\trefs/tags/0.30.0\nce7cd2c277e43612c97d011e80af159587d850d9\trefs/tags/0.30.0^{}\n8c57dc5c0be0c81f55741fdcf7e39ca6228f7913\trefs/tags/0.30.1\nb28977ae42a10d2b38057b72de5eb0f75e4f4835\trefs/tags/0.30.1^{}\nf70783055d4c2cf274c993c9eb2dd47becaf9c0f\trefs/tags/0.30.2\n3436a075bb073aea7d5e5b589806b5da24aeea09\trefs/tags/0.30.2^{}\n5523eb5dcb88e154912834e7818b36dbda43d2cc\trefs/tags/0.31.1\ne78f0b9e8e3a1d0c941e3a142f838b64583b8937\trefs/tags/0.31.1^{}\nff84a0b0e5d33aac9f877e71a115b329e72a876f\trefs/tags/0.32.0\nc4beeea221bf5db00788c93fe84c0d525d34b305\trefs/tags/0.32.0^{}\n03739f8f8b14c884fb60254f5d7d60604ac2dd46\trefs/tags/0.32.1\n7cb585eb230ac40114e6b9d639643be7258e9cb8\trefs/tags/0.32.1^{}\n9f5049ab610369b3d5c15cf4bc9738b3b1b0712e\trefs/tags/0.33.1\n5601083961524b3d59dedcec17a555181cdbbe0a\trefs/tags/0.33.1^{}\n22e3202e4460c23a3ad79ca234d4972befaae23c\trefs/tags/0.34.0\naca65c59769b080b1cfecf51266e32a4c16057e8\trefs/tags/0.34.0^{}\n953244f005ed833671e4bfe97f6cd19147ec49a7\trefs/tags/0.34.1\ne06c1524749862c2a3fd5b9e7a183f021116fa38\trefs/tags/0.34.1^{}\n2b65a70c6bac4ae39dcfcdbca58304bebd873071\trefs/tags/0.34.10\n579148a7936bae35ef06dae5ede75b21744c3345\trefs/tags/0.34.10^{}\ncc053c9aa2189dc7257036f67cf7fe49368b651d\trefs/tags/0.34.11\nc276065494fe8193fa87dae90afae578f82504d6\trefs/tags/0.34.11^{}\ncda10fcd9c2e84467bdccecf83a5cb510ab14994\trefs/tags/0.34.12\nae69c6da9589da521a6c7af20d60d12e0dbc5fc8\trefs/tags/0.34.12^{}\n45410124a4e3ddc15c7294e1f3fbcc8b78b64111\trefs/tags/0.34.13\nbb1743fe11e919142f90e0adfdbbc16867f0d8ac\trefs/tags/0.34.13^{}\nd98b1e98f2640ddf7237ec420f6d98657debe589\trefs/tags/0.34.14\n991bdf78d79a4ad223ac2cfed0cdcb9b1092909c\trefs/tags/0.34.14^{}\n89f16e53786a7ccca00374b82e3d1b4dac444324\trefs/tags/0.34.15\n47259abd09b21017ee2dea0914c012900562d40d\trefs/tags/0.34.15^{}\n02677cacf5290955500d9ba0be0b17a1bf68ee60\trefs/tags/0.34.16\n35f0406050a4d6eb9d0bdac04974cede98851e8c\trefs/tags/0.34.16^{}\n08da9a2ef94c56e48f1313c3ce8d48d5df530009\trefs/tags/0.34.17\n2f8aed052a9c279f2bf0c3ccd51a932c41f3a1ae\trefs/tags/0.34.17^{}\n835fca39f893e3811fc81a703f3a69422e2cc9d7\trefs/tags/0.34.18\n054487b478e1e3e5db62f4ac781f02572112faeb\trefs/tags/0.34.18^{}\nfb18d338c7a630624403cbabc23226536ffe5409\trefs/tags/0.34.2\n9b75174cc2aff56403d2167f825b01dbe9a391ea\trefs/tags/0.34.2^{}\nf23714b6bccf3afe92b1c497461c0d7feb3a2439\trefs/tags/0.34.3\n1a91372f341aa1dc020bd91cd14ad3fecd1c2a57\trefs/tags/0.34.3^{}\n5eb68d85524c914ae6a1e7d3a93abec5042f67f9\trefs/tags/0.34.4\n3be3797903293d48c6da4b42f5aa142d2666de33\trefs/tags/0.34.4^{}\nef427a0c2f9fda253b8991e83f4956bdd6ec0c65\trefs/tags/0.34.5\n0543f63bc86a6cd4064097ce6d6a8482df4f3243\trefs/tags/0.34.5^{}\n0b78544a685961a25540f0c3d51120c7f36d3683\trefs/tags/0.34.6\nb5c353a01c764d400099a64d3516a289a5bd289e\trefs/tags/0.34.6^{}\nba9368c2552102841a5441eb9c5ef9632a4a4607\trefs/tags/0.34.7\n3de0925c460965e29ea8ab9ff0ea46821e68dc20\trefs/tags/0.34.7^{}\n6b86cf0e04cdfb779999c19b9cb37544cbf64c0a\trefs/tags/0.34.8\nb82cb5ecd27099bea42e777f5281bf4f8f45954d\trefs/tags/0.34.8^{}\na807c798e6d13808811a736e19e52b2b4f8344f5\trefs/tags/0.34.9\ndc6a83a82774b35d39550c360c1bf9f7645f4203\trefs/tags/0.34.9^{}\n3a7a48c38672c46fadf4c2204483cdc20154a35e\trefs/tags/0.35.1\n43c673421609293241c12cfea531dfa8af72d590\trefs/tags/0.35.1^{}\ndff384dc54c88f62e41322689c7331ab393a6117\trefs/tags/0.35.2\nb836644e3bf686f4bacd448226b71e88d4d97958\trefs/tags/0.35.2^{}\na1f4ba7601c1fae386929377f7d7306712a4bec8\trefs/tags/0.35.3\nad0320c6166534ccf166647f54e32b951a97184c\trefs/tags/0.35.3^{}\n5897c4ec7888d18c5c8f2479a024ce0231ac3dc9\trefs/tags/0.35.4\n8cda6f36712d734b5c6d7ec0f8a00bb91573207b\trefs/tags/0.35.4^{}\n2ab4e5abd26ca0d6bf8fb50e6eda40f719160ce6\trefs/tags/0.35.5\naa2f2cbe63f21e27c54cf046e1e3c90eca0bd3eb\trefs/tags/0.35.5^{}\n5c5e5b6643f6cada62d0b23225412751d6b12005\trefs/tags/0.35.6\n9f705a297cd98068554eff01f5a05d4f21e8ed3f\trefs/tags/0.35.6^{}\nde9ef0dd7f2008b474b5178eabf3d6b61beb2543\trefs/tags/0.35.7\n9ec7e0104c84d29cda5f16ebd7f169f209c017b8\trefs/tags/0.35.7^{}\nb03a0e3cdce9e2cf46a38ba9f39bb5c15174cb32\trefs/tags/0.35.90\n9bdf56071db5dc2e0c6c4d1a0113c121b0c80cc2\trefs/tags/0.35.90^{}\n6d0666ae2fdb84a9f464f7a5183e7bd1bf378317\trefs/tags/0.36.0\n97d8687d46f9f26403adc5764ae7e32c7f8dc551\trefs/tags/0.36.0^{}\n3f9b52ded1794265953c565c21824f2a3fb576b9\trefs/tags/0.36.1\n879cf36b5f4727af22410bd49eaf99fedd16d8ae\trefs/tags/0.36.1^{}\n1d13ac9a7affa633f4279ce22c07705615bbf669\trefs/tags/0.36.10\n3619229247b9cf503f8dafda5b7a8ebf6179c7c0\trefs/tags/0.36.10^{}\n6c0f22a1aa5b978664e1444f687f2cf32cf1adcf\trefs/tags/0.36.11\ne99ce185f9228f23111e84f91d657e922ccfac6f\trefs/tags/0.36.11^{}\n0351610c01c8ef819ee45785471940334c067af8\trefs/tags/0.36.12\n7e43b98b10cdfd66a29b5b82369fc835615ec5cc\trefs/tags/0.36.12^{}\n272e15897a7e88c90b36322a38d4ece5b83e746c\trefs/tags/0.36.13\nc9469ead43857510fa4f9f5c4c7eb8aa40d9fc18\trefs/tags/0.36.13^{}\nb794d5bccc82ddbf06888ed1853c2e8de90456d9\trefs/tags/0.36.14\n5d819ee1a7ad2b39e81fc990035eca6f82da67e0\trefs/tags/0.36.14^{}\n1f05d3a26741149d547d4af91dcf7a98d5f2d022\trefs/tags/0.36.15\n3dc171f91840502d132120b226f5c54f45cc2967\trefs/tags/0.36.15^{}\n89e05ddfd94964a8d97f32ebf57c2e37ff7182b2\trefs/tags/0.36.16\nc4a60b9a9940b5e49f11e4439f29a0b1ca4a965e\trefs/tags/0.36.16^{}\n972c07799f9c0702d793bff35d5a49b678853747\trefs/tags/0.36.17\n9a9b367c2cc0b830abb734d758746ddce2703fd4\trefs/tags/0.36.17^{}\n60856dd2031e240c7dba30960846f6ab31e15ece\trefs/tags/0.36.18\n8b75377ec95dc5c891699159444881c27ffee298\trefs/tags/0.36.18^{}\n82804fcd5c7187510bc04fa829bf127e98869491\trefs/tags/0.36.19\nab544aa99c8c331938ea0e75fe2f722ea127e4be\trefs/tags/0.36.19^{}\n79ed7205f19a30cdf7f5dba308afe09ac53cceae\trefs/tags/0.36.2\nc150d12e9ed1cb36697e9bbed6dccb44f4b7c670\trefs/tags/0.36.2^{}\n954affd8a9a37adc9e7ee70ca83b583af7fd2304\trefs/tags/0.36.20\n6eba01321096db1a2c65810c89a170340ad612b2\trefs/tags/0.36.20^{}\n90a5828ac40798450aae73f2dccab435d78ce8e8\trefs/tags/0.36.3\nb07797b3b60e426cb38fe274c7e1d4885a23d2b3\trefs/tags/0.36.3^{}\n0ca13947b0f1c7fc5694544af657fa5d4ea2a1cb\trefs/tags/0.36.4\ndaac7eec0f66feb168589f1ea6e28c6e0698c9bb\trefs/tags/0.36.4^{}\n0fe5d8d8f5b5d64cbef81f5e7bf57c20cd969523\trefs/tags/0.36.5\n539453552fde565839b2d52032488d1a5b4ed8a2\trefs/tags/0.36.5^{}\nb8a67ee534eed763b5d8ea87f1e601c658dc788e\trefs/tags/0.36.6\n9908b095365fd0154d62bbd2c477ee73c12321c6\trefs/tags/0.36.6^{}\n8ae1585cc9460e09b8a2b3267e4b7968874abcad\trefs/tags/0.36.7\n0af8cf540fbf496a3236f991bf2f46aee98a171c\trefs/tags/0.36.7^{}\n1481ac19bb42921a2018efdc6346d0cbfc62a4d1\trefs/tags/0.36.8\n8f22502b6d283930857dfcf9580eda9ff6e6071d\trefs/tags/0.36.8^{}\n5d588136b91b1cd932a500a6220b29963ed8ce42\trefs/tags/0.36.9\na1c307c0bc4b6f6f32508c50eaa8673c61ba5a13\trefs/tags/0.36.9^{}\n7a07769f9d0b2e39e2064ddfd4fd08ca8540f119\trefs/tags/0.37.1\nbb5a612a7b22b14ac213f75bc5bf97f107a82636\trefs/tags/0.37.1^{}\nf88314fb10d20436186fa23fb671bf914963fc4b\trefs/tags/0.37.2\nd63d97c2f728d8c8e9d5dcdd9f092e2b607e8225\trefs/tags/0.37.2^{}\n881438656b975aff5b762caa8f382226be4ef6cf\trefs/tags/0.37.90\n58ccdb77abcdffa0c51769aefc6ca132701e4811\trefs/tags/0.37.90^{}\n59330176c3cceed0018e4613396770e492684827\trefs/tags/0.37.91\nc2d2ea44fb47d089686d585bceeed6e124b09321\trefs/tags/0.37.91^{}\n395141c7459d1d66ee211cbb5c5369741d3c04c8\trefs/tags/0.38.0\ncf2233e01b6e06d9a1c8f26a1894a0adc29dca76\trefs/tags/0.38.0^{}\n0844d9379b059c9f3d9b90124adf5b1351a33deb\trefs/tags/0.38.1\n985b6dbea8bbe52648350502347ba15d8de0f647\trefs/tags/0.38.1^{}\n08bf8a1ad2459cfbb71961465372c4152d4f5f6d\trefs/tags/0.38.10\n8352b87338ee087c27bb8ddc41996f2ae5eab63e\trefs/tags/0.38.10^{}\n2e583175dcb823009a418693841badef4cf7bc2b\trefs/tags/0.38.2\n6a45760aa8f13122b0dc2791aaeb0978889496fd\trefs/tags/0.38.2^{}\n09428d8d36fb0608e638d2097701f44dc3fafe05\trefs/tags/0.38.3\n5739689cab5b0637ecc2298d0fe463ebda3d39e6\trefs/tags/0.38.3^{}\ndbfc9454f9f1800a7f4568fc7b43b461af15c85c\trefs/tags/0.38.4\n01a38c67224b9e1f4d75f078d421e54af8c082f9\trefs/tags/0.38.4^{}\n0827362ba6a9e4d184be597e89dbf93b11a9c608\trefs/tags/0.38.5\nc389a822546ccf534c9cec38d55797e880a68a53\trefs/tags/0.38.5^{}\n8f717d6e52db0bfbde18bdeacaad30f9876cb907\trefs/tags/0.38.6\ndf4a09baeaa47e300782a5f0017cec96e2a8e2ad\trefs/tags/0.38.6^{}\n97ab7c5953f6c7a621fe906d66cea39940787ee8\trefs/tags/0.38.7\n07e0b99ea36f138f8698d71f0c6897c3f100d236\trefs/tags/0.38.7^{}\n5fdc442ea51a099cfc5ed966fe45e88df0791a81\trefs/tags/0.38.8\n3bb9af482c339719abc1e2af0bdb20027f2d02cc\trefs/tags/0.38.8^{}\nd3f46fa4fc6d35aace5a4a2ba0afc9d60fec3884\trefs/tags/0.38.9\nbe5144eb21dfe2bb2858bd65b8a50fe60d5f45f9\trefs/tags/0.38.9^{}\n283fea95e5b0b31af3b7c84be558d35a88fad582\trefs/tags/0.39.1\n26b716785c151b56fee6c1cb045be453645dad0c\trefs/tags/0.39.1^{}\nc2c6a68ae4492afe5b59e40b8165e598f87a589e\trefs/tags/0.39.2\n837e7aae61c246cdc191ea54a98b7bd576b78308\trefs/tags/0.39.2^{}\n6273823956ed3ae13ec14baebed535b20f45fa0c\trefs/tags/0.39.3\n1b78e4f837f9c20fbb2bceaacb5b4f3d2e03937b\trefs/tags/0.39.3^{}\n91e7745fbf42c0e7754fc9cf8475fce3446ce329\trefs/tags/0.39.4\nff310d0478afe0467f21a7fd6a22e86188bf0a59\trefs/tags/0.39.4^{}\nbc1b2770bf98c802ed31faa694afd3b56b6d947b\trefs/tags/0.39.5\nc633d80a2c84b257fa0ae4f4987b9063226b1688\trefs/tags/0.39.5^{}\n34f50e1ac33892bb3026fcd2699be638eba2bdf9\trefs/tags/0.39.6\n9d70b9f3e0726413bcdb442f8a0d97501a1bafc4\trefs/tags/0.39.6^{}\n154dbb735af77b435aff1502b02432dbdbce858e\trefs/tags/0.39.7\nf63c2cb0bfdd282b3d8d1ffcba1b58273555715a\trefs/tags/0.39.7^{}\nbf4e99916a73ccd5b95e15bf47a536ecc5ffb0c6\trefs/tags/0.39.91\n96e9c2e25d7ee8791ab2ef995567f373a4fd7b3c\trefs/tags/0.39.91^{}\n56b63a2fdf98f81df31bff7989757cf86a2a24bd\trefs/tags/0.39.92\n885a473fbbfd9880bd024e8a1196643b780d85d0\trefs/tags/0.39.92^{}\n679f3b192d5f2ea8388b08be36c597f89892c5a3\trefs/tags/0.40.0\n3ae57ab3ae448815e61da34fbd36a14cae679336\trefs/tags/0.40.0^{}\nc14543ff30594eaab9b180219ff8863083f5baba\trefs/tags/0.40.1\n9d0990e1d4048893a129008f27bff0ca458c5d05\trefs/tags/0.40.1^{}\n86b748e6ef10a904b26b3cefc4c26465eecb16a0\trefs/tags/0.40.10\nbb05af80e1b33db51ba7316559b94709c595442f\trefs/tags/0.40.10^{}\n7d05ecb869e602e6d352f72aaa5f5d4e89bb5cf1\trefs/tags/0.40.11\n24302d8fc4edac18913641ca97f89a74f2e86671\trefs/tags/0.40.11^{}\nb31e27147182b9b3cae278dd21a3f6df52c79e07\trefs/tags/0.40.12\n9f0d299f0ef333723ef1f771d69bf5ad16f64744\trefs/tags/0.40.12^{}\n64875a04b31721462cb33a8727a6ae9d9c145fb4\trefs/tags/0.40.13\n9cd25da69d8f947dee928d5a574641c55ccb5606\trefs/tags/0.40.13^{}\n6a6a32ce74047b273c5c48d23a49e820f110ce06\trefs/tags/0.40.14\n46436921e5fb87dfabea1e1e4589c5ae19f8bf40\trefs/tags/0.40.14^{}\n51f919885771969a6fa49468a12c86231a2b11d3\trefs/tags/0.40.15\nf3b20c8b78b7b005d6fe8971c64cccb8de40435a\trefs/tags/0.40.15^{}\n3afc61d1a82969406ebfaeb222ea120723db3d82\trefs/tags/0.40.16\nf9c0e566f445cdab7df65692420702cda0c9e697\trefs/tags/0.40.16^{}\ndb102d3e8729937d3cc1f1dabd0fbc8c59c73226\trefs/tags/0.40.17\nae7081c35deb47585a47cac90d182563c6f5d515\trefs/tags/0.40.17^{}\n0002258b2ca3e733ff3799fcfea8b53b73bd2a6c\trefs/tags/0.40.18\n8a1a47acae3ed05a10e4f623b47a35a61fc2d911\trefs/tags/0.40.18^{}\nd415b07a9e64e47b23309d94fefae47d2bba0e0e\trefs/tags/0.40.19\n34fb63b64aab8fa007b6cb0cff6e4cb35a1fd5d9\trefs/tags/0.40.19^{}\na8fbc8d7644c5e1e6e97a3be0d2f71fd26b8928a\trefs/tags/0.40.2\n3a11e70aefae4f2344b6352440e82cab0963f4f7\trefs/tags/0.40.2^{}\nf2e7fce2ded0126d4af12f1d32c790ec8fe7a5ee\trefs/tags/0.40.20\nf0832e6c8bcc6ad4d6847cc3808982b96395cca5\trefs/tags/0.40.20^{}\n89627c27ad2cb5a5c4bb023a735fb2238fd7d3d1\trefs/tags/0.40.21\naa33678499094defd1fd7384cf16f8b5e5f71265\trefs/tags/0.40.21^{}\n984c5fb736f5e40ac9c804e7832f113ec259a194\trefs/tags/0.40.22\na0201a2fa08a48dba20e3499422fdc82690481e6\trefs/tags/0.40.22^{}\n8c95c14b1d8c1e585ae471a0cdfd559387473d84\trefs/tags/0.40.23\ne494f230e749dcc319469995c51d3dc570e9034a\trefs/tags/0.40.23^{}\ne66af6fbc67955d58afe40ef7734f7501dc9417c\trefs/tags/0.40.3\n6d1cc0390f390f3e64f0bf3c1a0ed440b771968f\trefs/tags/0.40.3^{}\n422b260dde970a3a94e41414f2974652e23a0f04\trefs/tags/0.40.4\n75234a338d103c4d2ed097f8388c375d0f65e117\trefs/tags/0.40.4^{}\n984fe9a94125950a3c51e811b38e37c904cacd01\trefs/tags/0.40.5\n7fc2a7fbfc7bdde9d89499c7a9a78c2edea2e77e\trefs/tags/0.40.5^{}\n7a4b564b3883a65f8af4d460bd9c456905077278\trefs/tags/0.40.6\n2efef16d7e6265bc251050d22cfb4d8830706621\trefs/tags/0.40.6^{}\nffd00782a2af3345a4f5c8b8762c2d35c8168ced\trefs/tags/0.40.7\n93c48b557866b550092d2daaa7be80acb71e0e2a\trefs/tags/0.40.7^{}\n2a687bc936699c25c4ff978a03341e283442ad0c\trefs/tags/0.40.8\n63ddb7ab3977c94149c310a9b766dc6a72642d4f\trefs/tags/0.40.8^{}\n1edcd5f92744c930b73d5e80466a784a16fc060f\trefs/tags/0.40.9\n4a864b262ebb76151994638547286e87425e59ed\trefs/tags/0.40.9^{}\n54ae46844c8e69aa6ff9ee0cf2ec6d019cb94411\trefs/tags/0.41.90\n64cca878abe575a583164f2ae42817200d3ecf0b\trefs/tags/0.41.90^{}\ncd4e065f9278bcfeb0813d1b898e3b0fde9b3d9e\trefs/tags/0.41.91\n8119fd1b5a06f53ace61eafdd6c60224a91eecff\trefs/tags/0.41.91^{}\nd5a1cd7ab695094b8f206c151e3b3912671e410f\trefs/tags/0.41.92\nf6a451f01e5010b0d23c926f1723d8abf0072f53\trefs/tags/0.41.92^{}\n7c2b0d56144424e38a177b098b74ad16b9542d33\trefs/tags/0.42.0\nf2bfac7cfbb4fceaca9aa1c574811ea0a3f00306\trefs/tags/0.42.0^{}\ne93b56edde34ce6469cb40548fbf041ebef83a64\trefs/tags/0.42.1\n2d6c9331d73c9bd7a12adf5e2cc347c8ac8b48d6\trefs/tags/0.42.1^{}\n046ba86fdf8de3f9b7016d8af377b19bcb66ec5f\trefs/tags/0.42.2\n50c1c3f0f31ed27fc91e16de672cb2fc439ac36a\trefs/tags/0.42.2^{}\n2bf51264d2ca299055ddd3f405ace566aa6b5772\trefs/tags/0.42.3\n7beb4b6436c16492e0aa26c42c9067066b04bdd4\trefs/tags/0.42.3^{}\nee8ddc92eb9ef03afa84638931a73aa80d90b3ef\trefs/tags/0.42.4\n2ff3e54e8e1e77a889db72cb523b3792962a3421\trefs/tags/0.42.4^{}\n426cb6b9ffbb871e4a4808ef098ccccf99b742b2\trefs/tags/0.42.5\nd71a97f9615094e1dc083bbac2776ab94a85c62f\trefs/tags/0.42.5^{}\n94bd35101f0221c67d45caa59aea01e5bce0783c\trefs/tags/0.42.6\nbb8c62501d76232b8474de0d2c82d72cf4e8adb5\trefs/tags/0.42.6^{}\n58bf4d5f7ddb8377f1b5e9918ac2993a0d847664\trefs/tags/0.42.7\nb7db533f10665fcbc99a5f6863de7b032b72a8b0\trefs/tags/0.42.7^{}\naf27f44c087dd1f75dbc26d712b3b2720205054e\trefs/tags/0.43.1\nbcd7a53cdd69befb674f648418cb84777e8ec456\trefs/tags/0.43.1^{}\n2c43eb71b4190d8fda6bbb9a7840ecb30f3ebec2\trefs/tags/0.43.2\nc4dcbd417a98bfb0eaf155abf907e4780529b8e0\trefs/tags/0.43.2^{}\n14fc9f3826c12064b545c3e3bc4928e814e8d9db\trefs/tags/0.43.4\n3c2c4d9be66011c1321594a4fde2ca69f0f697b0\trefs/tags/0.43.4^{}\nbadbfb1f9c8e0ea21c57b2dc52b0b7ed3d5d9d12\trefs/tags/0.43.5\n91721c4acfe24720691a5fee38b959f691d523a7\trefs/tags/0.43.5^{}\n572bf1613267697f4f6a95191e0f85522eaba0ab\trefs/tags/0.43.6\na9ed25d675abe100d9ef61912bf50620744b5c12\trefs/tags/0.43.6^{}\n10b06d7fa81c13b0c3fa90cbbd06925b16f2761a\trefs/tags/0.43.90\n08b4d2dc1d77ea4fcc889a7e0da5f630c0280ad1\trefs/tags/0.43.90^{}\nfa8fb11b3165c4fad76d0bef99fd23f51ccc8ed8\trefs/tags/0.43.91\n18ce1812888212c71428b9f6cb36b0e751407ef8\trefs/tags/0.43.91^{}\n3e0ec0963556312b505e786d58e3628935ec9da2\trefs/tags/0.43.92\n1950090e66921b3e5cef73060ed1cc54782043c1\trefs/tags/0.43.92^{}\n01679ea66d0a03bbd4e0b8ea8a1a9ea68f3bf1bd\trefs/tags/0.44.0\n5c24e43c809acc06b49341834a58e45f90e60313\trefs/tags/0.44.0^{}\n7698b7241b62997c9d3693a7fd09c661c303fcd0\trefs/tags/0.44.1\ncc9ab83969909a0502dd7d9d3ebf160ead745763\trefs/tags/0.44.1^{}\n0303cf911d28e83777011f520bf178b3a5d25a60\trefs/tags/0.44.10\ne08fa3d79165b67ffb8075209520bbed3e164040\trefs/tags/0.44.10^{}\na403711708deca7ba175376af4d3603688bb1bde\trefs/tags/0.44.11\nf9f1f6ebc3f13cb20e48aa49bbc34395506181d4\trefs/tags/0.44.11^{}\n956cbe12a76992a7493dc174654ce53ca95221b5\trefs/tags/0.44.2\n7a9f36448ee11da953f413cc857ff5610fb48541\trefs/tags/0.44.2^{}\nf70f18cdbbe722bbb27f4481a1b6d01c8e1d08bc\trefs/tags/0.44.3\n2ddcfe403f7aebe4742a886828baf578892c2272\trefs/tags/0.44.3^{}\n15678373ea7a82dbd01f5e12a4964c3609bff442\trefs/tags/0.44.4\n27153b0cb63110fb744418e8bf20894dfa9173c0\trefs/tags/0.44.4^{}\n15ecdf37e8c8749481b07d394df5b9cb0ab0acac\trefs/tags/0.44.5\nbc4ae5afec2b0a531f00d84ee69f61cca04d77b1\trefs/tags/0.44.5^{}\n8bf492f97a997572f5072b9cf9fec44643deb1ae\trefs/tags/0.44.6\nd7a9dece752dc0cac5527e2d45bd05efb17205da\trefs/tags/0.44.6^{}\n816807e5a050de6b60adb56e667df1dc53e264db\trefs/tags/0.44.7\n4f55ca3728d2df7ad8d2bf6b7518712942454ad1\trefs/tags/0.44.7^{}\n5ac96e3dd3b6286176467cb570872092089e54f5\trefs/tags/0.44.8\n6fb1a202d8a91fc348401fbb8bf8ddd45ec5aca8\trefs/tags/0.44.8^{}\n441c16b8af7b78b524b722731f27323cb7059525\trefs/tags/0.44.9\nada3bc3e066e73988b2534fe476cd2a499c0e634\trefs/tags/0.44.9^{}\n8d5cf01acf69ad8e6d7faf91825a4eb5c5ad9a37\trefs/tags/0.45.1\n9365176e3f4fab737112e957f38c128752c8b504\trefs/tags/0.45.1^{}\na72a70c875cf763a3d6248c34b60498cda3908d0\trefs/tags/0.45.2\nf2f25a6cc77d5a7ffc9e0ea2fad7877971cb2b1f\trefs/tags/0.45.2^{}\n93d867db0eb62f7257f5d274c0fe569d9e1c8166\trefs/tags/0.45.3\ne3ba95e48c655ac5bc2e732dad1c77309481ff9b\trefs/tags/0.45.3^{}\n7fd3d2cb262edefea28feccba79ae7505bb361b9\trefs/tags/0.45.90\nbacc6e6d9fee6b4cb40864b5c8391c5ccecf79e6\trefs/tags/0.45.90^{}\n9812cc02c1823d52952cdc422d87fe74a7d9dc73\trefs/tags/0.45.91\n0491b3c0e48a673fbaf5458f7c684d6e6a92d976\trefs/tags/0.45.91^{}\n1d1b53f4292e0e973679eca1ae153b4d4f5c68e3\trefs/tags/0.46.0\n3c5d2b6056aa9c29501315a100bd0662037a019f\trefs/tags/0.46.0^{}\nde95dcca734539279d0194ce9bb9f4dd89c8d9a9\trefs/tags/0.46.1\n97791f2d8a2d91d6e71216b7ca3eeff1b2cd8d0d\trefs/tags/0.46.1^{}\n944dc70637eaddcbed9fd3fb852cc548ba035806\trefs/tags/0.46.10\nf514e7ae37e88b33a498492b107fb3072f621dff\trefs/tags/0.46.10^{}\n721612e4138ec898a8e0294ea679b212157bcc82\trefs/tags/0.46.2\n6f4bfc1f6c19121f30372b498ac6107ea0432dc8\trefs/tags/0.46.2^{}\n0305d6141e3974d3be6a123753b2497402167de2\trefs/tags/0.46.3\n08abf149d56c18420cdfa0a66017bbe93ca939d2\trefs/tags/0.46.3^{}\nb58e17334e1366b3d5bf9eeea5ce911c6c4f2f8e\trefs/tags/0.46.4\n1decbe39caef83c82842b8ed68532c3b19fde6f5\trefs/tags/0.46.4^{}\nf92b2bffa8b4ca84a7c0f68234c8c19c80cc565d\trefs/tags/0.46.5\n8213d9fb5dac9413a5ed24b1fade1806f039deab\trefs/tags/0.46.5^{}\nec1423f82032965fee48943df514ebb9ea8a79cb\trefs/tags/0.46.6\n1c7e2e64e24dc1508e312987c0eaff891ffb009b\trefs/tags/0.46.6^{}\n193fed4f84e2d612bb91b65e40e1c0db30a52b28\trefs/tags/0.46.7\nef2d9c079c7c2299441dac531bdc7057955f7375\trefs/tags/0.46.7^{}\ned388d42b0ed4cc182c23034ceaa5a3f81bdea26\trefs/tags/0.46.8\nd789b196398b7ab1cdd53e94b434e45b9915af1e\trefs/tags/0.46.8^{}\n19eec542415117c58c6d03ee99c2a7906ebc2d17\trefs/tags/0.46.9\na3c2ea442add3cc928eadab712903252cdf16e45\trefs/tags/0.46.9^{}\nf132dc8f5d57917bfa33a496be999a36ea18d2a9\trefs/tags/0.47.1\n2fbb228356e6dce383ecf9274b6d702111be49e7\trefs/tags/0.47.1^{}\n2efc408bcd1b906e683bf8d8a396054be8c75996\trefs/tags/0.47.2\n02ca1ff286bdf03d3e11882de39a3b17258a2627\trefs/tags/0.47.2^{}\nc3b80a3a221fb2237ff3c2fd5882e6032bb6771d\trefs/tags/0.47.3\na915e0cd0158bf7d81afebc63c952b7928969ba7\trefs/tags/0.47.3^{}\nb95fe804a8ef14c34fef7deecf4d126bee10bc57\trefs/tags/0.47.4\n64e5fe2175a7bb96a8612ee2554c98649cc306fe\trefs/tags/0.47.4^{}\n15e546a9897030608cb457a919195727323467b8\trefs/tags/0.47.91\n8eef5ff1b22e4585ab90efc50618de7184646352\trefs/tags/0.47.91^{}\n3f7c74a7396d67ed858c513d40bb842cda5f742f\trefs/tags/0.47.92\n1633ef94e0390c6c6897fabc4e00026f9fee18f9\trefs/tags/0.47.92^{}\n82d6f0df73041aaa2ad3a6373f92c4b532d31118\trefs/tags/0.48.0\n2de13fa52713e918caff0878ff1dd4f462ec33cc\trefs/tags/0.48.0^{}\ncbfa3383c80f12baed7dec5765492aef9226c5b0\trefs/tags/0.48.1\nbca593bf3c434270e41d11b1edd266ff61bebf4f\trefs/tags/0.48.1^{}\n3322cd8fb3ca1b8011f9296610e9928a384082a2\trefs/tags/0.48.2\n9e0ed97536dbbd48dc35146289e570bef5589260\trefs/tags/0.48.2^{}\ncefd5352602f1851639f046baeb13c78ed9eacbe\trefs/tags/0.48.3\nb8565a5ed1fe9327fc444f9df29111f98f153b53\trefs/tags/0.48.3^{}\n83d56e2f74ca305c06cf1e44ef1441b4bdf8b834\trefs/tags/0.48.4\n6bf52d0cdfdc42b214fbd189aa22e6dc159a4aaa\trefs/tags/0.48.4^{}\n206495c4b28a5288b8d833d261d7b8ad091f48ae\trefs/tags/0.48.5\n40a037d7e6cd75351d1d6cda394fc9d38ac5cf09\trefs/tags/0.48.5^{}\n8b97fc7eb9060e8899fb8a5c962df4ac7c4b7ba2\trefs/tags/0.48.6\ncfcc8afb3e95e9a1bcf5f5653b59e5d4c683b83a\trefs/tags/0.48.6^{}\n50914ed38532c7bfe883c8986e5440878e1e5b9a\trefs/tags/0.5.7\n28dc7da8b0ece58474b8b0f44ee630dc3f20fa77\trefs/tags/0.5.7^{}\n9eac22d7e87585463eab36e919fbeaebaff89e37\trefs/tags/0.6.0\n972df35871fc37c20c36e14459efe464ac04b2c4\trefs/tags/0.6.0^{}\n816c5121b5a7207c2279eb44e7984a3521da8a37\trefs/tags/0.6.1\n2818e127ee6c852df4e21669016de47fb9d35047\trefs/tags/0.6.1^{}\n29a32467e5536ee9089af945a33ad9af46037ff6\trefs/tags/0.7.0\n9291fcccb4e79533d8503ca11b3f51bdf4169cc8\trefs/tags/0.7.0^{}\n8f22f3a87f31fbe16a669676b2236c3b1289efb8\trefs/tags/0.7.1\n3136141f15b878faf9a63d7204fe54a44a7de392\trefs/tags/0.7.1^{}\n9c27786564b44d73ded20b8a5305f1d69d57412a\trefs/tags/0.7.10\nf5d5f5778278d5954f10f051c44b98389b0d45bf\trefs/tags/0.7.10^{}\n38425732f63004b0db2baef069340df421cb07ca\trefs/tags/0.7.2\n29a309696bafe9d43e82f22100a582bdac17e014\trefs/tags/0.7.2^{}\nfccd9b109d6ac5db0e51e4e992782b26e6f299c4\trefs/tags/0.7.3\n39ffb5ebe6f34ae5cf5141446d52426482f6e76d\trefs/tags/0.7.3^{}\n8d1813dc1e1677df6279f5251af826753f257155\trefs/tags/0.7.4\n0223af9ac5cfd0e923aa4c1407e6e5257097a81d\trefs/tags/0.7.4^{}\nb05aa623c2ec7ca8e06d0a08e30cb3d4540c3de5\trefs/tags/0.7.5\n0ad72f28988d5edd4f23179f5206c81d8f6ee70f\trefs/tags/0.7.5^{}\nd5d9d4592d61fa210c9acad44218d4fc61b38c31\trefs/tags/0.7.6\n95f225dc6cae75a455c3166538472f8f344229aa\trefs/tags/0.7.6^{}\na761cc4538089625247fa32c2b57106590422bd5\trefs/tags/0.7.7\n01dba5271ea0021d085eb8514156f3293bec3cab\trefs/tags/0.7.7^{}\n05fa24de42cc0fea18054ed1128f8291995a342f\trefs/tags/0.7.8\ned4e67ac0bb0ffda1a55114659da65b21a99fb6e\trefs/tags/0.7.8^{}\n35cfe9b88ade4fcc038f05d1ba011dc52d54c28f\trefs/tags/0.7.9\n470d3c42bca7f5eb5c9369b4070a33680c87007f\trefs/tags/0.7.9^{}\n3b3148aa5c999fd896172ac11f161413fe12fe42\trefs/tags/0.8.0\n7959fff281139d427c1c41736edf122a8e1a8154\trefs/tags/0.8.0^{}\n385c8a1c16ca067b9bc7777b723c05504a52be6a\trefs/tags/0.8.1\n59f8edba354f89b46676b953134f3d41abbeedd0\trefs/tags/0.8.1^{}\n12bb3c5f45dd8a06f7625eb01d98adddf1c9f274\trefs/tags/0.9.1\n5185a6b91ecb22445a1be0b8f8e5fb23608803c7\trefs/tags/0.9.1^{}\ne9156467c98ed8c20d5eef8115c84eb3b9768572\trefs/tags/0.9.2\n5026304992c4e10942b96f327e91bf0d68020030\trefs/tags/0.9.2^{}\nf06786da633667a65f4012aa7660c27ac86e121a\trefs/tags/0.9.3\na8d3f4165aa9e4b372f0e7e8c04f890ffcd3cdeb\trefs/tags/0.9.3^{}\n486296ad6b2352c0d96ddca9467328bb76821b5e\trefs/tags/0.9.4\nba932660b808c8a1702baf1056971a2876ef3513\trefs/tags/0.9.4^{}\n316aded7cede71bf1e02b342fcdbb08ffd182dcd\trefs/tags/0.9.5\ne675841550619616294fccf00878d8b41a9603cd\trefs/tags/0.9.5^{}\nbc4485801a48d5879484652e70cba87cbe77c53e\trefs/tags/0.9.6\n03df32900126cb59626b3fc3617a5cf540a4e740\trefs/tags/0.9.6^{}\nbe832ea42cc3c148d701e144d7edddc4543f1e84\trefs/tags/0.9.7\n428bd806cd6b5accd66fa965fa3b5c1f1f7be80e\trefs/tags/0.9.7^{}\n3bdffe83dd86a239077fa49c52e125590849478c\trefs/tags/0.9.8\n4409e1d02bbb3e9d1ae3c1a4cadb1972e39586df\trefs/tags/0.9.8^{}\n38eaac4051f82e2bb5745f1070819e49f0570595\trefs/tags/VALA_0_0_1\n68986811db7b23c1c3b652cbee34fd45c62c2c6e\trefs/tags/VALA_0_0_1^{}\nd7e5d6c2dbc62dce3daa662b14420081a8c730d0\trefs/tags/VALA_0_0_2\n958c4a4b615f1824be331d8601d82d49bdc93009\trefs/tags/VALA_0_0_2^{}\nf70ba00450fe5d59c353aac5452c3b94541e9809\trefs/tags/VALA_0_0_3\n0608d3107b3f8b006eda68f326f1210c0e50a9e0\trefs/tags/VALA_0_0_3^{}\n6c50ecf9c647ca281dc9a2d29ae257ac7ed54f83\trefs/tags/VALA_0_0_4\n935f3f59a9a0e0f49e711a20e155e466734544e3\trefs/tags/VALA_0_0_4^{}\nf537d7088d5577cc25f124209cd1bec392c28dd7\trefs/tags/VALA_0_0_5\n4548b6481ea54ab62324a4d8cf9ac90084e70086\trefs/tags/VALA_0_0_5^{}\n286615b5732cff41035d9e70d0e8e44a179ee915\trefs/tags/VALA_0_0_6\n0433e40c41347f6daf16bb32b4114644ea1b0eaf\trefs/tags/VALA_0_0_6^{}\nc928af78a1b1b69188d1475e9eea55b676dc3bbb\trefs/tags/VALA_0_0_7\n918f1939884198300e8e594f24cf57f41f03456a\trefs/tags/VALA_0_0_7^{}\n0aece999b8d72a7c145acceb04086c62e2bd2332\trefs/tags/VALA_0_0_8\n3620b0c13c6698e4e0e65fa3bec8002de706ffc5\trefs/tags/VALA_0_0_8^{}\n1ec9126215be140c3b1fd0a5e378f4b7ce59b55b\trefs/tags/VALA_0_0_9\n3f663ea8875520d35e64ecc371f35159a6046306\trefs/tags/VALA_0_0_9^{}\n1e2045db969a1e03b258b08d3af7f810d97782fe\trefs/tags/VALA_0_1_0\n5b6423800563195f12cca5623b4122ce617894c5\trefs/tags/VALA_0_1_0^{}\n721ba348196c36123a95bd606cfc8712dae8d7fa\trefs/tags/VALA_0_1_1\neb06e3eb160d90fdde4a06e4d2d63cfc28435b20\trefs/tags/VALA_0_1_1^{}\n85f3d58602a152bf0f0bf844a6354cde8a7ef3d1\trefs/tags/VALA_0_1_2\nd9a2af5ac06ab3a9575648f5f0fd9e99f4c14a3d\trefs/tags/VALA_0_1_2^{}\n17c5f4571c6b3684b3355cbfdd775c339edb10f7\trefs/tags/VALA_0_1_3\nd35a698fd384f9da824aced3b474cf15ee8d6dbb\trefs/tags/VALA_0_1_3^{}\nd333bd72b0ea8a8009a284d38df943127a98e428\trefs/tags/VALA_0_1_4\n40646877270a6a3d1a01c64ead473848f679b706\trefs/tags/VALA_0_1_4^{}\n3ba71ebdec583a49697a7f892d6cd35f1096546b\trefs/tags/VALA_0_1_5\n517bd1f832ed17443b491cd2236ba7590a421e2b\trefs/tags/VALA_0_1_5^{}\nb67bec51cb4720c4e42d14f6befdef33ca7abf1c\trefs/tags/VALA_0_1_6\n4f30ea3eed052c8803d32e8ee2025ff46741a961\trefs/tags/VALA_0_1_6^{}\na4513c0e7885ee3184b44703a08f0564160749f3\trefs/tags/VALA_0_1_7\nbd044d341c8a848c319688e7ba87fd6c0927bbd8\trefs/tags/VALA_0_1_7^{}\n5e6ae99b2718f4bd6a8729e32cfd5b5019b49531\trefs/tags/VALA_0_2_0\n33ed106dc887d98d42f151b9c92ca27a7c90f68c\trefs/tags/VALA_0_2_0^{}\nb4dc2db6af0ee6794583a7ff23ed95bc1aef94a6\trefs/tags/VALA_0_3_1\n9a8ae6b86842e98c7dd02de11ee9d5f86b08a343\trefs/tags/VALA_0_3_1^{}\n59d0f507d7c8b115e0e1796e561aedb0bc6595e2\trefs/tags/VALA_0_3_2\n79d3f185e65577e5ce3fa3de8f379ad669b458ec\trefs/tags/VALA_0_3_2^{}\nbc8c0706b7ccdb1d301a3b4535532089f97e565d\trefs/tags/VALA_0_3_3\n26ce87cf98408dcfef244b3f5b8d1fd41f6415a1\trefs/tags/VALA_0_3_3^{}\na0b3ac53bc12f55949cd57fa63dafa9de2eaa174\trefs/tags/VALA_0_3_4\nff6cd67ca216af23c217ca99ca028d8971fcc6c2\trefs/tags/VALA_0_3_4^{}\na166d949266bed4c6968ed7658d014bfa853bc89\trefs/tags/VALA_0_3_5\na91d39b1fcf824310a1a7eac1849a1a4408c3da8\trefs/tags/VALA_0_3_5^{}\n8c78ad5f8d2c1d6155d9545538124fc01b2acdd7\trefs/tags/VALA_0_4_0\n823c9a854dc1da7f64a9bee36741cff7954d0d8f\trefs/tags/VALA_0_4_0^{}\n7cb29ad61c0a19fefead4ad56404fbca765718c6\trefs/tags/VALA_0_5_1\n7fefe90a28d090a0ab39109ba92b4dfcce5b3013\trefs/tags/VALA_0_5_1^{}\nbadd180bd9472479490b86ac11157eb69e746b4b\trefs/tags/VALA_0_5_2\nb9f854ec7e42bea66ccdf329fbb6d5ad5a9fcf29\trefs/tags/VALA_0_5_2^{}\nb68d93714e7e0ec6428bf91fbfa65ab9c44d807e\trefs/tags/VALA_0_5_3\n9ea2ffe386c8352744e6af2e3a01e9ca6edbb140\trefs/tags/VALA_0_5_3^{}\na5ad0dd2804b6dcc1e66b9c8149dac9d439f00dc\trefs/tags/VALA_0_5_4\n482e8e02d8078feea80bec557bac583dc42dbd64\trefs/tags/VALA_0_5_4^{}\n09de6940baa63cffa73582b7b9223afcf83ecee0\trefs/tags/VALA_0_5_5\nabc3a27be5d58b0da38d58ece3633159025c5825\trefs/tags/VALA_0_5_5^{}\n137b06953117f7caba0fa20df6054066464b95a8\trefs/tags/VALA_0_5_6\n7be3dc269a061612415955381b45fa2340482feb\trefs/tags/VALA_0_5_6^{}\n343bee13085b9d46a8bfb02b334dabae0908eef3\trefs/tags/VALA_0_5_7\n28dc7da8b0ece58474b8b0f44ee630dc3f20fa77\trefs/tags/VALA_0_5_7^{}\n" diff --git a/upstream-info/vdo.yaml b/upstream-info/vdo.yaml index cdae4cd7492ce9401528edb5ae4d2164cde2c6f4..c0a455e831be1390d6050724f57c041cdc5113c6 100644 --- a/upstream-info/vdo.yaml +++ b/upstream-info/vdo.yaml @@ -3,8 +3,9 @@ version_control: github src_repo: dm-vdo/vdo tag_prefix: "^v" seperator: "." +query_type: api.github.releases last_query: - time_stamp: 2020-04-27 08:46:26.581681600 +00:00 + time_stamp: 2020-05-12 06:47:59.365408980 +00:00 raw_data: | [ { @@ -1238,4 +1239,3 @@ last_query: "body": "" } ] -query_type: api.github.releases diff --git a/upstream-info/yelp.yaml b/upstream-info/yelp.yaml index 9c4b13cd8e13162dcf08b54d965ccf793fca631e..2bcc9a6d4a7fdcfc0adaa7bac8e11f999d95e01e 100644 --- a/upstream-info/yelp.yaml +++ b/upstream-info/yelp.yaml @@ -4,5 +4,5 @@ src_repo: yelp tag_prefix: "(YELP_)?" seperator: "[._]" last_query: - time_stamp: 2020-04-27 09:48:03.182053910 +00:00 + time_stamp: 2020-05-20 07:05:05.434429560 +00:00 raw_data: "8cf37bbb34c451b1775e0c305504fecc5f70946c\trefs/tags/2.27.1\n26d102882c9e88018c4faf0eb2033d63051b2c8d\trefs/tags/2.27.1^{}\n43c07addf527b7234f3ad98d6e30d61481228af8\trefs/tags/2.27.2\n830dadec56f1a890f4cfe9c7da6ccd71647d0b7f\trefs/tags/2.27.2^{}\n6fe05a5b5faf747994d508292ca4ac9af116008a\trefs/tags/2.27.3\n985a96ac45f347686a2fc1e221bf88dd71774b8c\trefs/tags/2.27.3^{}\n5c59e6466508f88da5096fb35741707a29eb9d7d\trefs/tags/2.27.4\n6b328e1f0d6b9bb80e56657ec207cce50094ff1e\trefs/tags/2.27.4^{}\n42b993e67b996cd0ee6cb8b1f6b1f58e9d31783c\trefs/tags/2.27.5\nf8981e5298273381c9a9f4daced4fb0324e9e853\trefs/tags/2.27.5^{}\n9b36d518942fb74f184c1949e1a0aa2d36543faf\trefs/tags/2.28.0\n98f33b9f3d77891fa00489e7e5e2fb7de7a73d5d\trefs/tags/2.28.0^{}\nf6f8aea72c4305815028e95e7e4202c83f32cb1d\trefs/tags/2.28.1\n6d0dcf7a230b138098f3a407c8082e284b0299a8\trefs/tags/2.28.1^{}\na30ccd4bd2634c2ec07b544f41cdc9cc787f5be2\trefs/tags/2.29.1\nc6bcd9d6020d6bf11bd9ea130e2b01c768662634\trefs/tags/2.29.1^{}\n392117e092663ea94f4962546f6a3c0c3063581f\trefs/tags/2.29.2\nb41e7afdd87539c0f6719d08a03b87d3a277dd05\trefs/tags/2.29.2^{}\nc09ead988530f9d839e7360f2ee3ddcde474aacf\trefs/tags/2.29.3\n4b1fe0e8989b2752d07d68bcdcc2bb713a606566\trefs/tags/2.29.3^{}\n6643afe1f8b58b32778de5c0d023dff87f0986a1\trefs/tags/2.29.4\nfffac7bcccd3e562fd83c95715741539d73466e9\trefs/tags/2.29.4^{}\n66be5fa19a8fd0d0dc854aa241520507053a80ba\trefs/tags/2.29.5\n33d3f5acaa3f155045a3b6d50c8c2bc127e82be4\trefs/tags/2.29.5^{}\nb7dc3c0e5894da52b1eb7f0a91e5362fcda9ac58\trefs/tags/2.30.0\n08e62cdbd6893b920b3eec0dfa79add7cbbf4562\trefs/tags/2.30.0^{}\nd148c24de4b022a276271939598bd155573c348c\trefs/tags/2.30.1\n7073f59a3bf5c76c06ca71e7249c42b2f0a66d70\trefs/tags/2.30.1^{}\n9848f62c70d2c00f39355f5d94b0dabacfc1ac77\trefs/tags/2.30.2\nc3efa883b89d645446bcc429c6043af5e7317b99\trefs/tags/2.30.2^{}\n54a061cdf19dbd3019e7f90ec2403394d530a5a0\trefs/tags/2.31.1\nfeed213d5298125b026bc0c74d4b3be922b65e0e\trefs/tags/2.31.1^{}\nc7cb9db6990efd45a0ba61f2c89bd257bfcb7953\trefs/tags/2.31.2\nfbf206af6daca1d4594d873e7f9f43af9332d77b\trefs/tags/2.31.2^{}\n52cbd832552a884893617e815650dcf549c265c9\trefs/tags/2.31.3\nf9db8a1a5bbd2c84d366afcb12656a88915c8178\trefs/tags/2.31.3^{}\n169a2594809427bf8f8d145d95dc3a3d3469ea10\trefs/tags/2.31.4\n58fdaa84920387da8b34a4ec1148a5f5f6034f0a\trefs/tags/2.31.4^{}\n0663e70eedc4658db24a10d8c47f1f42f67687ff\trefs/tags/2.31.5\n785599bc769865a437caa0830f09da4f44cb0d8e\trefs/tags/2.31.5^{}\nf1a71ebbeb85ec8463e6a0b39435a815e4d33306\trefs/tags/2.31.6\n606c7439d2c30aae5819d9dbb5212ac9437ef056\trefs/tags/2.31.6^{}\nfdb9e57273e18216ddc5eb21c6d49ca8bce04cb7\trefs/tags/2.31.7\n81bf3c4074adcc6978b34efe107f692ed7086c89\trefs/tags/2.31.7^{}\nb19eb37604517ba04f3b4361b1c59eb8fcd3bcd3\trefs/tags/2.91.10\nee636188a29ef8e69868461fa453c6871db95736\trefs/tags/2.91.10^{}\n4f207d32ef8c7cd575d8e4ad2cafe754ca7ccea6\trefs/tags/2.91.8\nc6c9fa8d7a6e7de30621094ec9c3a32fb7d88dd7\trefs/tags/2.91.8^{}\n2c87b0ab0e24862d8a2bfad69b31b4cdca275bca\trefs/tags/2.91.9\nd4389dcbc2e971eadf5aab5b2c922559b22edc6e\trefs/tags/2.91.9^{}\n5175d7e1ff310c5ec8dd95b6a91a8006f5c54dd6\trefs/tags/2.91.90\na6f4af7014b41ad7871ddf7542a29408e52a5031\trefs/tags/2.91.90^{}\n66083c2263034e8cdb7f36d3aa6be2605a419d48\trefs/tags/2.91.91\n214884485b6740fb340135e1df1c3315f6768ee5\trefs/tags/2.91.91^{}\n0864077fd17bdfcde0a3b4a8b0db4fcdfbf801d9\trefs/tags/2.91.92\n244c38e4880eed6a12afbd11b82878c2075c5edb\trefs/tags/2.91.92^{}\nba1867b4eb22cfa85e134b2152d7780e95846d63\trefs/tags/3.0.0\nb7947f56f284131c7d99a1d83ea01719900ff105\trefs/tags/3.0.0^{}\nc2cc84a39674551287033571b98bd14bbf25444f\trefs/tags/3.0.1\n6e584ae43fd55cbc36de6add2169bf3e9b840ed2\trefs/tags/3.0.1^{}\n9bbfd29d069b4b247be22061f8f1a5fb29fdc899\trefs/tags/3.0.2\nd0a0b78d76885939670326fe7ee2c37dca0b56a3\trefs/tags/3.0.2^{}\n5a8e2cab31685b10505ee4d4a92b7e5640e2f7c9\trefs/tags/3.0.3\nf9c252076d77a9a219031dbe207dc7e10c9f6b03\trefs/tags/3.0.3^{}\nec4a6e6eb2303d76c039fd5d7969e6fd73481303\trefs/tags/3.0.4\ndc79d587c324c5dcfd44b84fbcaba354eab9d077\trefs/tags/3.0.4^{}\n4220536fcea3170c8f686cfdb567ada721d146da\trefs/tags/3.1.1\ne38d70597151ab16cd6c0f5efeed77519c9fb7a1\trefs/tags/3.1.1^{}\n453d5d6a4d8dec1707acdd3198ab24352bf28581\trefs/tags/3.1.2\n39f091695cfdbeddd6cd4239525ab42e40480ef8\trefs/tags/3.1.2^{}\n48f9a48cc7e0f20463edbde81bd502aa95447cd8\trefs/tags/3.1.3\n9e2c77e63494a711ffb35c096db79cc34a1510d0\trefs/tags/3.1.3^{}\nff5a9194c5673444ba48bf321ca8680505daef70\trefs/tags/3.1.4\n3d2e22c75dc1d6d430cc1e20abae2cc142964259\trefs/tags/3.1.4^{}\n66a3d586ffa5074bbeeca2e88cf84cda18e26daa\trefs/tags/3.10.0\ne95d9ef1d5e099b75b8c49d17b032dbaab8f2248\trefs/tags/3.10.0^{}\n32a42f6de214ded0d188d88d6fdaeb62e3eed839\trefs/tags/3.10.1\n103d69f32fb4e3ccfe45b3cd4b50bb7cb9718902\trefs/tags/3.10.1^{}\nb18380989ba6a6e184772d147837c1e7b728263b\trefs/tags/3.10.2\n482f2f293bfb18460259e5f66d1f29ba670c7733\trefs/tags/3.10.2^{}\na7cb82a0edbdc29b8cfb3f60589347297b344538\trefs/tags/3.11.1\n78eb120721e5eec66ae36755b448678163bb4e56\trefs/tags/3.11.1^{}\ncd6fea699858644a3c26f50691c8fb26b2b1660a\trefs/tags/3.11.91\nd5d7d12ff30faa30218e90e9439f5bf40e8b918a\trefs/tags/3.11.91^{}\n0561b23554c160f74a626cbbae84c46b4a023557\trefs/tags/3.12.0\nc824b0d17310b65f67cd9e5f4af437ab97d7dba6\trefs/tags/3.12.0^{}\nafa77815cad15b4fb54d8243b8bc57a883b23a25\trefs/tags/3.13.3\n1e97db75c33d4027651233ecdc8c7f463f52923a\trefs/tags/3.13.3^{}\nb10b07d7c8b038c3884d7e4dc67a12c1c63f5266\trefs/tags/3.13.90\nd2daeaeae81165d58a54729fd6f2b5476bd488c1\trefs/tags/3.13.90^{}\n280153d9b3dcc7beaf743d86d9c380afae9a403a\trefs/tags/3.13.92\n8e5669aebb6828db09ace509be38c441ce107527\trefs/tags/3.13.92^{}\n21968a93b957507e63873324dd4633e94b661762\trefs/tags/3.14.0\n3aeb0dfec5aeb6c5bd4e47177da26daacc6573c6\trefs/tags/3.14.0^{}\n9e21a28de315108d2a88b613b394224e42ef7e17\trefs/tags/3.14.1\nfefe99f68457c9b16741d659a60824a96561560d\trefs/tags/3.14.1^{}\nabdf7958c1213ddba6380e9aa7ba2cf62a7c37c1\trefs/tags/3.14.2\n4d94cc8d89463e11b04f16cca6d27aebf0b0e42c\trefs/tags/3.14.2^{}\nc7f1d5d0febc563179ed47297fa46164b8daea38\trefs/tags/3.15.90\n14004471be4abfa7681785bd5ec13803666e0f67\trefs/tags/3.15.90^{}\na574729e08111987a37a87bac8bf81c2b8700483\trefs/tags/3.15.91\n396578a785bb5d1fb83fbba5acb9042c58aa53a5\trefs/tags/3.15.91^{}\n1b4b53d2687b1ee72e57e8fbfc7a233a52439513\trefs/tags/3.16.0\n674764607e287ed27fbfd8e1977eb9c7b62e1a83\trefs/tags/3.16.0^{}\nf8c7fbd52daf6a9cdb96ef4dbd27d2872ac876e9\trefs/tags/3.16.1\n5920b2cd6143c4cb1ab9e3a866b22ec42d8d0489\trefs/tags/3.16.1^{}\nd4699be458de67d1175561cc9c09fadbfac6049d\trefs/tags/3.17.2\nb9eac3dd0a0896919a027bd5ee03dcf81740e5bd\trefs/tags/3.17.2^{}\nb900b243d3605c5b74c68d89db5d5e074464d6b1\trefs/tags/3.17.3\n3c404f112096903ba3d9bc2f1eb91b36af0e29d5\trefs/tags/3.17.3^{}\n5fbf5e22b23863af9511cebcacbb9b36b2664226\trefs/tags/3.18.0\n9f81370c35760b130cef008272cc24e4088b3217\trefs/tags/3.18.0^{}\n9932283ce9610f969e023a0dc326c81159c06a15\trefs/tags/3.18.1\n3a40d677d2d245ee001fd37d61cabf32e308c0ed\trefs/tags/3.18.1^{}\n4ebb8af63f5dea11539214ac89e111ca45a91a1c\trefs/tags/3.19.1\n4e3b3a8f8e043b4574ed22bcc4fcc4b5b92258b1\trefs/tags/3.19.1^{}\n287815f9b2266d6c79021377249c55e595388808\trefs/tags/3.19.90\ndf8c2886cd1b3e9d7592b12f655598382cf55dbb\trefs/tags/3.19.90^{}\n2a0f314f4331019d8671ab31b4eb19977e35416b\trefs/tags/3.19.91\n769ae63fc398d8b0c065fb32204ca2ba3e8612d1\trefs/tags/3.19.91^{}\nfc9fbc24dcca8ecb4561f64e9db84b79f906feb3\trefs/tags/3.2.0\n610511bdf70ef71da8eeedb7baaa8aa90f4ece63\trefs/tags/3.2.0^{}\nc30a556f4ec8b7f01c971101dd28425c952fdba4\trefs/tags/3.2.1\n00e1fd3da0effa331b4528f51a08a6d5e165afef\trefs/tags/3.2.1^{}\nd65af11bfe6743b65af88aba7c7ccc27bcf11052\trefs/tags/3.20.0\nb629b1d2dd209c3ed2e1482d20f1c20218395745\trefs/tags/3.20.0^{}\n8efd1b85317d5bd406e003239d3d0e5a0f28d295\trefs/tags/3.20.1\n05608739e66a7a5d976d7443bfb5e94aa6e80e18\trefs/tags/3.20.1^{}\na1fca5e130c2e97ee0b9aafc8a9f4fc581531cbc\trefs/tags/3.27.1\na8901f9cd36032dd3150e2470e6580741f1c51bd\trefs/tags/3.27.1^{}\n7322c826a72eded06526c321197cdbb0d97e4c14\trefs/tags/3.28.0\neb2e56bdf28c494558f80bee48b2c8acd5b00607\trefs/tags/3.28.0^{}\nc9cbb184d2aea9161df69ee9ba980d1bbbd3f9b3\trefs/tags/3.28.1\nfa41803996924b6f216aa205a1a0cd993f81d80e\trefs/tags/3.28.1^{}\n89867a3321957ccf07d19b9e2032ecccbe49a641\trefs/tags/3.3.1\n540374e47a414dbc420238993882237d2461b145\trefs/tags/3.3.1^{}\n52144bc48c86b1598e789046dbeb2c979a28316e\trefs/tags/3.3.2\n47fb92bf415107d845bb915bccafd61b033bca97\trefs/tags/3.3.2^{}\n6a794d4d3d88ed3133bde41c06d9a9414b14c09a\trefs/tags/3.3.3\n88ce1f33313ab58751038f4715b04c33c2247af6\trefs/tags/3.3.3^{}\nae186e22d83e9d50d1555be0c89758b053f502cd\trefs/tags/3.3.4\nfaccf34e26e42ac56c59c08bcd118981c0d2cd8d\trefs/tags/3.3.4^{}\n646330749fec826a9385e08c21bc9728d1d2e277\trefs/tags/3.3.92\n21689452d646180095a808461f6062d0e07361e9\trefs/tags/3.3.92^{}\nb1f605af43f3bd9cd29851502ee00439965dcd50\trefs/tags/3.30.0\n25c629c029ff9f65f767233f7c97532c25818af6\trefs/tags/3.30.0^{}\n89e9c91824cd0f1046d89969405d1fa9698b84dd\trefs/tags/3.31.90\n0cc9aff0fa56cc240068d689d72f1b1199d2e83f\trefs/tags/3.31.90^{}\n64c9f48297fefec476ae804ce5fe622c0726b6c4\trefs/tags/3.32.0\nb7207106be8bd72c9110670c0daa2f7a4bf0358d\trefs/tags/3.32.0^{}\n6415459380954b0ef0459d3ebafc6b957bc0f0bb\trefs/tags/3.32.1\nfdbc643201bea96f28582126da32c491f3c5d852\trefs/tags/3.32.1^{}\n951cf3a093f2ff72694a907dd464a2c46133f971\trefs/tags/3.32.2\n28a100d7a7b0d93859657aafa2cdac434722bfde\trefs/tags/3.32.2^{}\nf797fcb190493d87bbfb16e24962f4bcb6d75dd7\trefs/tags/3.33.92\na6aa57d44648a398ad979e278df1b99a589b6b8d\trefs/tags/3.33.92^{}\n3c306ad18b719064e4b8f909000d3b26164a5d99\trefs/tags/3.34.0\n7740922640e77af3c96e4362db496b90b138cda3\trefs/tags/3.34.0^{}\n114da36e0535f4c5a936e8dcd39c8e1e277e938c\trefs/tags/3.36.0\n3bf412214bf80a586406d5a75226ada38a877985\trefs/tags/3.36.0^{}\n9da024c7403132ec4601275d213548fb28746276\trefs/tags/3.4.0\n9a15c07985fd6b403be0767b42bc6c0235184a81\trefs/tags/3.4.0^{}\n4186d97f31d223294f25464e63fe38aaad90b27c\trefs/tags/3.4.1\n582503678e6ae748e3ec520802fbe6f1bd8409c5\trefs/tags/3.4.1^{}\n81c6a3f78576cc1221c867a2b085a8a2c5080cc6\trefs/tags/3.4.2\n217edbcb190c34bd7b2293cf2694cb9951571b3a\trefs/tags/3.4.2^{}\n0f670da53924269b670f8e7e771305b0852ae85c\trefs/tags/3.5.90\n2c381bb39bb5e40b816f0038438d65ffd4b262af\trefs/tags/3.5.90^{}\n4c3fd342f2f068306d3fb41e103f4347311854ad\trefs/tags/3.5.91\nbd0845c463b0523c13c9649f8eada186d8dd09fb\trefs/tags/3.5.91^{}\n48e0da650e75f0ea260ff898357d6d07f4d57260\trefs/tags/3.5.92\nfc8983f8b8a6f36474b0d822366e542a5bdfdc3c\trefs/tags/3.5.92^{}\n4c22a88b0cfae815aa1d9ebb3c584cf5bb0acfe9\trefs/tags/3.6.0\n9dea668da7e08680754f18d1ffe63fff1d9d21d1\trefs/tags/3.6.0^{}\nb5780c2798ebf9a59a193bfa0a0c8eb84c8aafa8\trefs/tags/3.6.1\n6b25ceb37afaadcef1eb9b56323455e6af4ceeea\trefs/tags/3.6.1^{}\n10919e8fda0234dcd45e74567ec2bbd6210ee65c\trefs/tags/3.6.2\nb1d8732e536f1e75b45daa61be5bdac01cd5926c\trefs/tags/3.6.2^{}\n0209b18b47f6e15dde27076205a2745f687299af\trefs/tags/3.7.3\nf586a6ce6584ba1da93a7c0270226163c9c9cd4b\trefs/tags/3.7.3^{}\n6e84c4cfc3ea5d6598a51bb78eb1a7c06cb7a0f3\trefs/tags/3.7.4\n013880710cd0bdeee5bfcf54ba9fccf15328c8c9\trefs/tags/3.7.4^{}\n2f1bf838463edea129fe6a5f5bfb0d10f8cea052\trefs/tags/3.7.90\n731e09386c9a5755b6af096406c1af20164d57e7\trefs/tags/3.7.90^{}\n06d961285b341acdb4d056b9edc3bbc37b106126\trefs/tags/3.8.0\n431cb7ac59780da6b54d27f2688fd10a1a783ceb\trefs/tags/3.8.0^{}\n53979a8e9bd15ea4ba44ea70efc193848dede8b9\trefs/tags/3.8.1\n933a0d8bd2705b72f92794395dd0d8db9fa48c5d\trefs/tags/3.8.1^{}\n628c8e82fa3df57abef21f6ad60040e7eaeb87c1\trefs/tags/3.9.90\n64c1f912e369015a185006d2b9592b74699d4c1f\trefs/tags/3.9.90^{}\nb3ec8ff2b2bf5615923ca861fc23d110c360bd4e\trefs/tags/3.9.91\n3614d2193b196f8b83493231e425ad530d275b70\trefs/tags/3.9.91^{}\n3716c5bc88ad8137420a340d0efb6152dc5b9f95\trefs/tags/BEFORE_DROPPING_GECKO_1_7\n1a27a1951d3728c5d7cfdf80ca982e359bbf97d3\trefs/tags/BEFORE_DROPPING_GECKO_1_7^{}\n5fd091102f3c9650325334b81a4afac4e13264e2\trefs/tags/DROOLING_MACAQUE\nd9aa90f16cba392bc4b6ce79bac1744a0b083840\trefs/tags/DROOLING_MACAQUE^{}\n0f3d64d523a478934bd0ad516220c2d18fbc7ee4\trefs/tags/EAZEL-NAUTILUS-DEMO-BLESSED\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL-NAUTILUS-DEMO-BLESSED^{}\n232f5d47a60d4e77040096604faeaa9f01ab069a\trefs/tags/EAZEL-NAUTILUS-MS-AUG07\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL-NAUTILUS-MS-AUG07^{}\n301f18ab528fc59e664a4dfa49c79d4a89c5ee4e\trefs/tags/EAZEL-NAUTILUS-MS-JUL12\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL-NAUTILUS-MS-JUL12^{}\n45b9777b35d98bde49be125c549007e1ea680aba\trefs/tags/EAZEL-NAUTILUS-MS-JULY_5\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL-NAUTILUS-MS-JULY_5^{}\n695f09b7e52100773ecd267c9a2337fea6b11388\trefs/tags/EAZEL_DEMO_1_ANCHOR\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL_DEMO_1_ANCHOR^{}\na055d470392e8df1bde9389eedcaeecd1c5f3c75\trefs/tags/EAZEL_NAUTILUS_DEMO_2_ANCHOR\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/EAZEL_NAUTILUS_DEMO_2_ANCHOR^{}\nad11ae961f21783e10d4fb54bad3d2e6e60ae966\trefs/tags/FOR_GNOME_0_99_1\n1038def13837cf21244571d4bd4e3330f4dbdb27\trefs/tags/FOR_GNOME_0_99_1^{}\n9ac96950c208d77d20adaa7c73bd3e16ebdbbf0a\trefs/tags/GGV_0_61\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GGV_0_61^{}\nf466bb6677b228ede666123b09bbc3d91cff9a96\trefs/tags/GNOME_0_20\nd9aa90f16cba392bc4b6ce79bac1744a0b083840\trefs/tags/GNOME_0_20^{}\n8bf49ed398f74cfb7165ed6701a8f90e9a24ab04\trefs/tags/GNOME_0_20a\nd9aa90f16cba392bc4b6ce79bac1744a0b083840\trefs/tags/GNOME_0_20a^{}\n518c975038cde05f86ea77cb9693fab4aaccfad5\trefs/tags/GNOME_0_25\nd9aa90f16cba392bc4b6ce79bac1744a0b083840\trefs/tags/GNOME_0_25^{}\nc51cc297385892a9d16cf4517ee851fe46a12956\trefs/tags/GNOME_0_27\nd9aa90f16cba392bc4b6ce79bac1744a0b083840\trefs/tags/GNOME_0_27^{}\nb946d9bebe2a132587e2def6a7dfb6f71c3ae4a0\trefs/tags/GNOME_0_28_MARTIN\n3ca019d48a4a6c63bdd92e8b39ded86ffebc1b10\trefs/tags/GNOME_0_28_MARTIN^{}\n4523d8ca97f1264ab726363915987ff1b9ebe5ff\trefs/tags/GNOME_0_30\n3ca019d48a4a6c63bdd92e8b39ded86ffebc1b10\trefs/tags/GNOME_0_30^{}\n7bc1672867bff11104abc8b9dabe447f4bd8b3a9\trefs/tags/GNOME_0_99_2\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_0_99_2^{}\n4ebdcc6a19e00553c82eb84dedd0399e04ed5745\trefs/tags/GNOME_0_99_3\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_0_99_3^{}\n38184f1121bb4b221cd15fbe0d1f2aef491c6886\trefs/tags/GNOME_0_99_7\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_0_99_7^{}\ncb3870d41d6f963bea15d2a680f8a5421777ba9e\trefs/tags/GNOME_0_99_8\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_0_99_8^{}\n1a2be1422b992425050487ad692d7fb87d06f17e\trefs/tags/GNOME_0_99_8_1\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_0_99_8_1^{}\nf8286973975934e3faeb784b41ddbcfbc5792703\trefs/tags/GNOME_2_14_BRANCH\nf54c217c0a82d278f648cf040ba6565bc6cead09\trefs/tags/GNOME_2_14_BRANCH^{}\n331c3cb7c44bbfcf03d13e9d987802cc3f6d3092\trefs/tags/GNOME_2_2_BRANCHPOINT\n4e1b3e644aad3eb4b74268318acdcce5062198f1\trefs/tags/GNOME_2_2_BRANCHPOINT^{}\na92ef8c639564c3b4a1513cfc9c882761e7c5702\trefs/tags/GNOME_CORE_1_0_0_1\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_CORE_1_0_0_1^{}\n7593d1aea1890c4dd781bcdfd36e2226b3fd0543\trefs/tags/GNOME_CORE_1_0_1\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_CORE_1_0_1^{}\n8b6fe77d329fa0d7eab4a0c8770879c28162f7ca\trefs/tags/GNOME_CORE_1_0_3\n3cd10863d28d2f2685472f19121068917684a399\trefs/tags/GNOME_CORE_1_0_3^{}\na36604cf1aba7c2fb23777cd0dbcdae17992f2c1\trefs/tags/GNOME_CORE_1_0_4\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_4^{}\na67a50d3072485a7af5052ee433a94dfa4b543e7\trefs/tags/GNOME_CORE_1_0_40\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_40^{}\n216cd9d1e3129321fd79c37ca351e4f1ae211102\trefs/tags/GNOME_CORE_1_0_41\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_41^{}\nbf9fbaae150ffa8ad0b35dbb610258da57a9372d\trefs/tags/GNOME_CORE_1_0_5\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_5^{}\nd9e19be856c571bac869ffedb11bce8b8fea8ab3\trefs/tags/GNOME_CORE_1_0_50\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_50^{}\n3d3e6e831ad68026315f889b67747782c8f5ffde\trefs/tags/GNOME_CORE_1_0_51\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_51^{}\n03735ac21864857cc60ee4c5d6c59090a3bad5e6\trefs/tags/GNOME_CORE_1_0_52\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_52^{}\n58a4ea4e828f7a14de3e771eec15ea95cb95fbf5\trefs/tags/GNOME_CORE_1_0_53\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_53^{}\ndf7708db17e4deb14d693828d44e114d28eada64\trefs/tags/GNOME_CORE_1_0_54\n2e11f393ecd4391736d100284954fb40b9f3dba0\trefs/tags/GNOME_CORE_1_0_54^{}\n816426351ab49099b7bc3729b07f4ba45a5daa51\trefs/tags/GNOME_CORE_1_0_6\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_6^{}\n2fd86689549bbb6bb35fe5911ecd71a8b166d4af\trefs/tags/GNOME_CORE_1_0_7\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_7^{}\n681b5f4536e93beb93cdd32ba2e67820e26a905d\trefs/tags/GNOME_CORE_1_0_8\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_8^{}\nc498550abd4ed113a8baec114088a89d1b4186e2\trefs/tags/GNOME_CORE_1_0_9\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_9^{}\n3630e252c10755f0efe74492d020d320b7af36a1\trefs/tags/GNOME_CORE_1_0_ANCHOR\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/GNOME_CORE_1_0_ANCHOR^{}\n17a5d3d973cc9d5692c7f0e54dc5ff17b85d924b\trefs/tags/GNOME_CORE_1_1_0\n48bc886e643e27eafcc019fe210019bd9ecbdbe5\trefs/tags/GNOME_CORE_1_1_0^{}\na6157d457a16c61a62827f828fc40f349f887442\trefs/tags/GNOME_STABLE_ANCHOR\n1038def13837cf21244571d4bd4e3330f4dbdb27\trefs/tags/GNOME_STABLE_ANCHOR^{}\n48660fa5f4718c2b698e95d488f9c753734fc6fb\trefs/tags/INSTALLER_PR3_ANCHOR\nefbc4fa944849fcb537170f0c8ac755b03554498\trefs/tags/INSTALLER_PR3_ANCHOR^{}\n94dfcb2b3a9fc64566d095f40d524099d109b371\trefs/tags/LIBGNOME_1_105_0\nac888651eefa47a0d7b1310c730d2915cdfbde4b\trefs/tags/LIBGNOME_1_105_0^{}\n062decf4484b02845de595d2073f61020480d6b6\trefs/tags/LIBGNOME_1_107_0\ncd6c97a95e6d00767633b66fd35389132a324fc7\trefs/tags/LIBGNOME_1_107_0^{}\n9ca6ce1c3b35af2b29c4b1a6fb3d446c75aa7df2\trefs/tags/LIBGNOME_1_108_0\ncd6c97a95e6d00767633b66fd35389132a324fc7\trefs/tags/LIBGNOME_1_108_0^{}\n8fb2f7b5aeefba60630c82aa41515c8515eb4923\trefs/tags/LIBGNOME_1_109_0\n6c0e72e9768fa4db7ae86b95c97a763925708d5e\trefs/tags/LIBGNOME_1_109_0^{}\n53f65be55a2b96793017cbefa7719b5ec668e890\trefs/tags/LIBGNOME_1_109_1\n6c0e72e9768fa4db7ae86b95c97a763925708d5e\trefs/tags/LIBGNOME_1_109_1^{}\nc517a6953a9285c75af167a7ba0283490dccbafa\trefs/tags/LIBGNOME_1_110_0\n3d95080e6f3675eb85681431fb5e03f3870c64d7\trefs/tags/LIBGNOME_1_110_0^{}\n429b5b6753552330f257755a29f3d350ac8dc774\trefs/tags/LIBGNOME_1_111_0\n3d95080e6f3675eb85681431fb5e03f3870c64d7\trefs/tags/LIBGNOME_1_111_0^{}\n7f4e92af3d5428e574e89cd25d83614e1148210a\trefs/tags/LIBGNOME_1_112_0\n3d95080e6f3675eb85681431fb5e03f3870c64d7\trefs/tags/LIBGNOME_1_112_0^{}\n748c7e9cefbc6c13ce1b7b436a82785e4068b263\trefs/tags/LIBGNOME_1_112_1\n72bc4b5dd84cda3553874ad10e111efdcc26ca6c\trefs/tags/LIBGNOME_1_112_1^{}\n73832fb8130fde2fb8d4af99014d35219646107f\trefs/tags/LIBGNOME_1_113_0\n72bc4b5dd84cda3553874ad10e111efdcc26ca6c\trefs/tags/LIBGNOME_1_113_0^{}\ne1bd9ce3c5c208384b5ac28e131cfca5572ccd95\trefs/tags/LIBGNOME_1_114_0\n72bc4b5dd84cda3553874ad10e111efdcc26ca6c\trefs/tags/LIBGNOME_1_114_0^{}\n3de1bad9bb40042966a991e11a4bc01eb6e49cd4\trefs/tags/LIBGNOME_1_115_0\n64bf7e86ba0f4d9b0ff4437ffd59513ad2d8bf4c\trefs/tags/LIBGNOME_1_115_0^{}\n064fd6275de0b4cd4b6bd7073d5d8f85b6e78c4a\trefs/tags/LIBGNOME_1_116_0\n64bf7e86ba0f4d9b0ff4437ffd59513ad2d8bf4c\trefs/tags/LIBGNOME_1_116_0^{}\nddb5a6257e7927ff0cb0dc4a780731fbbc562fb6\trefs/tags/LIBGNOME_1_117_0\n2608c18f99bea3e1d039cf1dee046e2b04f56a52\trefs/tags/LIBGNOME_1_117_0^{}\n8171a36bff17abe09f819f7b88ad52e82ebd4baa\trefs/tags/LIBGNOME_1_117_1\n744a4c63682f194db3c75aaa6e1f8e830df57f35\trefs/tags/LIBGNOME_1_117_1^{}\nb57733c0d3eb8ca9137984227e6c060b0e38e911\trefs/tags/LIBGNOME_1_117_2\nc2341ac0ef3e135bdf6540c2689c1b33abe27420\trefs/tags/LIBGNOME_1_117_2^{}\ndd6aa0d9c631be12460d6815f041800c934b7205\trefs/tags/LIBGNOME_2_0_0\nc2341ac0ef3e135bdf6540c2689c1b33abe27420\trefs/tags/LIBGNOME_2_0_0^{}\n6721eed820bce8de77d7c3dd65f8133b86d2f940\trefs/tags/LIBGNOME_2_0_1\nc2341ac0ef3e135bdf6540c2689c1b33abe27420\trefs/tags/LIBGNOME_2_0_1^{}\n2afb4a8249cf83cee8f7668f750e971677427e91\trefs/tags/LIBGNOME_2_0_2\nb4d41e9d68bd20a3f0925fbad17bca0be8a8f013\trefs/tags/LIBGNOME_2_0_2^{}\ne5069d0fcac0643ee53a3948b3726367906e7abf\trefs/tags/LIBGNOME_2_0_3\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_0_3^{}\n1529869a7dfbfab501343c4ecf61af490ebc52ad\trefs/tags/LIBGNOME_2_0_4\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_0_4^{}\nfa5b9146076e2e0311374809cde9e8bde6541312\trefs/tags/LIBGNOME_2_0_5\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_0_5^{}\nfa87f74f23eb2af6c840e996e177f276bb04541d\trefs/tags/LIBGNOME_2_0_6\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_0_6^{}\n2ddeb607598c7d280c313d75dd692293f64af283\trefs/tags/LIBGNOME_2_1_0\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_1_0^{}\n6ddc9b4e1262bbfc57797900a8c5fe9c1b4185ce\trefs/tags/LIBGNOME_2_1_1\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_1_1^{}\ne61de1704a4d3d1f2eae215ae90bc945cff94bce\trefs/tags/LIBGNOME_2_1_2\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_1_2^{}\n2c85dc6c4722e99ee6ac21278df047ce83936f70\trefs/tags/LIBGNOME_2_1_4\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_1_4^{}\nd18b09ffa7cf347927f1a25d0d7034f96f940ebf\trefs/tags/LIBGNOME_2_1_5\n2e4b674c8a659325af18434a7800d47c6c20a9dc\trefs/tags/LIBGNOME_2_1_5^{}\n3c613cc091c44ef825e42ea2cca30cf703a83130\trefs/tags/LIBGNOME_2_1_90\n4e1b3e644aad3eb4b74268318acdcce5062198f1\trefs/tags/LIBGNOME_2_1_90^{}\n98b093150fc3bc8ea8678f9f46ad08603e2b2e0e\trefs/tags/LIBGNOME_2_2_0\n4e1b3e644aad3eb4b74268318acdcce5062198f1\trefs/tags/LIBGNOME_2_2_0^{}\nae50efeb5da25ca505bb8665b97ec5346fd26985\trefs/tags/LIBGNOME_2_2_0_1\n4e1b3e644aad3eb4b74268318acdcce5062198f1\trefs/tags/LIBGNOME_2_2_0_1^{}\nd5219251712b468b4d0b3c2044e9c5a9b60d888b\trefs/tags/LIBGNOME_2_2_1\nfdb0675b7d581d276e267e6ea3d8d5c0b5b6472b\trefs/tags/LIBGNOME_2_2_1^{}\nc09a1e4f8f5ffbab7b12d6deca6440c1772d562d\trefs/tags/LIBGNOME_2_2_2\nfdb0675b7d581d276e267e6ea3d8d5c0b5b6472b\trefs/tags/LIBGNOME_2_2_2^{}\n8e038adee3de54feaa1bb526cfca84ea5ad0e5e3\trefs/tags/LIBGNOME_2_3_0\n4e1b3e644aad3eb4b74268318acdcce5062198f1\trefs/tags/LIBGNOME_2_3_0^{}\nb196bc06620c8f2e418027d5bb5cda97c287e858\trefs/tags/LIBGNOME_2_3_3\n5fcb134b43a64d5540571697550d8f8f80a69dd5\trefs/tags/LIBGNOME_2_3_3^{}\nff46af074438858d46ee2a393498e8aab6bda0ff\trefs/tags/LIBGNOME_2_3_3_1\na1d6871e543d3ddb8664a576f99ad2495f8d81b0\trefs/tags/LIBGNOME_2_3_3_1^{}\nd3373331f018b7bf733aa74255930c289ac7e7ea\trefs/tags/MJS_PATCHES_TO_REDHAT_PATCHES_ANCHOR\n334b505f7cf2e53209807178c772c39a95cf5ca5\trefs/tags/MJS_PATCHES_TO_REDHAT_PATCHES_ANCHOR^{}\n3b81e5f3c555a7173f58d4243050a48c30f867f7\trefs/tags/NAUTILUS-NEW-UIH-BRANCH_ANCHOR\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/NAUTILUS-NEW-UIH-BRANCH_ANCHOR^{}\n7c8d000af53cc85f71555555e8805483d2b62d37\trefs/tags/NAUTILUS_0_1_0\n3298f01fc455741ed6ab69a0e3e15177f704c90d\trefs/tags/NAUTILUS_0_1_0^{}\n644915b6460a0ae0c6c1ba25a5ff30f65f092118\trefs/tags/NAUTILUS_0_5\n15269ea3d17678c26e96433feefa2ad93d3c4891\trefs/tags/NAUTILUS_0_5^{}\na01ae85c18d034f646f777a85483203352a7e787\trefs/tags/NAUTILUS_0_8\nefbc4fa944849fcb537170f0c8ac755b03554498\trefs/tags/NAUTILUS_0_8^{}\ndf5d97fe85f489405a159b875b169a7e2c2216b4\trefs/tags/NAUTILUS_0_8_2\n726ff2b6b30aac9aaab55548a986100d44e8947b\trefs/tags/NAUTILUS_0_8_2^{}\naac2b1c0339bb9d3f2d6786639b5ef88880f8521\trefs/tags/NAUTILUS_1_0\n45ac4b84850938b6ca4ba2805c2c99aaf03a01d4\trefs/tags/NAUTILUS_1_0^{}\n1020eae95d09b8a97964a6452f3ae94046c1c36c\trefs/tags/NAUTILUS_1_0_1_1\n45ac4b84850938b6ca4ba2805c2c99aaf03a01d4\trefs/tags/NAUTILUS_1_0_1_1^{}\n0500830a9180553d6af05773f7a8493800a0730a\trefs/tags/NAUTILUS_1_0_1_ANCHOR\n45ac4b84850938b6ca4ba2805c2c99aaf03a01d4\trefs/tags/NAUTILUS_1_0_1_ANCHOR^{}\n836734b680396d742fd52199d68728a47ec5cc46\trefs/tags/NAUTILUS_1_0_2\n45ac4b84850938b6ca4ba2805c2c99aaf03a01d4\trefs/tags/NAUTILUS_1_0_2^{}\n6171d55ff3d9a886eb467657b1f252a4b438c6d6\trefs/tags/NAUTILUS_1_0_3\na323ba537cba9e907d53f149c8e07bd2e56f18af\trefs/tags/NAUTILUS_1_0_3^{}\nb6a100216e394bd8a1f67b78625278703659478b\trefs/tags/NAUTILUS_1_0_4\na323ba537cba9e907d53f149c8e07bd2e56f18af\trefs/tags/NAUTILUS_1_0_4^{}\nb78074a3cba525cbfc57591acb981ab8d7e71dfd\trefs/tags/NAUTILUS_1_0_5\nf824419a730758557f7fa5687ecb48bfcee56cbe\trefs/tags/NAUTILUS_1_0_5^{}\nfd5171623594a74a0f9f0ca07fe11051cc985eaf\trefs/tags/NAUTILUS_1_ANCHOR\n129753ccffb288a2de75d269dcef5fd2927e0b32\trefs/tags/NAUTILUS_1_ANCHOR^{}\n5f54b5b47e02546500281a7cf4efd33903c086e7\trefs/tags/NAUTILUS_PR2_ANCHOR\n15269ea3d17678c26e96433feefa2ad93d3c4891\trefs/tags/NAUTILUS_PR2_ANCHOR^{}\n9df96634a7e546cd5dd57620488dc5ec1fccaf17\trefs/tags/NAUTILUS_PR3_ANCHOR\nefbc4fa944849fcb537170f0c8ac755b03554498\trefs/tags/NAUTILUS_PR3_ANCHOR^{}\n9b5a33bb7af58ffaf8a67352cf10e7b6284386a1\trefs/tags/NAUTILUS_UIH_MERGE_BASE\n15269ea3d17678c26e96433feefa2ad93d3c4891\trefs/tags/NAUTILUS_UIH_MERGE_BASE^{}\nd49f3614e598aa06d8368ad90d2557b6b4dc8a58\trefs/tags/PANTING_CHIMPANZEE\n3ca019d48a4a6c63bdd92e8b39ded86ffebc1b10\trefs/tags/PANTING_CHIMPANZEE^{}\n3184e214c825b04853413d23b8f1d8b5bec9124f\trefs/tags/POST_1_0_MERGE\n48bc886e643e27eafcc019fe210019bd9ecbdbe5\trefs/tags/POST_1_0_MERGE^{}\ne81b6e29146480e96956e97e001b313defe9c1fe\trefs/tags/PRE_1_0_MERGE\n40c9d6964b921c80b63dfb62e5c14aad31a9f0fa\trefs/tags/PRE_1_0_MERGE^{}\n04b44079dff90d5b85e6a5c471fbba29c5b196ce\trefs/tags/PRE_PANEL2\n1038def13837cf21244571d4bd4e3330f4dbdb27\trefs/tags/PRE_PANEL2^{}\n128f7688245ad9526ae1444d353ecffc9aa5879e\trefs/tags/RAK_SOUNDVIEW_ANCHOR\n15269ea3d17678c26e96433feefa2ad93d3c4891\trefs/tags/RAK_SOUNDVIEW_ANCHOR^{}\na8a8f51d4f4c27a0fce2c4a2c93c716cb5a86897\trefs/tags/REDHAT_MERGE_BRANCHPOINT\n14ec3cb6772a837cc3b1d0fd5b850d1f142f11f5\trefs/tags/REDHAT_MERGE_BRANCHPOINT^{}\n4733378b411076c171498d014cf4656187c0cba0\trefs/tags/REDHAT_OUTSTANDING_PATCHES_BRANCHPOINT\n334b505f7cf2e53209807178c772c39a95cf5ca5\trefs/tags/REDHAT_OUTSTANDING_PATCHES_BRANCHPOINT^{}\n540d1f541695dc41a573d9017282f27269e89b52\trefs/tags/V0_1\n04c7b8b0ede1371fdc7db4b0f0f54878a87e4ef3\trefs/tags/V0_1^{}\n67517870860b72342fc0c763dc7a505665247220\trefs/tags/YELP_0_10\ne0a687e65f5b36dbc37e02bd2fa494efdd3ec81e\trefs/tags/YELP_0_10^{}\neb29c71dd5c35bac559e0d60b924596e06eaabf4\trefs/tags/YELP_0_2\nbfdfa9d0d1d9d79a0c64e28aa76f2454009d3282\trefs/tags/YELP_0_2^{}\n1dc1127ae63c1f97b08e4466151d97ab1e8bba00\trefs/tags/YELP_0_2_1\na8fa14586c232b30155b2a704fa28e8a63c5d0e2\trefs/tags/YELP_0_2_1^{}\n9ca49dc68217dd18da1bbc0263a3c52c6bad7e5b\trefs/tags/YELP_0_3\n164ae73072b867e68f5f843ceb637818e7832895\trefs/tags/YELP_0_3^{}\n749f754bfecc447e52717c0c65aa9cb18429a9ac\trefs/tags/YELP_0_4\nda423977d4bdb5e3bf15a0c85d4bf9f0abb83c17\trefs/tags/YELP_0_4^{}\n9d832f173018c2197c78d6fe1e4fd12b320848b2\trefs/tags/YELP_0_5\n1a730a0e3de3885fc9f86b2fe17c4b9a2e5aec1e\trefs/tags/YELP_0_5^{}\n582c203516a7d1b4de4fae143b79a93929c69655\trefs/tags/YELP_0_6\n4ea9fc7cdae49fc0ec690b832dbba76f29600c62\trefs/tags/YELP_0_6^{}\n1bd518311de38b8d4443933a985d7a6a99d59442\trefs/tags/YELP_0_6_1\na2561191e9fb10fc32c88c780f752dfaaf5d0127\trefs/tags/YELP_0_6_1^{}\nbf81da67ee163e96fa1cd463d1ae0368a6f078d9\trefs/tags/YELP_0_7\ned2718e887546a8accae4e2bc8d8eb2bc37ab0d2\trefs/tags/YELP_0_7^{}\n623c163f0d54a70c91b4ab1f3b5962aff327f6d5\trefs/tags/YELP_0_8\nffffd4f57ba066dde7d62c03bb9e51d1372b1f3f\trefs/tags/YELP_0_8^{}\na8306a2d2e74c79ce0904fab5afea2ea5b42f2cf\trefs/tags/YELP_0_9\n588ae3f784c3ea6a647443a38da91243310fbdb1\trefs/tags/YELP_0_9^{}\n9a405a4393eddec81178ec55ac2d0414748a93f1\trefs/tags/YELP_0_9_1\ndfaaba21acde2cf72afb046b509b8175d8c999df\trefs/tags/YELP_0_9_1^{}\n3e93301c2192c9137f41a2d15b073bbe0c2d66c3\trefs/tags/YELP_1_0\nced4a5b231bd349030a2a6e61fa7fca1f236f25f\trefs/tags/YELP_1_0^{}\nd5d33fad5abd956ad0b669602898ae9d05e3fef5\trefs/tags/YELP_1_0_1\n998d64d490cf02c34ef18115cacd74ccb1d4bb39\trefs/tags/YELP_1_0_1^{}\nfad04a2d9665adf5cad8989e5f83f18467fd3282\trefs/tags/YELP_1_0_2\n44c73d491118113ec392b9c0679d088741f7f4de\trefs/tags/YELP_1_0_2^{}\n9724ffc5eedb4258945da88bf7bd1244098c10a9\trefs/tags/YELP_1_0_3\n4a933f6bef63f6cc5031c3499f17d938351e7c7c\trefs/tags/YELP_1_0_3^{}\n60e5b424219599829c4bde328cf3c609caa3d152\trefs/tags/YELP_1_0_4\n2a81fa7b1d5ae993a441270bda6a76dc79b0ed4a\trefs/tags/YELP_1_0_4^{}\n62d12430bde4f95281fcb66087387039cb63607a\trefs/tags/YELP_1_0_5\n0dd80598098b062b61405712c2a35836eb65c906\trefs/tags/YELP_1_0_5^{}\n9e58781cb5316d3083cdadd86f6d0bf543b1cc87\trefs/tags/YELP_1_0_6\nc3aee73d6263a58a6deb6adb9d7fb72705fb8b6b\trefs/tags/YELP_1_0_6^{}\nfdc32dea5c67d44b5127d3c12972d02a38212e19\trefs/tags/YELP_2_10_0\ndaa0b2c366da41c7de05a18bb4cb1431d33ab864\trefs/tags/YELP_2_10_0^{}\n0d223f06488b1584461e13811bc209a823248303\trefs/tags/YELP_2_11_1\ncf6ca767193e3adf10601a98338194fac32c0e3c\trefs/tags/YELP_2_11_1^{}\nabb62a05f8ea066a308abd03f119630213dbff22\trefs/tags/YELP_2_11_92\nc23a00b89f92db859d6e57aedaa4a65e4c6357d9\trefs/tags/YELP_2_11_92^{}\na9d3d019f5e0931c25d4c34a44f09693dc908e5c\trefs/tags/YELP_2_12_0\n4419c514b9ff3ce4da764fd610906f15af199ce7\trefs/tags/YELP_2_12_0^{}\n7cf7f585fc07f646c5cdcf875f1f44d865ab71cd\trefs/tags/YELP_2_12_1\nd91ef942c9d13328e0ee955f8874376000f51212\trefs/tags/YELP_2_12_1^{}\nd160dcd9466fe0d3fd5a08476a4ca0b72984345e\trefs/tags/YELP_2_12_2\n6c295aef90b503b3624870d5b69b51549d9944ce\trefs/tags/YELP_2_12_2^{}\n5089c28885af985f3cd1b688d09cb21ee8cf3207\trefs/tags/YELP_2_13_1\n0f59a2e9c27894680358a9c9362cd4ea98670ecb\trefs/tags/YELP_2_13_1^{}\nf499798246348e60480f6fecfbbd7a8f6200c3ee\trefs/tags/YELP_2_13_2\n1e63b5f3d12d39d67c0e3cf50d77d9a7cd7accd6\trefs/tags/YELP_2_13_2^{}\n85c15545d7be7c64a9e3581ebfbb8b51fa1a3a42\trefs/tags/YELP_2_13_3\n1f63c89b11db6d8d6a1280eb84d461f8a0fd4bb3\trefs/tags/YELP_2_13_3^{}\n8194d27b4b0ef5f7d4b7b97308ffdbfd3cec53bb\trefs/tags/YELP_2_13_4\n4f74fd84a1e39076d65e3af745c6cb9203f6cfe7\trefs/tags/YELP_2_13_4^{}\nb79870a48db4bf8f4906f48d1efdb8aa97b854e9\trefs/tags/YELP_2_13_5\n65271d815ae665ccfc9bb7b97a608444630e5ac0\trefs/tags/YELP_2_13_5^{}\na3a2c196bbdc2c9900f890cf1b8eb697a1544835\trefs/tags/YELP_2_13_6\n331a785ef6ed92a3b0b77ac3e956eecf7e68afb0\trefs/tags/YELP_2_13_6^{}\n01633098949ebe370e59b70ff77ca03578197237\trefs/tags/YELP_2_14_0\nf54c217c0a82d278f648cf040ba6565bc6cead09\trefs/tags/YELP_2_14_0^{}\n7ba632658c63e64826bc6c835fa5dea8f52debad\trefs/tags/YELP_2_14_1\nab8ac7abb84fa4565b9d714498e61874b1184bb3\trefs/tags/YELP_2_14_1^{}\ncc36b21f1eb54a0408b8200b692c2a17f1347808\trefs/tags/YELP_2_14_3\nf5d55ae352569a11a9ae90391f743263ec8486ad\trefs/tags/YELP_2_14_3^{}\ncf26963bb349a9d500cbfe8278fbe13d4af55144\trefs/tags/YELP_2_15_1\n9ad49aeb466e15eb222c2c31f045e607d161c07a\trefs/tags/YELP_2_15_1^{}\nc45cea454f4398cbde27e5f5e2e7938143bb2bd9\trefs/tags/YELP_2_15_2\nb27ca64251f9a1e0830a46c043a153f2f5bb31e8\trefs/tags/YELP_2_15_2^{}\nfbcf33be8841f6df6102627be834c760f2f04e7d\trefs/tags/YELP_2_15_3\n60ad520fd08c037bcc31582c03b169cb53bd0937\trefs/tags/YELP_2_15_3^{}\n04a0edc66b1e6a7f544ebebccc7f88e360793d0c\trefs/tags/YELP_2_15_4\n4da2bb91a0317ee7fba90022162c4eaf504aabae\trefs/tags/YELP_2_15_4^{}\n04595830f33d5f056d2327bd4d50177837486803\trefs/tags/YELP_2_15_5\nb360f593f825d2f83cc055f395dbcd4b21fda131\trefs/tags/YELP_2_15_5^{}\n3b748880044f9545a4f1e56533bdb1ba0f8dfcb6\trefs/tags/YELP_2_15_91\n97c42c865572fbe69ceeccde4e2db2b44fd396bf\trefs/tags/YELP_2_15_91^{}\n624c37958b30752378b1fd2ce6db3745ca9dc35c\trefs/tags/YELP_2_16_0\n30beff02da4539ad6079c22533ba0a107c50a2ee\trefs/tags/YELP_2_16_0^{}\n6ccc2958891f467e3be559b371ed848ffe9ef0d8\trefs/tags/YELP_2_16_1\n86b60a0f8b8975040adb0acc84052709a267c09b\trefs/tags/YELP_2_16_1^{}\n44aee65f18d4c958ea5bf4898e1c41956ce0c21a\trefs/tags/YELP_2_16_2\nc3222bb25e2c2eea3cf89042a065dad88a8fae7c\trefs/tags/YELP_2_16_2^{}\n9ce1e20049cef5e47767564beb88f0e1a3e75243\trefs/tags/YELP_2_18_0\n2a1894ed12335f342380c9c419fcd7a4f5632743\trefs/tags/YELP_2_18_0^{}\n909992124bd47ddf1113bd1f06e81bfc5efe9498\trefs/tags/YELP_2_18_1\n3f500e106e3f6ef8ce528d8d75995f59d74733d3\trefs/tags/YELP_2_18_1^{}\n333f3813647b1a3b038e64ff76e345321977a6b5\trefs/tags/YELP_2_19_1\ne1e9e1a24c70fce406e2d60348d9153c2a855677\trefs/tags/YELP_2_19_1^{}\n9d5c7213d3e4c831e279648ecd1d47c1570abd9c\trefs/tags/YELP_2_19_90\ncef5e3775820585227577350ba51b339302795f5\trefs/tags/YELP_2_19_90^{}\n637b8b6d71ffcb558b1dfeec68875638a8a21146\trefs/tags/YELP_2_1_0\n197bf8f6fa6c588c2ab9a1210712c3f53b87143f\trefs/tags/YELP_2_1_0^{}\nd3705032c30688d528381fb9f72ca3be6f50a3b9\trefs/tags/YELP_2_1_2\n8c6426da24e3a098e5acab371041522e947ff60d\trefs/tags/YELP_2_1_2^{}\n8dba2629ba78da207311901450948bb4a85a2764\trefs/tags/YELP_2_1_3\n06914f530daafc1159256b80bfc6424411845f98\trefs/tags/YELP_2_1_3^{}\n1806ad03702a2c2fed2bb9b6eb71a36bbdb42690\trefs/tags/YELP_2_1_4\n9e3064eca6f0975fa9c92563d95506e34315ba7c\trefs/tags/YELP_2_1_4^{}\ne0974fe9e3c022b64172d487558890f17ee6695f\trefs/tags/YELP_2_1_5\n5a5f16b1df4a5c9a576e1b453f172b8333b71715\trefs/tags/YELP_2_1_5^{}\ncc33cdf46c98bf4fcfede675c12f1fc57a833ada\trefs/tags/YELP_2_20_0\n2798c1c58a584f7f62e1f96000d4957af2e3bd97\trefs/tags/YELP_2_20_0^{}\nd191ee0ccd9fa173a0cc484007cf5fbabca94368\trefs/tags/YELP_2_21_1\n4ffb05c37768d2e66ba471cbdbc68578956534f9\trefs/tags/YELP_2_21_1^{}\nfa16453678a67ac74987adad0a4d13d7ad25faa3\trefs/tags/YELP_2_21_2\n21821b7219a708d882e614f07d4f690a1e1c9938\trefs/tags/YELP_2_21_2^{}\n28908f186dc08690374bb54e78376b391baffbe4\trefs/tags/YELP_2_21_90\n930e780d511a604a6468e6f8027d1a80da6ed7ca\trefs/tags/YELP_2_21_90^{}\n5f8a68d1b6a47c06c4c054d46df800c8faa0d082\trefs/tags/YELP_2_22_0\n7b32e0652202950dda22644cece13709ab9d2c07\trefs/tags/YELP_2_22_0^{}\n576c31287aca9718503e90e1383c03649ed9825b\trefs/tags/YELP_2_22_1\n3749ecf93d1f7a5d4fffcebaacdbf29617578a3f\trefs/tags/YELP_2_22_1^{}\n3af19f5fbca6c7e204a7a47cb3919409c18b0677\trefs/tags/YELP_2_23_1\na7318c9db08124faec958191c2478afec82e78be\trefs/tags/YELP_2_23_1^{}\neb1a7766df8e474911d1666c9c3b93dd79b9339a\trefs/tags/YELP_2_23_2\n6fec997055f8295c5f6cc8452ef5fbe6f85b5916\trefs/tags/YELP_2_23_2^{}\n6bc8e21c539d1482c8508cf8ff2a0ae13164ff37\trefs/tags/YELP_2_23_91\nb33de19e347d50b2251e082f0d99c2e231bdd8c1\trefs/tags/YELP_2_23_91^{}\nc59e812a0f188aa16f9efa13818b8feb68d38a4a\trefs/tags/YELP_2_24_0\n9072e1df7b8e0dfae342f21990a9f836a79a49eb\trefs/tags/YELP_2_24_0^{}\n7495af8e74b3c034eb6f922e963dc113af9ff14e\trefs/tags/YELP_2_25_1\n57c0d064f4057e474c732e5e054c0dac16f5a588\trefs/tags/YELP_2_25_1^{}\n2cbf5703711ea84df87ce6c469bf8d001749902e\trefs/tags/YELP_2_26_0\n378c3788dfbc45e769a7814c1137c0fbd6365687\trefs/tags/YELP_2_26_0^{}\n47feeb2b59fc0b01d3a205faaa33841cbe66daf7\trefs/tags/YELP_2_2_1\nf52540f92ea17ac64139e6ab21b8541b444c988c\trefs/tags/YELP_2_2_1^{}\n7e15d9e72e8c7635c79abe28e9e6112560ed76ac\trefs/tags/YELP_2_2_2\nb6c615ceee1b1c2869efc29478b3c33832893c84\trefs/tags/YELP_2_2_2^{}\n834522b6a5ec25e2683b63649addbe887e7bdfa4\trefs/tags/YELP_2_2_3\n72556170936a4b67f7699abb53c9bb2bacaa01b5\trefs/tags/YELP_2_2_3^{}\n06521b14ba891331baad8b61e7aa3cefcddf18ef\trefs/tags/YELP_2_3_0\n83b98ae24b945d0237a7e56b71ecb73f316153e3\trefs/tags/YELP_2_3_0^{}\n35bfc72bf04766d914a3ac87ec4feacef1d83c63\trefs/tags/YELP_2_3_3\n9d330c67a80d3f848bd33e95ad0856f246350421\trefs/tags/YELP_2_3_3^{}\nc5463166186a76a136e1ea2122ddc5e7755a5b77\trefs/tags/YELP_2_3_4\n7c7e3c7e3a1fe041e03b4d2a1bef9345e40a2ab3\trefs/tags/YELP_2_3_4^{}\nb73423196cd34f3a63bce4a1c02c1443b92266c4\trefs/tags/YELP_2_3_6\ncc8a6926e70c1bbbb349cbcd5844ffe459c2b945\trefs/tags/YELP_2_3_6^{}\nc79f7f6d8e5d9c83df0dd34f72428de318f80aee\trefs/tags/YELP_2_3_90\nb7eff053b8ba1b451ae1e49098cfaa3e9064842d\trefs/tags/YELP_2_3_90^{}\n41c83155307790b2909a9980295a52bd75d54ed9\trefs/tags/YELP_2_4_0\ne8bb6d1a5dc7549efcb65c18dfde3ca016a73694\trefs/tags/YELP_2_4_0^{}\n2f85c2ab263364930cf0bb29166f8bc876a9825d\trefs/tags/YELP_2_4_1\n40afbb54c5c9e9d033ea82e46f39a4a8f39c3287\trefs/tags/YELP_2_4_1^{}\ndb95bb2c112cad56c8f9d7b7ab23afcebf4dc6a1\trefs/tags/YELP_2_4_2\nd36cd6f456c819767654116727f05433a72e1a15\trefs/tags/YELP_2_4_2^{}\nf84eb40e432d4754c49e2d575a3f630f0a920945\trefs/tags/YELP_2_5_0\n3d84e5444aff83b22aa132ab2fd1cf1e0af5cf8d\trefs/tags/YELP_2_5_0^{}\n8dbf880e461c9d18651bd35f274d952808195181\trefs/tags/YELP_2_5_1\n8ddc805fb26d0a6a46779419686779e246ae69aa\trefs/tags/YELP_2_5_1^{}\na110da774000f7dca5b3722c9f3057a6f2fe7032\trefs/tags/YELP_2_5_2\nb4c4c9b8368cb975858aded0da543e1ff0369c27\trefs/tags/YELP_2_5_2^{}\ne41a3166bc5b5736e3d17f8041451f71a1f23a35\trefs/tags/YELP_2_5_2_1\nda5a8b17258aa1e17f7e2e4dcddc5c41ab6a49a4\trefs/tags/YELP_2_5_2_1^{}\n1df8e2dc8d3400032eb542639d844e5a64dd3204\trefs/tags/YELP_2_5_3\n2aa44d6e66558988d8eed6d8aeee24ea25577635\trefs/tags/YELP_2_5_3^{}\n38af899ef2e470d5acd91e8bc4eb8fa7e3878987\trefs/tags/YELP_2_5_4\n6aacf0d8996e74ad3034ad1feea9784ff2218661\trefs/tags/YELP_2_5_4^{}\n4255c71c43bb15f2d30b112be2ca31283268d209\trefs/tags/YELP_2_5_5\ne4f9cd645e17a08b22b36bfb6a8f3cacc0cf76f3\trefs/tags/YELP_2_5_5^{}\n4e288f099a0052d810dabd73ab5b4eab3ad69db2\trefs/tags/YELP_2_5_6\n1b71457b9a34cb4594117fa92e428209d720ff08\trefs/tags/YELP_2_5_6^{}\n7df68c5da7e5fcb3d48fd5535e36480d52255c98\trefs/tags/YELP_2_5_90\n104c6730a7a36782ae2922723144c739e2515ba5\trefs/tags/YELP_2_5_90^{}\n9adaf66d0e6ee644ecbefb2d38516db6ee4e456e\trefs/tags/YELP_2_5_91\n429f91db13a390be95dd9e43cf37e69fecad6c1e\trefs/tags/YELP_2_5_91^{}\n98a96c274c729c963e8bfa5f1a76991eef87763e\trefs/tags/YELP_2_6_0\n0106dc77250724eb316c2af0c44ab2dd3314445d\trefs/tags/YELP_2_6_0^{}\n9cd9a3f4009632925e0154b244bacde4e2e124fb\trefs/tags/YELP_2_6_1\n7034c659699976cb4c2c8ee15bc982d42b4a849b\trefs/tags/YELP_2_6_1^{}\n12e130f6a258780f4fda5f4f4c606de7a0135b59\trefs/tags/YELP_2_6_2\n3750b8cf265865c1089d25b07cfa5637350281fc\trefs/tags/YELP_2_6_2^{}\n31f60274310dc3b0f52caffecf4e43da6684ebf8\trefs/tags/YELP_2_6_3\ndd64ac224614d8c0bb74d0bac3c0e92747d0c3d1\trefs/tags/YELP_2_6_3^{}\n90c0784ff1705707c3061795af67e2ec6278de3a\trefs/tags/YELP_2_6_4\na6034901fa3b6d8d73f00387b0e00365fa58f788\trefs/tags/YELP_2_6_4^{}\n05435460d95bce142e6e0b752961c7911c15a59b\trefs/tags/YELP_2_6_5\n731676c8820c2a538b6db613f95ac6aecbd107f0\trefs/tags/YELP_2_6_5^{}\nc926f3eead2974fc5c3428a0612d299459ea219f\trefs/tags/YELP_2_9_1\n880016e65c473e389be07322cd29cd8c59a92276\trefs/tags/YELP_2_9_1^{}\ne098293e17ac518ba68b8bce09b3f87226e69629\trefs/tags/YELP_2_9_2\n24134f3ecd88615ab3dc37356968fab508d7cd9f\trefs/tags/YELP_2_9_2^{}\nb0590361c17868ae7afec92a02fca6e975489c95\trefs/tags/YELP_2_9_3\n708bff16bd6f993220eb4f515ee97fc31fb0c968\trefs/tags/YELP_2_9_3^{}\nb9f5f71dcd69b68bc2d4b5ec03ca898588b8dd69\trefs/tags/YELP_DOCUMENT_BRANCHPOINT\na0ccc0570257e327da15db9a0c907866ef56f69a\trefs/tags/YELP_DOCUMENT_BRANCHPOINT^{}\n2bdbb4564a29c16fc0629220b8c6f3981b79aaa0\trefs/tags/before-trilobite-move\n03d57c2e849f35a29d9d35a32e3041275fb6db75\trefs/tags/before-trilobite-move^{}\n2c0d0e72a19ca9e91bd6133dbc934c47a70b7196\trefs/tags/before_GNOME_2_0\n581d250ad85889c8dbfe82d3e520caaf15cc091e\trefs/tags/before_GNOME_2_0^{}\n28bd4276f3516264760e1dec434346161f0663a5\trefs/tags/mjs_pre_great_renaming\n7f2ae0c512e0085a43099d50a7d8846fb2e8d64f\trefs/tags/mjs_pre_great_renaming^{}\n83f6ff2a96dc7b63a2455c4d80e910b6c838c47d\trefs/tags/nautilus_ms_may_31\ndabfa6610d144d1cdb5e29c5647548ce8d3bd350\trefs/tags/nautilus_ms_may_31^{}\n" diff --git a/upstream-info/zenity.yaml b/upstream-info/zenity.yaml index 11f51b4ef445c12fc891d28e9e916a5c7ef9b062..9ab37192692d788b9d5dbb493f357a0bd5d4f255 100644 --- a/upstream-info/zenity.yaml +++ b/upstream-info/zenity.yaml @@ -4,255 +4,5 @@ src_repo: zenity tag_prefix: "(ZENITY_)?" seperator: _ last_query: - time_stamp: 2020-04-24 13:01:05.233386020 +00:00 - raw_data: | - 3.22.0 - 3.22.0^{} - 3.24.0 - 3.24.0^{} - 3.27.90 - 3.27.90^{} - 3.28.0 - 3.28.0^{} - 3.28.1 - 3.28.1^{} - 3.4.0 - 3.4.0^{} - 3.6.0 - 3.6.0^{} - 3.7.2 - 3.7.2^{} - 3.8.0 - 3.8.0^{} - GNOME_2_12_BRANCHPOINT - GNOME_2_12_BRANCHPOINT^{} - GNOME_2_14_BRANCHPOINT - GNOME_2_14_BRANCHPOINT^{} - ZENITY_0_1 - ZENITY_0_1^{} - ZENITY_1_0 - ZENITY_1_0^{} - ZENITY_1_1 - ZENITY_1_1^{} - ZENITY_1_3 - ZENITY_1_3^{} - ZENITY_1_4 - ZENITY_1_4^{} - ZENITY_1_5 - ZENITY_1_5^{} - ZENITY_1_6 - ZENITY_1_6^{} - ZENITY_1_8 - ZENITY_1_8^{} - ZENITY_2_10_0 - ZENITY_2_10_0^{} - ZENITY_2_10_1 - ZENITY_2_10_1^{} - ZENITY_2_11_0 - ZENITY_2_11_0^{} - ZENITY_2_11_1 - ZENITY_2_11_1^{} - ZENITY_2_11_90 - ZENITY_2_11_90^{} - ZENITY_2_11_91 - ZENITY_2_11_91^{} - ZENITY_2_11_92 - ZENITY_2_11_92^{} - ZENITY_2_12_0 - ZENITY_2_12_0^{} - ZENITY_2_12_1 - ZENITY_2_12_1^{} - ZENITY_2_13_1 - ZENITY_2_13_1^{} - ZENITY_2_13_2 - ZENITY_2_13_2^{} - ZENITY_2_13_3 - ZENITY_2_13_3^{} - ZENITY_2_13_4 - ZENITY_2_13_4^{} - ZENITY_2_13_5 - ZENITY_2_13_5^{} - ZENITY_2_13_90 - ZENITY_2_13_90^{} - ZENITY_2_14_0 - ZENITY_2_14_0^{} - ZENITY_2_14_1 - ZENITY_2_14_1^{} - ZENITY_2_14_2 - ZENITY_2_14_2^{} - ZENITY_2_14_3 - ZENITY_2_14_3^{} - ZENITY_2_15_1 - ZENITY_2_15_1^{} - ZENITY_2_15_2 - ZENITY_2_15_2^{} - ZENITY_2_15_90 - ZENITY_2_15_90^{} - ZENITY_2_15_91 - ZENITY_2_15_91^{} - ZENITY_2_15_92 - ZENITY_2_15_92^{} - ZENITY_2_16_0 - ZENITY_2_16_0^{} - ZENITY_2_16_1 - ZENITY_2_16_1^{} - ZENITY_2_16_2 - ZENITY_2_16_2^{} - ZENITY_2_16_3 - ZENITY_2_16_3^{} - ZENITY_2_17_1 - ZENITY_2_17_1^{} - ZENITY_2_17_2 - ZENITY_2_17_2^{} - ZENITY_2_17_3 - ZENITY_2_17_3^{} - ZENITY_2_17_90 - ZENITY_2_17_90^{} - ZENITY_2_17_91 - ZENITY_2_17_91^{} - ZENITY_2_17_92 - ZENITY_2_17_92^{} - ZENITY_2_18_0 - ZENITY_2_18_0^{} - ZENITY_2_18_1 - ZENITY_2_18_1^{} - ZENITY_2_18_2 - ZENITY_2_18_2^{} - ZENITY_2_19_1 - ZENITY_2_19_1^{} - ZENITY_2_19_2 - ZENITY_2_19_2^{} - ZENITY_2_20_0 - ZENITY_2_20_0^{} - ZENITY_2_20_1 - ZENITY_2_20_1^{} - ZENITY_2_21_1 - ZENITY_2_21_1^{} - ZENITY_2_21_6 - ZENITY_2_21_6^{} - ZENITY_2_22_0 - ZENITY_2_22_0^{} - ZENITY_2_22_1 - ZENITY_2_22_1^{} - ZENITY_2_23_1 - ZENITY_2_23_1^{} - ZENITY_2_23_2 - ZENITY_2_23_2^{} - ZENITY_2_23_3 - ZENITY_2_23_3^{} - ZENITY_2_23_3_1 - ZENITY_2_23_3_1^{} - ZENITY_2_24_0 - ZENITY_2_24_0^{} - ZENITY_2_24_1 - ZENITY_2_24_1^{} - ZENITY_2_26_0 - ZENITY_2_26_0^{} - ZENITY_2_27_90 - ZENITY_2_27_90^{} - ZENITY_2_28_0 - ZENITY_2_28_0^{} - ZENITY_2_30_0 - ZENITY_2_30_0^{} - ZENITY_2_31_3 - ZENITY_2_31_3^{} - ZENITY_2_31_5 - ZENITY_2_31_5^{} - ZENITY_2_31_92 - ZENITY_2_31_92^{} - ZENITY_2_32_0 - ZENITY_2_32_0^{} - ZENITY_2_32_1 - ZENITY_2_32_1^{} - ZENITY_2_5_1 - ZENITY_2_5_1^{} - ZENITY_2_5_2 - ZENITY_2_5_2^{} - ZENITY_2_5_90 - ZENITY_2_5_90^{} - ZENITY_2_6_0 - ZENITY_2_6_0^{} - ZENITY_2_6_1 - ZENITY_2_6_1^{} - ZENITY_2_6_2 - ZENITY_2_6_2^{} - ZENITY_2_7_90 - ZENITY_2_7_90^{} - ZENITY_2_8_0 - ZENITY_2_8_0^{} - ZENITY_2_8_1 - ZENITY_2_8_1^{} - ZENITY_2_8_2 - ZENITY_2_8_2^{} - ZENITY_2_91_1_1 - ZENITY_2_91_1_1^{} - ZENITY_2_91_4 - ZENITY_2_91_4^{} - ZENITY_2_91_5 - ZENITY_2_91_5^{} - ZENITY_2_91_90 - ZENITY_2_91_90^{} - ZENITY_2_9_0 - ZENITY_2_9_0^{} - ZENITY_2_9_1 - ZENITY_2_9_1^{} - ZENITY_2_9_2 - ZENITY_2_9_2^{} - ZENITY_2_9_91 - ZENITY_2_9_91^{} - ZENITY_2_9_92 - ZENITY_2_9_92^{} - ZENITY_3_0_0 - ZENITY_3_0_0^{} - ZENITY_3_10_0 - ZENITY_3_10_0^{} - ZENITY_3_10_2 - ZENITY_3_10_2^{} - ZENITY_3_12_0 - ZENITY_3_12_0^{} - ZENITY_3_12_1 - ZENITY_3_12_1^{} - ZENITY_3_13_90 - ZENITY_3_13_90^{} - ZENITY_3_13_92 - ZENITY_3_13_92^{} - ZENITY_3_14_0 - ZENITY_3_14_0^{} - ZENITY_3_16_0 - ZENITY_3_16_0^{} - ZENITY_3_16_1 - ZENITY_3_16_1^{} - ZENITY_3_16_2 - ZENITY_3_16_2^{} - ZENITY_3_16_3 - ZENITY_3_16_3^{} - ZENITY_3_18_0 - ZENITY_3_18_0^{} - ZENITY_3_18_1 - ZENITY_3_18_1^{} - ZENITY_3_18_1_1 - ZENITY_3_18_1_1^{} - ZENITY_3_1_5 - ZENITY_3_1_5^{} - ZENITY_3_1_5_final - ZENITY_3_1_5_final^{} - ZENITY_3_1_92 - ZENITY_3_1_92^{} - ZENITY_3_20_0 - ZENITY_3_20_0^{} - ZENITY_3_22_0 - ZENITY_3_22_0^{} - ZENITY_3_24_1 - ZENITY_3_24_1^{} - ZENITY_3_24_2 - ZENITY_3_24_2^{} - ZENITY_3_26_0 - ZENITY_3_26_0^{} - ZENITY_3_2_0 - ZENITY_3_2_0^{} - ZENITY_3_30_0 - ZENITY_3_30_0^{} - ZENITY_3_32_0 - ZENITY_3_32_0^{} - ZENITY_3_9_91 - ZENITY_3_9_91^{} + time_stamp: 2020-05-20 06:46:02.527754900 +00:00 + raw_data: "9b88ad0b0108b6acb513d730556df2c50b20463e\trefs/tags/3.22.0\n20aa1193d98f92a319e8f840c28161ce2d791d6f\trefs/tags/3.22.0^{}\n6147b430725b91d98476835a0c35b6b35589e088\trefs/tags/3.24.0\n0b990c541c202412cb3a4120199af154094dfeac\trefs/tags/3.24.0^{}\n2a83cee414e33700e53df6ee9d11188b2216c59d\trefs/tags/3.27.90\n439527f3c4aa64243eb0cc3ff79d6da62182e4ea\trefs/tags/3.27.90^{}\nc03fe4124f177dfe3e74e0ae173bb92b9d430f6d\trefs/tags/3.28.0\nad7411614bdf0c6b32b71fd13a4ec1f7d5d0ecb5\trefs/tags/3.28.0^{}\n55b8622faa4101ecb97d937800d8c9c212192780\trefs/tags/3.28.1\n7fee2da8076affd41113f7e7d6e8e61f9ff036ab\trefs/tags/3.28.1^{}\n49d7a4b5b993b256021c60ab14cc99dc4f03c7bd\trefs/tags/3.4.0\n5a6f91b2eb6c93808de708789637f8d49b9ed54d\trefs/tags/3.4.0^{}\n5c3a9db86f2d875a76265b48b4267cf69f14c41b\trefs/tags/3.6.0\nd98ae38f7791e61c636e7db550576e4d4957838a\trefs/tags/3.6.0^{}\n1afc6576e35a75040857605d887ceec95ff56813\trefs/tags/3.7.2\na06afb77885a69040c22a1933254c9f6065805dd\trefs/tags/3.7.2^{}\n7b6eb7eaaf59852dd8981e67655c533c893a58de\trefs/tags/3.8.0\n185dbca4c84ec8cee256d8df52d7aff8f63eceea\trefs/tags/3.8.0^{}\nfec6d8a36320cdbfb85bc411905d79e5d1c6ed9f\trefs/tags/GNOME_2_12_BRANCHPOINT\n3853f7ff3f7c57f2cc73329478573c40b0f5ad38\trefs/tags/GNOME_2_12_BRANCHPOINT^{}\n1d76735f7ff326ad225f5c1a4cc259286a5fce04\trefs/tags/GNOME_2_14_BRANCHPOINT\n5496ea9ecf371d8e8e398751d6f5aabb7cf62fa2\trefs/tags/GNOME_2_14_BRANCHPOINT^{}\n5b0290bf70d35d2e1a0e443dee514ce776d183fa\trefs/tags/ZENITY_0_1\nb44078584af9c85532b05c371c8c960725679620\trefs/tags/ZENITY_0_1^{}\na3ea678e0cdabb37198390c19e8494a27bf33d20\trefs/tags/ZENITY_1_0\n564a6b58544e6925d4b88b33ae7555578de2f74d\trefs/tags/ZENITY_1_0^{}\n896edf4e162c3a02224003372330178c80faa272\trefs/tags/ZENITY_1_1\n889ea3ce080a7874a815ff8468da5572c1f23fb2\trefs/tags/ZENITY_1_1^{}\nd0e194e3bf619093c40d331fc0a4cf0826960536\trefs/tags/ZENITY_1_3\n74793cc79b54a4e472ae1691a8269fda043552a7\trefs/tags/ZENITY_1_3^{}\n8b78bd17b255753a8dd1a6e791d898a1f17cdc1b\trefs/tags/ZENITY_1_4\n0f56f63fa6afc0f8b504a66a6204bc720a7634fa\trefs/tags/ZENITY_1_4^{}\ned5d824a6cffd2bc9d8fd1053fb9bec2e557fff7\trefs/tags/ZENITY_1_5\nb0f91906ab3f8c9edccd3812ea749a44f10b685d\trefs/tags/ZENITY_1_5^{}\nd4a88aa87ad1d2bffd153292d381037ef7cc9189\trefs/tags/ZENITY_1_6\n0765153100b04451b676bcfabf6d7a5e6e77391e\trefs/tags/ZENITY_1_6^{}\n1ac652b4c934ac7553b29f8d2fbf1a7a4cd1f8ed\trefs/tags/ZENITY_1_8\n569271da40c3a0066539264965224931b3ba6f1b\trefs/tags/ZENITY_1_8^{}\ne0d60a8fe4808676ef1ce95b28bbdb86e4f3e83e\trefs/tags/ZENITY_2_10_0\nbf5f42b1a867ca581539e045816b32d1e9200995\trefs/tags/ZENITY_2_10_0^{}\nb05f7f63de13d01cfa6c010632229243c16eaa65\trefs/tags/ZENITY_2_10_1\n523f5c1760d1b4b72f2afb6f5f07aecc2d4451f3\trefs/tags/ZENITY_2_10_1^{}\n7958629e94c616667198905ce91fa5b3a011375c\trefs/tags/ZENITY_2_11_0\n28b489fcc49ded8eda5ff58b7cf8742af5d2fdc3\trefs/tags/ZENITY_2_11_0^{}\n1b465b54e2f5c0b789dd0059f6005731776a7dc7\trefs/tags/ZENITY_2_11_1\n4b5cdda3c868bc7a20f52efd60e2db6575363c1b\trefs/tags/ZENITY_2_11_1^{}\n88e153086fd4c0a2cc96078a357c4793bf0aa39b\trefs/tags/ZENITY_2_11_90\n47a2e0479af9694840d2c3d352213bdb13d78b9a\trefs/tags/ZENITY_2_11_90^{}\ne303b718a0ac1d21c1b9ade9bf96d1aa37f75c3f\trefs/tags/ZENITY_2_11_91\n0bc57119fbc42ce8cbf7a6fbf40954c897e8b9d3\trefs/tags/ZENITY_2_11_91^{}\ndca9d2e0dca4390ca3490374e2ce8faec3df0a54\trefs/tags/ZENITY_2_11_92\n417bfb638949dfb17995bd948a05ab2bd911b881\trefs/tags/ZENITY_2_11_92^{}\n0fde356a7d443c9a5475c1075149674f97ced786\trefs/tags/ZENITY_2_12_0\n7f091245f70b6d6fac4c79288109e31aa62eb8aa\trefs/tags/ZENITY_2_12_0^{}\n52a8de3705610598fe6403789d94f1cad4a99cdd\trefs/tags/ZENITY_2_12_1\nf69913f10c7bc9fd28586ef1f8088c05c47286fe\trefs/tags/ZENITY_2_12_1^{}\nc59b56ffbec5f6025d04da34fb8ed4388d394b6b\trefs/tags/ZENITY_2_13_1\n5483bdb680420014ebcfc3b916fb30fbe04de581\trefs/tags/ZENITY_2_13_1^{}\ndc026081478ec89355085674a769e4b14e5b6280\trefs/tags/ZENITY_2_13_2\n6a7b36229c87a9c477c56cbea789ddfb5f6758c8\trefs/tags/ZENITY_2_13_2^{}\ncf34ced0db3e03184635d1005798b80862c5d05b\trefs/tags/ZENITY_2_13_3\n3448858072b6baf502b22aec2a1553a195255b2e\trefs/tags/ZENITY_2_13_3^{}\na0159641014dda4213662ff5c3366f4080dc97f6\trefs/tags/ZENITY_2_13_4\nd21e6be78a47e739db2e09a2a7bca51da6e81d45\trefs/tags/ZENITY_2_13_4^{}\nb8f70baf199794901c83cc4c36d6c7ededd0a80e\trefs/tags/ZENITY_2_13_5\n741aba7ac2e9dfe554624f79955f8e1486645ce6\trefs/tags/ZENITY_2_13_5^{}\nae482a06f5024c99fc6884090d0aa61aa1a1a821\trefs/tags/ZENITY_2_13_90\nb01a07783db47bcc7de83325dd6da33c44373f1a\trefs/tags/ZENITY_2_13_90^{}\n6487421808a3ef09e17b9883546628281f0d8a8f\trefs/tags/ZENITY_2_14_0\n5496ea9ecf371d8e8e398751d6f5aabb7cf62fa2\trefs/tags/ZENITY_2_14_0^{}\n420f525137fa470ea79aa1b71185419323681a8e\trefs/tags/ZENITY_2_14_1\n7161946f78934d7d3f8a7382681aa3047474b410\trefs/tags/ZENITY_2_14_1^{}\neeaf30755ca3d8f112acb44765174f1f0fab7ef1\trefs/tags/ZENITY_2_14_2\n7152166eb08f5d486751f872ac7ab28b863762f1\trefs/tags/ZENITY_2_14_2^{}\n4d7439b7b1625a22e20e15ab2ba389b87f4e60f9\trefs/tags/ZENITY_2_14_3\ncdf990bba985912e3965ea16eca02ca3d75e78db\trefs/tags/ZENITY_2_14_3^{}\n91d8068b4c964b38f26cc5a5a88d3600bec42600\trefs/tags/ZENITY_2_15_1\n986c97f672891a5c16b5667fadf39f4de54bf5d3\trefs/tags/ZENITY_2_15_1^{}\n91089d9e3a6c45c2646f234efeed0763c7a9af64\trefs/tags/ZENITY_2_15_2\ne3587488aa0c0830b3d1b9028050b30078aafc98\trefs/tags/ZENITY_2_15_2^{}\nd8c70344085ed4e3755becdbf2b8e64f4790937c\trefs/tags/ZENITY_2_15_90\n5f7447fa05d7a4d8fb79ddfdac9d8ee7a0f4a795\trefs/tags/ZENITY_2_15_90^{}\n82a4ea36983ed3f040ad118471d7f98f9fb2755f\trefs/tags/ZENITY_2_15_91\n94e6ab1132d0510edb6a733593de7f031d259101\trefs/tags/ZENITY_2_15_91^{}\nf76a2dd4ede3764a31689894f92c8de538bd13fa\trefs/tags/ZENITY_2_15_92\n9a2cbe6b0bdb1af1b4a049fe62aa7965dc1a3eca\trefs/tags/ZENITY_2_15_92^{}\n7abad4021ee8e0015c8c43038b00af9870fb8639\trefs/tags/ZENITY_2_16_0\n04563f0be839e5797a7e035fbfffc572a223e4a8\trefs/tags/ZENITY_2_16_0^{}\na1ba2780bf599d201b35918a6dec0366e0be5603\trefs/tags/ZENITY_2_16_1\n759a75ada57163cb55a2287a0db4e48d615173c2\trefs/tags/ZENITY_2_16_1^{}\nec61fae05489535c0814e9377d3ba544180ec406\trefs/tags/ZENITY_2_16_2\n5c79f8bbf4890600b837e244e44a9d29a5dd2390\trefs/tags/ZENITY_2_16_2^{}\n52beafadb58b4e143fb7b8d634f1e7d8ff2160b5\trefs/tags/ZENITY_2_16_3\nc25987f704b7f1e512a65335900753cd487d3d15\trefs/tags/ZENITY_2_16_3^{}\n8dc1c13b68fe8b890898a70a795c38dc79e42950\trefs/tags/ZENITY_2_17_1\nb1625e26f42fce48b0ee8ab8626e56f5a3499de8\trefs/tags/ZENITY_2_17_1^{}\n1f5c36801aa7d3df74698ece01e72281bccb26c1\trefs/tags/ZENITY_2_17_2\na95fe1165c3244120d29c55d0edb3addf5ae511b\trefs/tags/ZENITY_2_17_2^{}\n85c4d40c2aa6349f80e5a4efc4aa363f85f447af\trefs/tags/ZENITY_2_17_3\nda6536f1378ce531d9730404c2ebe918d4def365\trefs/tags/ZENITY_2_17_3^{}\n545fb7f7990eb16d84cb0945d98002672bcb3ed7\trefs/tags/ZENITY_2_17_90\n979a7ad7695d2d114bec28e94855dc43b74a67c3\trefs/tags/ZENITY_2_17_90^{}\n43e2038290df995c1685945e7f062f0aa2254279\trefs/tags/ZENITY_2_17_91\ne0e0a995fb56d2e5ea1c911b83e38daca5cd7a90\trefs/tags/ZENITY_2_17_91^{}\n375bd2058a44b21aa60ce1e89fa92ead68ed29f5\trefs/tags/ZENITY_2_17_92\n342f3f62772b6ee23eb4f8332b750a6c8b3ac197\trefs/tags/ZENITY_2_17_92^{}\n71967eb263b6e551eab7878b507e0907c0ef8c79\trefs/tags/ZENITY_2_18_0\n974bcca95a023194ec4d5861ccb136791d53e706\trefs/tags/ZENITY_2_18_0^{}\nfdbf9ed4f71990fc2654a06ce0f6097bfcadf65b\trefs/tags/ZENITY_2_18_1\nf855ef04cd855a5d2071be12b0cb599d0439d150\trefs/tags/ZENITY_2_18_1^{}\n6978114fda42d77ac5203ab32376ed918bb602ff\trefs/tags/ZENITY_2_18_2\ne437184b660e61d4a0bde16b37165eb0e704a562\trefs/tags/ZENITY_2_18_2^{}\n9d63b4e58620ca618742f922bde5193816ed142d\trefs/tags/ZENITY_2_19_1\n33bb2765a479f38f14b9784152dce867ded78406\trefs/tags/ZENITY_2_19_1^{}\n0a911dab7ff10ce54614344d028a0f8c98b9952c\trefs/tags/ZENITY_2_19_2\n74bfe85d292159b0d01a4e27a858e68cc16a26b8\trefs/tags/ZENITY_2_19_2^{}\n47483345abbe6563530c7dfb2b6d08652790bc6d\trefs/tags/ZENITY_2_20_0\n1634b3e6a56da6b74d27964fe2f9d0e6e86bf870\trefs/tags/ZENITY_2_20_0^{}\n156adbd341a5a82fc79f7de71a549ee7daa11fdb\trefs/tags/ZENITY_2_20_1\n746b168a28af05b5350d86bf3937fda3471d22a1\trefs/tags/ZENITY_2_20_1^{}\n8eee9125c6557fe72302b3fdd736589676ca72d1\trefs/tags/ZENITY_2_21_1\n2f374bf42184429bb57d6cd1703d355e5cbfa3aa\trefs/tags/ZENITY_2_21_1^{}\n024781dd52bde9d03e1655da8b781fbdd65f5cba\trefs/tags/ZENITY_2_21_6\na9f6cb09045f630499d533fe27153fd5958659ea\trefs/tags/ZENITY_2_21_6^{}\n98ba485a63b23089f407fe52837b18c033fc1d30\trefs/tags/ZENITY_2_22_0\ndc31270bb25b0d4f292aeb98618c5e1ee237e8fc\trefs/tags/ZENITY_2_22_0^{}\ncf0e52fa11e54fa13f1afb73a533aa1de2daff90\trefs/tags/ZENITY_2_22_1\n80f3c6a6dc128cdce78217248b377f372ed36bb8\trefs/tags/ZENITY_2_22_1^{}\neb6da9452828b9f1662c266d79b96644ca6b2e11\trefs/tags/ZENITY_2_23_1\n954fd84362fdbbf602479d049393fffc57c0f9b1\trefs/tags/ZENITY_2_23_1^{}\n7663e8322187ffd65fb9fa4b6da81d2926ed56b1\trefs/tags/ZENITY_2_23_2\nb74e793a690699675ed1cc17d0879c11873290ea\trefs/tags/ZENITY_2_23_2^{}\n7b6ea73a65cfdcf70eacf1453e7c42218ad624d7\trefs/tags/ZENITY_2_23_3\n25f7a2ab9e8bee9039104528877681ee3a0ef4b3\trefs/tags/ZENITY_2_23_3^{}\n83e325048dc3839f2b95c31a397991489f6d2ce2\trefs/tags/ZENITY_2_23_3_1\nf6f85688ca350c5664b08ec08b327e48fa95b7b0\trefs/tags/ZENITY_2_23_3_1^{}\nb09c887bff4abe5601efea441b34510f0a08939c\trefs/tags/ZENITY_2_24_0\n49bb0edef00b2351a31f39ae2c15117a1a4c9bf9\trefs/tags/ZENITY_2_24_0^{}\nbb9c81242e164c21528e8a79b19bc12920b429fe\trefs/tags/ZENITY_2_24_1\n4a3eb1c1730b6f4a097ad24d3b09831af920e901\trefs/tags/ZENITY_2_24_1^{}\neddd31fd7b06a2f3f68d334a0b15e3a6ccd9a50d\trefs/tags/ZENITY_2_26_0\n499385db5d7eeebbb6b72d9b238e6c0afbea86f7\trefs/tags/ZENITY_2_26_0^{}\ne4d9a55d978d3d3e5f1545bc9bec1447c857c257\trefs/tags/ZENITY_2_27_90\ndd13041fc83715197e6ae448febc64be3dd87a7d\trefs/tags/ZENITY_2_27_90^{}\n9a2e39398302bc394cc2163290bcb4750253d68b\trefs/tags/ZENITY_2_28_0\n3450dc55b201e0c786ff45621c61e238be506fc9\trefs/tags/ZENITY_2_28_0^{}\n2d4c371cf5574034b1e361f1e66cb5face0ccf3c\trefs/tags/ZENITY_2_30_0\n6105b852443e56e588d19fbe60f15d5bf6d01374\trefs/tags/ZENITY_2_30_0^{}\n18f4791821d309d15bdce357f0f8521f8d617710\trefs/tags/ZENITY_2_31_3\ncf31a7640e1eababef6cd28c411ec8e730f5d04b\trefs/tags/ZENITY_2_31_3^{}\n5ff7eb66b09c39f653e3e335d2c05c8537c79753\trefs/tags/ZENITY_2_31_5\n1b1fa4824033074c9fd93c39db95cc797d8693d2\trefs/tags/ZENITY_2_31_5^{}\n845397f55af70a0cd91d870145aebd083bb7020d\trefs/tags/ZENITY_2_31_92\nba525ac951880a64016b547a689eebbd360ae365\trefs/tags/ZENITY_2_31_92^{}\n31af0c7972a2617e3f6d00e476f839f8898b9c82\trefs/tags/ZENITY_2_32_0\na4743fb2d0328c7c2d8f76a4e24fa5bce9347df5\trefs/tags/ZENITY_2_32_0^{}\n4c5296ddb799865d52e3c611ab8ccb7f8d306553\trefs/tags/ZENITY_2_32_1\n741196c76fe6e4f390c1e5369d85cadb1bc6a66a\trefs/tags/ZENITY_2_32_1^{}\n994517eb028d9f7676e4701bcc90d16845c53348\trefs/tags/ZENITY_2_5_1\n104a45c0f772ec07866c717861d8cbf1128b1e58\trefs/tags/ZENITY_2_5_1^{}\ncf44a182d787a7a5eb6a88222ccece1c0a3e17e7\trefs/tags/ZENITY_2_5_2\n75bdcd6e77fcea76d9fe6d6b09e4f64eb59a3447\trefs/tags/ZENITY_2_5_2^{}\n1735c1c0fe035f55243d6a08524403daefb6a7f7\trefs/tags/ZENITY_2_5_90\n0e37613d25b36039f57cbe463c5e34a8017985e8\trefs/tags/ZENITY_2_5_90^{}\nc54abf980b96d0cad0177ac42b377079666ad4e2\trefs/tags/ZENITY_2_6_0\n1e5f3993ee520c12bdafd9c5587fab0ba393a85c\trefs/tags/ZENITY_2_6_0^{}\n1b18d61b2c215bb67ba98d48dd6145b7f7432676\trefs/tags/ZENITY_2_6_1\naf9484723ffded746b0ccc73ebf3266d970287f2\trefs/tags/ZENITY_2_6_1^{}\n64b0dd5aa88c07b06ed7cfb5c1fc6bab6bf043d7\trefs/tags/ZENITY_2_6_2\na4ddce66bd638f2d9e87a2de5196d63390c00bbd\trefs/tags/ZENITY_2_6_2^{}\n58c61cc6c89045d8122c3417528edabb7d9e8f42\trefs/tags/ZENITY_2_7_90\neff265571321698103893bf71f7bfc7e0c9bf77b\trefs/tags/ZENITY_2_7_90^{}\n534a055c54c10185942ef82c87a95000b92ad810\trefs/tags/ZENITY_2_8_0\n3a614e4440e55e8be20c88af656db2fbb3d12c27\trefs/tags/ZENITY_2_8_0^{}\nab5e4f5d40e5fe2e5311e4036c088a5a0d6fc4c1\trefs/tags/ZENITY_2_8_1\n2123956f975ca20f3e5d7f522cf02435477f29a1\trefs/tags/ZENITY_2_8_1^{}\n7c11e724e500d5664acac51312d99f5e1aeb1b16\trefs/tags/ZENITY_2_8_2\na1b1c61a380072fc479786a52d4b319cca6bcb45\trefs/tags/ZENITY_2_8_2^{}\ne8e407e65ea9697cab0d183f7c13f97e4946c805\trefs/tags/ZENITY_2_91_1_1\n841c15d7d8a9e1584d8c4669d6b3caa467e9ff40\trefs/tags/ZENITY_2_91_1_1^{}\nf5ff3254df44e402b94775e10d8affb63fce27da\trefs/tags/ZENITY_2_91_4\n9c2aa5a860ad3fec8570758cdb0973528a0b672d\trefs/tags/ZENITY_2_91_4^{}\nc00fe3be532fc0fcc19be53597d3bc65ad6c453e\trefs/tags/ZENITY_2_91_5\n6ba81e485c74a2df5300237eddc8ea244b638389\trefs/tags/ZENITY_2_91_5^{}\nf8514b7c217bbade2419660243eea54758ba0227\trefs/tags/ZENITY_2_91_90\n8e9e548c2597d5c936486285175653085a1446a1\trefs/tags/ZENITY_2_91_90^{}\n816bdda2be0a75ba2ecf93ac7f9a0efba0b859ae\trefs/tags/ZENITY_2_9_0\n1647691396d4a63e33def9e38f2d12a14ad8e047\trefs/tags/ZENITY_2_9_0^{}\nb78a4a94d0a386459819ead9cf80bc0971963ee5\trefs/tags/ZENITY_2_9_1\n0f8ace6165e723dfd62320d2e7ba0c0d0ae0a04f\trefs/tags/ZENITY_2_9_1^{}\nb51801f0f165784471e88068f6496f0fde85fdb5\trefs/tags/ZENITY_2_9_2\nf5ae7fb520413b5ca562c846b6045ca9764e7b6a\trefs/tags/ZENITY_2_9_2^{}\n93462583698c8aed80c086d4eff80c01c6ee2333\trefs/tags/ZENITY_2_9_91\nbdd51bdb65ee861f94b2a072cb13e66be12dc271\trefs/tags/ZENITY_2_9_91^{}\n2d2317df50cc6fa244ca0f65ed2cbcdbcaa80f87\trefs/tags/ZENITY_2_9_92\nfa5dd9497da4943bede13ab6a2627c3fd82dcf62\trefs/tags/ZENITY_2_9_92^{}\n22a88166e87d66e791d1396840c213b6cf612a8b\trefs/tags/ZENITY_3_0_0\n1aa7e4e5a66b62fb1f2ef70ec1e1bf098e64a60a\trefs/tags/ZENITY_3_0_0^{}\n8b8d59a0c373b4faec2a0f93f57050507646a1d0\trefs/tags/ZENITY_3_10_0\n7f6baa1477b7b0d239577ec07b9976e454186a6f\trefs/tags/ZENITY_3_10_0^{}\n2b68df36671490d8d958751c5e43d2bae4390e0d\trefs/tags/ZENITY_3_10_2\n63d6a2032d2150d15f2bd148df85d9b569cfc96c\trefs/tags/ZENITY_3_10_2^{}\n34fe4855c8e66b23d322f8954b808390efc5f698\trefs/tags/ZENITY_3_12_0\n82069a6b596e32553f6ad7da7502bc8e6f1d4de6\trefs/tags/ZENITY_3_12_0^{}\na1c23369380b3dee43dc230227a5c11f937c2c27\trefs/tags/ZENITY_3_12_1\n81a80226d17f2ab2794cbe86fa289cfed03d48c8\trefs/tags/ZENITY_3_12_1^{}\n17234a423cf0f4b5eee265b41db2e40c0285b39c\trefs/tags/ZENITY_3_13_90\nfb29bfd40541fcf7c41c509ecdaa5a30cee4e425\trefs/tags/ZENITY_3_13_90^{}\n26e42dcb453dbee6416e98007d97921f1d17d961\trefs/tags/ZENITY_3_13_92\n98b9a95a8cf0f998191d9cb55a2115992a60ea7f\trefs/tags/ZENITY_3_13_92^{}\n2dcd586c4390fee87c96f6c59bd4df3242e8720d\trefs/tags/ZENITY_3_14_0\n34e5695efa9366e7fd9c782fb022d46838bc8458\trefs/tags/ZENITY_3_14_0^{}\n6417bdec00a0879d0ec062deabba4d5072c51135\trefs/tags/ZENITY_3_16_0\n6edd0bacd8ce25e0bae1a8f7139ebcac0da53c18\trefs/tags/ZENITY_3_16_0^{}\n2bebea3c5a134b82c0f66faab26855fb2da6d1fd\trefs/tags/ZENITY_3_16_1\ncecc7c75edd213a102911db220335d977468df66\trefs/tags/ZENITY_3_16_1^{}\n71d09abf660734b7380ec9d09038c7f95d1384dd\trefs/tags/ZENITY_3_16_2\n91894b5c7d0d384c31ca99c6de55a9084f9c4424\trefs/tags/ZENITY_3_16_2^{}\n1b3d801cd1ac44b341a6409fd53863adbf352a25\trefs/tags/ZENITY_3_16_3\n517b89e977ec167042e90541a6f1912063515105\trefs/tags/ZENITY_3_16_3^{}\nf359f650b995dcb54847f87609b7b396a8999ead\trefs/tags/ZENITY_3_18_0\nc2ac30a213053484d80fe7f7997a69129828d1d7\trefs/tags/ZENITY_3_18_0^{}\nfe2e3bd9ade77ce0b73003b7137b6c2ce9875a4e\trefs/tags/ZENITY_3_18_1\n4ddf52f6382fa89f1052769b3c3f2914e581f9b6\trefs/tags/ZENITY_3_18_1^{}\n2570128fd31d231555361d01816eada6744d9313\trefs/tags/ZENITY_3_18_1_1\n3f28c7f9074ac5da5b1b9516c1dbde350cd548e5\trefs/tags/ZENITY_3_18_1_1^{}\nc238196d181b0949ee5143429eb42cb0fc13f0c7\trefs/tags/ZENITY_3_1_5\n98083da9295046b97ffebd18ca895fa39add3c7d\trefs/tags/ZENITY_3_1_5^{}\n9e733d6c72a823c714b89acc86ac23326394f78f\trefs/tags/ZENITY_3_1_5_final\nd646953bddf067d409ed0b93733d1d9714846e9b\trefs/tags/ZENITY_3_1_5_final^{}\na0d7ebed6049fb2e621fbac8eb18d4ec340afc42\trefs/tags/ZENITY_3_1_92\n6ce54df51881a52dabe276e60c26f582a8479888\trefs/tags/ZENITY_3_1_92^{}\n57f061c4fa520a0e48840a84c74f033301e67980\trefs/tags/ZENITY_3_20_0\n668bbf0e1fd4ff35da38ea93303596ee725513bb\trefs/tags/ZENITY_3_20_0^{}\n86a68dd5b9e88d6f46431cbf4c3fa1bce55866f0\trefs/tags/ZENITY_3_22_0\n20aa1193d98f92a319e8f840c28161ce2d791d6f\trefs/tags/ZENITY_3_22_0^{}\nbf8d64741438333d5526c9b1d681ea641162512d\trefs/tags/ZENITY_3_24_1\n2795f0d13861f5c8b320a8b49c575ef4c8388c10\trefs/tags/ZENITY_3_24_1^{}\n094df6e61a311b7ef6f3a8b636de3a484d176321\trefs/tags/ZENITY_3_24_2\n3496685dd5bd49c0cce99bdc0753a468bf8e464c\trefs/tags/ZENITY_3_24_2^{}\ncb704cf978df2be0b0cf33cfccdbad7e7220def1\trefs/tags/ZENITY_3_26_0\n3dbfe2667888b0403303d5958d2b6a4ba0643c8b\trefs/tags/ZENITY_3_26_0^{}\n216cd0c15220d7c03db32c01366b6b07396f8cc2\trefs/tags/ZENITY_3_2_0\nee8584e28627fbcc885286cac46f7bef7424b8ba\trefs/tags/ZENITY_3_2_0^{}\nfe43cbab0ad689686aff7c585ab582f1a73cc65f\trefs/tags/ZENITY_3_30_0\n974245abbee86edda040e0ce068a11ce04590a82\trefs/tags/ZENITY_3_30_0^{}\n487013dd9b85921fd65262c3ba5dcf4315ce637b\trefs/tags/ZENITY_3_32_0\n1c2a6b104afaee465728fb0b24a86fe90fd799f2\trefs/tags/ZENITY_3_32_0^{}\n1a513af7ee0427e9307a529797d3439cb7019818\trefs/tags/ZENITY_3_9_91\ne6021b4a225768643a048b6b10ea9ff6bce6de3e\trefs/tags/ZENITY_3_9_91^{}\n" diff --git a/upstream-info/zstd.yaml b/upstream-info/zstd.yaml index ac88bc5a2030a34989f2f189572849659f91ec69..4ba5b63bbb34bf3ae3fa3be92c35be40941f5dbc 100644 --- a/upstream-info/zstd.yaml +++ b/upstream-info/zstd.yaml @@ -3,8 +3,9 @@ version_control: github src_repo: facebook/zstd tag_prefix: "^v" seperator: "." +query_type: api.github.releases last_query: - time_stamp: 2020-04-27 08:38:36.132951720 +00:00 + time_stamp: 2020-05-18 03:35:47.362015810 +00:00 raw_data: | [ { @@ -71,7 +72,7 @@ last_query: "content_type": "application/x-gzip", "state": "uploaded", "size": 1948426, - "download_count": 25732, + "download_count": 29520, "created_at": "2019-11-05T19:09:37Z", "updated_at": "2019-11-05T19:09:45Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-1.4.4.tar.gz" @@ -105,7 +106,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 84, - "download_count": 232, + "download_count": 258, "created_at": "2019-11-05T19:10:19Z", "updated_at": "2019-11-05T19:10:19Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-1.4.4.tar.gz.sha256" @@ -139,7 +140,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 1401877, - "download_count": 307, + "download_count": 342, "created_at": "2019-11-05T19:09:37Z", "updated_at": "2019-11-05T19:09:44Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-1.4.4.tar.zst" @@ -173,7 +174,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 85, - "download_count": 48, + "download_count": 54, "created_at": "2019-11-05T19:09:36Z", "updated_at": "2019-11-05T19:09:37Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-1.4.4.tar.zst.sha256" @@ -207,7 +208,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1316690, - "download_count": 893, + "download_count": 1026, "created_at": "2019-11-05T20:18:09Z", "updated_at": "2019-11-05T20:18:15Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-v1.4.4-win32.zip" @@ -241,7 +242,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1420581, - "download_count": 3644, + "download_count": 4636, "created_at": "2019-11-05T20:18:09Z", "updated_at": "2019-11-05T20:18:16Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-v1.4.4-win64.zip" @@ -315,7 +316,7 @@ last_query: "content_type": "application/gzip", "state": "uploaded", "size": 1899158, - "download_count": 13957, + "download_count": 14931, "created_at": "2019-08-19T21:10:11Z", "updated_at": "2019-08-19T21:10:11Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.3/zstd-1.4.3.tar.gz" @@ -383,7 +384,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 1366664, - "download_count": 82, + "download_count": 83, "created_at": "2019-08-19T21:10:11Z", "updated_at": "2019-08-19T21:10:12Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.3/zstd-1.4.3.tar.zst" @@ -451,7 +452,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1344151, - "download_count": 412, + "download_count": 413, "created_at": "2019-08-19T21:59:38Z", "updated_at": "2019-08-19T21:59:38Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.3/zstd-v1.4.3-win32.zip" @@ -485,7 +486,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1415946, - "download_count": 1340, + "download_count": 1342, "created_at": "2019-08-19T21:59:38Z", "updated_at": "2019-08-19T21:59:39Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.3/zstd-v1.4.3-win64.zip" @@ -559,7 +560,7 @@ last_query: "content_type": "application/gzip", "state": "uploaded", "size": 1896786, - "download_count": 4192, + "download_count": 4377, "created_at": "2019-07-25T19:13:23Z", "updated_at": "2019-07-25T19:13:23Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.2/zstd-1.4.2.tar.gz" @@ -661,7 +662,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 85, - "download_count": 12, + "download_count": 13, "created_at": "2019-07-25T19:13:24Z", "updated_at": "2019-07-25T19:13:24Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.2/zstd-1.4.2.tar.zst.sha256" @@ -695,7 +696,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1341695, - "download_count": 146, + "download_count": 147, "created_at": "2019-07-25T19:35:08Z", "updated_at": "2019-07-25T19:35:09Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.2/zstd-v1.4.2-win32.zip" @@ -837,7 +838,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 84, - "download_count": 26, + "download_count": 27, "created_at": "2019-07-19T19:17:24Z", "updated_at": "2019-07-19T19:17:25Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.1/zstd-1.4.1.tar.gz.sha256" @@ -1047,7 +1048,7 @@ last_query: "content_type": "application/x-gzip", "state": "uploaded", "size": 1886068, - "download_count": 18127, + "download_count": 20757, "created_at": "2019-04-16T23:04:37Z", "updated_at": "2019-04-16T23:04:45Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.0/zstd-1.4.0.tar.gz" @@ -1081,7 +1082,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 84, - "download_count": 103, + "download_count": 104, "created_at": "2019-04-16T23:04:37Z", "updated_at": "2019-04-16T23:04:45Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.0/zstd-1.4.0.tar.gz.sha256" @@ -1183,7 +1184,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1258203, - "download_count": 423, + "download_count": 424, "created_at": "2019-04-16T22:53:07Z", "updated_at": "2019-04-16T22:53:14Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.0/zstd-v1.4.0-win32.zip" @@ -1217,7 +1218,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1348170, - "download_count": 24782, + "download_count": 25213, "created_at": "2019-04-16T22:53:07Z", "updated_at": "2019-04-16T22:53:15Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.4.0/zstd-v1.4.0-win64.zip" @@ -1291,7 +1292,7 @@ last_query: "content_type": "application/gzip", "state": "uploaded", "size": 1862954, - "download_count": 53720, + "download_count": 56966, "created_at": "2018-12-28T18:26:35Z", "updated_at": "2018-12-28T18:26:37Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.8/zstd-1.3.8.tar.gz" @@ -1359,7 +1360,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 81, - "download_count": 24, + "download_count": 25, "created_at": "2018-12-27T20:54:46Z", "updated_at": "2018-12-27T20:54:50Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.8/zstd-1.3.8.tar.sha256" @@ -1461,7 +1462,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1250426, - "download_count": 494, + "download_count": 495, "created_at": "2018-12-27T20:41:02Z", "updated_at": "2018-12-27T20:41:05Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.8/zstd-v1.3.8-win32.zip" @@ -1569,7 +1570,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 9147, - "download_count": 173, + "download_count": 182, "created_at": "2018-12-01T00:08:02Z", "updated_at": "2018-12-01T00:08:03Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/regression-data/github.dict.zst" @@ -1603,7 +1604,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 33575, - "download_count": 173, + "download_count": 182, "created_at": "2018-12-01T01:34:19Z", "updated_at": "2018-12-01T01:34:20Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/regression-data/github.tar.zst" @@ -1637,7 +1638,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 4288008, - "download_count": 323, + "download_count": 332, "created_at": "2018-12-01T01:34:19Z", "updated_at": "2018-12-01T01:34:29Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/regression-data/silesia.tar.zst" @@ -1711,7 +1712,7 @@ last_query: "content_type": "application/x-gzip", "state": "uploaded", "size": 1813285, - "download_count": 6287, + "download_count": 6334, "created_at": "2018-10-19T22:05:54Z", "updated_at": "2018-10-19T22:06:01Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.7/zstd-1.3.7.tar.gz" @@ -1813,7 +1814,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 1296060, - "download_count": 57, + "download_count": 59, "created_at": "2018-10-22T19:55:19Z", "updated_at": "2018-10-22T19:55:25Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.7/zstd-1.3.7.tar.zst" @@ -1847,7 +1848,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 85, - "download_count": 23, + "download_count": 24, "created_at": "2018-10-22T19:55:19Z", "updated_at": "2018-10-22T19:55:25Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.7/zstd-1.3.7.tar.zst.sha256" @@ -1915,7 +1916,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1311576, - "download_count": 868, + "download_count": 869, "created_at": "2018-10-19T22:03:40Z", "updated_at": "2018-10-19T22:03:47Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.7/zstd-v1.3.7-win64.zip" @@ -1989,7 +1990,7 @@ last_query: "content_type": "application/x-gzip", "state": "uploaded", "size": 1811241, - "download_count": 1347, + "download_count": 1349, "created_at": "2018-10-05T17:07:48Z", "updated_at": "2018-10-05T17:08:21Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.6/zstd-1.3.6.tar.gz" @@ -2023,7 +2024,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 84, - "download_count": 56, + "download_count": 57, "created_at": "2018-10-05T17:09:42Z", "updated_at": "2018-10-05T17:09:42Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.6/zstd-1.3.6.tar.gz.sha256" @@ -2165,7 +2166,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 1209465, - "download_count": 300, + "download_count": 301, "created_at": "2018-06-28T19:19:18Z", "updated_at": "2018-06-28T19:19:21Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.5/zstd-src.tar.zst" @@ -2267,7 +2268,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1316103, - "download_count": 1455, + "download_count": 1456, "created_at": "2018-06-28T19:19:18Z", "updated_at": "2018-06-28T19:19:20Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.5/zstd-v1.3.5-win64.zip" @@ -2341,7 +2342,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 1561378, - "download_count": 273, + "download_count": 274, "created_at": "2018-03-27T00:56:41Z", "updated_at": "2018-03-27T00:56:43Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.4/zstd-src.tar.zst" @@ -2443,7 +2444,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1221468, - "download_count": 1586, + "download_count": 1600, "created_at": "2018-03-27T00:56:40Z", "updated_at": "2018-03-27T00:56:42Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.4/zstd-v1.3.4-win64.zip" @@ -2625,7 +2626,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1032124, - "download_count": 396, + "download_count": 399, "created_at": "2017-10-10T00:48:06Z", "updated_at": "2017-10-10T00:48:08Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.2/zstd-v1.3.2-win32.zip" @@ -2659,7 +2660,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 1100346, - "download_count": 1419, + "download_count": 1421, "created_at": "2017-10-10T00:48:06Z", "updated_at": "2017-10-10T00:48:10Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.2/zstd-v1.3.2-win64.zip" @@ -2733,7 +2734,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 985271, - "download_count": 1910, + "download_count": 2536, "created_at": "2020-01-08T18:49:16Z", "updated_at": "2020-01-08T18:49:23Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/block_decompress_seed_corpus.zip" @@ -2767,7 +2768,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 65928414, - "download_count": 1910, + "download_count": 2542, "created_at": "2020-01-08T18:49:16Z", "updated_at": "2020-01-08T18:49:35Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/block_round_trip_seed_corpus.zip" @@ -2801,7 +2802,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 117184521, - "download_count": 1898, + "download_count": 2523, "created_at": "2020-01-08T18:49:17Z", "updated_at": "2020-01-08T18:49:49Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/dictionary_decompress_seed_corpus.zip" @@ -2835,7 +2836,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 3043545, - "download_count": 1791, + "download_count": 2385, "created_at": "2020-01-08T18:49:17Z", "updated_at": "2020-01-08T18:49:49Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/dictionary_loader_seed_corpus.zip" @@ -2869,11 +2870,79 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 213270332, - "download_count": 1913, + "download_count": 2545, "created_at": "2020-01-08T18:49:18Z", "updated_at": "2020-01-08T18:50:00Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/dictionary_round_trip_seed_corpus.zip" }, + { + "url": "https://api.github.com/repos/facebook/zstd/releases/assets/20741905", + "id": 20741905, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIwNzQxOTA1", + "name": "dictionary_stream_round_trip_seed_corpus.zip", + "label": null, + "uploader": { + "login": "bimbashrestha", + "id": 14875426, + "node_id": "MDQ6VXNlcjE0ODc1NDI2", + "avatar_url": "https://avatars0.githubusercontent.com/u/14875426?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bimbashrestha", + "html_url": "https://github.com/bimbashrestha", + "followers_url": "https://api.github.com/users/bimbashrestha/followers", + "following_url": "https://api.github.com/users/bimbashrestha/following{/other_user}", + "gists_url": "https://api.github.com/users/bimbashrestha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bimbashrestha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bimbashrestha/subscriptions", + "organizations_url": "https://api.github.com/users/bimbashrestha/orgs", + "repos_url": "https://api.github.com/users/bimbashrestha/repos", + "events_url": "https://api.github.com/users/bimbashrestha/events{/privacy}", + "received_events_url": "https://api.github.com/users/bimbashrestha/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/zip", + "state": "uploaded", + "size": 103490444, + "download_count": 34, + "created_at": "2020-05-14T20:16:51Z", + "updated_at": "2020-05-14T20:18:31Z", + "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/dictionary_stream_round_trip_seed_corpus.zip" + }, + { + "url": "https://api.github.com/repos/facebook/zstd/releases/assets/20640035", + "id": 20640035, + "node_id": "MDEyOlJlbGVhc2VBc3NldDIwNjQwMDM1", + "name": "raw_dictionary_round_trip_seed_corpus.zip", + "label": null, + "uploader": { + "login": "terrelln", + "id": 6619134, + "node_id": "MDQ6VXNlcjY2MTkxMzQ=", + "avatar_url": "https://avatars1.githubusercontent.com/u/6619134?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/terrelln", + "html_url": "https://github.com/terrelln", + "followers_url": "https://api.github.com/users/terrelln/followers", + "following_url": "https://api.github.com/users/terrelln/following{/other_user}", + "gists_url": "https://api.github.com/users/terrelln/gists{/gist_id}", + "starred_url": "https://api.github.com/users/terrelln/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/terrelln/subscriptions", + "organizations_url": "https://api.github.com/users/terrelln/orgs", + "repos_url": "https://api.github.com/users/terrelln/repos", + "events_url": "https://api.github.com/users/terrelln/events{/privacy}", + "received_events_url": "https://api.github.com/users/terrelln/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/zip", + "state": "uploaded", + "size": 89617111, + "download_count": 117, + "created_at": "2020-05-12T03:29:38Z", + "updated_at": "2020-05-12T03:30:54Z", + "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/raw_dictionary_round_trip_seed_corpus.zip" + }, { "url": "https://api.github.com/repos/facebook/zstd/releases/assets/17214533", "id": 17214533, @@ -2903,7 +2972,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 185686491, - "download_count": 1902, + "download_count": 2531, "created_at": "2020-01-08T18:49:18Z", "updated_at": "2020-01-08T18:50:13Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/simple_compress_seed_corpus.zip" @@ -2937,7 +3006,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 20811769, - "download_count": 1921, + "download_count": 2546, "created_at": "2020-01-08T18:49:19Z", "updated_at": "2020-01-08T18:50:15Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/simple_decompress_seed_corpus.zip" @@ -2971,7 +3040,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 141065863, - "download_count": 1926, + "download_count": 2554, "created_at": "2020-01-08T18:49:19Z", "updated_at": "2020-01-08T18:50:26Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/simple_round_trip_seed_corpus.zip" @@ -3005,7 +3074,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 14873750, - "download_count": 1913, + "download_count": 2541, "created_at": "2020-01-08T18:49:19Z", "updated_at": "2020-01-08T18:50:27Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/stream_decompress_seed_corpus.zip" @@ -3039,7 +3108,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 103490444, - "download_count": 1913, + "download_count": 2549, "created_at": "2020-01-08T18:49:20Z", "updated_at": "2020-01-08T18:50:32Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/stream_round_trip_seed_corpus.zip" @@ -3073,7 +3142,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 2652648, - "download_count": 1893, + "download_count": 2518, "created_at": "2020-01-08T18:49:20Z", "updated_at": "2020-01-08T18:50:32Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/fuzz-corpora/zstd_frame_info_seed_corpus.zip" @@ -3181,7 +3250,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 353434, - "download_count": 445, + "download_count": 447, "created_at": "2017-08-21T18:10:18Z", "updated_at": "2017-08-21T18:10:57Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.1/zstd-v1.3.1-win64.zip" @@ -3255,7 +3324,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 898013, - "download_count": 141, + "download_count": 142, "created_at": "2017-07-12T16:25:00Z", "updated_at": "2017-07-12T16:25:02Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.3.0/zstd-v1.3.0-win32.zip" @@ -3363,7 +3432,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 859856, - "download_count": 223, + "download_count": 225, "created_at": "2017-05-05T04:43:03Z", "updated_at": "2017-05-05T04:43:10Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.2.0/zstd-v1.2.0-win32.zip" @@ -3579,7 +3648,7 @@ last_query: "content_type": "application/x-gzip", "state": "uploaded", "size": 1074314, - "download_count": 782, + "download_count": 789, "created_at": "2017-02-06T17:56:59Z", "updated_at": "2017-02-06T17:57:30Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.1.3/github_users_sample_set.tar.gz" @@ -3613,7 +3682,7 @@ last_query: "content_type": "application/octet-stream", "state": "uploaded", "size": 585218, - "download_count": 587, + "download_count": 596, "created_at": "2017-02-06T17:41:57Z", "updated_at": "2017-02-06T17:42:15Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.1.3/github_users_sample_set.tar.zst" @@ -3687,7 +3756,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 852908, - "download_count": 224, + "download_count": 226, "created_at": "2016-12-15T20:03:50Z", "updated_at": "2016-12-15T20:04:18Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.1.2/zstd-v1.1.2-win32.zip" @@ -3977,7 +4046,7 @@ last_query: "content_type": "application/zip", "state": "uploaded", "size": 904254, - "download_count": 757, + "download_count": 764, "created_at": "2016-09-01T13:47:48Z", "updated_at": "2016-09-01T13:47:54Z", "browser_download_url": "https://github.com/facebook/zstd/releases/download/v1.0.0/zstd-windows-v1.0.0.zip" @@ -4341,4 +4410,3 @@ last_query: "body": "fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by @GregSlazinski\nfixed : potential segfault on very large files (many gigabytes). Reported by @chipturner \nfixed : CLI displays system error message when destination file cannot be created (#231). Reported by @chipturner \nfixed : leak in some fail scenario in dictionary builder, reported by @nemequ\n" } ] -query_type: api.github.releases