From 02b4e9d3e008c7c10b6810d723afeb7f5dfb6f46 Mon Sep 17 00:00:00 2001 From: Shinwell Hu Date: Wed, 20 May 2020 10:03:04 +0000 Subject: [PATCH] fix issues and test run on more than 100 packages --- check_upstream.rb | 33 +- check_upstream/.hg.rb.swp | Bin 0 -> 12288 bytes gitee/advisor.rb | 26 + helper/rpmparser.rb | 40 +- {upstream-info => known-issues}/kvdo.yaml | 0 known-issues/openblas.yaml | 9 + known-issues/urlview.yaml | 9 + upstream-info/jansson.yaml | 11 +- upstream-info/kiwi.yaml | 6 +- upstream-info/ksh.yaml | 11 +- upstream-info/lm_sensors.yaml | 11 +- upstream-info/lsof.yaml | 136 +- upstream-info/mdadm.yaml | 2 +- upstream-info/mongodb.yaml | 313 ++- upstream-info/open-isns.yaml | 54 +- upstream-info/openblas.yaml | 4 - upstream-info/pytz.yaml | 313 ++- upstream-info/pyxdg.yaml | 4 +- upstream-info/qpid-proton.yaml | 136 +- upstream-info/rdma-core.yaml | 11 +- upstream-info/sos.yaml | 587 ++++- upstream-info/tmux.yaml | 2193 +++++++++++++++++- upstream-info/udisks2.yaml | 2429 +++++++++++++++++++- upstream-info/umoci.yaml | 2517 ++++++++++++++++++++- upstream-info/urlview.yaml | 4 - upstream-info/uthash.yaml | 83 +- 26 files changed, 8802 insertions(+), 140 deletions(-) create mode 100644 check_upstream/.hg.rb.swp create mode 100755 gitee/advisor.rb rename {upstream-info => known-issues}/kvdo.yaml (100%) create mode 100644 known-issues/openblas.yaml create mode 100644 known-issues/urlview.yaml delete mode 100644 upstream-info/openblas.yaml delete mode 100644 upstream-info/urlview.yaml diff --git a/check_upstream.rb b/check_upstream.rb index 0ddb3cc7..e5a9aab3 100755 --- a/check_upstream.rb +++ b/check_upstream.rb @@ -3,6 +3,7 @@ require 'yaml' require 'json' require 'date' +require 'optparse' require './check_upstream/github' require './check_upstream/git' @@ -13,9 +14,31 @@ require './check_upstream/gnome' require './check_upstream/pypi' require './helper/download_spec' require './helper/rpmparser' +require './gitee/advisor' -Prj_name = ARGV[0] +options = {} +OptionParser.new do |opts| + opts.banner = "Usage: ./check_upstream.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" @@ -143,3 +166,11 @@ 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", "Deer #{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/.hg.rb.swp b/check_upstream/.hg.rb.swp new file mode 100644 index 0000000000000000000000000000000000000000..ffd5cfe67874418a601541b1fbcf8e7ae3cb42f8 GIT binary patch literal 12288 zcmeI2KX21O6u_?xND;I}z|;XbDlP`pt$`*Xj$6@zKwR35_`6(cLWI zLc8s5_-QN*$K%eLl_jYZ+zt(|r;E<`EI5k>(7@>oOp>L=`ht44%x3A8%TG?12A@I$ zXaEhM0W^RH&;S}h18Cq(8j#5Zc>$H5E2^&)=ZRzIVu&X+fCkV28bAYR01co4G=K)s z02)98Xy6PQuw6o4Um)bsMJOJA{~vz;|20j>Pv9Hy1^58G2ljwhz*9g6W`Og+{uJZ^ zy1)aV29$woz}HDaJ^>$rx4=ta6=(oUKoytW)yW%f&gmwArML9oZhL z#j)*Lhph#5X%@)p&?juUkq-Qe=>xH_!(85_qko9EydFK0o(R64`GUj3fi3+FPAg6v jhH+FG-k}xPY5d4=%MJtha$lY`vQ!uyKQctt*&=@c$WLMZ literal 0 HcmV?d00001 diff --git a/gitee/advisor.rb b/gitee/advisor.rb new file mode 100755 index 00000000..988db42a --- /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/rpmparser.rb b/helper/rpmparser.rb index ae28da28..68ee8673 100755 --- a/helper/rpmparser.rb +++ b/helper/rpmparser.rb @@ -32,7 +32,12 @@ def rpmspec_clean_tag (oset, mac) elsif br.match(/%{/) then m = br.scan(/%{(.*?)}/) if m != [] then - nbr = br.gsub(/%{#{m[0][0]}}/, mac[m[0][0]]) + 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 @@ -42,12 +47,24 @@ def rpmspec_clean_tag (oset, mac) 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 = "" @@ -90,28 +107,13 @@ class Specfile @provides += po end } - if @name.match(/%{/) then - m = @name.scan(/%{(.*)}/) - if m != [] then - @name = @name.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]]) - end - end + @name = rpmspec_macro_expand(@name, @macros) @macros["name"] = @name - if @version.match(/%{/) then - m = @version.scan(/%{(.*)}/) - if m != [] then - @version = @version.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]]) - end - end + @version = rpmspec_macro_expand(@version, @macros) @macros["version"] = @version - if @release.match(/%{/) then - m = @release.scan(/%{(.*)}/) - if m != [] then - @release = @release.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]]) - end - end + @release = rpmspec_macro_expand(@release, @macros) @macros["release"] = @release @build_requires = rpmspec_clean_tag(@build_requires, @macros) 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 00000000..0f8903bc --- /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 00000000..95384d05 --- /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/upstream-info/jansson.yaml b/upstream-info/jansson.yaml index dac1e262..7a857211 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/kiwi.yaml b/upstream-info/kiwi.yaml index afbf7fc0..88659bdf 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 ad8ea0d0..cd8a31cd 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 3b835248..4e4a3f50 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 240ab2a3..3520decb 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 6a71d301..075c032e 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-05-12 06:51:13.653551260 +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 856616a0..5c88397e 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/open-isns.yaml b/upstream-info/open-isns.yaml index 21d4b56a..0ff94a34 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 650dc784..00000000 --- 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/pytz.yaml b/upstream-info/pytz.yaml index 227b6027..ad383299 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 eb5872d1..1a000995 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 712e597d..5857d16f 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 b3fd59d2..85583a12 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 115df856..6e64e64f 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 e9cc595f..97ac9bcb 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 97fbcf1c..316d5274 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 c5cd70b9..474772a5 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 37a67fbd..00000000 --- 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 f08d1f33..30ecd3ea 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 -- GitLab