提交 02b4e9d3 编写于 作者: S Shinwell Hu

fix issues and test run on more than 100 packages

上级 3bd39abe
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
require 'yaml' require 'yaml'
require 'json' require 'json'
require 'date' require 'date'
require 'optparse'
require './check_upstream/github' require './check_upstream/github'
require './check_upstream/git' require './check_upstream/git'
...@@ -13,9 +14,31 @@ require './check_upstream/gnome' ...@@ -13,9 +14,31 @@ require './check_upstream/gnome'
require './check_upstream/pypi' require './check_upstream/pypi'
require './helper/download_spec' require './helper/download_spec'
require './helper/rpmparser' 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) specfile=download_spec(Prj_name)
if specfile == "" then if specfile == "" then
puts "no specfile found for project\n" puts "no specfile found for project\n"
...@@ -143,3 +166,11 @@ else ...@@ -143,3 +166,11 @@ else
File.open("upstream-info/"+Prj_name+".yaml", "w") { |file| file.write(Prj_info.to_yaml) } File.open("upstream-info/"+Prj_name+".yaml", "w") { |file| file.write(Prj_info.to_yaml) }
end end
File.delete(specfile) if specfile != "" 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
#!/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")
...@@ -32,7 +32,12 @@ def rpmspec_clean_tag (oset, mac) ...@@ -32,7 +32,12 @@ def rpmspec_clean_tag (oset, mac)
elsif br.match(/%{/) then elsif br.match(/%{/) then
m = br.scan(/%{(.*?)}/) m = br.scan(/%{(.*?)}/)
if m != [] then 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) oset.delete(br)
new_set << nbr new_set << nbr
end end
...@@ -42,12 +47,24 @@ def rpmspec_clean_tag (oset, mac) ...@@ -42,12 +47,24 @@ def rpmspec_clean_tag (oset, mac)
return oset return oset
end 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 class Specfile
def initialize(filepath) def initialize(filepath)
spec = File.open("#{filepath}") spec = File.open("#{filepath}")
@macros = {} @macros = {}
@macros["epoch"] = "1" @macros["epoch"] = "1"
@macros["?_isa"] = "aarch64"
@name = "" @name = ""
@version = "" @version = ""
@release = "" @release = ""
...@@ -90,28 +107,13 @@ class Specfile ...@@ -90,28 +107,13 @@ class Specfile
@provides += po @provides += po
end end
} }
if @name.match(/%{/) then @name = rpmspec_macro_expand(@name, @macros)
m = @name.scan(/%{(.*)}/)
if m != [] then
@name = @name.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]])
end
end
@macros["name"] = @name @macros["name"] = @name
if @version.match(/%{/) then @version = rpmspec_macro_expand(@version, @macros)
m = @version.scan(/%{(.*)}/)
if m != [] then
@version = @version.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]])
end
end
@macros["version"] = @version @macros["version"] = @version
if @release.match(/%{/) then @release = rpmspec_macro_expand(@release, @macros)
m = @release.scan(/%{(.*)}/)
if m != [] then
@release = @release.gsub(/%{#{m[0][0]}}/, @macros[m[0][0]])
end
end
@macros["release"] = @release @macros["release"] = @release
@build_requires = rpmspec_clean_tag(@build_requires, @macros) @build_requires = rpmspec_clean_tag(@build_requires, @macros)
......
---
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
---
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
---
version_control: github version_control: github
src_repo: akheron/jansson src_repo: akheron/jansson
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
因为 它太大了无法显示 source diff 。你可以改为 查看blob
---
version_control: github version_control: github
src_repo: att/ast src_repo: att/ast
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
---
version_control: github version_control: github
src_repo: groeck/lm-sensors src_repo: groeck/lm-sensors
tag_prefix: ^v tag_prefix: "^V"
seperator: . 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
---
version_control: github version_control: github
src_repo: lsof-org/lsof src_repo: lsof-org/lsof
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
...@@ -4,5 +4,5 @@ src_repo: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/ ...@@ -4,5 +4,5 @@ src_repo: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/
tag_prefix: mdadm- tag_prefix: mdadm-
seperator: "." seperator: "."
last_query: 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" 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"
---
version_control: github version_control: github
src_repo: mongodb/mongo src_repo: mongodb/mongo
tag_prefix: ^v tag_prefix: "^r"
seperator: . 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
---
version_control: github version_control: github
src_repo: open-iscsi/open-isns src_repo: open-iscsi/open-isns
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
version_control: github
src_repo: xianyi/OpenBLAS/
tag_prefix: ^v
seperator: .
---
version_control: github version_control: github
src_repo: stub42/pytz src_repo: stub42/pytz
tag_prefix: ^v tag_prefix: release_
seperator: . 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
...@@ -4,9 +4,9 @@ src_repo: pyxdg ...@@ -4,9 +4,9 @@ src_repo: pyxdg
tag_prefix: "^v" tag_prefix: "^v"
seperator: "." seperator: "."
last_query: 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 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 :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)","Programming
Language :: Python :: 2.6","Programming Language :: Python :: 2.7","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 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}]}'
...@@ -3,8 +3,9 @@ version_control: github ...@@ -3,8 +3,9 @@ version_control: github
src_repo: apache/qpid-proton src_repo: apache/qpid-proton
tag_prefix: "^v" tag_prefix: "^v"
seperator: "." seperator: "."
query_type: api.github.tags
last_query: 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: | raw_data: |
[ [
{ {
...@@ -15,7 +16,7 @@ last_query: ...@@ -15,7 +16,7 @@ last_query:
"sha": "1071c08501b7ef73f5f99df7751a6bb426693f4e", "sha": "1071c08501b7ef73f5f99df7751a6bb426693f4e",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/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", "name": "pypi-release-0.11.1.post1",
...@@ -25,7 +26,7 @@ last_query: ...@@ -25,7 +26,7 @@ last_query:
"sha": "0903e55aba0b16841b502895e23b2e15248540e6", "sha": "0903e55aba0b16841b502895e23b2e15248540e6",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/0903e55aba0b16841b502895e23b2e15248540e6" "url": "https://api.github.com/repos/apache/qpid-proton/commits/0903e55aba0b16841b502895e23b2e15248540e6"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6cHlwaS1yZWxlYXNlLTAuMTEuMS5wb3N0MQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzL3B5cGktcmVsZWFzZS0wLjExLjEucG9zdDE="
}, },
{ {
"name": "pypi-release-0.10", "name": "pypi-release-0.10",
...@@ -35,7 +36,47 @@ last_query: ...@@ -35,7 +36,47 @@ last_query:
"sha": "c2af3f23108590cb2bad5fce2f11b37a230b1512", "sha": "c2af3f23108590cb2bad5fce2f11b37a230b1512",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/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", "name": "0.30.0",
...@@ -45,7 +86,7 @@ last_query: ...@@ -45,7 +86,7 @@ last_query:
"sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49", "sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49" "url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4zMC4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzAuMA=="
}, },
{ {
"name": "0.30.0-rc1", "name": "0.30.0-rc1",
...@@ -55,7 +96,7 @@ last_query: ...@@ -55,7 +96,7 @@ last_query:
"sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49", "sha": "77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49" "url": "https://api.github.com/repos/apache/qpid-proton/commits/77947c047f24fc7d0ddd6ba41fa14d3e8ccb3f49"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4zMC4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMzAuMC1yYzE="
}, },
{ {
"name": "0.29.0", "name": "0.29.0",
...@@ -65,7 +106,7 @@ last_query: ...@@ -65,7 +106,7 @@ last_query:
"sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947", "sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947" "url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOS4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjkuMA=="
}, },
{ {
"name": "0.29.0-rc1", "name": "0.29.0-rc1",
...@@ -75,7 +116,7 @@ last_query: ...@@ -75,7 +116,7 @@ last_query:
"sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947", "sha": "b4b0854f6b9213b5250e8ce78301aa287a31a947",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947" "url": "https://api.github.com/repos/apache/qpid-proton/commits/b4b0854f6b9213b5250e8ce78301aa287a31a947"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOS4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjkuMC1yYzE="
}, },
{ {
"name": "0.28.0", "name": "0.28.0",
...@@ -85,7 +126,7 @@ last_query: ...@@ -85,7 +126,7 @@ last_query:
"sha": "0481a507c6e427a99a5d626e073d58af38c9995b", "sha": "0481a507c6e427a99a5d626e073d58af38c9995b",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b" "url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOC4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjguMA=="
}, },
{ {
"name": "0.28.0-rc1", "name": "0.28.0-rc1",
...@@ -95,7 +136,7 @@ last_query: ...@@ -95,7 +136,7 @@ last_query:
"sha": "0481a507c6e427a99a5d626e073d58af38c9995b", "sha": "0481a507c6e427a99a5d626e073d58af38c9995b",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b" "url": "https://api.github.com/repos/apache/qpid-proton/commits/0481a507c6e427a99a5d626e073d58af38c9995b"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yOC4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjguMC1yYzE="
}, },
{ {
"name": "0.27.1", "name": "0.27.1",
...@@ -105,7 +146,7 @@ last_query: ...@@ -105,7 +146,7 @@ last_query:
"sha": "b86adcb625f2a17d0465f222c91147b53f82179a", "sha": "b86adcb625f2a17d0465f222c91147b53f82179a",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a" "url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4x" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMQ=="
}, },
{ {
"name": "0.27.1-rc1", "name": "0.27.1-rc1",
...@@ -115,7 +156,7 @@ last_query: ...@@ -115,7 +156,7 @@ last_query:
"sha": "b86adcb625f2a17d0465f222c91147b53f82179a", "sha": "b86adcb625f2a17d0465f222c91147b53f82179a",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a" "url": "https://api.github.com/repos/apache/qpid-proton/commits/b86adcb625f2a17d0465f222c91147b53f82179a"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4xLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMS1yYzE="
}, },
{ {
"name": "0.27.0", "name": "0.27.0",
...@@ -125,7 +166,7 @@ last_query: ...@@ -125,7 +166,7 @@ last_query:
"sha": "e5816f38b2d80d24e8af78954b79e05421633c00", "sha": "e5816f38b2d80d24e8af78954b79e05421633c00",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00" "url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMA=="
}, },
{ {
"name": "0.27.0-rc1", "name": "0.27.0-rc1",
...@@ -135,7 +176,7 @@ last_query: ...@@ -135,7 +176,7 @@ last_query:
"sha": "e5816f38b2d80d24e8af78954b79e05421633c00", "sha": "e5816f38b2d80d24e8af78954b79e05421633c00",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00" "url": "https://api.github.com/repos/apache/qpid-proton/commits/e5816f38b2d80d24e8af78954b79e05421633c00"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNy4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjcuMC1yYzE="
}, },
{ {
"name": "0.26.0", "name": "0.26.0",
...@@ -145,7 +186,7 @@ last_query: ...@@ -145,7 +186,7 @@ last_query:
"sha": "5b5927de939c83162b543801532c61fdb0434826", "sha": "5b5927de939c83162b543801532c61fdb0434826",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826" "url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMA=="
}, },
{ {
"name": "0.26.0-rc2", "name": "0.26.0-rc2",
...@@ -155,7 +196,7 @@ last_query: ...@@ -155,7 +196,7 @@ last_query:
"sha": "5b5927de939c83162b543801532c61fdb0434826", "sha": "5b5927de939c83162b543801532c61fdb0434826",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826" "url": "https://api.github.com/repos/apache/qpid-proton/commits/5b5927de939c83162b543801532c61fdb0434826"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4wLXJjMg==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMC1yYzI="
}, },
{ {
"name": "0.26.0-rc1", "name": "0.26.0-rc1",
...@@ -165,7 +206,7 @@ last_query: ...@@ -165,7 +206,7 @@ last_query:
"sha": "fd518f29b532c4e692ca7684b0917234e4bfff1d", "sha": "fd518f29b532c4e692ca7684b0917234e4bfff1d",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/fd518f29b532c4e692ca7684b0917234e4bfff1d" "url": "https://api.github.com/repos/apache/qpid-proton/commits/fd518f29b532c4e692ca7684b0917234e4bfff1d"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNi4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjYuMC1yYzE="
}, },
{ {
"name": "0.25.0", "name": "0.25.0",
...@@ -175,7 +216,7 @@ last_query: ...@@ -175,7 +216,7 @@ last_query:
"sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49", "sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49" "url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNS4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjUuMA=="
}, },
{ {
"name": "0.25.0-rc1", "name": "0.25.0-rc1",
...@@ -185,7 +226,7 @@ last_query: ...@@ -185,7 +226,7 @@ last_query:
"sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49", "sha": "4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49" "url": "https://api.github.com/repos/apache/qpid-proton/commits/4b4a04230a9a8ac91cc6e73c8fc12ac5e7c6db49"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNS4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjUuMC1yYzE="
}, },
{ {
"name": "0.24.0", "name": "0.24.0",
...@@ -195,7 +236,7 @@ last_query: ...@@ -195,7 +236,7 @@ last_query:
"sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187", "sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187" "url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNC4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjQuMA=="
}, },
{ {
"name": "0.24.0-rc1", "name": "0.24.0-rc1",
...@@ -205,7 +246,7 @@ last_query: ...@@ -205,7 +246,7 @@ last_query:
"sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187", "sha": "a7243b2e7928db2dce55c8db9f1ee67d931ca187",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187" "url": "https://api.github.com/repos/apache/qpid-proton/commits/a7243b2e7928db2dce55c8db9f1ee67d931ca187"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yNC4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjQuMC1yYzE="
}, },
{ {
"name": "0.23.0", "name": "0.23.0",
...@@ -215,7 +256,7 @@ last_query: ...@@ -215,7 +256,7 @@ last_query:
"sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9", "sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9" "url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMy4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjMuMA=="
}, },
{ {
"name": "0.23.0-rc1", "name": "0.23.0-rc1",
...@@ -225,7 +266,7 @@ last_query: ...@@ -225,7 +266,7 @@ last_query:
"sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9", "sha": "4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9" "url": "https://api.github.com/repos/apache/qpid-proton/commits/4fe504028c2cdd18f6be5d79dd6c3a6c6933f1b9"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMy4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjMuMC1yYzE="
}, },
{ {
"name": "0.22.0", "name": "0.22.0",
...@@ -235,7 +276,7 @@ last_query: ...@@ -235,7 +276,7 @@ last_query:
"sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7", "sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7" "url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMi4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjIuMA=="
}, },
{ {
"name": "0.22.0-rc1", "name": "0.22.0-rc1",
...@@ -245,7 +286,7 @@ last_query: ...@@ -245,7 +286,7 @@ last_query:
"sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7", "sha": "e3797ce4261d987f45353b1fe7f9e4975671d5d7",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7" "url": "https://api.github.com/repos/apache/qpid-proton/commits/e3797ce4261d987f45353b1fe7f9e4975671d5d7"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMi4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjIuMC1yYzE="
}, },
{ {
"name": "0.21.0", "name": "0.21.0",
...@@ -255,7 +296,7 @@ last_query: ...@@ -255,7 +296,7 @@ last_query:
"sha": "61c0c03e270001d50225157e123420159ce6bf33", "sha": "61c0c03e270001d50225157e123420159ce6bf33",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33" "url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMS4w" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjEuMA=="
}, },
{ {
"name": "0.21.0-rc1", "name": "0.21.0-rc1",
...@@ -265,47 +306,6 @@ last_query: ...@@ -265,47 +306,6 @@ last_query:
"sha": "61c0c03e270001d50225157e123420159ce6bf33", "sha": "61c0c03e270001d50225157e123420159ce6bf33",
"url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33" "url": "https://api.github.com/repos/apache/qpid-proton/commits/61c0c03e270001d50225157e123420159ce6bf33"
}, },
"node_id": "MDM6UmVmMjYzMDk3OTk6MC4yMS4wLXJjMQ==" "node_id": "MDM6UmVmMjYzMDk3OTk6cmVmcy90YWdzLzAuMjEuMC1yYzE="
},
{
"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=="
} }
] ]
query_type: api.github.tags
---
version_control: github version_control: github
src_repo: linux-rdma/rdma-core src_repo: linux-rdma/rdma-core
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
---
version_control: github version_control: github
src_repo: sosreport/sos src_repo: sosreport/sos
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
---
version_control: github version_control: github
src_repo: tmux/tmux src_repo: tmux/tmux
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
---
version_control: github version_control: github
src_repo: storaged-project/udisks src_repo: storaged-project/udisks
tag_prefix: 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 <UUID> and <NAME> 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
---
version_control: github version_control: github
src_repo: openSUSE/umoci src_repo: openSUSE/umoci
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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 <asarai@suse.de>\r\n * David Trudgian <dave@trudgian.net>\r\n * Tycho Andersen <tycho@tycho.ws>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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 <asarai@suse.de>\r\n * Cameron Nemo <camerontnorman@gmail.com>\r\n * Tobias Klauser <tklauser@distanz.ch>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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 <asarai@suse.de>\r\n * Jintao Zhang <zhangjintao9020@gmail.com>\r\n * Tycho Andersen <tycho@tycho.ws>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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 <asarai@suse.de>\r\n* Tycho Andersen <tycho@tycho.ws>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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 <maxking@users.noreply.github.com>\r\n* Akihiro Suda <suda.akihiro@lab.ntt.co.jp>\r\n* Aleksa Sarai <asarai@suse.de>\r\n* Felix Abecassis <fabecassis@nvidia.com>\r\n* Max Bailey <maxbailey@flywheel.io>\r\n* Tycho Andersen <tycho@tycho.ws>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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<hr>\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai <asarai@suse.de>\r\n* Jonathan Boulle <jonathanboulle@gmail.com>\r\n* Serge Hallyn <serge@hallyn.com>\r\n* Tobias Klauser <tklauser@distanz.ch>\r\n* Tycho Andersen <tycho@tycho.ws>\r\n* W. Trevor King <wking@tremily.us>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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<hr>\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai <asarai@suse.de>\r\n* Jonathan Boulle <jonathanboulle@gmail.com>\r\n* Serge Hallyn <serge@hallyn.com>\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 <asarai@suse.de>"
},
{
"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<hr>\r\n\r\nThanks to all of the contributors that made this release possible:\r\n\r\n* Aleksa Sarai <asarai@suse.de>\r\n* Maximilian Meister <mmeister@suse.de>\r\n* Valentin Rothberg <vrothberg@suse.com>\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 <asarai@suse.de>"
},
{
"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 <asarai@suse.de>\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 <asarai@suse.de>\r\n* Erik Hollensbe <github@hollensbe.org>\r\n* Vincent Batts <vbatts@hashbangbash.com>\r\n* Maximilian Meister <mmeister@suse.de>\r\n* Antonio Murdaca <runcom@redhat.com>\r\n\r\nSigned-off-by: Aleksa Sarai <asarai@suse.de>"
},
{
"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 <path>[:<tag>] 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
version_control: github
src_repo: sigpipe/urlview
tag_prefix: ^v
seperator: .
---
version_control: github version_control: github
src_repo: troydhanson/uthash src_repo: troydhanson/uthash
tag_prefix: ^v tag_prefix: "^v"
seperator: . 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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册