diff --git a/dust-lang/src/abstract_tree/mod.rs b/dust-lang/src/abstract_tree/mod.rs index 048d247..91a1ce8 100644 --- a/dust-lang/src/abstract_tree/mod.rs +++ b/dust-lang/src/abstract_tree/mod.rs @@ -43,7 +43,9 @@ pub use self::{ statement::Statement, structure_definition::StructureDefinition, type_alias::TypeAssignment, - type_constructor::{FunctionTypeConstructor, ListTypeConstructor, TypeConstructor}, + type_constructor::{ + EnumTypeConstructor, FunctionTypeConstructor, ListTypeConstructor, TypeConstructor, + }, value_node::ValueNode, }; diff --git a/dust-lang/src/abstract_tree/type.rs b/dust-lang/src/abstract_tree/type.rs index fe921c2..11a9261 100644 --- a/dust-lang/src/abstract_tree/type.rs +++ b/dust-lang/src/abstract_tree/type.rs @@ -15,6 +15,9 @@ use super::{Evaluate, Evaluation}; pub enum Type { Any, Boolean, + Enum { + variants: Vec<(Identifier, Vec)>, + }, Float, Function { type_parameters: Option>, @@ -226,6 +229,21 @@ impl Display for Type { match self { Type::Any => write!(f, "any"), Type::Boolean => write!(f, "bool"), + Type::Enum { variants } => { + write!(f, "enum {{")?; + + for (identifier, types) in variants { + writeln!(f, "{identifier}(")?; + + for r#type in types { + write!(f, "{}", r#type)? + } + + write!(f, ")")?; + } + + write!(f, "}}") + } Type::Float => write!(f, "float"), Type::Generic { concrete_type, .. } => { if let Some(r#type) = concrete_type { diff --git a/dust-lang/src/abstract_tree/type_constructor.rs b/dust-lang/src/abstract_tree/type_constructor.rs index fd952ea..7ffca38 100644 --- a/dust-lang/src/abstract_tree/type_constructor.rs +++ b/dust-lang/src/abstract_tree/type_constructor.rs @@ -8,6 +8,7 @@ use super::{SourcePosition, Type, WithPosition}; #[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] pub enum TypeConstructor { + Enum(WithPosition), Function(WithPosition), Identifier(WithPosition), List(WithPosition), @@ -15,22 +16,10 @@ pub enum TypeConstructor { Type(WithPosition), } -#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] -pub struct FunctionTypeConstructor { - pub type_parameters: Option>>, - pub value_parameters: Vec, - pub return_type: Box, -} - -#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] -pub struct ListTypeConstructor { - pub length: usize, - pub item_type: Box, -} - impl TypeConstructor { pub fn position(&self) -> SourcePosition { match self { + TypeConstructor::Enum(WithPosition { position, .. }) => *position, TypeConstructor::Function(WithPosition { position, .. }) => *position, TypeConstructor::Identifier(WithPosition { position, .. }) => *position, TypeConstructor::List(WithPosition { position, .. }) => *position, @@ -41,6 +30,28 @@ impl TypeConstructor { pub fn construct(self, context: &Context) -> Result { let r#type = match self { + TypeConstructor::Enum(enum_type_constructor) => { + let EnumTypeConstructor { variants, .. } = enum_type_constructor.node; + let mut type_variants = Vec::with_capacity(variants.len()); + + for (variant_name, constructors) in variants { + if let Some(constructors) = constructors { + let mut types = Vec::with_capacity(constructors.len()); + + for constructor in constructors { + let r#type = constructor.construct(context)?; + + types.push(r#type); + } + + type_variants.push((variant_name.node, types)); + } + } + + Type::Enum { + variants: type_variants, + } + } TypeConstructor::Function(function_type_constructor) => { let FunctionTypeConstructor { type_parameters: declared_type_parameters, @@ -111,3 +122,22 @@ impl Display for TypeConstructor { todo!() } } + +#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] +pub struct EnumTypeConstructor { + pub type_parameters: Option>>, + pub variants: Vec<(WithPosition, Option>)>, +} + +#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] +pub struct FunctionTypeConstructor { + pub type_parameters: Option>>, + pub value_parameters: Vec, + pub return_type: Box, +} + +#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] +pub struct ListTypeConstructor { + pub length: usize, + pub item_type: Box, +} diff --git a/dust-lang/src/lexer.rs b/dust-lang/src/lexer.rs index d9bdb80..1973e08 100644 --- a/dust-lang/src/lexer.rs +++ b/dust-lang/src/lexer.rs @@ -44,6 +44,7 @@ pub enum Keyword { Bool, Break, Else, + Enum, Float, Fn, Int, @@ -74,6 +75,7 @@ impl Display for Keyword { Keyword::Bool => write!(f, "bool"), Keyword::Break => write!(f, "break"), Keyword::Else => write!(f, "else"), + Keyword::Enum => write!(f, "enum"), Keyword::Float => write!(f, "float"), Keyword::Fn => write!(f, "fn"), Keyword::Int => write!(f, "int"), @@ -268,6 +270,7 @@ pub fn lexer<'src>() -> impl Parser< "as" => Token::Keyword(Keyword::As), "bool" => Token::Keyword(Keyword::Bool), "break" => Token::Keyword(Keyword::Break), + "enum" => Token::Keyword(Keyword::Enum), "else" => Token::Keyword(Keyword::Else), "float" => Token::Keyword(Keyword::Float), "fn" => Token::Keyword(Keyword::Fn), diff --git a/dust-lang/src/parser.rs b/dust-lang/src/parser.rs index 967a6af..129e731 100644 --- a/dust-lang/src/parser.rs +++ b/dust-lang/src/parser.rs @@ -151,12 +151,58 @@ pub fn parser<'src>( .clone() .map(|identifier| TypeConstructor::Identifier(identifier)); + let enum_variant = positioned_identifier.clone().then( + type_constructor + .clone() + .separated_by(just(Token::Control(Control::Comma))) + .collect() + .delimited_by( + just(Token::Control(Control::ParenOpen)), + just(Token::Control(Control::ParenClose)), + ) + .or_not(), + ); + + let enum_type = just(Token::Keyword(Keyword::Enum)) + .ignore_then( + positioned_identifier + .clone() + .separated_by(just(Token::Control(Control::Comma))) + .collect() + .delimited_by( + just(Token::Control(Control::Pipe)), + just(Token::Control(Control::Pipe)), + ) + .or_not(), + ) + .then( + enum_variant + .separated_by(just(Token::Control(Control::Comma))) + .at_least(1) + .allow_trailing() + .collect() + .delimited_by( + just(Token::Control(Control::CurlyOpen)), + just(Token::Control(Control::CurlyClose)), + ), + ) + .map_with(|(type_parameters, variants), state| { + TypeConstructor::Enum( + EnumTypeConstructor { + type_parameters, + variants, + } + .with_position(state.span()), + ) + }); + choice(( function_type, list_type, list_of_type, primitive_type, identifier_type, + enum_type, )) }); @@ -651,6 +697,101 @@ mod tests { use super::*; + #[test] + fn enum_type_empty() { + assert_eq!( + parse(&lex("type MyEnum = enum { X, Y }").unwrap()).unwrap()[0], + Statement::TypeAssignment( + TypeAssignment::new( + Identifier::new("MyEnum").with_position((5, 11)), + TypeConstructor::Enum( + EnumTypeConstructor { + type_parameters: None, + variants: vec![ + (Identifier::new("X").with_position((21, 22)), None), + (Identifier::new("Y").with_position((24, 25)), None) + ], + } + .with_position((14, 27)) + ) + ) + .with_position((0, 27)) + ) + ); + } + + #[test] + fn enum_type_with_contents() { + assert_eq!( + parse(&lex("type MyEnum = enum { X(str, int), Y(int) }").unwrap()).unwrap()[0], + Statement::TypeAssignment( + TypeAssignment::new( + Identifier::new("MyEnum").with_position((5, 11)), + TypeConstructor::Enum( + EnumTypeConstructor { + type_parameters: None, + variants: vec![ + ( + Identifier::new("X").with_position((21, 22)), + Some(vec![ + TypeConstructor::Type(Type::String.with_position((23, 26))), + TypeConstructor::Type( + Type::Integer.with_position((28, 31)) + ) + ]) + ), + ( + Identifier::new("Y").with_position((34, 35)), + Some(vec![TypeConstructor::Type( + Type::Integer.with_position((36, 39)) + )]) + ) + ], + } + .with_position((14, 42)) + ) + ) + .with_position((0, 42)) + ) + ); + } + + #[test] + fn enum_type_with_type_parameters() { + assert_eq!( + parse(&lex("type MyEnum = enum |T, U| { X(T), Y(U) }").unwrap()).unwrap()[0], + Statement::TypeAssignment( + TypeAssignment::new( + Identifier::new("MyEnum").with_position((5, 11)), + TypeConstructor::Enum( + EnumTypeConstructor { + type_parameters: Some(vec![ + Identifier::new("T").with_position((20, 21)), + Identifier::new("U").with_position((23, 24)), + ]), + variants: vec![ + ( + Identifier::new("X").with_position((28, 29)), + Some(vec![TypeConstructor::Identifier( + Identifier::new("T").with_position((30, 31)) + )]) + ), + ( + Identifier::new("Y").with_position((34, 35)), + Some(vec![TypeConstructor::Identifier( + Identifier::new("U").with_position((36, 37)) + )]) + ), + ], + } + .with_position((14, 40)) + ) + ) + .with_position((0, 40)) + ) + ); + } + // Reuse these tests when structures are reimplemented // #[test] // fn structure_instance() { diff --git a/examples/assets/jq_data.json b/examples/assets/jq_data.json new file mode 100644 index 0000000..3af11de --- /dev/null +++ b/examples/assets/jq_data.json @@ -0,0 +1,7883 @@ +[ + { + "sha": "e85e3582330af543f1a7b293c6b9b27f342670a2", + "node_id": "C_kwDOAE3WVdoAKGU4NWUzNTgyMzMwYWY1NDNmMWE3YjI5M2M2YjliMjdmMzQyNjcwYTI", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-21T21:27:40Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-22T15:51:24Z" + }, + "message": "Fix possible uninitialised value dereference if jq_init() fails\n\nIf jq_init() fails, goto out would try to free input_state which is\nuninitialised. I initialised input_state to NULL to fix the problem.\n\nRef: https://github.com/jqlang/jq/pull/2934#discussion_r1367795641\n\nReported-By: Klemens Nanni ", + "tree": { + "sha": "4351e7fb171a17f6a632c2e2e93d2bd8afad9b25", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/4351e7fb171a17f6a632c2e2e93d2bd8afad9b25" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/e85e3582330af543f1a7b293c6b9b27f342670a2", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/e85e3582330af543f1a7b293c6b9b27f342670a2", + "html_url": "https://github.com/jqlang/jq/commit/e85e3582330af543f1a7b293c6b9b27f342670a2", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/e85e3582330af543f1a7b293c6b9b27f342670a2/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "7ab117a483e127006f30efa818a7a8281077ec72", + "url": "https://api.github.com/repos/jqlang/jq/commits/7ab117a483e127006f30efa818a7a8281077ec72", + "html_url": "https://github.com/jqlang/jq/commit/7ab117a483e127006f30efa818a7a8281077ec72" + } + ] + }, + { + "sha": "7ab117a483e127006f30efa818a7a8281077ec72", + "node_id": "C_kwDOAE3WVdoAKDdhYjExN2E0ODNlMTI3MDA2ZjMwZWZhODE4YTdhODI4MTA3N2VjNzI", + "commit": { + "author": { + "name": "Klemens Nanni", + "email": "kn@openbsd.org", + "date": "2023-10-21T20:59:20Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-22T04:30:36Z" + }, + "message": "Defer heap variable initialisation after pledge\n\nOtherwise `AGRS` and `program_arguments` remain allocated/unfreed in the\nearly (extremely unlikely) pledge(2) failure case.\n\nMove their allocation before jq_init(), the first case of jumping to\n`out` where they are cleaned up, where it also seems to logically fit\nbetter than above between function entry, locale setup and OpenBSD\nspecific pledge.", + "tree": { + "sha": "2849e59b0b0cabc7858c168691b27b9d66d34409", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/2849e59b0b0cabc7858c168691b27b9d66d34409" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/7ab117a483e127006f30efa818a7a8281077ec72", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/7ab117a483e127006f30efa818a7a8281077ec72", + "html_url": "https://github.com/jqlang/jq/commit/7ab117a483e127006f30efa818a7a8281077ec72", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/7ab117a483e127006f30efa818a7a8281077ec72/comments", + "author": { + "login": "klemensn", + "id": 91517496, + "node_id": "U_kgDOBXRyOA", + "avatar_url": "https://avatars.githubusercontent.com/u/91517496?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/klemensn", + "html_url": "https://github.com/klemensn", + "followers_url": "https://api.github.com/users/klemensn/followers", + "following_url": "https://api.github.com/users/klemensn/following{/other_user}", + "gists_url": "https://api.github.com/users/klemensn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/klemensn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/klemensn/subscriptions", + "organizations_url": "https://api.github.com/users/klemensn/orgs", + "repos_url": "https://api.github.com/users/klemensn/repos", + "events_url": "https://api.github.com/users/klemensn/events{/privacy}", + "received_events_url": "https://api.github.com/users/klemensn/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "url": "https://api.github.com/repos/jqlang/jq/commits/77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "html_url": "https://github.com/jqlang/jq/commit/77dcaf3fdc9a23c2a318da4f4a944143748e5961" + } + ] + }, + { + "sha": "77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "node_id": "C_kwDOAE3WVdoAKDc3ZGNhZjNmZGM5YTIzYzJhMzE4ZGE0ZjRhOTQ0MTQzNzQ4ZTU5NjE", + "commit": { + "author": { + "name": "Klemens Nanni", + "email": "kn@openbsd.org", + "date": "2023-10-21T07:33:42Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-22T04:30:36Z" + }, + "message": "Remove unused mkstemp()\n\nb82c231 \"Remove -i option (#704)\" removed its last usage in 2015.\n\nSpotted while looking for code could potentially write/create/modify files.", + "tree": { + "sha": "b829a668abb68d7788a850082cdc6f6ba576d9c2", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/b829a668abb68d7788a850082cdc6f6ba576d9c2" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "html_url": "https://github.com/jqlang/jq/commit/77dcaf3fdc9a23c2a318da4f4a944143748e5961", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/77dcaf3fdc9a23c2a318da4f4a944143748e5961/comments", + "author": { + "login": "klemensn", + "id": 91517496, + "node_id": "U_kgDOBXRyOA", + "avatar_url": "https://avatars.githubusercontent.com/u/91517496?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/klemensn", + "html_url": "https://github.com/klemensn", + "followers_url": "https://api.github.com/users/klemensn/followers", + "following_url": "https://api.github.com/users/klemensn/following{/other_user}", + "gists_url": "https://api.github.com/users/klemensn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/klemensn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/klemensn/subscriptions", + "organizations_url": "https://api.github.com/users/klemensn/orgs", + "repos_url": "https://api.github.com/users/klemensn/repos", + "events_url": "https://api.github.com/users/klemensn/events{/privacy}", + "received_events_url": "https://api.github.com/users/klemensn/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "url": "https://api.github.com/repos/jqlang/jq/commits/f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "html_url": "https://github.com/jqlang/jq/commit/f1bfd0c518473ab439eff4d56441ce165d8bd0ca" + } + ] + }, + { + "sha": "f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "node_id": "C_kwDOAE3WVdoAKGYxYmZkMGM1MTg0NzNhYjQzOWVmZjRkNTY0NDFjZTE2NWQ4YmQwY2E", + "commit": { + "author": { + "name": "Klemens Nanni", + "email": "kn@openbsd.org", + "date": "2023-10-21T06:54:48Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-22T04:30:36Z" + }, + "message": "Restrict systems operations on OpenBSD\n\nUse pledge(2)[0] to limit jq(1) to reading files.\nIt does not change files and only writes to standard output/error.\nIt never deals with TTY, network, process management or other subsystems.\n\nThis is to reduce jq's attack surface and potential damage.\n\nOpenBSD is carrying a local patch[1] in its official jq port/package\nsince 2016. An improved version:\n\n- drop no longer needed \"getpw\" promise\n f1c4947 \"Avoid getpwuid for static linking\" removed getpwuid(3) usage\n- pledge before jq_init() to simplify the error path\n- use perror(3) to print errno(2)\n\nNo behaviour change in tests or real world usage observed on\nOpenBSD/amd64 7.4.\n\n0: https://man.openbsd.org/pledge.2\n1: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/textproc/jq/patches/patch-main_c", + "tree": { + "sha": "79daf6be1ce5507992825da6f283dcec2509692d", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/79daf6be1ce5507992825da6f283dcec2509692d" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "html_url": "https://github.com/jqlang/jq/commit/f1bfd0c518473ab439eff4d56441ce165d8bd0ca", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f1bfd0c518473ab439eff4d56441ce165d8bd0ca/comments", + "author": { + "login": "klemensn", + "id": 91517496, + "node_id": "U_kgDOBXRyOA", + "avatar_url": "https://avatars.githubusercontent.com/u/91517496?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/klemensn", + "html_url": "https://github.com/klemensn", + "followers_url": "https://api.github.com/users/klemensn/followers", + "following_url": "https://api.github.com/users/klemensn/following{/other_user}", + "gists_url": "https://api.github.com/users/klemensn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/klemensn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/klemensn/subscriptions", + "organizations_url": "https://api.github.com/users/klemensn/orgs", + "repos_url": "https://api.github.com/users/klemensn/repos", + "events_url": "https://api.github.com/users/klemensn/events{/privacy}", + "received_events_url": "https://api.github.com/users/klemensn/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "url": "https://api.github.com/repos/jqlang/jq/commits/9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "html_url": "https://github.com/jqlang/jq/commit/9de0e26ce613f7e534b2ff3a92ad0d06d329efab" + } + ] + }, + { + "sha": "9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "node_id": "C_kwDOAE3WVdoAKDlkZTBlMjZjZTYxM2Y3ZTUzNGIyZmYzYTkyYWQwZDA2ZDMyOWVmYWI", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-12T20:05:08Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-12T20:32:23Z" + }, + "message": "Generate links in man page\n\nSome [foo](bar) links were added to manual.yml without updating\nbuild_manpage.py to make it generate roff for \"a\" tags.\n\nFixes #2930", + "tree": { + "sha": "fd4ad0a70b09c07a820a39bfa41f937e567c8538", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/fd4ad0a70b09c07a820a39bfa41f937e567c8538" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "html_url": "https://github.com/jqlang/jq/commit/9de0e26ce613f7e534b2ff3a92ad0d06d329efab", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/9de0e26ce613f7e534b2ff3a92ad0d06d329efab/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "c10cbbff34b25f447d45d1a997cf8606769875c8", + "url": "https://api.github.com/repos/jqlang/jq/commits/c10cbbff34b25f447d45d1a997cf8606769875c8", + "html_url": "https://github.com/jqlang/jq/commit/c10cbbff34b25f447d45d1a997cf8606769875c8" + } + ] + }, + { + "sha": "c10cbbff34b25f447d45d1a997cf8606769875c8", + "node_id": "C_kwDOAE3WVdoAKGMxMGNiYmZmMzRiMjVmNDQ3ZDQ1ZDFhOTk3Y2Y4NjA2NzY5ODc1Yzg", + "commit": { + "author": { + "name": "Gaelan Steele", + "email": "gbs@canishe.com", + "date": "2020-04-28T20:45:53Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-08T17:32:22Z" + }, + "message": "Remove undefined behavior caught by LLVM 10 UBSAN.", + "tree": { + "sha": "bce6cc824440155be70b090198290a098bcb1870", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/bce6cc824440155be70b090198290a098bcb1870" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/c10cbbff34b25f447d45d1a997cf8606769875c8", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/c10cbbff34b25f447d45d1a997cf8606769875c8", + "html_url": "https://github.com/jqlang/jq/commit/c10cbbff34b25f447d45d1a997cf8606769875c8", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/c10cbbff34b25f447d45d1a997cf8606769875c8/comments", + "author": { + "login": "Gaelan", + "id": 4495750, + "node_id": "MDQ6VXNlcjQ0OTU3NTA=", + "avatar_url": "https://avatars.githubusercontent.com/u/4495750?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Gaelan", + "html_url": "https://github.com/Gaelan", + "followers_url": "https://api.github.com/users/Gaelan/followers", + "following_url": "https://api.github.com/users/Gaelan/following{/other_user}", + "gists_url": "https://api.github.com/users/Gaelan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Gaelan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Gaelan/subscriptions", + "organizations_url": "https://api.github.com/users/Gaelan/orgs", + "repos_url": "https://api.github.com/users/Gaelan/repos", + "events_url": "https://api.github.com/users/Gaelan/events{/privacy}", + "received_events_url": "https://api.github.com/users/Gaelan/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "url": "https://api.github.com/repos/jqlang/jq/commits/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "html_url": "https://github.com/jqlang/jq/commit/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84" + } + ] + }, + { + "sha": "6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "node_id": "C_kwDOAE3WVdoAKDZiNmZlYWZmYmJiMjU4ZTlhNmFlZDM0OTVjYjRlNTEwMGRkOGNlODQ", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-05T13:37:44Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-05T13:37:44Z" + }, + "message": "Revert \"Revert \"od -c => od -tc: od -c is an XSI extension...\"\n\nThis reverts commit 0e70f7a57e08b6229c41ab98d1d9a9bca46625be.\n\nThere is no reason to revert this change.\n\nIn #2922, I only disagreed with the commit message suggesting that\n LC_CTYPE=C od -t c is equivalent to od -c\n\nThe only documented differences are that -tc is required to be\ninfluenced by -N and -j, while -c is not, and that -c is required to\nonly support a subset of the backslash sequences that -tc should\nsupport.", + "tree": { + "sha": "d80081308ad45e142abdde86f074fc8cbadd2ea8", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/d80081308ad45e142abdde86f074fc8cbadd2ea8" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "html_url": "https://github.com/jqlang/jq/commit/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/6b6feaffbbb258e9a6aed3495cb4e5100dd8ce84/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "url": "https://api.github.com/repos/jqlang/jq/commits/0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "html_url": "https://github.com/jqlang/jq/commit/0e70f7a57e08b6229c41ab98d1d9a9bca46625be" + } + ] + }, + { + "sha": "0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "node_id": "C_kwDOAE3WVdoAKDBlNzBmN2E1N2UwOGI2MjI5YzQxYWI5OGQxZDlhOWJjYTQ2NjI1YmU", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-05T03:28:24Z" + }, + "committer": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-05T03:28:24Z" + }, + "message": "Revert \"od -c => od -tc: od -c is an XSI extension equivalent to LC_CTYPE=C od -tc and not universally available\"\n\nThis reverts commit 0bce9fb8ed0fbaeba0901ff9778756e4e037cd47.", + "tree": { + "sha": "674325b10323dae990841d4e7d84541e5a58acf1", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/674325b10323dae990841d4e7d84541e5a58acf1" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "html_url": "https://github.com/jqlang/jq/commit/0e70f7a57e08b6229c41ab98d1d9a9bca46625be", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/0e70f7a57e08b6229c41ab98d1d9a9bca46625be/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "url": "https://api.github.com/repos/jqlang/jq/commits/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "html_url": "https://github.com/jqlang/jq/commit/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47" + } + ] + }, + { + "sha": "0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "node_id": "C_kwDOAE3WVdoAKDBiY2U5ZmI4ZWQwZmJhZWJhMDkwMWZmOTc3ODc1NmU0ZTAzN2NkNDc", + "commit": { + "author": { + "name": "наб", + "email": "nabijaczleweli@nabijaczleweli.xyz", + "date": "2023-10-04T18:52:03Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-04T22:46:13Z" + }, + "message": "od -c => od -tc: od -c is an XSI extension equivalent to LC_CTYPE=C od -tc and not universally available", + "tree": { + "sha": "d80081308ad45e142abdde86f074fc8cbadd2ea8", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/d80081308ad45e142abdde86f074fc8cbadd2ea8" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "html_url": "https://github.com/jqlang/jq/commit/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/0bce9fb8ed0fbaeba0901ff9778756e4e037cd47/comments", + "author": { + "login": "nabijaczleweli", + "id": 6709544, + "node_id": "MDQ6VXNlcjY3MDk1NDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/6709544?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nabijaczleweli", + "html_url": "https://github.com/nabijaczleweli", + "followers_url": "https://api.github.com/users/nabijaczleweli/followers", + "following_url": "https://api.github.com/users/nabijaczleweli/following{/other_user}", + "gists_url": "https://api.github.com/users/nabijaczleweli/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nabijaczleweli/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nabijaczleweli/subscriptions", + "organizations_url": "https://api.github.com/users/nabijaczleweli/orgs", + "repos_url": "https://api.github.com/users/nabijaczleweli/repos", + "events_url": "https://api.github.com/users/nabijaczleweli/events{/privacy}", + "received_events_url": "https://api.github.com/users/nabijaczleweli/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "url": "https://api.github.com/repos/jqlang/jq/commits/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "html_url": "https://github.com/jqlang/jq/commit/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c" + } + ] + }, + { + "sha": "4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "node_id": "C_kwDOAE3WVdoAKDRlYmQyMWUxZWJjYWM2ZjU5YjBlZDFlYTA5ZjU2Mzg1NzU2ZjI2OGM", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-03T02:39:42Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-10-04T05:00:46Z" + }, + "message": "Allow passing the inline jq script before --\n\njq previously only allowed passing the inline script before -- (as if\nthey were options) even though one would expect the inline script to be\na positional argument.\n\nSince jq previously also refused to run with a usage error if the script\nwas passed after -- (It was not assuming . as script as it does when\nno arguments are passed), and positional arguments are allowed before --\nand even before other options, it should not be a breaking change to\nchange that weird behaviour, and allow the script to appear after --.\n\nIt also simplifies the option parsing code a bunch.\n\nFixes #2918", + "tree": { + "sha": "674325b10323dae990841d4e7d84541e5a58acf1", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/674325b10323dae990841d4e7d84541e5a58acf1" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "html_url": "https://github.com/jqlang/jq/commit/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4ebd21e1ebcac6f59b0ed1ea09f56385756f268c/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "7f547827e47b5ade563a293329deb4226496d72f", + "url": "https://api.github.com/repos/jqlang/jq/commits/7f547827e47b5ade563a293329deb4226496d72f", + "html_url": "https://github.com/jqlang/jq/commit/7f547827e47b5ade563a293329deb4226496d72f" + } + ] + }, + { + "sha": "7f547827e47b5ade563a293329deb4226496d72f", + "node_id": "C_kwDOAE3WVdoAKDdmNTQ3ODI3ZTQ3YjVhZGU1NjNhMjkzMzI5ZGViNDIyNjQ5NmQ3MmY", + "commit": { + "author": { + "name": "Thomas Bozeman th026106", + "email": "thomas.bozeman@digitalglobe.com", + "date": "2023-10-03T17:50:08Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-10-03T20:48:12Z" + }, + "message": "Simplify `pick` example\n\nOld pick example included input array in command line, making `input` confusing\nand redundant.", + "tree": { + "sha": "7918c86308a5d0caffc97b76a7a120e3023b37cd", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/7918c86308a5d0caffc97b76a7a120e3023b37cd" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/7f547827e47b5ade563a293329deb4226496d72f", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/7f547827e47b5ade563a293329deb4226496d72f", + "html_url": "https://github.com/jqlang/jq/commit/7f547827e47b5ade563a293329deb4226496d72f", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/7f547827e47b5ade563a293329deb4226496d72f/comments", + "author": null, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6b5a18f0369eb765c1c9542cc886d389dac66c50", + "url": "https://api.github.com/repos/jqlang/jq/commits/6b5a18f0369eb765c1c9542cc886d389dac66c50", + "html_url": "https://github.com/jqlang/jq/commit/6b5a18f0369eb765c1c9542cc886d389dac66c50" + } + ] + }, + { + "sha": "6b5a18f0369eb765c1c9542cc886d389dac66c50", + "node_id": "C_kwDOAE3WVdoAKDZiNWExOGYwMzY5ZWI3NjVjMWM5NTQyY2M4ODZkMzg5ZGFjNjZjNTA", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-28T03:32:41Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-28T03:54:23Z" + }, + "message": "Actually use number correctly casted from double to int as index\n\nThe code was using (int)jv_number_value(k) instead of (int)didx.\n\nfollow-up from 0e067ef93605493060392f0999be27694146fca4\n\nUseless assignments to didx detected by clang-tidy.", + "tree": { + "sha": "f6c0c52994f63bfab8ead77191d226a99c90176c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/f6c0c52994f63bfab8ead77191d226a99c90176c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/6b5a18f0369eb765c1c9542cc886d389dac66c50", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/6b5a18f0369eb765c1c9542cc886d389dac66c50", + "html_url": "https://github.com/jqlang/jq/commit/6b5a18f0369eb765c1c9542cc886d389dac66c50", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/6b5a18f0369eb765c1c9542cc886d389dac66c50/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "url": "https://api.github.com/repos/jqlang/jq/commits/8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "html_url": "https://github.com/jqlang/jq/commit/8206bc8fd2302715cb0948a4468996aecc3c5f7a" + } + ] + }, + { + "sha": "8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "node_id": "C_kwDOAE3WVdoAKDgyMDZiYzhmZDIzMDI3MTVjYjA5NDhhNDQ2ODk5NmFlY2MzYzVmN2E", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-28T01:25:55Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-28T02:52:23Z" + }, + "message": "main.c: Remove unused EXIT_STATUS_EXACT option\n\nIn process there is a suspicious options |= EXIT_STATUS_EXACT that\nis run when the jq script is terminated by halt, or halt_error.\n\nThat line of code acutally does nothing because options is a local\nargument variable, and is not passed as a pointer. It was probably meant\nto be a *options |= EXIT_STATUS_EXACT with the options argument\npassed as a int*.\n\nIn any case, we do not want to run the code in main() that was supposed\nto run if EXIT_STATUS_EXACT is set (but didn't since it is never added\nto options); as far as I can tell, we only want to run that code when\nthe --exit-status/-e option is passed.\n\nSo I removed EXIT_STATUS_EXACT completely, and the useless assignment,\ninstead of fixing it since it was not used for anything else.\n\nUseless assignment detected by clang-tidy.", + "tree": { + "sha": "ff28bcbd96d90790fb95176521aed93a7594e31b", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/ff28bcbd96d90790fb95176521aed93a7594e31b" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "html_url": "https://github.com/jqlang/jq/commit/8206bc8fd2302715cb0948a4468996aecc3c5f7a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/8206bc8fd2302715cb0948a4468996aecc3c5f7a/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "623ace27e881c0daa43c73201f8131cf8b9c2cec", + "url": "https://api.github.com/repos/jqlang/jq/commits/623ace27e881c0daa43c73201f8131cf8b9c2cec", + "html_url": "https://github.com/jqlang/jq/commit/623ace27e881c0daa43c73201f8131cf8b9c2cec" + } + ] + }, + { + "sha": "623ace27e881c0daa43c73201f8131cf8b9c2cec", + "node_id": "C_kwDOAE3WVdoAKDYyM2FjZTI3ZTg4MWMwZGFhNDNjNzMyMDFmODEzMWNmOGI5YzJjZWM", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-28T01:20:49Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-28T02:50:44Z" + }, + "message": "Remove a bunch of unused variables, and useless assignments\n\nDetected by clang-tidy.", + "tree": { + "sha": "e139d865c8d85ebfc912b0e58a7b852eaff38b97", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/e139d865c8d85ebfc912b0e58a7b852eaff38b97" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/623ace27e881c0daa43c73201f8131cf8b9c2cec", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/623ace27e881c0daa43c73201f8131cf8b9c2cec", + "html_url": "https://github.com/jqlang/jq/commit/623ace27e881c0daa43c73201f8131cf8b9c2cec", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/623ace27e881c0daa43c73201f8131cf8b9c2cec/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "url": "https://api.github.com/repos/jqlang/jq/commits/2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "html_url": "https://github.com/jqlang/jq/commit/2b709727a9654eee3f36399b5fc6b0f83396e7a7" + } + ] + }, + { + "sha": "2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "node_id": "C_kwDOAE3WVdoAKDJiNzA5NzI3YTk2NTRlZWUzZjM2Mzk5YjVmYzZiMGY4MzM5NmU3YTc", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-28T01:19:53Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-28T02:50:44Z" + }, + "message": "Remove unused nref accumulator in block_bind_library\n\ndetected as a warning compiling jq with clang.", + "tree": { + "sha": "4c97efc9b2cd295fe7a89da3e9171120b1c2ccc8", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/4c97efc9b2cd295fe7a89da3e9171120b1c2ccc8" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "html_url": "https://github.com/jqlang/jq/commit/2b709727a9654eee3f36399b5fc6b0f83396e7a7", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/2b709727a9654eee3f36399b5fc6b0f83396e7a7/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "07149397d13642d8104b30eb824be74cc8fac44d", + "url": "https://api.github.com/repos/jqlang/jq/commits/07149397d13642d8104b30eb824be74cc8fac44d", + "html_url": "https://github.com/jqlang/jq/commit/07149397d13642d8104b30eb824be74cc8fac44d" + } + ] + }, + { + "sha": "07149397d13642d8104b30eb824be74cc8fac44d", + "node_id": "C_kwDOAE3WVdoAKDA3MTQ5Mzk3ZDEzNjQyZDgxMDRiMzBlYjgyNGJlNzRjYzhmYWM0NGQ", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-09-26T13:03:39Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-26T17:53:44Z" + }, + "message": "Reject U+001F in string literals (fix #2909)", + "tree": { + "sha": "6cb986d2167c9965ea1dddcac7f2bba27f0cbcad", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6cb986d2167c9965ea1dddcac7f2bba27f0cbcad" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/07149397d13642d8104b30eb824be74cc8fac44d", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/07149397d13642d8104b30eb824be74cc8fac44d", + "html_url": "https://github.com/jqlang/jq/commit/07149397d13642d8104b30eb824be74cc8fac44d", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/07149397d13642d8104b30eb824be74cc8fac44d/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "e526df15fe083b174e292da1eb4236b7e9101de4", + "url": "https://api.github.com/repos/jqlang/jq/commits/e526df15fe083b174e292da1eb4236b7e9101de4", + "html_url": "https://github.com/jqlang/jq/commit/e526df15fe083b174e292da1eb4236b7e9101de4" + } + ] + }, + { + "sha": "e526df15fe083b174e292da1eb4236b7e9101de4", + "node_id": "C_kwDOAE3WVdoAKGU1MjZkZjE1ZmUwODNiMTc0ZTI5MmRhMWViNDIzNmI3ZTkxMDFkZTQ", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-09-26T17:49:07Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-26T17:49:07Z" + }, + "message": "Correct typo in README.md: compilation (#2912)", + "tree": { + "sha": "dc11882bcfe811351ce9ee4bed9f83167b43c03c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/dc11882bcfe811351ce9ee4bed9f83167b43c03c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/e526df15fe083b174e292da1eb4236b7e9101de4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlExmTCRBK7hj4Ov3rIwAAyEQIAKLm8vD6Ishr7yIXh5NjANI1\n5FQJPwnEWwI8d0V0w//+pRwxj45GaTYTela5yOtGhr+Ofr/iVWVw+EzTkPgWuReS\n5tbFzz1IWA4s8TVrGgkFvIrg5JfvjPwmVS9oSvO0c9Q5MOJ+uc/g96txxBzwPFti\ntZI4zuSIw6xhY9DcSrvMBd5VrO8fn9R7DcIf0jwHaJL+FGZzf57LBGOw2Ux2SWUY\ntNYpa6hT4QgpSOXxfOoQUFpDmxAvx3l54GxdWdQV5wbseD+BByJu5kGN/bIDoIMP\nGcY5LM/iRSVwKuFXHWpIZRtfAl+iGLfITBn/6pTTCT/R6y3v+vXl1P/VNxKi2cQ=\n=5/wp\n-----END PGP SIGNATURE-----\n", + "payload": "tree dc11882bcfe811351ce9ee4bed9f83167b43c03c\nparent 8f81668014f4df2654aa9ab674b5498aa9446441\nauthor itchyny 1695750547 +0900\ncommitter GitHub 1695750547 +0200\n\nCorrect typo in README.md: compilation (#2912)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/e526df15fe083b174e292da1eb4236b7e9101de4", + "html_url": "https://github.com/jqlang/jq/commit/e526df15fe083b174e292da1eb4236b7e9101de4", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/e526df15fe083b174e292da1eb4236b7e9101de4/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "8f81668014f4df2654aa9ab674b5498aa9446441", + "url": "https://api.github.com/repos/jqlang/jq/commits/8f81668014f4df2654aa9ab674b5498aa9446441", + "html_url": "https://github.com/jqlang/jq/commit/8f81668014f4df2654aa9ab674b5498aa9446441" + } + ] + }, + { + "sha": "8f81668014f4df2654aa9ab674b5498aa9446441", + "node_id": "C_kwDOAE3WVdoAKDhmODE2NjgwMTRmNGRmMjY1NGFhOWFiNjc0YjU0OThhYTk0NDY0NDE", + "commit": { + "author": { + "name": "taoky", + "email": "taoky99@outlook.com", + "date": "2023-09-22T00:18:41Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-22T00:18:41Z" + }, + "message": "Fix the default colors to use 39, the default foreground color (#2904)", + "tree": { + "sha": "223b8e8db917ea45390102bfff4c9b34b00e2563", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/223b8e8db917ea45390102bfff4c9b34b00e2563" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/8f81668014f4df2654aa9ab674b5498aa9446441", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlDN1hCRBK7hj4Ov3rIwAAqqwIACweocODkDgM90mr1OFE0LHi\n61jMtGZEUvy/pscOxHlRR99A5Z+1C4c5rvMYt/dnZRVAOoyczTt9i/YGpZ/+7iYM\nOQnCr41EbvsWWN/lpfvcbFPCGP8OLgwdSMb76/JJroT50jWieEBFYJkqaoU884wS\nM9C714Cobo3KkCL4lyveB6obqOiOdufM5pjOPaa9m28UOWEew0HGgHT6eXR+/+cy\nQGbwHiuAYoPOSOWc5zkaWTNWcS5DxSGuNHlZphXG5FdSK3H2kN2bGTyYUEndYzZq\nVOlECUNy9qTmoqq/5Nj+ZWLNWxcpo16SYa8ZYqjjMkbKUhcu792A7bZMdzdoufw=\n=3nf1\n-----END PGP SIGNATURE-----\n", + "payload": "tree 223b8e8db917ea45390102bfff4c9b34b00e2563\nparent de1c10ca8a5e333102a00bfcb06ff98f40c774c3\nauthor taoky 1695341921 +0800\ncommitter GitHub 1695341921 +0900\n\nFix the default colors to use 39, the default foreground color (#2904)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/8f81668014f4df2654aa9ab674b5498aa9446441", + "html_url": "https://github.com/jqlang/jq/commit/8f81668014f4df2654aa9ab674b5498aa9446441", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/8f81668014f4df2654aa9ab674b5498aa9446441/comments", + "author": { + "login": "taoky", + "id": 2109893, + "node_id": "MDQ6VXNlcjIxMDk4OTM=", + "avatar_url": "https://avatars.githubusercontent.com/u/2109893?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taoky", + "html_url": "https://github.com/taoky", + "followers_url": "https://api.github.com/users/taoky/followers", + "following_url": "https://api.github.com/users/taoky/following{/other_user}", + "gists_url": "https://api.github.com/users/taoky/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taoky/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taoky/subscriptions", + "organizations_url": "https://api.github.com/users/taoky/orgs", + "repos_url": "https://api.github.com/users/taoky/repos", + "events_url": "https://api.github.com/users/taoky/events{/privacy}", + "received_events_url": "https://api.github.com/users/taoky/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "url": "https://api.github.com/repos/jqlang/jq/commits/de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "html_url": "https://github.com/jqlang/jq/commit/de1c10ca8a5e333102a00bfcb06ff98f40c774c3" + } + ] + }, + { + "sha": "de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "node_id": "C_kwDOAE3WVdoAKGRlMWMxMGNhOGE1ZTMzMzEwMmEwMGJmY2IwNmZmOThmNDBjNzc0YzM", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-18T09:20:43Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-18T09:20:43Z" + }, + "message": "Bump docker/setup-qemu-action from 2 to 3 (#2900)\n\nBumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 2 to 3.\r\n- [Release notes](https://github.com/docker/setup-qemu-action/releases)\r\n- [Commits](https://github.com/docker/setup-qemu-action/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: docker/setup-qemu-action\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>", + "tree": { + "sha": "a9ae5a8adc5c344000884a4c5876e806265e867f", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a9ae5a8adc5c344000884a4c5876e806265e867f" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlCBZrCRBK7hj4Ov3rIwAADRUIAJU/fKComvCurTD2RzT4Ynzr\n2ANEOsvaNZlc5o/OfwInsbh+fLA/aFzCWn7kjdPe34q5C2o0npXw/zENL7WwwqbN\nJu1QpCLNNpqbMW1qQEOwxc6lag9dM3Zf4/DUkD3Is7SDKc0QgUHGM5ZmojHShvY/\nmcVZNVF1FskEncWmD+6WGRWzgyu/lFKNiGkxlYULElRUJRKUSYh7j7Fe+Mj88X4l\nwqqLBRGYAUkTAddXwyGSn4Nn/MJRTzmHw7vnv95N2h0lzYrECTAr7fKcWedcu/qR\n2n192nZC5suwYOKK1QNUI1KXzoWfWV5eROJrkkfVJyami2NcND4917TX4k5dFdk=\n=6tsc\n-----END PGP SIGNATURE-----\n", + "payload": "tree a9ae5a8adc5c344000884a4c5876e806265e867f\nparent a5afeea0a63ced3f192c2c93586496a247860931\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1695028843 +0900\ncommitter GitHub 1695028843 +0900\n\nBump docker/setup-qemu-action from 2 to 3 (#2900)\n\nBumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 2 to 3.\r\n- [Release notes](https://github.com/docker/setup-qemu-action/releases)\r\n- [Commits](https://github.com/docker/setup-qemu-action/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: docker/setup-qemu-action\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "html_url": "https://github.com/jqlang/jq/commit/de1c10ca8a5e333102a00bfcb06ff98f40c774c3", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/de1c10ca8a5e333102a00bfcb06ff98f40c774c3/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a5afeea0a63ced3f192c2c93586496a247860931", + "url": "https://api.github.com/repos/jqlang/jq/commits/a5afeea0a63ced3f192c2c93586496a247860931", + "html_url": "https://github.com/jqlang/jq/commit/a5afeea0a63ced3f192c2c93586496a247860931" + } + ] + }, + { + "sha": "a5afeea0a63ced3f192c2c93586496a247860931", + "node_id": "C_kwDOAE3WVdoAKGE1YWZlZWEwYTYzY2VkM2YxOTJjMmM5MzU4NjQ5NmEyNDc4NjA5MzE", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-18T09:20:20Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-18T09:20:20Z" + }, + "message": "Bump docker/setup-buildx-action from 2 to 3 (#2901)\n\nBumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3.\r\n- [Release notes](https://github.com/docker/setup-buildx-action/releases)\r\n- [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: docker/setup-buildx-action\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>", + "tree": { + "sha": "d037b9271768a1668880a8e1d6fcd121793e7121", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/d037b9271768a1668880a8e1d6fcd121793e7121" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/a5afeea0a63ced3f192c2c93586496a247860931", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlCBZUCRBK7hj4Ov3rIwAATHkIAE96bdd+osR7RIOPKCOXewT1\nhwICtPU7PXZ8KM+Y+72LweDu+gX2/YJwoJUXwPySEki/EtNs7fefJTm2OXmZwyAy\nADdDYu05lz3mTgVosyMBK9iU0K6E+hTYno+WQdZsFWF+OLe+mnfU80kZ65CiK+ks\nWAnJI/7oxxYF4cmEO/ijzVgpczWttP2qmU7P1ieabwTZHFXkk4vd6chxRmbNyEYL\nOtFVX5JRRo7+eXhfxrqpLAi0hi8UBg1uumJRNkOAXn23lwSlK2/vFNpI4Mic4E2k\nLdUVAQ4+PnVCcMUDf6c6KnVdcvqkQ9CZ9FHtv1at7XCt/z7yaetZGum8Ptntflo=\n=1yh2\n-----END PGP SIGNATURE-----\n", + "payload": "tree d037b9271768a1668880a8e1d6fcd121793e7121\nparent b0b7614daf4007262562c152b456981707c99d4a\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1695028820 +0900\ncommitter GitHub 1695028820 +0900\n\nBump docker/setup-buildx-action from 2 to 3 (#2901)\n\nBumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3.\r\n- [Release notes](https://github.com/docker/setup-buildx-action/releases)\r\n- [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: docker/setup-buildx-action\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/a5afeea0a63ced3f192c2c93586496a247860931", + "html_url": "https://github.com/jqlang/jq/commit/a5afeea0a63ced3f192c2c93586496a247860931", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/a5afeea0a63ced3f192c2c93586496a247860931/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "b0b7614daf4007262562c152b456981707c99d4a", + "url": "https://api.github.com/repos/jqlang/jq/commits/b0b7614daf4007262562c152b456981707c99d4a", + "html_url": "https://github.com/jqlang/jq/commit/b0b7614daf4007262562c152b456981707c99d4a" + } + ] + }, + { + "sha": "b0b7614daf4007262562c152b456981707c99d4a", + "node_id": "C_kwDOAE3WVdoAKGIwYjc2MTRkYWY0MDA3MjYyNTYyYzE1MmI0NTY5ODE3MDdjOTlkNGE", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-18T09:19:51Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-18T09:19:51Z" + }, + "message": "Bump actions/checkout from 1 to 4 (#2902)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4.\r\n- [Release notes](https://github.com/actions/checkout/releases)\r\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\r\n- [Commits](https://github.com/actions/checkout/compare/v1...v4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/checkout\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>", + "tree": { + "sha": "0fe6688bc0e8d1922bd8456d5719616976a81db3", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/0fe6688bc0e8d1922bd8456d5719616976a81db3" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/b0b7614daf4007262562c152b456981707c99d4a", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlCBY3CRBK7hj4Ov3rIwAAxxYIACPnrC4pFboUzCn4SXSQEsam\n3CP9thhIlIc/stSW0hgFoAwAEO6rbQuedCwFzE7R5qphL0zih+JkqBttm9Eu9pF7\n2+mv3KhRM0XqZIv1QZAkc7JjLwUQ61UCX4wIy7hQf325PbqphEn2yXBNi+Uxs4bt\njZu5xNJOmzQKPR9P9HEJ8T0U8N61VyFCji+WP/HHbAhE4sxwCDPojeLJBTDQgIbh\n7RJnEsvB4u3hNsgV17RfTl3E5ziuhG+fPJ1WCfRbtMpDsTqRoeXG3ZdijDy1lCDD\ntRZfKAf1bzDfcHkL7/v/zGru4QUkGiK5fJUJ17uuB8AL3WLdlLOQjT6Xdkbo+CI=\n=KQJ5\n-----END PGP SIGNATURE-----\n", + "payload": "tree 0fe6688bc0e8d1922bd8456d5719616976a81db3\nparent d3a356fa1c366a4f80f4abd7434d3bfa746723e7\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1695028791 +0900\ncommitter GitHub 1695028791 +0900\n\nBump actions/checkout from 1 to 4 (#2902)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4.\r\n- [Release notes](https://github.com/actions/checkout/releases)\r\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\r\n- [Commits](https://github.com/actions/checkout/compare/v1...v4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/checkout\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/b0b7614daf4007262562c152b456981707c99d4a", + "html_url": "https://github.com/jqlang/jq/commit/b0b7614daf4007262562c152b456981707c99d4a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/b0b7614daf4007262562c152b456981707c99d4a/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "url": "https://api.github.com/repos/jqlang/jq/commits/d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "html_url": "https://github.com/jqlang/jq/commit/d3a356fa1c366a4f80f4abd7434d3bfa746723e7" + } + ] + }, + { + "sha": "d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "node_id": "C_kwDOAE3WVdoAKGQzYTM1NmZhMWMzNjZhNGY4MGY0YWJkNzQzNGQzYmZhNzQ2NzIzZTc", + "commit": { + "author": { + "name": "Kamontat Chantrachirathumrong", + "email": "14089557+kamontat@users.noreply.github.com", + "date": "2023-09-17T11:55:56Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-17T11:55:56Z" + }, + "message": "Fix checksum file spacing for shasum command (#2899)", + "tree": { + "sha": "0f85772c0fa0bc906262ec42cc82933b8fd8bba9", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/0f85772c0fa0bc906262ec42cc82933b8fd8bba9" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlBulMCRBK7hj4Ov3rIwAAFEsIAJWWYhXdgoE5y0npp5ks2tjg\nvFX8aHrtYkmNqw0TYRFXmNC5srfMLXSdT6g9EYnFHDRkRZXOjUm/owgzxP/d6U+0\nZUOAlkrhUkPYSgqNM3kxuiMVlefvV4T90lB6cGGnZj1rYmN/8KPVOaRM5EDkPNsd\nhcZyTCvq7g/HjgmYr8Finy7y1f50qbqRGhQOcDPmJ5qmFdC1AFsBuOQYo38BuPkC\n/91p+ZlfwmmBL+qLoyYHxSHQ4g80kavbyc5GDSnqWOsNS3M8SXIC6V/NmfHpmiZg\nTwDTL2DdTkfMzPRzng1nybE1kkzwD3OxTVpPYjxNHZ3ZZdzQ9cTVxGG8PHHZ5Fk=\n=mX6J\n-----END PGP SIGNATURE-----\n", + "payload": "tree 0f85772c0fa0bc906262ec42cc82933b8fd8bba9\nparent 24e6e6ea3989ccd1b83be9e61f2666d016bac330\nauthor Kamontat Chantrachirathumrong <14089557+kamontat@users.noreply.github.com> 1694951756 +0700\ncommitter GitHub 1694951756 +0900\n\nFix checksum file spacing for shasum command (#2899)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "html_url": "https://github.com/jqlang/jq/commit/d3a356fa1c366a4f80f4abd7434d3bfa746723e7", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/d3a356fa1c366a4f80f4abd7434d3bfa746723e7/comments", + "author": { + "login": "kamontat", + "id": 14089557, + "node_id": "MDQ6VXNlcjE0MDg5NTU3", + "avatar_url": "https://avatars.githubusercontent.com/u/14089557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kamontat", + "html_url": "https://github.com/kamontat", + "followers_url": "https://api.github.com/users/kamontat/followers", + "following_url": "https://api.github.com/users/kamontat/following{/other_user}", + "gists_url": "https://api.github.com/users/kamontat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kamontat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kamontat/subscriptions", + "organizations_url": "https://api.github.com/users/kamontat/orgs", + "repos_url": "https://api.github.com/users/kamontat/repos", + "events_url": "https://api.github.com/users/kamontat/events{/privacy}", + "received_events_url": "https://api.github.com/users/kamontat/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "url": "https://api.github.com/repos/jqlang/jq/commits/24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "html_url": "https://github.com/jqlang/jq/commit/24e6e6ea3989ccd1b83be9e61f2666d016bac330" + } + ] + }, + { + "sha": "24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "node_id": "C_kwDOAE3WVdoAKDI0ZTZlNmVhMzk4OWNjZDFiODNiZTllNjFmMjY2NmQwMTZiYWMzMzA", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-15T11:09:41Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-15T11:44:46Z" + }, + "message": "Bump actions/upload-artifact from 2 to 3\n\nBumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.\n- [Release notes](https://github.com/actions/upload-artifact/releases)\n- [Commits](https://github.com/actions/upload-artifact/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: actions/upload-artifact\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "tree": { + "sha": "11c811023a387cfea4c857eabc26f0118517afe0", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/11c811023a387cfea4c857eabc26f0118517afe0" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "html_url": "https://github.com/jqlang/jq/commit/24e6e6ea3989ccd1b83be9e61f2666d016bac330", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/24e6e6ea3989ccd1b83be9e61f2666d016bac330/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "fb493df0188e62b358e03184134f88e80b1ee339", + "url": "https://api.github.com/repos/jqlang/jq/commits/fb493df0188e62b358e03184134f88e80b1ee339", + "html_url": "https://github.com/jqlang/jq/commit/fb493df0188e62b358e03184134f88e80b1ee339" + } + ] + }, + { + "sha": "fb493df0188e62b358e03184134f88e80b1ee339", + "node_id": "C_kwDOAE3WVdoAKGZiNDkzZGYwMTg4ZTYyYjM1OGUwMzE4NDEzNGY4OGU4MGIxZWUzMzk", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-15T11:09:37Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-15T11:43:44Z" + }, + "message": "Bump crazy-max/ghaction-import-gpg from 5 to 6\n\nBumps [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg) from 5 to 6.\n- [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases)\n- [Commits](https://github.com/crazy-max/ghaction-import-gpg/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: crazy-max/ghaction-import-gpg\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "tree": { + "sha": "85546d66d8ae54196ce0fa96004350a9536b41ea", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/85546d66d8ae54196ce0fa96004350a9536b41ea" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/fb493df0188e62b358e03184134f88e80b1ee339", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/fb493df0188e62b358e03184134f88e80b1ee339", + "html_url": "https://github.com/jqlang/jq/commit/fb493df0188e62b358e03184134f88e80b1ee339", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/fb493df0188e62b358e03184134f88e80b1ee339/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "url": "https://api.github.com/repos/jqlang/jq/commits/f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "html_url": "https://github.com/jqlang/jq/commit/f3a46a62decf1f8a4d91adaeb9b133f2e4365339" + } + ] + }, + { + "sha": "f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "node_id": "C_kwDOAE3WVdoAKGYzYTQ2YTYyZGVjZjFmOGE0ZDkxYWRhZWI5YjEzM2YyZTQzNjUzMzk", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-15T11:09:35Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-15T11:42:32Z" + }, + "message": "Bump docker/metadata-action from 4 to 5\n\nBumps [docker/metadata-action](https://github.com/docker/metadata-action) from 4 to 5.\n- [Release notes](https://github.com/docker/metadata-action/releases)\n- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)\n- [Commits](https://github.com/docker/metadata-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: docker/metadata-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "tree": { + "sha": "1b03714cf844e82f6baff3b32736b2da59ce6dfd", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/1b03714cf844e82f6baff3b32736b2da59ce6dfd" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "html_url": "https://github.com/jqlang/jq/commit/f3a46a62decf1f8a4d91adaeb9b133f2e4365339", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f3a46a62decf1f8a4d91adaeb9b133f2e4365339/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "e69398ea0fa7f0150c392556cc999fa8273a83dc", + "url": "https://api.github.com/repos/jqlang/jq/commits/e69398ea0fa7f0150c392556cc999fa8273a83dc", + "html_url": "https://github.com/jqlang/jq/commit/e69398ea0fa7f0150c392556cc999fa8273a83dc" + } + ] + }, + { + "sha": "e69398ea0fa7f0150c392556cc999fa8273a83dc", + "node_id": "C_kwDOAE3WVdoAKGU2OTM5OGVhMGZhN2YwMTUwYzM5MjU1NmNjOTk5ZmE4MjczYTgzZGM", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-15T11:09:30Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-15T11:41:27Z" + }, + "message": "Bump docker/build-push-action from 4 to 5\n\nBumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5.\n- [Release notes](https://github.com/docker/build-push-action/releases)\n- [Commits](https://github.com/docker/build-push-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: docker/build-push-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "tree": { + "sha": "778a4b184c9b205f3568789963a3a4752e9f5ec2", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/778a4b184c9b205f3568789963a3a4752e9f5ec2" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/e69398ea0fa7f0150c392556cc999fa8273a83dc", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/e69398ea0fa7f0150c392556cc999fa8273a83dc", + "html_url": "https://github.com/jqlang/jq/commit/e69398ea0fa7f0150c392556cc999fa8273a83dc", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/e69398ea0fa7f0150c392556cc999fa8273a83dc/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "url": "https://api.github.com/repos/jqlang/jq/commits/dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "html_url": "https://github.com/jqlang/jq/commit/dfd930f81a4a0a1ed3e287eb914779a41f3d2746" + } + ] + }, + { + "sha": "dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "node_id": "C_kwDOAE3WVdoAKGRmZDkzMGY4MWE0YTBhMWVkM2UyODdlYjkxNDc3OWE0MWYzZDI3NDY", + "commit": { + "author": { + "name": "dependabot[bot]", + "email": "49699333+dependabot[bot]@users.noreply.github.com", + "date": "2023-09-15T11:09:33Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-09-15T11:40:33Z" + }, + "message": "Bump docker/login-action from 2 to 3\n\nBumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3.\n- [Release notes](https://github.com/docker/login-action/releases)\n- [Commits](https://github.com/docker/login-action/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: docker/login-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ", + "tree": { + "sha": "1f08564ca5c009d8d3c3df6911ea25a53a2d06b8", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/1f08564ca5c009d8d3c3df6911ea25a53a2d06b8" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "html_url": "https://github.com/jqlang/jq/commit/dfd930f81a4a0a1ed3e287eb914779a41f3d2746", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/dfd930f81a4a0a1ed3e287eb914779a41f3d2746/comments", + "author": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4c6f6dc2315103e4d4d81803744495ba396717a4", + "url": "https://api.github.com/repos/jqlang/jq/commits/4c6f6dc2315103e4d4d81803744495ba396717a4", + "html_url": "https://github.com/jqlang/jq/commit/4c6f6dc2315103e4d4d81803744495ba396717a4" + } + ] + }, + { + "sha": "4c6f6dc2315103e4d4d81803744495ba396717a4", + "node_id": "C_kwDOAE3WVdoAKDRjNmY2ZGMyMzE1MTAzZTRkNGQ4MTgwMzc0NDQ5NWJhMzk2NzE3YTQ", + "commit": { + "author": { + "name": "Yeikel", + "email": "email@yeikel.com", + "date": "2023-09-15T11:09:07Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-15T11:09:07Z" + }, + "message": "Add dependabot (#2889)", + "tree": { + "sha": "f61f4523d6b2ef6b79baf3fa9973f8a0837f0b5f", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/f61f4523d6b2ef6b79baf3fa9973f8a0837f0b5f" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4c6f6dc2315103e4d4d81803744495ba396717a4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlBDtTCRBK7hj4Ov3rIwAA8M0IAAxWG3MvzLhxrREFEes+7Cs0\nzuksRURFJxN5bmAPNjrwz6ERrY29oU1BF/qmMmV+e6UFvzrRq5wAUevPUEeto0oQ\nJoNHqPy0/w4432W37BPAM0CpQbeK0m1Wp/wIHQfid+AjEh4QEBrsUZUGLtIrnIXk\nYm7SjcN99FlrXUO/BGlrE7jXwxuOc9zdbFiru2V4cE0wJnsRTPDPsqpFFwNpkqCF\nQDAxc0zP2gP9Og3zYvFxmWJt99LMXXefIaGEX+Vmwzg8XTWYcbSgEhYi0u1g35CF\nsWN9V4auhgYjbNm9O0DQusURcWuVlJ7YwilAO7Agkp27UNhqvxeXv91nOHH+bdw=\n=wQyq\n-----END PGP SIGNATURE-----\n", + "payload": "tree f61f4523d6b2ef6b79baf3fa9973f8a0837f0b5f\nparent 5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f\nauthor Yeikel 1694776147 -0400\ncommitter GitHub 1694776147 +0900\n\nAdd dependabot (#2889)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4c6f6dc2315103e4d4d81803744495ba396717a4", + "html_url": "https://github.com/jqlang/jq/commit/4c6f6dc2315103e4d4d81803744495ba396717a4", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4c6f6dc2315103e4d4d81803744495ba396717a4/comments", + "author": { + "login": "yeikel", + "id": 8935151, + "node_id": "MDQ6VXNlcjg5MzUxNTE=", + "avatar_url": "https://avatars.githubusercontent.com/u/8935151?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yeikel", + "html_url": "https://github.com/yeikel", + "followers_url": "https://api.github.com/users/yeikel/followers", + "following_url": "https://api.github.com/users/yeikel/following{/other_user}", + "gists_url": "https://api.github.com/users/yeikel/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yeikel/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yeikel/subscriptions", + "organizations_url": "https://api.github.com/users/yeikel/orgs", + "repos_url": "https://api.github.com/users/yeikel/repos", + "events_url": "https://api.github.com/users/yeikel/events{/privacy}", + "received_events_url": "https://api.github.com/users/yeikel/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "url": "https://api.github.com/repos/jqlang/jq/commits/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "html_url": "https://github.com/jqlang/jq/commit/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f" + } + ] + }, + { + "sha": "5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "node_id": "C_kwDOAE3WVdoAKDVlYTFhNGFiM2I5N2NkNWY4NzhhZjA0YjI0YWJlOWVjMmQ5MzA4OGY", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-09-15T11:08:20Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-15T11:08:20Z" + }, + "message": "Disable core.autocrlf on Windows to prevent submodule diffs (fix #2886) (#2888)", + "tree": { + "sha": "632b1316d386126781c997cea40d92f23029fb2b", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/632b1316d386126781c997cea40d92f23029fb2b" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJlBDskCRBK7hj4Ov3rIwAAldwIAFBGukbv6GbRCuB+c+bc6CMm\n3ga+oloXSStt+uhnuiNIXOz16vzsx02Rj6gxmg6HFUyaVacwb/2p2TFfWHnaeNts\n/DIgoy2mZF6WplqRHXmvfd5Ovnl5lPwGhgwSSNQ4E6zPDZ6rKpbm5cF3ks56zcgR\nFFeG0km2h01a/1DdB6x38+sx3bb9rtC0G8DkAQVav5g8Mh8Hw2b+i8remoFEEzvj\nV3/r36N19RYT3lyVmhLxP6Tvae6NmnUSq8vFK+c30s98iGVNP3RG/gqwRD/fdKNJ\nhJhBvBfyM4zD6iQ5IJdglCQUdaosvmRSuDFvLVG7qjJ6XlAwkr5PB1xo5Q50H8Y=\n=pFMp\n-----END PGP SIGNATURE-----\n", + "payload": "tree 632b1316d386126781c997cea40d92f23029fb2b\nparent 7a72f58d2e92254652162ec7ca1b3074e3a22c35\nauthor itchyny 1694776100 +0900\ncommitter GitHub 1694776100 +0900\n\nDisable core.autocrlf on Windows to prevent submodule diffs (fix #2886) (#2888)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "html_url": "https://github.com/jqlang/jq/commit/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/5ea1a4ab3b97cd5f878af04b24abe9ec2d93088f/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "url": "https://api.github.com/repos/jqlang/jq/commits/7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "html_url": "https://github.com/jqlang/jq/commit/7a72f58d2e92254652162ec7ca1b3074e3a22c35" + } + ] + }, + { + "sha": "7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "node_id": "C_kwDOAE3WVdoAKDdhNzJmNThkMmU5MjI1NDY1MjE2MmVjN2NhMWIzMDc0ZTNhMjJjMzU", + "commit": { + "author": { + "name": "Owen Ou", + "email": "169064+owenthereal@users.noreply.github.com", + "date": "2023-09-07T18:55:14Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-07T18:55:14Z" + }, + "message": "Standarize arch types to AMD64 & ARM64 from index page download dropdown (#2884)\n\nStandarize arch types to AMD64 & ARM64 from index page download\r\ndropdown. These are missed from https://github.com/jqlang/jq/pull/2879.", + "tree": { + "sha": "a3a0a822ebc2e7bc598c96cac7a655c2bdee43c5", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a3a0a822ebc2e7bc598c96cac7a655c2bdee43c5" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk+hySCRBK7hj4Ov3rIwAAhokIAA5poP2/Ez3X4Cc3aAZwP9mv\nwSLwyOb1LYyQZnapxsMSIdsbkWuwxZ2VrM1Ct9LcSvV1AkVcpBSG7t2nGxng6vDM\nmM37kPkde+8/sXyy0NnoZ+4SSu8Dc6ZmOGrNq8eL9sFR0gbbGhMFDMblV08JOgnc\nD2mat/nWIUrkhpYkjEm6yzH6MXsu7zOW2thz0fviEbPMMv227Shdz5Cbfsr9WyUz\ni2q7Xq0NesO1zWHF0RJI5PW+LpLi2vHScLKJD+loqyKhJfzwVAGe0rQuFLs4NLjK\nKzaTcZpoiXr4JnkfAEdoQL6yNZyHmbOeE2xay4x1DteUbLXZ9HssY1lhkX3dhFc=\n=Bz/U\n-----END PGP SIGNATURE-----\n", + "payload": "tree a3a0a822ebc2e7bc598c96cac7a655c2bdee43c5\nparent 806475da2942584370a35d75fdd7d1103c17246a\nauthor Owen Ou <169064+owenthereal@users.noreply.github.com> 1694112914 -0700\ncommitter GitHub 1694112914 -0700\n\nStandarize arch types to AMD64 & ARM64 from index page download dropdown (#2884)\n\nStandarize arch types to AMD64 & ARM64 from index page download\r\ndropdown. These are missed from https://github.com/jqlang/jq/pull/2879." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "html_url": "https://github.com/jqlang/jq/commit/7a72f58d2e92254652162ec7ca1b3074e3a22c35", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/7a72f58d2e92254652162ec7ca1b3074e3a22c35/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "806475da2942584370a35d75fdd7d1103c17246a", + "url": "https://api.github.com/repos/jqlang/jq/commits/806475da2942584370a35d75fdd7d1103c17246a", + "html_url": "https://github.com/jqlang/jq/commit/806475da2942584370a35d75fdd7d1103c17246a" + } + ] + }, + { + "sha": "806475da2942584370a35d75fdd7d1103c17246a", + "node_id": "C_kwDOAE3WVdoAKDgwNjQ3NWRhMjk0MjU4NDM3MGEzNWQ3NWZkZDdkMTEwM2MxNzI0NmE", + "commit": { + "author": { + "name": "Owen Ou", + "email": "169064+owenthereal@users.noreply.github.com", + "date": "2023-09-07T17:54:10Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-09-07T17:54:10Z" + }, + "message": "Update webpage with 1.7 release (#2879)\n\n* Update webpage with 1.7 release\r\n\r\nUpdate webpage with 1.7 release\r\n\r\n* Update docs/content/download/default.yml\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Update docs/templates/index.html.j2\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Update docs/content/download/default.yml\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Don't mention 1.7rc signatures\r\n\r\n* Add link to 1.7 manual\r\n\r\n* binaries -> binary\r\n\r\n* AMD 32-bit to i386\r\n\r\n* Standarize arch types to AMD64, ARM64 & i386 in download page\r\n\r\n---------\r\n\r\nCo-authored-by: itchyny ", + "tree": { + "sha": "4f7075b74eab5eb80e7a6c28801f5eb0ec33c9f6", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/4f7075b74eab5eb80e7a6c28801f5eb0ec33c9f6" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/806475da2942584370a35d75fdd7d1103c17246a", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk+g5CCRBK7hj4Ov3rIwAAAdUIAA0k4QtKRolvxTNMMbnnco+P\n2pSm5/L8ED4MRZg2fpcGTu4B6bkbGQcMZwI9g18N4asiE9YzRxtORRH2aREG5joC\nscV4rSUV8m2dqKHPQglN2dsS+iqZJGM+r19UdCbnMkVPxQnGMq+LDR44c0LtWpG+\nlNdjSG9VBeIYFnUt1B3EU5czUvfLjmAgfbp4xNE4m0zXmsYnxw/3yBEPF0wxyVuW\nh9wK+42vLjW5sxSJWBKCnWN10WgJ5hiyxe//APmAUH85WMKLINgPGcFW8lI+RHm+\n4/zJNJA51or+6ME0bOyTU4HkTVs/087VcQtnhNvvuDXkY+lUVLRrn5jIwD1QY6Y=\n=Wg7u\n-----END PGP SIGNATURE-----\n", + "payload": "tree 4f7075b74eab5eb80e7a6c28801f5eb0ec33c9f6\nparent 4b579ca31f4ae3d95b757c43c742812884dea5fd\nauthor Owen Ou <169064+owenthereal@users.noreply.github.com> 1694109250 -0700\ncommitter GitHub 1694109250 -0700\n\nUpdate webpage with 1.7 release (#2879)\n\n* Update webpage with 1.7 release\r\n\r\nUpdate webpage with 1.7 release\r\n\r\n* Update docs/content/download/default.yml\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Update docs/templates/index.html.j2\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Update docs/content/download/default.yml\r\n\r\nCo-authored-by: itchyny \r\n\r\n* Don't mention 1.7rc signatures\r\n\r\n* Add link to 1.7 manual\r\n\r\n* binaries -> binary\r\n\r\n* AMD 32-bit to i386\r\n\r\n* Standarize arch types to AMD64, ARM64 & i386 in download page\r\n\r\n---------\r\n\r\nCo-authored-by: itchyny " + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/806475da2942584370a35d75fdd7d1103c17246a", + "html_url": "https://github.com/jqlang/jq/commit/806475da2942584370a35d75fdd7d1103c17246a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/806475da2942584370a35d75fdd7d1103c17246a/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4b579ca31f4ae3d95b757c43c742812884dea5fd", + "url": "https://api.github.com/repos/jqlang/jq/commits/4b579ca31f4ae3d95b757c43c742812884dea5fd", + "html_url": "https://github.com/jqlang/jq/commit/4b579ca31f4ae3d95b757c43c742812884dea5fd" + } + ] + }, + { + "sha": "4b579ca31f4ae3d95b757c43c742812884dea5fd", + "node_id": "C_kwDOAE3WVdoAKDRiNTc5Y2EzMWY0YWUzZDk1Yjc1N2M0M2M3NDI4MTI4ODRkZWE1ZmQ", + "commit": { + "author": { + "name": "github-actions[bot]", + "email": "github-actions[bot]@users.noreply.github.com", + "date": "2023-09-06T22:49:08Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-06T22:53:36Z" + }, + "message": "Update signatures of 1.7", + "tree": { + "sha": "55a26e2f03712a86cd2c5bc4afcb2319fcefe61d", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/55a26e2f03712a86cd2c5bc4afcb2319fcefe61d" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4b579ca31f4ae3d95b757c43c742812884dea5fd", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4b579ca31f4ae3d95b757c43c742812884dea5fd", + "html_url": "https://github.com/jqlang/jq/commit/4b579ca31f4ae3d95b757c43c742812884dea5fd", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4b579ca31f4ae3d95b757c43c742812884dea5fd/comments", + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "11c528d04d76c9b9553781aa76b073e4f40da008", + "url": "https://api.github.com/repos/jqlang/jq/commits/11c528d04d76c9b9553781aa76b073e4f40da008", + "html_url": "https://github.com/jqlang/jq/commit/11c528d04d76c9b9553781aa76b073e4f40da008" + } + ] + }, + { + "sha": "11c528d04d76c9b9553781aa76b073e4f40da008", + "node_id": "C_kwDOAE3WVdoAKDExYzUyOGQwNGQ3NmM5Yjk1NTM3ODFhYTc2YjA3M2U0ZjQwZGEwMDg", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-06T13:52:37Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-06T19:05:10Z" + }, + "message": "Add setlocale() call (fix #1740)", + "tree": { + "sha": "3eb4d21413cf215598675b4768d6afeb1f5d91ce", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/3eb4d21413cf215598675b4768d6afeb1f5d91ce" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/11c528d04d76c9b9553781aa76b073e4f40da008", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/11c528d04d76c9b9553781aa76b073e4f40da008", + "html_url": "https://github.com/jqlang/jq/commit/11c528d04d76c9b9553781aa76b073e4f40da008", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/11c528d04d76c9b9553781aa76b073e4f40da008/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ac3b70d3a118713b24a82da15441788fee6c5d4e", + "url": "https://api.github.com/repos/jqlang/jq/commits/ac3b70d3a118713b24a82da15441788fee6c5d4e", + "html_url": "https://github.com/jqlang/jq/commit/ac3b70d3a118713b24a82da15441788fee6c5d4e" + } + ] + }, + { + "sha": "ac3b70d3a118713b24a82da15441788fee6c5d4e", + "node_id": "C_kwDOAE3WVdoAKGFjM2I3MGQzYTExODcxM2IyNGE4MmRhMTU0NDE3ODhmZWU2YzVkNGU", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-05T23:49:55Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-09-06T18:01:44Z" + }, + "message": "Add a thank you note to the new owners, admins, and maintainers, and to @stedolan", + "tree": { + "sha": "5468b0c72cf6fe481882737e9a1b9eb48063d375", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/5468b0c72cf6fe481882737e9a1b9eb48063d375" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/ac3b70d3a118713b24a82da15441788fee6c5d4e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/ac3b70d3a118713b24a82da15441788fee6c5d4e", + "html_url": "https://github.com/jqlang/jq/commit/ac3b70d3a118713b24a82da15441788fee6c5d4e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/ac3b70d3a118713b24a82da15441788fee6c5d4e/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "url": "https://api.github.com/repos/jqlang/jq/commits/df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "html_url": "https://github.com/jqlang/jq/commit/df95871dd7415627bda6d70ce0569d0a4fbc22c6" + } + ] + }, + { + "sha": "df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "node_id": "C_kwDOAE3WVdoAKGRmOTU4NzFkZDc0MTU2MjdiZGE2ZDcwY2UwNTY5ZDBhNGZiYzIyYzY", + "commit": { + "author": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-29T08:27:41Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-29T08:27:41Z" + }, + "message": "Fix leak on too-large programs, OSS Fuzz issue 61349\n\nA very large program can cause these leaks:\r\n\r\n ==758838== 7,820 (16 direct, 7,804 indirect) bytes in 2 blocks are definitely lost in loss record 17 of 28\r\n ==758838== at 0x4848A23: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)\r\n ==758838== by 0x125D30: jv_mem_calloc (jv_alloc.c:153)\r\n ==758838== by 0x162ADE: compile (compile.c:1286)\r\n ==758838== by 0x162D4B: compile (compile.c:1304)\r\n ==758838== by 0x163697: block_compile (compile.c:1381)\r\n ==758838== by 0x11B5CA: jq_compile_args (execute.c:1245)\r\n ==758838== by 0x115E20: main (main.c:691)\r\n ==758838==\r\n ==758838== 1,674,694 (103,576 direct, 1,571,118 indirect) bytes in 1,177 blocks are definitely lost in loss record 28 of 28\r\n ==758838== at 0x4843839: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)\r\n ==758838== by 0x125CD0: jv_mem_alloc (jv_alloc.c:141)\r\n ==758838== by 0x162B19: compile (compile.c:1289)\r\n ==758838== by 0x163697: block_compile (compile.c:1381)\r\n ==758838== by 0x11B5CA: jq_compile_args (execute.c:1245)\r\n ==758838== by 0x115E20: main (main.c:691)\r\n\r\nThis commit fixes that.\r\n\r\nFixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=61349", + "tree": { + "sha": "12b2e38fc441fa5776668924dd402c66b98a7f2c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/12b2e38fc441fa5776668924dd402c66b98a7f2c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk7av9CRBK7hj4Ov3rIwAAPh4IAJu++XhcRFUBFmklUzVAzmMg\nTRXnMmR/8n78NSNwOykFtenOFMuQDNr4zsh0WF9zX7yOHJrkn/C+ZzdjCMeTk5sZ\nN/aDrIpp2Gyhycupmrg3R+v43aEdFxI6fhpAgxjIA/WxkXECspyn9Pb720mbQ/HK\nBxg3B2Dyd5Gk9ruViQogUxKDCE4I5JcktYtS/lY7wxEFeJRvMk92MIyFQoDvlJjx\nGeQgIzxMVy413GaRB73fcQGhqBsTtcT2lG4LNJFpls7W9k3qp+TC2jFCs0EmSdpL\nZut2jML2m5b58TPSWGuAuN8KGTs8s90xO2QaXtLjweny4u7CKYLMDslJHxQi2WM=\n=vERD\n-----END PGP SIGNATURE-----\n", + "payload": "tree 12b2e38fc441fa5776668924dd402c66b98a7f2c\nparent 91d72575e43bf48e52e6bd9cac7db8b019ea3151\nauthor Nico Williams 1693297661 -0500\ncommitter GitHub 1693297661 +0200\n\nFix leak on too-large programs, OSS Fuzz issue 61349\n\nA very large program can cause these leaks:\r\n\r\n ==758838== 7,820 (16 direct, 7,804 indirect) bytes in 2 blocks are definitely lost in loss record 17 of 28\r\n ==758838== at 0x4848A23: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)\r\n ==758838== by 0x125D30: jv_mem_calloc (jv_alloc.c:153)\r\n ==758838== by 0x162ADE: compile (compile.c:1286)\r\n ==758838== by 0x162D4B: compile (compile.c:1304)\r\n ==758838== by 0x163697: block_compile (compile.c:1381)\r\n ==758838== by 0x11B5CA: jq_compile_args (execute.c:1245)\r\n ==758838== by 0x115E20: main (main.c:691)\r\n ==758838==\r\n ==758838== 1,674,694 (103,576 direct, 1,571,118 indirect) bytes in 1,177 blocks are definitely lost in loss record 28 of 28\r\n ==758838== at 0x4843839: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)\r\n ==758838== by 0x125CD0: jv_mem_alloc (jv_alloc.c:141)\r\n ==758838== by 0x162B19: compile (compile.c:1289)\r\n ==758838== by 0x163697: block_compile (compile.c:1381)\r\n ==758838== by 0x11B5CA: jq_compile_args (execute.c:1245)\r\n ==758838== by 0x115E20: main (main.c:691)\r\n\r\nThis commit fixes that.\r\n\r\nFixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=61349\r\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "html_url": "https://github.com/jqlang/jq/commit/df95871dd7415627bda6d70ce0569d0a4fbc22c6", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/df95871dd7415627bda6d70ce0569d0a4fbc22c6/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "url": "https://api.github.com/repos/jqlang/jq/commits/91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "html_url": "https://github.com/jqlang/jq/commit/91d72575e43bf48e52e6bd9cac7db8b019ea3151" + } + ] + }, + { + "sha": "91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "node_id": "C_kwDOAE3WVdoAKDkxZDcyNTc1ZTQzYmY0OGU1MmU2YmQ5Y2FjN2RiOGIwMTllYTMxNTE", + "commit": { + "author": { + "name": "github-actions[bot]", + "email": "github-actions[bot]@users.noreply.github.com", + "date": "2023-08-27T17:52:51Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-27T17:53:29Z" + }, + "message": "Update signatures of 1.7rc2", + "tree": { + "sha": "a0baddb60b726d9d5045aa3603112997acd83937", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a0baddb60b726d9d5045aa3603112997acd83937" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "html_url": "https://github.com/jqlang/jq/commit/91d72575e43bf48e52e6bd9cac7db8b019ea3151", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/91d72575e43bf48e52e6bd9cac7db8b019ea3151/comments", + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0e067ef93605493060392f0999be27694146fca4", + "url": "https://api.github.com/repos/jqlang/jq/commits/0e067ef93605493060392f0999be27694146fca4", + "html_url": "https://github.com/jqlang/jq/commit/0e067ef93605493060392f0999be27694146fca4" + } + ] + }, + { + "sha": "0e067ef93605493060392f0999be27694146fca4", + "node_id": "C_kwDOAE3WVdoAKDBlMDY3ZWY5MzYwNTQ5MzA2MDM5MmYwOTk5YmUyNzY5NDE0NmZjYTQ", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T05:04:57Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-27T10:32:12Z" + }, + "message": "Improve handling of non-integer numeric indices (fix #2815)", + "tree": { + "sha": "177d7d71e2e212a95b28a9596dfb01df8d07a4e6", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/177d7d71e2e212a95b28a9596dfb01df8d07a4e6" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/0e067ef93605493060392f0999be27694146fca4", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/0e067ef93605493060392f0999be27694146fca4", + "html_url": "https://github.com/jqlang/jq/commit/0e067ef93605493060392f0999be27694146fca4", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/0e067ef93605493060392f0999be27694146fca4/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "url": "https://api.github.com/repos/jqlang/jq/commits/ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "html_url": "https://github.com/jqlang/jq/commit/ab47880b4c6a6cda55a4c6b93f7990baef990e1e" + } + ] + }, + { + "sha": "ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "node_id": "C_kwDOAE3WVdoAKGFiNDc4ODBiNGM2YTZjZGE1NWE0YzZiOTNmNzk5MGJhZWY5OTBlMWU", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-26T22:30:35Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-27T05:37:54Z" + }, + "message": "Make jq_get_lib_dirs return an empty array if JQ_LIBRARY_PATH is not set\n\nFor the jq_state used by the jq utility, the JQ_LIBRARY_PATH attribute\nwill always be set, but, in general, it is possible that it might not\nbe.\n\nIf it is not set, jq_get_lib_dirs() will return jv_invalid().\n\nThat is not good, because some code in linker.c expects it to always\nreturns an array.\n\nThis patch makes jq_get_lib_dirs() return an empty array if\nJQ_LIBRARY_PATH is not set to prevent problems.\n\nThis issue made OSS fuzz trigger failed assertions every time it tried\nto compile a script that uses \"include\".\n\nFixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=61796", + "tree": { + "sha": "216b3383531d896ef7fd4903150ebbd838382352", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/216b3383531d896ef7fd4903150ebbd838382352" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "html_url": "https://github.com/jqlang/jq/commit/ab47880b4c6a6cda55a4c6b93f7990baef990e1e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/ab47880b4c6a6cda55a4c6b93f7990baef990e1e/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "url": "https://api.github.com/repos/jqlang/jq/commits/6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "html_url": "https://github.com/jqlang/jq/commit/6436f1e0f8687a65471f5fec07e85f64adaa66e9" + } + ] + }, + { + "sha": "6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "node_id": "C_kwDOAE3WVdoAKDY0MzZmMWUwZjg2ODdhNjU0NzFmNWZlYzA3ZTg1ZjY0YWRhYTY2ZTk", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-26T21:30:47Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-26T22:17:29Z" + }, + "message": "Fix memory leak in find_lib for some invalid inputs", + "tree": { + "sha": "e0a91ea0f69b93fc26d28c7c38ddf7e30a345abe", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/e0a91ea0f69b93fc26d28c7c38ddf7e30a345abe" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "html_url": "https://github.com/jqlang/jq/commit/6436f1e0f8687a65471f5fec07e85f64adaa66e9", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/6436f1e0f8687a65471f5fec07e85f64adaa66e9/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "2c3561810d846efbf55de3b2444c78a8c125fc47", + "url": "https://api.github.com/repos/jqlang/jq/commits/2c3561810d846efbf55de3b2444c78a8c125fc47", + "html_url": "https://github.com/jqlang/jq/commit/2c3561810d846efbf55de3b2444c78a8c125fc47" + } + ] + }, + { + "sha": "2c3561810d846efbf55de3b2444c78a8c125fc47", + "node_id": "C_kwDOAE3WVdoAKDJjMzU2MTgxMGQ4NDZlZmJmNTVkZTNiMjQ0NGM3OGE4YzEyNWZjNDc", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-25T00:25:07Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-25T15:13:46Z" + }, + "message": "Check nomem_handler->handler before calling it", + "tree": { + "sha": "5134c4c71be2062476fd805a74d5183110bc684f", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/5134c4c71be2062476fd805a74d5183110bc684f" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/2c3561810d846efbf55de3b2444c78a8c125fc47", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/2c3561810d846efbf55de3b2444c78a8c125fc47", + "html_url": "https://github.com/jqlang/jq/commit/2c3561810d846efbf55de3b2444c78a8c125fc47", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/2c3561810d846efbf55de3b2444c78a8c125fc47/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "70807e2b1b3643019f3283b94d61998b9b35ee0e", + "url": "https://api.github.com/repos/jqlang/jq/commits/70807e2b1b3643019f3283b94d61998b9b35ee0e", + "html_url": "https://github.com/jqlang/jq/commit/70807e2b1b3643019f3283b94d61998b9b35ee0e" + } + ] + }, + { + "sha": "70807e2b1b3643019f3283b94d61998b9b35ee0e", + "node_id": "C_kwDOAE3WVdoAKDcwODA3ZTJiMWIzNjQzMDE5ZjMyODNiOTRkNjE5OThiOWIzNWVlMGU", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-31T23:44:48Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-23T20:59:19Z" + }, + "message": "Include more updates to NEWS.md and AUTHORS for 1.7", + "tree": { + "sha": "799c9dee8f2f9b6db804031fea532a9b684ca633", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/799c9dee8f2f9b6db804031fea532a9b684ca633" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/70807e2b1b3643019f3283b94d61998b9b35ee0e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/70807e2b1b3643019f3283b94d61998b9b35ee0e", + "html_url": "https://github.com/jqlang/jq/commit/70807e2b1b3643019f3283b94d61998b9b35ee0e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/70807e2b1b3643019f3283b94d61998b9b35ee0e/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "080471b2a0b28f7435921789dfed25aed08eff81", + "url": "https://api.github.com/repos/jqlang/jq/commits/080471b2a0b28f7435921789dfed25aed08eff81", + "html_url": "https://github.com/jqlang/jq/commit/080471b2a0b28f7435921789dfed25aed08eff81" + } + ] + }, + { + "sha": "080471b2a0b28f7435921789dfed25aed08eff81", + "node_id": "C_kwDOAE3WVdoAKDA4MDQ3MWIyYTBiMjhmNzQzNTkyMTc4OWRmZWQyNWFlZDA4ZWZmODE", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-21T13:49:50Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-21T14:06:58Z" + }, + "message": "Add src/config_opts.inc to .gitignore", + "tree": { + "sha": "f1900e185be0bbc76b4fe86770932d46631676c7", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/f1900e185be0bbc76b4fe86770932d46631676c7" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/080471b2a0b28f7435921789dfed25aed08eff81", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/080471b2a0b28f7435921789dfed25aed08eff81", + "html_url": "https://github.com/jqlang/jq/commit/080471b2a0b28f7435921789dfed25aed08eff81", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/080471b2a0b28f7435921789dfed25aed08eff81/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "583e4a27188a2db097dd043dd203b9c106bba100", + "url": "https://api.github.com/repos/jqlang/jq/commits/583e4a27188a2db097dd043dd203b9c106bba100", + "html_url": "https://github.com/jqlang/jq/commit/583e4a27188a2db097dd043dd203b9c106bba100" + } + ] + }, + { + "sha": "583e4a27188a2db097dd043dd203b9c106bba100", + "node_id": "C_kwDOAE3WVdoAKDU4M2U0YTI3MTg4YTJkYjA5N2RkMDQzZGQyMDNiOWMxMDZiYmExMDA", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-02T20:52:53Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-19T22:40:08Z" + }, + "message": "Add --config option printing ./configure options used", + "tree": { + "sha": "fba0bc0a43341b57628962036173889fc4d62606", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/fba0bc0a43341b57628962036173889fc4d62606" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/583e4a27188a2db097dd043dd203b9c106bba100", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/583e4a27188a2db097dd043dd203b9c106bba100", + "html_url": "https://github.com/jqlang/jq/commit/583e4a27188a2db097dd043dd203b9c106bba100", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/583e4a27188a2db097dd043dd203b9c106bba100/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "7d643810163a944f8fec5c891b9053c12069b509", + "url": "https://api.github.com/repos/jqlang/jq/commits/7d643810163a944f8fec5c891b9053c12069b509", + "html_url": "https://github.com/jqlang/jq/commit/7d643810163a944f8fec5c891b9053c12069b509" + } + ] + }, + { + "sha": "7d643810163a944f8fec5c891b9053c12069b509", + "node_id": "C_kwDOAE3WVdoAKDdkNjQzODEwMTYzYTk0NGY4ZmVjNWM4OTFiOTA1M2MxMjA2OWI1MDk", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-17T06:56:57Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-17T06:56:57Z" + }, + "message": "Fix overflow on numeric comparison (#2849)\n\nAlthough #2839 fixed the overflow of exponent subtraction,\r\nthere still is possibility of overflow in the `D2U` macro.\r\nThis patch fixes the overflow in the `D2U` macro, and also\r\ntruncates the maximum digits to `DEC_MAX_DIGITS`.", + "tree": { + "sha": "300fcc5dfef165b7f80067412059d4eb6649f80d", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/300fcc5dfef165b7f80067412059d4eb6649f80d" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/7d643810163a944f8fec5c891b9053c12069b509", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk3cS5CRBK7hj4Ov3rIwAAv38IAHadDZIKI2LUs/sNhW29Gele\nrd5ZdPb2l9dLtilOjY7IPs6SujvZdWckbL4nAsy0vmHb6JwOPWtEHwiJFeeN7HgW\nIkPWoQa11fzyJfvgKf6BZcA+yTGcoZlKUJZY8LBUScbNpvpNvO6feDWM6EcO1tnf\nOdPTSpe8awN7n4rhKalAgW6RVD2nuBHsk8XvQN15wkoThcy38rDuiaD1N8lupE8M\nJcHQlybjWELAvrSik47d5N0w1iegzHgd2T/nHGFH5T1PPhm896rv8KnLsU6a+cmm\nA5N+UDGFQJbBnCLIcGF3O33tJ0y1QE7CsSHMyhAKiNzCPnLPRhEQtFDnPQuqizQ=\n=HUz0\n-----END PGP SIGNATURE-----\n", + "payload": "tree 300fcc5dfef165b7f80067412059d4eb6649f80d\nparent 0733fd3d58b941ab9b8a6d623ec7fb9175f41579\nauthor itchyny 1692255417 +0900\ncommitter GitHub 1692255417 +0900\n\nFix overflow on numeric comparison (#2849)\n\nAlthough #2839 fixed the overflow of exponent subtraction,\r\nthere still is possibility of overflow in the `D2U` macro.\r\nThis patch fixes the overflow in the `D2U` macro, and also\r\ntruncates the maximum digits to `DEC_MAX_DIGITS`." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/7d643810163a944f8fec5c891b9053c12069b509", + "html_url": "https://github.com/jqlang/jq/commit/7d643810163a944f8fec5c891b9053c12069b509", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/7d643810163a944f8fec5c891b9053c12069b509/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "url": "https://api.github.com/repos/jqlang/jq/commits/0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "html_url": "https://github.com/jqlang/jq/commit/0733fd3d58b941ab9b8a6d623ec7fb9175f41579" + } + ] + }, + { + "sha": "0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "node_id": "C_kwDOAE3WVdoAKDA3MzNmZDNkNThiOTQxYWI5YjhhNmQ2MjNlYzdmYjkxNzVmNDE1Nzk", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-13T05:43:55Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-16T22:49:44Z" + }, + "message": "Add a regression test for negative indices and fix a pick/1 test", + "tree": { + "sha": "d06c1831536cdb641ee9a022f20aa352a7776c29", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/d06c1831536cdb641ee9a022f20aa352a7776c29" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "html_url": "https://github.com/jqlang/jq/commit/0733fd3d58b941ab9b8a6d623ec7fb9175f41579", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/0733fd3d58b941ab9b8a6d623ec7fb9175f41579/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "url": "https://api.github.com/repos/jqlang/jq/commits/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "html_url": "https://github.com/jqlang/jq/commit/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05" + } + ] + }, + { + "sha": "f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "node_id": "C_kwDOAE3WVdoAKGY4NWM5ZmNiNzhmODlmYTgzM2YyZDVhMmNmMjZiNTQzMThlMDZlMDU", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-13T05:42:41Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-16T22:49:44Z" + }, + "message": "Revert \"Allow .[-1] in path expressions\"\n\nThis reverts commit 086a156ec389de167edc72e8bd1752984b117349.\n\nThis commit leads to negative indexing wraps twice.", + "tree": { + "sha": "84ba4b625390f5801aa1c2b892ff3c2c2844e3ba", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/84ba4b625390f5801aa1c2b892ff3c2c2844e3ba" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "html_url": "https://github.com/jqlang/jq/commit/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f85c9fcb78f89fa833f2d5a2cf26b54318e06e05/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4cf1408e0bbac8fc714b051fe420921905128efd", + "url": "https://api.github.com/repos/jqlang/jq/commits/4cf1408e0bbac8fc714b051fe420921905128efd", + "html_url": "https://github.com/jqlang/jq/commit/4cf1408e0bbac8fc714b051fe420921905128efd" + } + ] + }, + { + "sha": "4cf1408e0bbac8fc714b051fe420921905128efd", + "node_id": "C_kwDOAE3WVdoAKDRjZjE0MDhlMGJiYWM4ZmM3MTRiMDUxZmU0MjA5MjE5MDUxMjhlZmQ", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-13T13:39:54Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-13T13:39:54Z" + }, + "message": "Cast function pointers without prototype before calling them (#2842)\n\nclang complained that this is deprecated in all versions of standard C,\r\nand unsupported in C2x.", + "tree": { + "sha": "06bc1d548831c6f9f9d036c84df092a3e126db77", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/06bc1d548831c6f9f9d036c84df092a3e126db77" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4cf1408e0bbac8fc714b051fe420921905128efd", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk2N0qCRBK7hj4Ov3rIwAATGQIABdk/NU6WabV0MUL72ygiOyl\ndyru72It9PuzasNkZCJH8uedB7irZOCBNiIeYnPJvivhzfkqJdcb/mLDiYpUYoI0\nE45lNj2428kvver47m3iYfDPtMBwtJazPWj2qsSkdXGSMxaP5NXORPxa5AuhOhHC\ndkArlUYtJBLGlybOrptju8Vfu2Jw+VvitTZNF49gpYIwmxsubDQrqlaCkYrzrE/0\nijvzHbWMhzr+muTICrBgyAiFDir2WDJcreJW5X2k0cWSFdj7fW175FVk/pNAqrzf\nVWaqMcY6BGSCX8HbEmCcM9+9rP52/BBw2MSp7z5/iZODojIN0MXrRg0FMW9PKYM=\n=e17S\n-----END PGP SIGNATURE-----\n", + "payload": "tree 06bc1d548831c6f9f9d036c84df092a3e126db77\nparent 3fa10e8cc197390392f5f5f6e0c9e2fcd5590530\nauthor Emanuele Torre 1691933994 +0200\ncommitter GitHub 1691933994 +0900\n\nCast function pointers without prototype before calling them (#2842)\n\nclang complained that this is deprecated in all versions of standard C,\r\nand unsupported in C2x." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4cf1408e0bbac8fc714b051fe420921905128efd", + "html_url": "https://github.com/jqlang/jq/commit/4cf1408e0bbac8fc714b051fe420921905128efd", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4cf1408e0bbac8fc714b051fe420921905128efd/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "url": "https://api.github.com/repos/jqlang/jq/commits/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "html_url": "https://github.com/jqlang/jq/commit/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530" + } + ] + }, + { + "sha": "3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "node_id": "C_kwDOAE3WVdoAKDNmYTEwZThjYzE5NzM5MDM5MmY1ZjVmNmUwYzllMmZjZDU1OTA1MzA", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-13T03:06:16Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-13T12:17:25Z" + }, + "message": "Fix crash on numeric comparison again (ref #2825)\n\nThe decNumber library subtracts the exponents of two numbers,\nwe make sure to limit the number of digits not to make it overflows.\nSince the maximum adjusted exponent is `emax` and the minimum is\n`emin - digits + 1`, we follow `emax - (emin - digits + 1) <= INT32_MAX`.", + "tree": { + "sha": "5147c50e6bda43d4d68e0f3fe5c17d7e748427da", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/5147c50e6bda43d4d68e0f3fe5c17d7e748427da" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "html_url": "https://github.com/jqlang/jq/commit/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/3fa10e8cc197390392f5f5f6e0c9e2fcd5590530/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f86566b2631b777c0d0c9a4572eb21146a14829b", + "url": "https://api.github.com/repos/jqlang/jq/commits/f86566b2631b777c0d0c9a4572eb21146a14829b", + "html_url": "https://github.com/jqlang/jq/commit/f86566b2631b777c0d0c9a4572eb21146a14829b" + } + ] + }, + { + "sha": "f86566b2631b777c0d0c9a4572eb21146a14829b", + "node_id": "C_kwDOAE3WVdoAKGY4NjU2NmIyNjMxYjc3N2MwZDBjOWE0NTcyZWIyMTE0NmExNDgyOWI", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-03T23:13:48Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-13T12:16:02Z" + }, + "message": "Rename jv_type_private.h to jv_private.h, move jvp_number_is_nan there", + "tree": { + "sha": "145f23c0525036ea0077083718bff0eaf949f201", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/145f23c0525036ea0077083718bff0eaf949f201" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f86566b2631b777c0d0c9a4572eb21146a14829b", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f86566b2631b777c0d0c9a4572eb21146a14829b", + "html_url": "https://github.com/jqlang/jq/commit/f86566b2631b777c0d0c9a4572eb21146a14829b", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f86566b2631b777c0d0c9a4572eb21146a14829b/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "url": "https://api.github.com/repos/jqlang/jq/commits/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "html_url": "https://github.com/jqlang/jq/commit/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2" + } + ] + }, + { + "sha": "f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "node_id": "C_kwDOAE3WVdoAKGYzMWMxODBlOGYzOGMwODVjNDM2NmE5MWY5YmZmZmMyZGQ3YzJiYzI", + "commit": { + "author": { + "name": "Alex Wilson", + "email": "gpg@probablyfine.co.uk", + "date": "2023-08-12T11:04:27Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-13T01:46:36Z" + }, + "message": "Update documentation to reflect new `defs` field on `modulemeta`", + "tree": { + "sha": "25f4c65810c0abf284ae7e26b92df29820d2a576", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/25f4c65810c0abf284ae7e26b92df29820d2a576" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "html_url": "https://github.com/jqlang/jq/commit/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f31c180e8f38c085c4366a91f9bfffc2dd7c2bc2/comments", + "author": { + "login": "mrwilson", + "id": 460299, + "node_id": "MDQ6VXNlcjQ2MDI5OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/460299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mrwilson", + "html_url": "https://github.com/mrwilson", + "followers_url": "https://api.github.com/users/mrwilson/followers", + "following_url": "https://api.github.com/users/mrwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/mrwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mrwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mrwilson/subscriptions", + "organizations_url": "https://api.github.com/users/mrwilson/orgs", + "repos_url": "https://api.github.com/users/mrwilson/repos", + "events_url": "https://api.github.com/users/mrwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/mrwilson/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "url": "https://api.github.com/repos/jqlang/jq/commits/65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "html_url": "https://github.com/jqlang/jq/commit/65ed95c93aeaeea96796eb6af5dfe8870eda0992" + } + ] + }, + { + "sha": "65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "node_id": "C_kwDOAE3WVdoAKDY1ZWQ5NWM5M2FlYWVlYTk2Nzk2ZWI2YWY1ZGZlODg3MGVkYTA5OTI", + "commit": { + "author": { + "name": "Alex Wilson", + "email": "gpg@probablyfine.co.uk", + "date": "2023-08-12T11:04:00Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-13T01:46:36Z" + }, + "message": "Expose the names of a module's defined function via `modulemeta`\n\nThis reuses the existing `block_list_funcs` capability and adds an extra field on the `modulemeta` output, called `defs`, containing that list of functions.", + "tree": { + "sha": "5840f220e3763b289e3dccfa6582e8a0c18d8d04", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/5840f220e3763b289e3dccfa6582e8a0c18d8d04" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "html_url": "https://github.com/jqlang/jq/commit/65ed95c93aeaeea96796eb6af5dfe8870eda0992", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/65ed95c93aeaeea96796eb6af5dfe8870eda0992/comments", + "author": { + "login": "mrwilson", + "id": 460299, + "node_id": "MDQ6VXNlcjQ2MDI5OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/460299?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mrwilson", + "html_url": "https://github.com/mrwilson", + "followers_url": "https://api.github.com/users/mrwilson/followers", + "following_url": "https://api.github.com/users/mrwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/mrwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mrwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mrwilson/subscriptions", + "organizations_url": "https://api.github.com/users/mrwilson/orgs", + "repos_url": "https://api.github.com/users/mrwilson/repos", + "events_url": "https://api.github.com/users/mrwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/mrwilson/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "url": "https://api.github.com/repos/jqlang/jq/commits/fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "html_url": "https://github.com/jqlang/jq/commit/fdab39bc7b8d41c1ae410f03a42afc10a9322c99" + } + ] + }, + { + "sha": "fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "node_id": "C_kwDOAE3WVdoAKGZkYWIzOWJjN2I4ZDQxYzFhZTQxMGYwM2E0MmFmYzEwYTkzMjJjOTk", + "commit": { + "author": { + "name": "Mattias Wadman", + "email": "mattias.wadman@gmail.com", + "date": "2023-08-12T18:18:45Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-12T18:18:45Z" + }, + "message": "Build windows 64bit binary using UCRT64 (#2832)\n\n* Build windows 64bit binary using UCRT64\r\n\r\nIs the default and recommended msystem setting. Will produce\r\nbinaries that are compatible with windows 10 and later.\r\n\r\nAlso run tests for 32bit build.\r\n\r\nRelated to #2831\r\n\r\n* Use jq -b in tests/shtest\r\n\r\n* Add Windows strptime\r\n\r\n* Make Windows-optional tests not run on Windows again\r\n\r\n---------\r\n\r\nCo-authored-by: Nicolas Williams ", + "tree": { + "sha": "bbc3acf5253585e348a720b4706bd0427e81e392", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/bbc3acf5253585e348a720b4706bd0427e81e392" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk180FCRBK7hj4Ov3rIwAAdMkIAKgkvGVHq+i5pZIhmOPcOFJM\nE2YdPsWcQ5CF67PJC/qinJx9UV+MA6XzoPtGzaJyJBiWzDXK2OhO/EALtLHZOMeU\na/YodAq3+P/ZSxcBhVOkMQpriJl8IZdd0sfuW8zBIf/XC6+amqzy6NRrfdImyPk6\nNDwSj2hkRTC+3KC9VbMaKqaQcMC2+tfxp4+BLre6CO3FVU0lHhu5xNPBnDhFwVhD\nB03cL5OzsU75cTeWHpypEd057UpbILcNxuyRgyRf4Aovc4P0TQjeNofr3XPpucj0\ncY1IZ8Cn93nHWfYAIGGYX/SC5DWk0HCbwKH5saj3rIOOrP5Rje1P37Mts0trguY=\n=uE99\n-----END PGP SIGNATURE-----\n", + "payload": "tree bbc3acf5253585e348a720b4706bd0427e81e392\nparent 5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc\nauthor Mattias Wadman 1691864325 +0200\ncommitter GitHub 1691864325 +0200\n\nBuild windows 64bit binary using UCRT64 (#2832)\n\n* Build windows 64bit binary using UCRT64\r\n\r\nIs the default and recommended msystem setting. Will produce\r\nbinaries that are compatible with windows 10 and later.\r\n\r\nAlso run tests for 32bit build.\r\n\r\nRelated to #2831\r\n\r\n* Use jq -b in tests/shtest\r\n\r\n* Add Windows strptime\r\n\r\n* Make Windows-optional tests not run on Windows again\r\n\r\n---------\r\n\r\nCo-authored-by: Nicolas Williams " + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "html_url": "https://github.com/jqlang/jq/commit/fdab39bc7b8d41c1ae410f03a42afc10a9322c99", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/fdab39bc7b8d41c1ae410f03a42afc10a9322c99/comments", + "author": { + "login": "wader", + "id": 185566, + "node_id": "MDQ6VXNlcjE4NTU2Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/185566?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wader", + "html_url": "https://github.com/wader", + "followers_url": "https://api.github.com/users/wader/followers", + "following_url": "https://api.github.com/users/wader/following{/other_user}", + "gists_url": "https://api.github.com/users/wader/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wader/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wader/subscriptions", + "organizations_url": "https://api.github.com/users/wader/orgs", + "repos_url": "https://api.github.com/users/wader/repos", + "events_url": "https://api.github.com/users/wader/events{/privacy}", + "received_events_url": "https://api.github.com/users/wader/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "url": "https://api.github.com/repos/jqlang/jq/commits/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "html_url": "https://github.com/jqlang/jq/commit/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc" + } + ] + }, + { + "sha": "5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "node_id": "C_kwDOAE3WVdoAKDVhNTI1NTNhM2JlNmVmM2U0NDkyOGNhYjIwZjk2Y2RhYTNlOGI1ZGM", + "commit": { + "author": { + "name": "Mattias Wadman", + "email": "mattias.wadman@gmail.com", + "date": "2023-08-10T17:13:58Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-10T18:06:03Z" + }, + "message": "Make sure to init key and dbl_key also on win32\n\nHopefully fixes page fault for mingw build\n\nRelated to #2831", + "tree": { + "sha": "c00ad020b914a83031e1195d7d6eaa3f8845beb6", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/c00ad020b914a83031e1195d7d6eaa3f8845beb6" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "html_url": "https://github.com/jqlang/jq/commit/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/5a52553a3be6ef3e44928cab20f96cdaa3e8b5dc/comments", + "author": { + "login": "wader", + "id": 185566, + "node_id": "MDQ6VXNlcjE4NTU2Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/185566?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wader", + "html_url": "https://github.com/wader", + "followers_url": "https://api.github.com/users/wader/followers", + "following_url": "https://api.github.com/users/wader/following{/other_user}", + "gists_url": "https://api.github.com/users/wader/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wader/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wader/subscriptions", + "organizations_url": "https://api.github.com/users/wader/orgs", + "repos_url": "https://api.github.com/users/wader/repos", + "events_url": "https://api.github.com/users/wader/events{/privacy}", + "received_events_url": "https://api.github.com/users/wader/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "url": "https://api.github.com/repos/jqlang/jq/commits/765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "html_url": "https://github.com/jqlang/jq/commit/765a5c77eb919bca04a20c000b8a1df65f8d81eb" + } + ] + }, + { + "sha": "765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "node_id": "C_kwDOAE3WVdoAKDc2NWE1Yzc3ZWI5MTliY2EwNGEyMGMwMDBiOGExZGY2NWY4ZDgxZWI", + "commit": { + "author": { + "name": "Mattias Wadman", + "email": "mattias.wadman@gmail.com", + "date": "2023-08-10T16:53:50Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-10T16:53:50Z" + }, + "message": "Make sure to init dtoa_ctx_key also on win32 (#2834)\n\nFixes page fault for mingw build\r\n\r\nRelated to #2831", + "tree": { + "sha": "36f251aec82c746c1fc40094290bd58de3f6a279", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/36f251aec82c746c1fc40094290bd58de3f6a279" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJk1RYeCRBK7hj4Ov3rIwAAObAIAF4hP/G4HQfAxdt8yGMwXubs\n/K/rzBfLkyoCDLON65toD+76sC9bwmQfmyI0ng+jdlSkvw/7YRdREOdmdOznl6af\nwpHoYsUN89QAmzF4ZOI5krZWJ1TuNntEUgTVCMyv6IysQhci+EC6VCugIn07kwFt\nYR1SpJASQOk6fug7GTUtzSM6ffw3pi3HdX53VR0RlmxSGisSQHdTYZlm4/sdLoDa\n7QZVEb8MbdyvnBVRmDUbS74DOCR18uXmqtcntj9BPVkMpwyF66dh+9N+HLOoyy0R\nwB5ev1HbXCwn4WIA1uDK4/7osS1M4KnVZi7uU99nnG9qh3ISmc6SzlmTH2qHTt0=\n=CVeF\n-----END PGP SIGNATURE-----\n", + "payload": "tree 36f251aec82c746c1fc40094290bd58de3f6a279\nparent d1a6da22054fc249ae4cbe04402709b029101786\nauthor Mattias Wadman 1691686430 +0200\ncommitter GitHub 1691686430 +0200\n\nMake sure to init dtoa_ctx_key also on win32 (#2834)\n\nFixes page fault for mingw build\r\n\r\nRelated to #2831" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "html_url": "https://github.com/jqlang/jq/commit/765a5c77eb919bca04a20c000b8a1df65f8d81eb", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/765a5c77eb919bca04a20c000b8a1df65f8d81eb/comments", + "author": { + "login": "wader", + "id": 185566, + "node_id": "MDQ6VXNlcjE4NTU2Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/185566?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wader", + "html_url": "https://github.com/wader", + "followers_url": "https://api.github.com/users/wader/followers", + "following_url": "https://api.github.com/users/wader/following{/other_user}", + "gists_url": "https://api.github.com/users/wader/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wader/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wader/subscriptions", + "organizations_url": "https://api.github.com/users/wader/orgs", + "repos_url": "https://api.github.com/users/wader/repos", + "events_url": "https://api.github.com/users/wader/events{/privacy}", + "received_events_url": "https://api.github.com/users/wader/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d1a6da22054fc249ae4cbe04402709b029101786", + "url": "https://api.github.com/repos/jqlang/jq/commits/d1a6da22054fc249ae4cbe04402709b029101786", + "html_url": "https://github.com/jqlang/jq/commit/d1a6da22054fc249ae4cbe04402709b029101786" + } + ] + }, + { + "sha": "d1a6da22054fc249ae4cbe04402709b029101786", + "node_id": "C_kwDOAE3WVdoAKGQxYTZkYTIyMDU0ZmMyNDlhZTRjYmUwNDQwMjcwOWIwMjkxMDE3ODY", + "commit": { + "author": { + "name": "Naïm Favier", + "email": "n@monade.li", + "date": "2023-08-09T15:51:22Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-09T16:20:04Z" + }, + "message": "docs: fix delpaths description", + "tree": { + "sha": "a274e39cb67d66a17e60ee2e4a2220c72f3eda66", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a274e39cb67d66a17e60ee2e4a2220c72f3eda66" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/d1a6da22054fc249ae4cbe04402709b029101786", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/d1a6da22054fc249ae4cbe04402709b029101786", + "html_url": "https://github.com/jqlang/jq/commit/d1a6da22054fc249ae4cbe04402709b029101786", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/d1a6da22054fc249ae4cbe04402709b029101786/comments", + "author": { + "login": "ncfavier", + "id": 4323933, + "node_id": "MDQ6VXNlcjQzMjM5MzM=", + "avatar_url": "https://avatars.githubusercontent.com/u/4323933?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ncfavier", + "html_url": "https://github.com/ncfavier", + "followers_url": "https://api.github.com/users/ncfavier/followers", + "following_url": "https://api.github.com/users/ncfavier/following{/other_user}", + "gists_url": "https://api.github.com/users/ncfavier/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ncfavier/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ncfavier/subscriptions", + "organizations_url": "https://api.github.com/users/ncfavier/orgs", + "repos_url": "https://api.github.com/users/ncfavier/repos", + "events_url": "https://api.github.com/users/ncfavier/events{/privacy}", + "received_events_url": "https://api.github.com/users/ncfavier/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a6920601299913ec5f9c9a8883517ec10dd71ffe", + "url": "https://api.github.com/repos/jqlang/jq/commits/a6920601299913ec5f9c9a8883517ec10dd71ffe", + "html_url": "https://github.com/jqlang/jq/commit/a6920601299913ec5f9c9a8883517ec10dd71ffe" + } + ] + }, + { + "sha": "a6920601299913ec5f9c9a8883517ec10dd71ffe", + "node_id": "C_kwDOAE3WVdoAKGE2OTIwNjAxMjk5OTEzZWM1ZjljOWE4ODgzNTE3ZWMxMGRkNzFmZmU", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-05T10:18:07Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-06T04:21:12Z" + }, + "message": "Change the default color of null to Bright Black", + "tree": { + "sha": "abe1dbc2eb65473186a4962dd4ff156562c2a5e3", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/abe1dbc2eb65473186a4962dd4ff156562c2a5e3" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/a6920601299913ec5f9c9a8883517ec10dd71ffe", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/a6920601299913ec5f9c9a8883517ec10dd71ffe", + "html_url": "https://github.com/jqlang/jq/commit/a6920601299913ec5f9c9a8883517ec10dd71ffe", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/a6920601299913ec5f9c9a8883517ec10dd71ffe/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f94a9d463ffb3422861a0da140470dbf5ce76632", + "url": "https://api.github.com/repos/jqlang/jq/commits/f94a9d463ffb3422861a0da140470dbf5ce76632", + "html_url": "https://github.com/jqlang/jq/commit/f94a9d463ffb3422861a0da140470dbf5ce76632" + } + ] + }, + { + "sha": "f94a9d463ffb3422861a0da140470dbf5ce76632", + "node_id": "C_kwDOAE3WVdoAKGY5NGE5ZDQ2M2ZmYjM0MjI4NjFhMGRhMTQwNDcwZGJmNWNlNzY2MzI", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-04T20:52:27Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T22:38:52Z" + }, + "message": "Let error(null) throw null\n\nThis patch removes the weird behaviour of jv_invalid_with_msg(jv_null())\nthat returns jv_invalid() (i.e. empty), instead of a boxed jv_null().\n\nThe previous behaviour of null|error was obviously unintentional, and\nallowing is jv_invalid_with_msg() to return values on which you can't\ncall jv_invalid_get_msg() is only error prone.", + "tree": { + "sha": "b63b841402177b23758f6ab54a835d34ae716156", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/b63b841402177b23758f6ab54a835d34ae716156" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f94a9d463ffb3422861a0da140470dbf5ce76632", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f94a9d463ffb3422861a0da140470dbf5ce76632", + "html_url": "https://github.com/jqlang/jq/commit/f94a9d463ffb3422861a0da140470dbf5ce76632", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f94a9d463ffb3422861a0da140470dbf5ce76632/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "url": "https://api.github.com/repos/jqlang/jq/commits/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "html_url": "https://github.com/jqlang/jq/commit/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef" + } + ] + }, + { + "sha": "3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "node_id": "C_kwDOAE3WVdoAKDNiNmU3ZGRkNzJkNjA4MDk1OWE0NGJkY2NhMDY4YzNhMjAwZWIyZWY", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-03T22:12:48Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T16:47:34Z" + }, + "message": "Constant fold all kinds of constants\n\nThis patch exports all the binary operator builtins functions from\nbuiltin.c and uses them for constant folding in the parser, allowing\nconstant folding to work will all kinds and combinations of constants.\n\nNow string*number, $ARGS+$ARGS, string/string, etc will also be\nconstant folded and the implementation of constant folded operators and\nruntime operators will be the same.\n\nAnd thanks to the new ERRORK bytecode operation, errors are constant\nfolded too! (e.g. 1 / 0 [] * {} etc)", + "tree": { + "sha": "951edc6c11af2d4a59edb1bb0770b9bf8b4a6968", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/951edc6c11af2d4a59edb1bb0770b9bf8b4a6968" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "html_url": "https://github.com/jqlang/jq/commit/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/3b6e7ddd72d6080959a44bdcca068c3a200eb2ef/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5fc5453409b858e4c6f68507f4147cf4a275f82b", + "url": "https://api.github.com/repos/jqlang/jq/commits/5fc5453409b858e4c6f68507f4147cf4a275f82b", + "html_url": "https://github.com/jqlang/jq/commit/5fc5453409b858e4c6f68507f4147cf4a275f82b" + } + ] + }, + { + "sha": "5fc5453409b858e4c6f68507f4147cf4a275f82b", + "node_id": "C_kwDOAE3WVdoAKDVmYzU0NTM0MDliODU4ZTRjNmY2ODUwN2Y0MTQ3Y2Y0YTI3NWY4MmI", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-04T00:50:05Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T16:47:34Z" + }, + "message": "Add ERRORK opcode to trigger constant errors", + "tree": { + "sha": "514605dbcf667579c987176e967be40a6fdea0c7", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/514605dbcf667579c987176e967be40a6fdea0c7" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/5fc5453409b858e4c6f68507f4147cf4a275f82b", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/5fc5453409b858e4c6f68507f4147cf4a275f82b", + "html_url": "https://github.com/jqlang/jq/commit/5fc5453409b858e4c6f68507f4147cf4a275f82b", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/5fc5453409b858e4c6f68507f4147cf4a275f82b/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "71941a0d4706fecf641df249c27ec73771bc149c", + "url": "https://api.github.com/repos/jqlang/jq/commits/71941a0d4706fecf641df249c27ec73771bc149c", + "html_url": "https://github.com/jqlang/jq/commit/71941a0d4706fecf641df249c27ec73771bc149c" + } + ] + }, + { + "sha": "71941a0d4706fecf641df249c27ec73771bc149c", + "node_id": "C_kwDOAE3WVdoAKDcxOTQxYTBkNDcwNmZlY2Y2NDFkZjI0OWMyN2VjNzM3NzFiYzE0OWM", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T04:24:06Z" + }, + "committer": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-04T04:24:12Z" + }, + "message": "Clarify the `//` operator (fix typo)", + "tree": { + "sha": "c7d01a748482d24210d74f524ea47f639fc9a342", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/c7d01a748482d24210d74f524ea47f639fc9a342" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/71941a0d4706fecf641df249c27ec73771bc149c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/71941a0d4706fecf641df249c27ec73771bc149c", + "html_url": "https://github.com/jqlang/jq/commit/71941a0d4706fecf641df249c27ec73771bc149c", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/71941a0d4706fecf641df249c27ec73771bc149c/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "url": "https://api.github.com/repos/jqlang/jq/commits/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "html_url": "https://github.com/jqlang/jq/commit/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4" + } + ] + }, + { + "sha": "dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "node_id": "C_kwDOAE3WVdoAKGRjYWY3MDFlZjY2ZGQwYTljMjdkZjQ5OTU5ZTRlYWU5YzQ1YzczYzQ", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-03T23:21:25Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-03T23:21:25Z" + }, + "message": "Simplify String rule in parser (#2805)\n\nUse a StringStart component that is either FORMAT QQSTRING_START or\r\nQQSTRING_START instead of having two similar rules for String.\r\n\r\nThis is simpler and avoids having to use an untyped mid-rule action\r\ncomponent to copy FORMAT at the top of the stack before QQString, and\r\nhaving to use jv_free($3) instead of jv_free($1) just to make\r\nbison not complain about the \"unused\" mid-rule component.", + "tree": { + "sha": "6b9a6b8c29730827b23da6e95cded66acc0b150d", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6b9a6b8c29730827b23da6e95cded66acc0b150d" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkzDZ1CRBK7hj4Ov3rIwAAEyUIACzEKPbYZQtYEZgnS2oOOUXa\nnw9QcYvSfUXjeNc2m3GnxdOpq5Yze0pLdumW7h2TalYol2uxXuFVVuMSuphbj7cl\nhQg81YFDTyPZbwAVYR3V0VB7IL/8FWZ452RTM3SEKNPK96vfVb1Hsa85gjvjHNfx\nMbkOz8m+wIUgLx9YLmVFtVE9E92tp+Qk8zeyryOmozbfIKmal6GCYq2L8t007z0r\nnW3HIbFpKBkU6HM8PYW5cpuSRdBeNbMZ3Ol/ZfkKY14I/NB4vheRpgLD38nO6xGF\ngw/p1PxzAeIJduUPrVdzh7GoB+GeQO1GWmUdcmuxu9dHJQgsdmvazb/Kw6DZDQQ=\n=DEfZ\n-----END PGP SIGNATURE-----\n", + "payload": "tree 6b9a6b8c29730827b23da6e95cded66acc0b150d\nparent d8327a90b86e0e066f2e04e9d5251a34ea4dea04\nauthor Emanuele Torre 1691104885 +0200\ncommitter GitHub 1691104885 +0900\n\nSimplify String rule in parser (#2805)\n\nUse a StringStart component that is either FORMAT QQSTRING_START or\r\nQQSTRING_START instead of having two similar rules for String.\r\n\r\nThis is simpler and avoids having to use an untyped mid-rule action\r\ncomponent to copy FORMAT at the top of the stack before QQString, and\r\nhaving to use jv_free($3) instead of jv_free($1) just to make\r\nbison not complain about the \"unused\" mid-rule component." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "html_url": "https://github.com/jqlang/jq/commit/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/dcaf701ef66dd0a9c27df49959e4eae9c45c73c4/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "url": "https://api.github.com/repos/jqlang/jq/commits/d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "html_url": "https://github.com/jqlang/jq/commit/d8327a90b86e0e066f2e04e9d5251a34ea4dea04" + } + ] + }, + { + "sha": "d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "node_id": "C_kwDOAE3WVdoAKGQ4MzI3YTkwYjg2ZTBlMDY2ZjJlMDRlOWQ1MjUxYTM0ZWE0ZGVhMDQ", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-30T23:09:45Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-03T19:41:53Z" + }, + "message": "Add a bit more text about generators", + "tree": { + "sha": "c22c82c3e688870cb1ee32e95b1d2a77e4ea8c96", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/c22c82c3e688870cb1ee32e95b1d2a77e4ea8c96" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "html_url": "https://github.com/jqlang/jq/commit/d8327a90b86e0e066f2e04e9d5251a34ea4dea04", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/d8327a90b86e0e066f2e04e9d5251a34ea4dea04/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ddef804945e0a49162e11e155a9b32cf840fe90e", + "url": "https://api.github.com/repos/jqlang/jq/commits/ddef804945e0a49162e11e155a9b32cf840fe90e", + "html_url": "https://github.com/jqlang/jq/commit/ddef804945e0a49162e11e155a9b32cf840fe90e" + } + ] + }, + { + "sha": "ddef804945e0a49162e11e155a9b32cf840fe90e", + "node_id": "C_kwDOAE3WVdoAKGRkZWY4MDQ5NDVlMGE0OTE2MmUxMWUxNTVhOWIzMmNmODQwZmU5MGU", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-30T23:09:18Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-03T19:41:53Z" + }, + "message": "Clarify the `//` operator (close #2189)", + "tree": { + "sha": "55bc07de8a417bdca3cb1e75669bae7a8e59e871", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/55bc07de8a417bdca3cb1e75669bae7a8e59e871" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/ddef804945e0a49162e11e155a9b32cf840fe90e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/ddef804945e0a49162e11e155a9b32cf840fe90e", + "html_url": "https://github.com/jqlang/jq/commit/ddef804945e0a49162e11e155a9b32cf840fe90e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/ddef804945e0a49162e11e155a9b32cf840fe90e/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "949d38e6dc7330712b50697d7fe833eec85dede1", + "url": "https://api.github.com/repos/jqlang/jq/commits/949d38e6dc7330712b50697d7fe833eec85dede1", + "html_url": "https://github.com/jqlang/jq/commit/949d38e6dc7330712b50697d7fe833eec85dede1" + } + ] + }, + { + "sha": "949d38e6dc7330712b50697d7fe833eec85dede1", + "node_id": "C_kwDOAE3WVdoAKDk0OWQzOGU2ZGM3MzMwNzEyYjUwNjk3ZDdmZTgzM2VlYzg1ZGVkZTE", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-03T14:19:52Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-03T14:19:52Z" + }, + "message": "Fix crash on numeric comparison (ref #2804) (#2818)", + "tree": { + "sha": "1188cf0735c4501d074e3e0a6013624f1a030530", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/1188cf0735c4501d074e3e0a6013624f1a030530" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/949d38e6dc7330712b50697d7fe833eec85dede1", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJky7eICRBK7hj4Ov3rIwAAsI8IALKuXsLXBEGKjonCqMjiRthk\n4W5F0LpRTIn7QOpjPfPJUZR6yfY/Ig4KaMcjtlO2yI3JXIJD6eVhR88kZ0DoshTD\ncv3rWTaC1MK77MjAuCqogk0eF0Xc2MHcRFZ7gVuWRm03R+1+29cvjpfpq8ISAJXm\nbHuWhDLzw1wJ5rlsKxore71diX8XWIq488UeAX9bchCxv/XC9mluTCHJ/pVQCRl3\nqdimQDhMUpnKka94BdjbVmtKedQ4zDuKH18DjnIa/IsKOSgnPkg3oOrDPqHWq2kY\nRRgfivivWBYJCJKRMV0DBP52RlPMh9G/bkc+nenHZsxlaESVc0Oxi/HUX1KOJGw=\n=57zz\n-----END PGP SIGNATURE-----\n", + "payload": "tree 1188cf0735c4501d074e3e0a6013624f1a030530\nparent 53a62cf2b06ea58973a7880096d959bfc42677d6\nauthor itchyny 1691072392 +0900\ncommitter GitHub 1691072392 +0900\n\nFix crash on numeric comparison (ref #2804) (#2818)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/949d38e6dc7330712b50697d7fe833eec85dede1", + "html_url": "https://github.com/jqlang/jq/commit/949d38e6dc7330712b50697d7fe833eec85dede1", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/949d38e6dc7330712b50697d7fe833eec85dede1/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "53a62cf2b06ea58973a7880096d959bfc42677d6", + "url": "https://api.github.com/repos/jqlang/jq/commits/53a62cf2b06ea58973a7880096d959bfc42677d6", + "html_url": "https://github.com/jqlang/jq/commit/53a62cf2b06ea58973a7880096d959bfc42677d6" + } + ] + }, + { + "sha": "53a62cf2b06ea58973a7880096d959bfc42677d6", + "node_id": "C_kwDOAE3WVdoAKDUzYTYyY2YyYjA2ZWE1ODk3M2E3ODgwMDk2ZDk1OWJmYzQyNjc3ZDY", + "commit": { + "author": { + "name": "Owen Ou", + "email": "169064+owenthereal@users.noreply.github.com", + "date": "2023-08-03T13:27:09Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-03T13:27:09Z" + }, + "message": "Improve README to be more structural and more readable (#2814)", + "tree": { + "sha": "3e416ee944cdcb4a76a9d30715b9d1ae2a3488c7", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/3e416ee944cdcb4a76a9d30715b9d1ae2a3488c7" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/53a62cf2b06ea58973a7880096d959bfc42677d6", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJky6stCRBK7hj4Ov3rIwAAya8IAGDEGuo13W6I2jbt24nVzdLV\npLJiuT6nn2b0EkQJfQV7orldaCpRESJve29oF78/XT7Oa7iE+xQob9kzstOyyFSL\nSrn8VkHk8XIv8DNLgGg1LXUkf/oDSFlMYqTWmNsPWjlZDvUxZTkHFr0JXFAxfeJl\nbUrYw6ezZmqvda4rbNalw7Oqsf/+yE6fpEsLnmPE7AWR/vLVb3wU6xTwKNnQneyO\ntaZs2bzvS1Sk4FHyOO2skjMKhyG/dq3+TMohXVv+pysDK2aGLpVfdi2X9N5d9lEG\nCP8u/ofBmHGwaY6TEtjTpnzc+DNNNhGjUSCOc554vc8lqNR1qUuiOZD6rCI5rTM=\n=JpsW\n-----END PGP SIGNATURE-----\n", + "payload": "tree 3e416ee944cdcb4a76a9d30715b9d1ae2a3488c7\nparent ff4bf68b29a4bf75387bc1918e49937758509e78\nauthor Owen Ou <169064+owenthereal@users.noreply.github.com> 1691069229 -0700\ncommitter GitHub 1691069229 +0900\n\nImprove README to be more structural and more readable (#2814)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/53a62cf2b06ea58973a7880096d959bfc42677d6", + "html_url": "https://github.com/jqlang/jq/commit/53a62cf2b06ea58973a7880096d959bfc42677d6", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/53a62cf2b06ea58973a7880096d959bfc42677d6/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ff4bf68b29a4bf75387bc1918e49937758509e78", + "url": "https://api.github.com/repos/jqlang/jq/commits/ff4bf68b29a4bf75387bc1918e49937758509e78", + "html_url": "https://github.com/jqlang/jq/commit/ff4bf68b29a4bf75387bc1918e49937758509e78" + } + ] + }, + { + "sha": "ff4bf68b29a4bf75387bc1918e49937758509e78", + "node_id": "C_kwDOAE3WVdoAKGZmNGJmNjhiMjlhNGJmNzUzODdiYzE5MThlNDk5Mzc3NTg1MDllNzg", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T22:30:35Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-02T17:19:19Z" + }, + "message": "Enable stack protection (CI release executables)", + "tree": { + "sha": "a085a715dbdfbe1181857f7aa3f7bf3aaf596227", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a085a715dbdfbe1181857f7aa3f7bf3aaf596227" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/ff4bf68b29a4bf75387bc1918e49937758509e78", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/ff4bf68b29a4bf75387bc1918e49937758509e78", + "html_url": "https://github.com/jqlang/jq/commit/ff4bf68b29a4bf75387bc1918e49937758509e78", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/ff4bf68b29a4bf75387bc1918e49937758509e78/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "fd0d475694bdaf5261340aff9a6a4437b04124dc", + "url": "https://api.github.com/repos/jqlang/jq/commits/fd0d475694bdaf5261340aff9a6a4437b04124dc", + "html_url": "https://github.com/jqlang/jq/commit/fd0d475694bdaf5261340aff9a6a4437b04124dc" + } + ] + }, + { + "sha": "fd0d475694bdaf5261340aff9a6a4437b04124dc", + "node_id": "C_kwDOAE3WVdoAKGZkMGQ0NzU2OTRiZGFmNTI2MTM0MGFmZjlhNmE0NDM3YjA0MTI0ZGM", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-02T13:33:09Z" + }, + "committer": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-02T13:33:09Z" + }, + "message": "Fix a test case added in #2790", + "tree": { + "sha": "67735c55391318b73c8f2e6eef7de53c9303841c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/67735c55391318b73c8f2e6eef7de53c9303841c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/fd0d475694bdaf5261340aff9a6a4437b04124dc", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/fd0d475694bdaf5261340aff9a6a4437b04124dc", + "html_url": "https://github.com/jqlang/jq/commit/fd0d475694bdaf5261340aff9a6a4437b04124dc", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/fd0d475694bdaf5261340aff9a6a4437b04124dc/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "680baeffeb7983e7570b5e68db07fe47f94db8c7", + "url": "https://api.github.com/repos/jqlang/jq/commits/680baeffeb7983e7570b5e68db07fe47f94db8c7", + "html_url": "https://github.com/jqlang/jq/commit/680baeffeb7983e7570b5e68db07fe47f94db8c7" + } + ] + }, + { + "sha": "680baeffeb7983e7570b5e68db07fe47f94db8c7", + "node_id": "C_kwDOAE3WVdoAKDY4MGJhZWZmZWI3OTgzZTc1NzBiNWU2OGRiMDdmZTQ3Zjk0ZGI4Yzc", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-08-01T00:06:12Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-02T05:32:32Z" + }, + "message": "Fix rounding small (but not too small) numbers to zero on calculation\n\nCo-authored-by: Leonid S. Usov ", + "tree": { + "sha": "e560115131c384d1b8b74f32a2abd322a46585bd", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/e560115131c384d1b8b74f32a2abd322a46585bd" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/680baeffeb7983e7570b5e68db07fe47f94db8c7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/680baeffeb7983e7570b5e68db07fe47f94db8c7", + "html_url": "https://github.com/jqlang/jq/commit/680baeffeb7983e7570b5e68db07fe47f94db8c7", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/680baeffeb7983e7570b5e68db07fe47f94db8c7/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "27a4d5757e42d9653585eeddda78e8d313bad194", + "url": "https://api.github.com/repos/jqlang/jq/commits/27a4d5757e42d9653585eeddda78e8d313bad194", + "html_url": "https://github.com/jqlang/jq/commit/27a4d5757e42d9653585eeddda78e8d313bad194" + } + ] + }, + { + "sha": "27a4d5757e42d9653585eeddda78e8d313bad194", + "node_id": "C_kwDOAE3WVdoAKDI3YTRkNTc1N2U0MmQ5NjUzNTg1ZWVkZGRhNzhlOGQzMTNiYWQxOTQ", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-29T18:44:14Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-02T04:06:01Z" + }, + "message": "Require a main program (fix #2785)", + "tree": { + "sha": "6ab7361f58b7316d1546b1d344e6f035015b2afb", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6ab7361f58b7316d1546b1d344e6f035015b2afb" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/27a4d5757e42d9653585eeddda78e8d313bad194", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/27a4d5757e42d9653585eeddda78e8d313bad194", + "html_url": "https://github.com/jqlang/jq/commit/27a4d5757e42d9653585eeddda78e8d313bad194", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/27a4d5757e42d9653585eeddda78e8d313bad194/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "044b38595cc2d6670fed510ecba9df87f6b39e1b", + "url": "https://api.github.com/repos/jqlang/jq/commits/044b38595cc2d6670fed510ecba9df87f6b39e1b", + "html_url": "https://github.com/jqlang/jq/commit/044b38595cc2d6670fed510ecba9df87f6b39e1b" + } + ] + }, + { + "sha": "044b38595cc2d6670fed510ecba9df87f6b39e1b", + "node_id": "C_kwDOAE3WVdoAKDA0NGIzODU5NWNjMmQ2NjcwZmVkNTEwZWNiYTlkZjg3ZjZiMzllMWI", + "commit": { + "author": { + "name": "pkoppstein", + "email": "pkoppstein@gmail.com", + "date": "2023-08-01T23:38:27Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-01T23:38:27Z" + }, + "message": "NEWS.md - sub and gsub (#2809)", + "tree": { + "sha": "cd92f2151c07c2571cbbb14748b0cb6636be0581", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/cd92f2151c07c2571cbbb14748b0cb6636be0581" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/044b38595cc2d6670fed510ecba9df87f6b39e1b", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkyZdzCRBK7hj4Ov3rIwAASCYIAC+ZhrLwwrq3yujdfcImRkz3\nUoMO/fsG1V826JREkMxFvLJF5Ej5HVE1Ukt9YAy5EOYiA5q/qOdYluNMGAhy1Iqc\nk+s6l8iwsLpsxz/KTe5I+mgUbcH0gpCmS6eYoLsRS/X7u7wmpx1HWMk24R6k4o/T\nT3Zl+4JDGHI/WK8svQ2YFQZ9m+0F6AWWQFSiWRZ7TUUfT2b95m9hDqPbguGhMjMh\nmmBl+u7xz5E8aYjZk+A54aEeJ65q/jo0uGA3Ur6SfjeMUBJdIQ4FagHH5d1pUiTa\nWo7632uD9Qm83losqQGI2NLmatNS9r8XHvpFR4X2z50WZU9tHVt50WMRn1LBeK4=\n=SqkJ\n-----END PGP SIGNATURE-----\n", + "payload": "tree cd92f2151c07c2571cbbb14748b0cb6636be0581\nparent 161ab0402b0ea1f694a47946df4ca9083183f32e\nauthor pkoppstein 1690933107 -0400\ncommitter GitHub 1690933107 +0900\n\nNEWS.md - sub and gsub (#2809)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/044b38595cc2d6670fed510ecba9df87f6b39e1b", + "html_url": "https://github.com/jqlang/jq/commit/044b38595cc2d6670fed510ecba9df87f6b39e1b", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/044b38595cc2d6670fed510ecba9df87f6b39e1b/comments", + "author": { + "login": "pkoppstein", + "id": 172847, + "node_id": "MDQ6VXNlcjE3Mjg0Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/172847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkoppstein", + "html_url": "https://github.com/pkoppstein", + "followers_url": "https://api.github.com/users/pkoppstein/followers", + "following_url": "https://api.github.com/users/pkoppstein/following{/other_user}", + "gists_url": "https://api.github.com/users/pkoppstein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkoppstein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkoppstein/subscriptions", + "organizations_url": "https://api.github.com/users/pkoppstein/orgs", + "repos_url": "https://api.github.com/users/pkoppstein/repos", + "events_url": "https://api.github.com/users/pkoppstein/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkoppstein/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "161ab0402b0ea1f694a47946df4ca9083183f32e", + "url": "https://api.github.com/repos/jqlang/jq/commits/161ab0402b0ea1f694a47946df4ca9083183f32e", + "html_url": "https://github.com/jqlang/jq/commit/161ab0402b0ea1f694a47946df4ca9083183f32e" + } + ] + }, + { + "sha": "161ab0402b0ea1f694a47946df4ca9083183f32e", + "node_id": "C_kwDOAE3WVdoAKDE2MWFiMDQwMmIwZWExZjY5NGE0Nzk0NmRmNGNhOTA4MzE4M2YzMmU", + "commit": { + "author": { + "name": "Owen Ou", + "email": "169064+owenthereal@users.noreply.github.com", + "date": "2023-08-01T14:32:52Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-08-01T14:32:52Z" + }, + "message": "Fix typo in CI env vars for Linux build (#2810)\n\nFor some reason, the env vars are set correctly without refering the variable in `matrix` case-sensitvely:\r\n\r\n```\r\n2023-08-01T05:05:58.4626090Z env:\r\n2023-08-01T05:05:58.4626367Z AR: arm-linux-gnueabihf-ar\r\n2023-08-01T05:05:58.4626690Z CHOST: arm-linux-gnueabihf\r\n2023-08-01T05:05:58.4626961Z CC: arm-linux-gnueabihf-gcc\r\n2023-08-01T05:05:58.4627332Z CPP: arm-linux-gnueabihf-cpp\r\n2023-08-01T05:05:58.4627662Z CXX: arm-linux-gnueabihf-g++\r\n```\r\n\r\nFor clarify, we update them to match the definitions. Besides, `CXX` is\r\nnot needed and removed.", + "tree": { + "sha": "ca4c74940607ca719e7967ea94d3224960ed5b78", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/ca4c74940607ca719e7967ea94d3224960ed5b78" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/161ab0402b0ea1f694a47946df4ca9083183f32e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkyReUCRBK7hj4Ov3rIwAAa2cIALHmt5BfYyyBRdOpvXNA1rmK\nBwpOHuaz6MvwgYYZXWTQLN8koULqs8RFL9wBEdWc7u+WL8ojLGsO15PVouCxWwoY\nQiQqOWWMiJP3TkhFJvFMiNfpQucg2Fr5ruaMa4zOXhn8F5WEIPEzxmbP2VlzCMA0\nYzzJWtqhyxJGiRgyVIuWoGZ+nHO7TOnrib+6RjdBf4RZn5zCT2Oh4h2OVGcyAEm2\noFPiRc8DP0FawDxT20yZ+rzXHPRhnyrIAUJr5QuFhnCLkaE5vLgTpPuABnZdxL01\na5OiJcdxL+67jCsSwW+vcqZEWAOnqZAIcLYnxGsy48g6fgtlRCAACZxX1kxOrno=\n=NutM\n-----END PGP SIGNATURE-----\n", + "payload": "tree ca4c74940607ca719e7967ea94d3224960ed5b78\nparent 29698118c51d2f04ccdacb3518b0c86551970a7a\nauthor Owen Ou <169064+owenthereal@users.noreply.github.com> 1690900372 -0700\ncommitter GitHub 1690900372 -0700\n\nFix typo in CI env vars for Linux build (#2810)\n\nFor some reason, the env vars are set correctly without refering the variable in `matrix` case-sensitvely:\r\n\r\n```\r\n2023-08-01T05:05:58.4626090Z env:\r\n2023-08-01T05:05:58.4626367Z AR: arm-linux-gnueabihf-ar\r\n2023-08-01T05:05:58.4626690Z CHOST: arm-linux-gnueabihf\r\n2023-08-01T05:05:58.4626961Z CC: arm-linux-gnueabihf-gcc\r\n2023-08-01T05:05:58.4627332Z CPP: arm-linux-gnueabihf-cpp\r\n2023-08-01T05:05:58.4627662Z CXX: arm-linux-gnueabihf-g++\r\n```\r\n\r\nFor clarify, we update them to match the definitions. Besides, `CXX` is\r\nnot needed and removed." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/161ab0402b0ea1f694a47946df4ca9083183f32e", + "html_url": "https://github.com/jqlang/jq/commit/161ab0402b0ea1f694a47946df4ca9083183f32e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/161ab0402b0ea1f694a47946df4ca9083183f32e/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "29698118c51d2f04ccdacb3518b0c86551970a7a", + "url": "https://api.github.com/repos/jqlang/jq/commits/29698118c51d2f04ccdacb3518b0c86551970a7a", + "html_url": "https://github.com/jqlang/jq/commit/29698118c51d2f04ccdacb3518b0c86551970a7a" + } + ] + }, + { + "sha": "29698118c51d2f04ccdacb3518b0c86551970a7a", + "node_id": "C_kwDOAE3WVdoAKDI5Njk4MTE4YzUxZDJmMDRjY2RhY2IzNTE4YjBjODY1NTE5NzBhN2E", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-01T04:10:41Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-01T04:59:09Z" + }, + "message": "Update download page with new release key", + "tree": { + "sha": "b982054971ecadbb35efad0a42229f2cbe56e7a9", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/b982054971ecadbb35efad0a42229f2cbe56e7a9" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/29698118c51d2f04ccdacb3518b0c86551970a7a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/29698118c51d2f04ccdacb3518b0c86551970a7a", + "html_url": "https://github.com/jqlang/jq/commit/29698118c51d2f04ccdacb3518b0c86551970a7a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/29698118c51d2f04ccdacb3518b0c86551970a7a/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "url": "https://api.github.com/repos/jqlang/jq/commits/96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "html_url": "https://github.com/jqlang/jq/commit/96263f2e4b490714a069ac5b54ccd3ca52067a1a" + } + ] + }, + { + "sha": "96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "node_id": "C_kwDOAE3WVdoAKDk2MjYzZjJlNGI0OTA3MTRhMDY5YWM1YjU0Y2NkM2NhNTIwNjdhMWE", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-08-01T02:56:58Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-01T04:16:02Z" + }, + "message": "Don't unnecessarily ignore missing-field-initializers warnings", + "tree": { + "sha": "3ee9328d7d4f2864af7ec5e8a24c24679224f832", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/3ee9328d7d4f2864af7ec5e8a24c24679224f832" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "html_url": "https://github.com/jqlang/jq/commit/96263f2e4b490714a069ac5b54ccd3ca52067a1a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/96263f2e4b490714a069ac5b54ccd3ca52067a1a/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "url": "https://api.github.com/repos/jqlang/jq/commits/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "html_url": "https://github.com/jqlang/jq/commit/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86" + } + ] + }, + { + "sha": "90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "node_id": "C_kwDOAE3WVdoAKDkwYTZiMmQ5ZTZiODhiMmVjOWJlMzAxZDgzMmY1YzAyZTEzMTFkODY", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-01T01:04:32Z" + }, + "committer": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-08-01T01:04:41Z" + }, + "message": "Re-generate src/parser.[ch]", + "tree": { + "sha": "ec884a655a52fcd3530a52297627b29d8cc3f26c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/ec884a655a52fcd3530a52297627b29d8cc3f26c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "html_url": "https://github.com/jqlang/jq/commit/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/90a6b2d9e6b88b2ec9be301d832f5c02e1311d86/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "url": "https://api.github.com/repos/jqlang/jq/commits/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "html_url": "https://github.com/jqlang/jq/commit/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298" + } + ] + }, + { + "sha": "4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "node_id": "C_kwDOAE3WVdoAKDRkNGMxN2NhNmE5ZTExZmM0OWU5OGY1ZDhmYTBhYzRkYTM0ZmIyOTg", + "commit": { + "author": { + "name": "pkoppstein", + "email": "pkoppstein@gmail.com", + "date": "2023-07-31T22:54:21Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-07-31T22:54:21Z" + }, + "message": "Simple and efficient implementation of walk/1 (#2795)", + "tree": { + "sha": "7c7c3831cb45b26329bba1a9e569627ba74dc961", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/7c7c3831cb45b26329bba1a9e569627ba74dc961" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkyDudCRBK7hj4Ov3rIwAAg1kIAC3GdjAn/ItpjYzSCZhYgGeT\nli/x8h0wHKlDjxVAuLsAct8vby5aZdS34Hmeqm2AFOGPLeS1QhB+aMpZDEYbHbmU\nK2uyx5WGpsEzOzpFWz6m8pdlspkWPSpoqIOsmNyKd9aJELoetl1XTSkSgptm1gZL\nVdCKo1DM3Q7qtmUz5E/IiB/pbIneRWGBXqO0ug4nnFCuLzOeZ53w4cB/EOGUa+fq\nFnQPr+VVJdveuGUXKsBbm+IMgsGOwWa2NfkbfAF4oTF795l/lNeXO1FjNxQ/jUsF\nvhNnKkGFL4dvstuMBKo5JnpZQM+B58ZJqZcYoAVRBlBBB+9Pocv28HrD+/9Jj4Q=\n=HTzB\n-----END PGP SIGNATURE-----\n", + "payload": "tree 7c7c3831cb45b26329bba1a9e569627ba74dc961\nparent 0f80921268edcc3d502e6d84612ba71fed6b0947\nauthor pkoppstein 1690844061 -0400\ncommitter GitHub 1690844061 +0900\n\nSimple and efficient implementation of walk/1 (#2795)\n\n" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "html_url": "https://github.com/jqlang/jq/commit/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4d4c17ca6a9e11fc49e98f5d8fa0ac4da34fb298/comments", + "author": { + "login": "pkoppstein", + "id": 172847, + "node_id": "MDQ6VXNlcjE3Mjg0Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/172847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkoppstein", + "html_url": "https://github.com/pkoppstein", + "followers_url": "https://api.github.com/users/pkoppstein/followers", + "following_url": "https://api.github.com/users/pkoppstein/following{/other_user}", + "gists_url": "https://api.github.com/users/pkoppstein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkoppstein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkoppstein/subscriptions", + "organizations_url": "https://api.github.com/users/pkoppstein/orgs", + "repos_url": "https://api.github.com/users/pkoppstein/repos", + "events_url": "https://api.github.com/users/pkoppstein/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkoppstein/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "0f80921268edcc3d502e6d84612ba71fed6b0947", + "url": "https://api.github.com/repos/jqlang/jq/commits/0f80921268edcc3d502e6d84612ba71fed6b0947", + "html_url": "https://github.com/jqlang/jq/commit/0f80921268edcc3d502e6d84612ba71fed6b0947" + } + ] + }, + { + "sha": "0f80921268edcc3d502e6d84612ba71fed6b0947", + "node_id": "C_kwDOAE3WVdoAKDBmODA5MjEyNjhlZGNjM2Q1MDJlNmQ4NDYxMmJhNzFmZWQ2YjA5NDc", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-31T03:48:14Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T20:39:13Z" + }, + "message": "Fix constant folding of division and reminder with zero divisor\n\nPreviously constant folding of zero division (e.x. 1/0) produces a\ncompile error. This was incorrectly implemented by checking if the\ndivision result is infinite, so produces wrong results compared to the\nquery where no constant folding is processed (e.x. 1e308/0.1). This\npatch delays the operation when the divisor is zero. This makes the\nresults more consistent, but changes the exit code on zero division from\n3 to 5. Also 0/0 now produces the zero division error, not NaN.\n\nThis patch also fixes the modulo operation. Previously constant folding\nlogic does not take care of the % operator, but now it folds if the both\ndividend and divisor are safe numbers to cast to the integer type, and\nthe divisor is not zero. This patch also fixes some code that relies on\nundefined cast behaviors in C. The modulo operation produces NaN if\neither the dividend or divisor is NaN.", + "tree": { + "sha": "40da8d84c1235bd94b5018a3fd015a60a7cda44f", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/40da8d84c1235bd94b5018a3fd015a60a7cda44f" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/0f80921268edcc3d502e6d84612ba71fed6b0947", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/0f80921268edcc3d502e6d84612ba71fed6b0947", + "html_url": "https://github.com/jqlang/jq/commit/0f80921268edcc3d502e6d84612ba71fed6b0947", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/0f80921268edcc3d502e6d84612ba71fed6b0947/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "url": "https://api.github.com/repos/jqlang/jq/commits/6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "html_url": "https://github.com/jqlang/jq/commit/6716e23ae6d534db0d3f2af2d1610f17444fb5a9" + } + ] + }, + { + "sha": "6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "node_id": "C_kwDOAE3WVdoAKDY3MTZlMjNhZTZkNTM0ZGIwZDNmMmFmMmQxNjEwZjE3NDQ0ZmI1YTk", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-31T19:56:15Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T20:28:01Z" + }, + "message": "Declare cfunction.fptr as jv (*)() to avoid having to cast everywhere\n\nYou only need to specify the return type in a function pointer\ndeclaration in C.\n\nIf you use () in the declaration, the function pointer can be called\nwith any arguments, and the type of the arguments is decided for each\nfunction call based on the types of the arguments used for the call.\n(To declare a function pointer for a function with no arguments, you use\n`(void)'.)\n\nSince all the cfunction structs have a fptr that points to a functions\nthat return jv, not void, we can we can just declare cfunction.fptr as\njv (*)() and avoid having those annoying and technically not C-standard\ncompliant casts everywhere.", + "tree": { + "sha": "b2afefc6b28ed9831c0473861c49ab1f3c023b41", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/b2afefc6b28ed9831c0473861c49ab1f3c023b41" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "html_url": "https://github.com/jqlang/jq/commit/6716e23ae6d534db0d3f2af2d1610f17444fb5a9", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/6716e23ae6d534db0d3f2af2d1610f17444fb5a9/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "url": "https://api.github.com/repos/jqlang/jq/commits/f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "html_url": "https://github.com/jqlang/jq/commit/f61f842ad0b4585cc493868e83f17a91c9f1a53e" + } + ] + }, + { + "sha": "f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "node_id": "C_kwDOAE3WVdoAKGY2MWY4NDJhZDBiNDU4NWNjNDkzODY4ZTgzZjE3YTkxYzlmMWE1M2U", + "commit": { + "author": { + "name": "Mattias Wadman", + "email": "mattias.wadman@gmail.com", + "date": "2023-07-31T15:08:53Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-31T16:05:35Z" + }, + "message": "Massage --help text to use max 72 characters width", + "tree": { + "sha": "419afd0d956dc3a2f1c109156bdeeecd98023da7", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/419afd0d956dc3a2f1c109156bdeeecd98023da7" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "html_url": "https://github.com/jqlang/jq/commit/f61f842ad0b4585cc493868e83f17a91c9f1a53e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f61f842ad0b4585cc493868e83f17a91c9f1a53e/comments", + "author": { + "login": "wader", + "id": 185566, + "node_id": "MDQ6VXNlcjE4NTU2Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/185566?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wader", + "html_url": "https://github.com/wader", + "followers_url": "https://api.github.com/users/wader/followers", + "following_url": "https://api.github.com/users/wader/following{/other_user}", + "gists_url": "https://api.github.com/users/wader/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wader/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wader/subscriptions", + "organizations_url": "https://api.github.com/users/wader/orgs", + "repos_url": "https://api.github.com/users/wader/repos", + "events_url": "https://api.github.com/users/wader/events{/privacy}", + "received_events_url": "https://api.github.com/users/wader/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "69deec63e5de429b5c883a1a3c920eba8558cb41", + "url": "https://api.github.com/repos/jqlang/jq/commits/69deec63e5de429b5c883a1a3c920eba8558cb41", + "html_url": "https://github.com/jqlang/jq/commit/69deec63e5de429b5c883a1a3c920eba8558cb41" + } + ] + }, + { + "sha": "69deec63e5de429b5c883a1a3c920eba8558cb41", + "node_id": "C_kwDOAE3WVdoAKDY5ZGVlYzYzZTVkZTQyOWI1Yzg4M2ExYTNjOTIwZWJhODU1OGNiNDE", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T15:00:49Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T15:12:18Z" + }, + "message": "Add new release public key", + "tree": { + "sha": "0332f5e295b97af4dcbafa10f1fe6ff638c27bf9", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/0332f5e295b97af4dcbafa10f1fe6ff638c27bf9" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/69deec63e5de429b5c883a1a3c920eba8558cb41", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/69deec63e5de429b5c883a1a3c920eba8558cb41", + "html_url": "https://github.com/jqlang/jq/commit/69deec63e5de429b5c883a1a3c920eba8558cb41", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/69deec63e5de429b5c883a1a3c920eba8558cb41/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "url": "https://api.github.com/repos/jqlang/jq/commits/77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "html_url": "https://github.com/jqlang/jq/commit/77c4c8afc57c2d5cb386b3cde943edee4174eab3" + } + ] + }, + { + "sha": "77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "node_id": "C_kwDOAE3WVdoAKDc3YzRjOGFmYzU3YzJkNWNiMzg2YjNjZGU5NDNlZGVlNDE3NGVhYjM", + "commit": { + "author": { + "name": "github-actions[bot]", + "email": "github-actions[bot]@users.noreply.github.com", + "date": "2023-07-31T03:31:35Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-31T14:31:05Z" + }, + "message": "Update signatures of 1.7rc1", + "tree": { + "sha": "a22af68e4645e8346a6702c9967a041ce78dddc1", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/a22af68e4645e8346a6702c9967a041ce78dddc1" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "html_url": "https://github.com/jqlang/jq/commit/77c4c8afc57c2d5cb386b3cde943edee4174eab3", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/77c4c8afc57c2d5cb386b3cde943edee4174eab3/comments", + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "c8e28da12973f8844ac0457e2db6ccd56286b34a", + "url": "https://api.github.com/repos/jqlang/jq/commits/c8e28da12973f8844ac0457e2db6ccd56286b34a", + "html_url": "https://github.com/jqlang/jq/commit/c8e28da12973f8844ac0457e2db6ccd56286b34a" + } + ] + }, + { + "sha": "c8e28da12973f8844ac0457e2db6ccd56286b34a", + "node_id": "C_kwDOAE3WVdoAKGM4ZTI4ZGExMjk3M2Y4ODQ0YWMwNDU3ZTJkYjZjY2Q1NjI4NmIzNGE", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-31T00:52:52Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-07-31T00:52:52Z" + }, + "message": "Redesign website (#2628)\n\n* Bump up Bootstrap to v5.3.1, Bootstrap Icon to v1.10.5.\r\n* Use autoComplete.js to drop dependency on jQuery and typeahead.js.\r\n* Support dark mode.\r\n* New svg logo and icon with responsive color mode support.\r\n* Normalize section ids to lower kebab-case for easiness of linking.\r\n* Use relative paths for links for local development (--root /output).\r\n* Various markup cleanups and accessibility improvements.", + "tree": { + "sha": "614af32689cf652eb7446eb9dfa4f1d91a2f1c97", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/614af32689cf652eb7446eb9dfa4f1d91a2f1c97" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/c8e28da12973f8844ac0457e2db6ccd56286b34a", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkxwXkCRBK7hj4Ov3rIwAAlCsIAAvIuL5z8eW5rmVZxbb3uld8\nZ/YIDBvUr5KOcfi7gbXjkDuCYdrG9u//AYt05H/+QYDWZMBTGnHNec6Ny4sH2fw9\nQGGDBX4DEcxbpm98Zan24PAOi7Iswj56YsSO9hJboWdyBxKgfm5fr2QTGMOwaF6b\nE1F9dGd7+tGhbG9XWKTlCFGEsZkygg8c/IwUJsqTkssAec/kYA2PjzK6foP5oOIo\n/5FulkrNqX4AziHuwo6u7lOR4bryQCjVdFwQSHky22CPKBpRMV+aTijcigJ3W2uK\nLTervwn56YsRT7h79lP7Q55xUjTVljv/AWjRNZFNTb2Vckg/bzkjwjx6hxN1Nl8=\n=sCDf\n-----END PGP SIGNATURE-----\n", + "payload": "tree 614af32689cf652eb7446eb9dfa4f1d91a2f1c97\nparent 4af3f99728f924b327b6f455c52452ef0ca09e1a\nauthor itchyny 1690764772 +0900\ncommitter GitHub 1690764772 +0900\n\nRedesign website (#2628)\n\n* Bump up Bootstrap to v5.3.1, Bootstrap Icon to v1.10.5.\r\n* Use autoComplete.js to drop dependency on jQuery and typeahead.js.\r\n* Support dark mode.\r\n* New svg logo and icon with responsive color mode support.\r\n* Normalize section ids to lower kebab-case for easiness of linking.\r\n* Use relative paths for links for local development (--root /output).\r\n* Various markup cleanups and accessibility improvements." + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/c8e28da12973f8844ac0457e2db6ccd56286b34a", + "html_url": "https://github.com/jqlang/jq/commit/c8e28da12973f8844ac0457e2db6ccd56286b34a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/c8e28da12973f8844ac0457e2db6ccd56286b34a/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4af3f99728f924b327b6f455c52452ef0ca09e1a", + "url": "https://api.github.com/repos/jqlang/jq/commits/4af3f99728f924b327b6f455c52452ef0ca09e1a", + "html_url": "https://github.com/jqlang/jq/commit/4af3f99728f924b327b6f455c52452ef0ca09e1a" + } + ] + }, + { + "sha": "4af3f99728f924b327b6f455c52452ef0ca09e1a", + "node_id": "C_kwDOAE3WVdoAKDRhZjNmOTk3MjhmOTI0YjMyN2I2ZjQ1NWM1MjQ1MmVmMGNhMDllMWE", + "commit": { + "author": { + "name": "Owen Ou", + "email": "o@owenou.com", + "date": "2023-07-29T14:20:48Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-30T02:28:38Z" + }, + "message": "Update `bug_report.md` with Discord link", + "tree": { + "sha": "6b1dcc6f20a7dd205e8c313729a6a1a1f2bf7df1", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6b1dcc6f20a7dd205e8c313729a6a1a1f2bf7df1" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4af3f99728f924b327b6f455c52452ef0ca09e1a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4af3f99728f924b327b6f455c52452ef0ca09e1a", + "html_url": "https://github.com/jqlang/jq/commit/4af3f99728f924b327b6f455c52452ef0ca09e1a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4af3f99728f924b327b6f455c52452ef0ca09e1a/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "url": "https://api.github.com/repos/jqlang/jq/commits/82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "html_url": "https://github.com/jqlang/jq/commit/82f7f772e6bc7f74c37eb36cddda76570f46cd3e" + } + ] + }, + { + "sha": "82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "node_id": "C_kwDOAE3WVdoAKDgyZjdmNzcyZTZiYzdmNzRjMzdlYjM2Y2RkZGE3NjU3MGY0NmNkM2U", + "commit": { + "author": { + "name": "Owen Ou", + "email": "o@owenou.com", + "date": "2023-07-29T14:15:57Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-30T02:28:38Z" + }, + "message": "Redirect questions to Discord\n\nWe now have an official Discord server and most maintainers are hanging\nout there. It would be a good idea to redirect questions to Discord.", + "tree": { + "sha": "cc5af93178bb5dc3c9b0a33c2d3fbe94f9e33ae1", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/cc5af93178bb5dc3c9b0a33c2d3fbe94f9e33ae1" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "html_url": "https://github.com/jqlang/jq/commit/82f7f772e6bc7f74c37eb36cddda76570f46cd3e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/82f7f772e6bc7f74c37eb36cddda76570f46cd3e/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "f733a1535ed46ee7a021269c1b10eb6b27821d92", + "url": "https://api.github.com/repos/jqlang/jq/commits/f733a1535ed46ee7a021269c1b10eb6b27821d92", + "html_url": "https://github.com/jqlang/jq/commit/f733a1535ed46ee7a021269c1b10eb6b27821d92" + } + ] + }, + { + "sha": "f733a1535ed46ee7a021269c1b10eb6b27821d92", + "node_id": "C_kwDOAE3WVdoAKGY3MzNhMTUzNWVkNDZlZTdhMDIxMjY5YzFiMTBlYjZiMjc4MjFkOTI", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-10T23:29:03Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-30T02:25:54Z" + }, + "message": "Use -Wno-cast-function-type to quiet many warnings", + "tree": { + "sha": "6ea0a9490317f343dc387d40bdb9796ee58c398e", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6ea0a9490317f343dc387d40bdb9796ee58c398e" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/f733a1535ed46ee7a021269c1b10eb6b27821d92", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/f733a1535ed46ee7a021269c1b10eb6b27821d92", + "html_url": "https://github.com/jqlang/jq/commit/f733a1535ed46ee7a021269c1b10eb6b27821d92", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/f733a1535ed46ee7a021269c1b10eb6b27821d92/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "c8b30dff4a573e5efc23e30a5074011e39832e2c", + "url": "https://api.github.com/repos/jqlang/jq/commits/c8b30dff4a573e5efc23e30a5074011e39832e2c", + "html_url": "https://github.com/jqlang/jq/commit/c8b30dff4a573e5efc23e30a5074011e39832e2c" + } + ] + }, + { + "sha": "c8b30dff4a573e5efc23e30a5074011e39832e2c", + "node_id": "C_kwDOAE3WVdoAKGM4YjMwZGZmNGE1NzNlNWVmYzIzZTMwYTUwNzQwMTFlMzk4MzJlMmM", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-10T23:28:33Z" + }, + "committer": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-30T02:25:54Z" + }, + "message": "Add JQ_FALLTHROUGH and use it to quiet warnings", + "tree": { + "sha": "664dd57be13c38405c3d2ae437165b221bb2b892", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/664dd57be13c38405c3d2ae437165b221bb2b892" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/c8b30dff4a573e5efc23e30a5074011e39832e2c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/c8b30dff4a573e5efc23e30a5074011e39832e2c", + "html_url": "https://github.com/jqlang/jq/commit/c8b30dff4a573e5efc23e30a5074011e39832e2c", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/c8b30dff4a573e5efc23e30a5074011e39832e2c/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "url": "https://api.github.com/repos/jqlang/jq/commits/a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "html_url": "https://github.com/jqlang/jq/commit/a6eb055c47c980bba4ebdc60b026f2311e5a800a" + } + ] + }, + { + "sha": "a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "node_id": "C_kwDOAE3WVdoAKGE2ZWIwNTVjNDdjOTgwYmJhNGViZGM2MGIwMjZmMjMxMWU1YTgwMGE", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-29T19:57:40Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-29T23:27:59Z" + }, + "message": "Fix typo in manual: \"-seq\" => \"--seq\"", + "tree": { + "sha": "24780d52e52ebc7c724fd8677c608e657868ccbd", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/24780d52e52ebc7c724fd8677c608e657868ccbd" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "html_url": "https://github.com/jqlang/jq/commit/a6eb055c47c980bba4ebdc60b026f2311e5a800a", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/a6eb055c47c980bba4ebdc60b026f2311e5a800a/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "url": "https://api.github.com/repos/jqlang/jq/commits/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "html_url": "https://github.com/jqlang/jq/commit/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3" + } + ] + }, + { + "sha": "ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "node_id": "C_kwDOAE3WVdoAKGVlMmEyMTVmMmViMGJkZTNkNGE2Y2ZmZjFhNjU2ZGNjNjg0YWJiYjM", + "commit": { + "author": { + "name": "Owen Ou", + "email": "169064+owenthereal@users.noreply.github.com", + "date": "2023-07-29T14:38:08Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-07-29T14:38:08Z" + }, + "message": "Backfill with references in NEWS.md (#2788)\n\nBackfill with references to PRs & issues in NEWS.md", + "tree": { + "sha": "03e4a1c2a495272c8616c4a7ec1a5b9621fadf12", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/03e4a1c2a495272c8616c4a7ec1a5b9621fadf12" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkxSRQCRBK7hj4Ov3rIwAAnoUIAH0fFjRpMbICIDk6Zd8QvMNY\nt7xEY4MTsR0RpiHKhWK2zFpq9jC1Zgam0obi0e4zlDewzOkCNRWp/p5Xg+mjiCYT\nsUWZhsxKrWn591hqAGh6Lirnzb3jzg7mMuIf4EqXIaula/oT0XfHJkujqBn8riwD\nd0yD1XT8zIButBES2N9poeE7wuNuRPr5qN3gzU1kEmKubMpzpX2xNTafhz7lDi3Q\nKmMbLMzv2pAWsCNTyl18S3u9JM+dDTFULPvq/J5IrlPJ+J9nUQCN3Hax7KUkC+FM\nGaAvjNqevr/Cf+L0s8Eyz7O3OGtRMZoKOYAeV5EGuIe44rsM6CtnkhuENkfHrA4=\n=bVTw\n-----END PGP SIGNATURE-----\n", + "payload": "tree 03e4a1c2a495272c8616c4a7ec1a5b9621fadf12\nparent 70bbd10b0b58e797d03963264fc934879bb44454\nauthor Owen Ou <169064+owenthereal@users.noreply.github.com> 1690641488 -0700\ncommitter GitHub 1690641488 -0700\n\nBackfill with references in NEWS.md (#2788)\n\nBackfill with references to PRs & issues in NEWS.md" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "html_url": "https://github.com/jqlang/jq/commit/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/ee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3/comments", + "author": { + "login": "owenthereal", + "id": 169064, + "node_id": "MDQ6VXNlcjE2OTA2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/169064?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/owenthereal", + "html_url": "https://github.com/owenthereal", + "followers_url": "https://api.github.com/users/owenthereal/followers", + "following_url": "https://api.github.com/users/owenthereal/following{/other_user}", + "gists_url": "https://api.github.com/users/owenthereal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/owenthereal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/owenthereal/subscriptions", + "organizations_url": "https://api.github.com/users/owenthereal/orgs", + "repos_url": "https://api.github.com/users/owenthereal/repos", + "events_url": "https://api.github.com/users/owenthereal/events{/privacy}", + "received_events_url": "https://api.github.com/users/owenthereal/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "70bbd10b0b58e797d03963264fc934879bb44454", + "url": "https://api.github.com/repos/jqlang/jq/commits/70bbd10b0b58e797d03963264fc934879bb44454", + "html_url": "https://github.com/jqlang/jq/commit/70bbd10b0b58e797d03963264fc934879bb44454" + } + ] + }, + { + "sha": "70bbd10b0b58e797d03963264fc934879bb44454", + "node_id": "C_kwDOAE3WVdoAKDcwYmJkMTBiMGI1OGU3OTdkMDM5NjMyNjRmYzkzNDg3OWJiNDQ0NTQ", + "commit": { + "author": { + "name": "pkoppstein", + "email": "pkoppstein@gmail.com", + "date": "2023-07-28T20:32:08Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T22:25:41Z" + }, + "message": "NEWS.md: tweaks\n\ncorrect grammar, add attributions, clarify abs", + "tree": { + "sha": "9aa82749d2d19e3173d89f41fd27eecea7936a72", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/9aa82749d2d19e3173d89f41fd27eecea7936a72" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/70bbd10b0b58e797d03963264fc934879bb44454", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/70bbd10b0b58e797d03963264fc934879bb44454", + "html_url": "https://github.com/jqlang/jq/commit/70bbd10b0b58e797d03963264fc934879bb44454", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/70bbd10b0b58e797d03963264fc934879bb44454/comments", + "author": { + "login": "pkoppstein", + "id": 172847, + "node_id": "MDQ6VXNlcjE3Mjg0Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/172847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkoppstein", + "html_url": "https://github.com/pkoppstein", + "followers_url": "https://api.github.com/users/pkoppstein/followers", + "following_url": "https://api.github.com/users/pkoppstein/following{/other_user}", + "gists_url": "https://api.github.com/users/pkoppstein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkoppstein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkoppstein/subscriptions", + "organizations_url": "https://api.github.com/users/pkoppstein/orgs", + "repos_url": "https://api.github.com/users/pkoppstein/repos", + "events_url": "https://api.github.com/users/pkoppstein/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkoppstein/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "28af00751812d6ef28b05374b28794b25db91d97", + "url": "https://api.github.com/repos/jqlang/jq/commits/28af00751812d6ef28b05374b28794b25db91d97", + "html_url": "https://github.com/jqlang/jq/commit/28af00751812d6ef28b05374b28794b25db91d97" + } + ] + }, + { + "sha": "28af00751812d6ef28b05374b28794b25db91d97", + "node_id": "C_kwDOAE3WVdoAKDI4YWYwMDc1MTgxMmQ2ZWYyOGIwNTM3NGIyODc5NGIyNWRiOTFkOTc", + "commit": { + "author": { + "name": "Mattias Wadman", + "email": "mattias.wadman@gmail.com", + "date": "2023-06-02T14:47:02Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T18:43:14Z" + }, + "message": "Replace NEWS with NEWS.md with more details and examples\n\nChanges mentioned based on picking user facing changes from:\ngit log --oneline -r master...jq-1.6 | grep -v Merge", + "tree": { + "sha": "7d920482736fc5f8469728eaa533ab0e062bb8c5", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/7d920482736fc5f8469728eaa533ab0e062bb8c5" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/28af00751812d6ef28b05374b28794b25db91d97", + "comment_count": 1, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/28af00751812d6ef28b05374b28794b25db91d97", + "html_url": "https://github.com/jqlang/jq/commit/28af00751812d6ef28b05374b28794b25db91d97", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/28af00751812d6ef28b05374b28794b25db91d97/comments", + "author": { + "login": "wader", + "id": 185566, + "node_id": "MDQ6VXNlcjE4NTU2Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/185566?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wader", + "html_url": "https://github.com/wader", + "followers_url": "https://api.github.com/users/wader/followers", + "following_url": "https://api.github.com/users/wader/following{/other_user}", + "gists_url": "https://api.github.com/users/wader/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wader/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wader/subscriptions", + "organizations_url": "https://api.github.com/users/wader/orgs", + "repos_url": "https://api.github.com/users/wader/repos", + "events_url": "https://api.github.com/users/wader/events{/privacy}", + "received_events_url": "https://api.github.com/users/wader/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "url": "https://api.github.com/repos/jqlang/jq/commits/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "html_url": "https://github.com/jqlang/jq/commit/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d" + } + ] + }, + { + "sha": "336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "node_id": "C_kwDOAE3WVdoAKDMzNmMzZGViOGE5ZjRkMzBkMWNmMjdmYjk4YWVjZjYxZWYyMGY5OWQ", + "commit": { + "author": { + "name": "pkoppstein", + "email": "pkoppstein@gmail.com", + "date": "2023-07-16T01:50:19Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T17:34:26Z" + }, + "message": "Test negative indices in path expressions", + "tree": { + "sha": "504e45cf7e983db3df6f397e7633d3bdfc049e93", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/504e45cf7e983db3df6f397e7633d3bdfc049e93" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "html_url": "https://github.com/jqlang/jq/commit/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/336c3deb8a9f4d30d1cf27fb98aecf61ef20f99d/comments", + "author": { + "login": "pkoppstein", + "id": 172847, + "node_id": "MDQ6VXNlcjE3Mjg0Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/172847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkoppstein", + "html_url": "https://github.com/pkoppstein", + "followers_url": "https://api.github.com/users/pkoppstein/followers", + "following_url": "https://api.github.com/users/pkoppstein/following{/other_user}", + "gists_url": "https://api.github.com/users/pkoppstein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkoppstein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkoppstein/subscriptions", + "organizations_url": "https://api.github.com/users/pkoppstein/orgs", + "repos_url": "https://api.github.com/users/pkoppstein/repos", + "events_url": "https://api.github.com/users/pkoppstein/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkoppstein/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "086a156ec389de167edc72e8bd1752984b117349", + "url": "https://api.github.com/repos/jqlang/jq/commits/086a156ec389de167edc72e8bd1752984b117349", + "html_url": "https://github.com/jqlang/jq/commit/086a156ec389de167edc72e8bd1752984b117349" + } + ] + }, + { + "sha": "086a156ec389de167edc72e8bd1752984b117349", + "node_id": "C_kwDOAE3WVdoAKDA4NmExNTZlYzM4OWRlMTY3ZWRjNzJlOGJkMTc1Mjk4NGIxMTczNDk", + "commit": { + "author": { + "name": "Nicolas Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-16T01:00:00Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T17:34:26Z" + }, + "message": "Allow .[-1] in path expressions", + "tree": { + "sha": "7f5828035b04c819c53f599e19b1c5ce315d49d6", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/7f5828035b04c819c53f599e19b1c5ce315d49d6" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/086a156ec389de167edc72e8bd1752984b117349", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/086a156ec389de167edc72e8bd1752984b117349", + "html_url": "https://github.com/jqlang/jq/commit/086a156ec389de167edc72e8bd1752984b117349", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/086a156ec389de167edc72e8bd1752984b117349/comments", + "author": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "url": "https://api.github.com/repos/jqlang/jq/commits/d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "html_url": "https://github.com/jqlang/jq/commit/d319eb21879eba6ad34f24c51883bc1b1682d3fe" + } + ] + }, + { + "sha": "d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "node_id": "C_kwDOAE3WVdoAKGQzMTllYjIxODc5ZWJhNmFkMzRmMjRjNTE4ODNiYzFiMTY4MmQzZmU", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-28T08:47:51Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2023-07-28T08:47:51Z" + }, + "message": "Fix PR creation by using fully qualified refname on release", + "tree": { + "sha": "7ccedaff18e518da76257d14f3604f2c35b709af", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/7ccedaff18e518da76257d14f3604f2c35b709af" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJkw4C3CRBK7hj4Ov3rIwAAMHcIAAsUfwv3HM1ZomrrXLcwPqEB\n2jkjUY440ZKHFM8Y3iY87DhmCFdKT+9mmGqkA6DOQw+pnBlXFcw481OaQJQmcklp\n/D3CTZ1ixLAq6ArkqJhWTpc/2mJYk6aIa4Wou+jauiQC1lzwQI/EsYoMADYRHLn/\nGZuZUi/K4ZxMoDLlDka1VD6NKAPfVl3RoOQQUSSpo+zgezfCQgEwm3kLHqJQI8Lj\n5LPG/EP5GgzdGHnzXkba3T4W4V4xM+FTkmtR0yl24WI864wL4fHJjHp3NUbVqvPm\nvtRrmgzh3unVY01K0aTyL5lAkNROWCGRlY88OYj8QIUzCvlpUqaS8+eQYdymr0I=\n=SV87\n-----END PGP SIGNATURE-----\n", + "payload": "tree 7ccedaff18e518da76257d14f3604f2c35b709af\nparent 17889a1a85c79b8e08179370aec51131f69a503e\nauthor itchyny 1690534071 +0900\ncommitter GitHub 1690534071 +0900\n\nFix PR creation by using fully qualified refname on release" + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "html_url": "https://github.com/jqlang/jq/commit/d319eb21879eba6ad34f24c51883bc1b1682d3fe", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/d319eb21879eba6ad34f24c51883bc1b1682d3fe/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "17889a1a85c79b8e08179370aec51131f69a503e", + "url": "https://api.github.com/repos/jqlang/jq/commits/17889a1a85c79b8e08179370aec51131f69a503e", + "html_url": "https://github.com/jqlang/jq/commit/17889a1a85c79b8e08179370aec51131f69a503e" + } + ] + }, + { + "sha": "17889a1a85c79b8e08179370aec51131f69a503e", + "node_id": "C_kwDOAE3WVdoAKDE3ODg5YTFhODVjNzliOGUwODE3OTM3MGFlYzUxMTMxZjY5YTUwM2U", + "commit": { + "author": { + "name": "Emanuele Torre", + "email": "torreemanuele6@gmail.com", + "date": "2023-07-28T00:09:44Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T01:59:35Z" + }, + "message": "Fix memory leak for { $foo: bar }\n\n{ BINDING: ExpD } wasn't freeing BINDING.\n\nFixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=60865", + "tree": { + "sha": "6149a6821668859bf419a0d373d039ace6b396c6", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/6149a6821668859bf419a0d373d039ace6b396c6" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/17889a1a85c79b8e08179370aec51131f69a503e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/17889a1a85c79b8e08179370aec51131f69a503e", + "html_url": "https://github.com/jqlang/jq/commit/17889a1a85c79b8e08179370aec51131f69a503e", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/17889a1a85c79b8e08179370aec51131f69a503e/comments", + "author": { + "login": "emanuele6", + "id": 20175435, + "node_id": "MDQ6VXNlcjIwMTc1NDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/20175435?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/emanuele6", + "html_url": "https://github.com/emanuele6", + "followers_url": "https://api.github.com/users/emanuele6/followers", + "following_url": "https://api.github.com/users/emanuele6/following{/other_user}", + "gists_url": "https://api.github.com/users/emanuele6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/emanuele6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/emanuele6/subscriptions", + "organizations_url": "https://api.github.com/users/emanuele6/orgs", + "repos_url": "https://api.github.com/users/emanuele6/repos", + "events_url": "https://api.github.com/users/emanuele6/events{/privacy}", + "received_events_url": "https://api.github.com/users/emanuele6/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "url": "https://api.github.com/repos/jqlang/jq/commits/5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "html_url": "https://github.com/jqlang/jq/commit/5b9d0750db13a39bec3b54828b0b6b00d50767ca" + } + ] + }, + { + "sha": "5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "node_id": "C_kwDOAE3WVdoAKDViOWQwNzUwZGIxM2EzOWJlYzNiNTQ4MjhiMGI2YjAwZDUwNzY3Y2E", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-28T01:23:01Z" + }, + "committer": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-28T01:25:06Z" + }, + "message": "Fix PR creation by specifying the branch on release", + "tree": { + "sha": "8db6b20f6e253fe2610c77893291d1abce94b63c", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/8db6b20f6e253fe2610c77893291d1abce94b63c" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "html_url": "https://github.com/jqlang/jq/commit/5b9d0750db13a39bec3b54828b0b6b00d50767ca", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/5b9d0750db13a39bec3b54828b0b6b00d50767ca/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "url": "https://api.github.com/repos/jqlang/jq/commits/b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "html_url": "https://github.com/jqlang/jq/commit/b33725c96e36d82e4eb8d3871e7565f43a0c6251" + } + ] + }, + { + "sha": "b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "node_id": "C_kwDOAE3WVdoAKGIzMzcyNWM5NmUzNmQ4MmU0ZWI4ZDM4NzFlNzU2NWY0M2EwYzYyNTE", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-28T01:04:35Z" + }, + "committer": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-28T01:04:35Z" + }, + "message": "Fix gh pr create option on release", + "tree": { + "sha": "c15eb44a91cf0cf748b382378e5a3607daa9c165", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/c15eb44a91cf0cf748b382378e5a3607daa9c165" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "html_url": "https://github.com/jqlang/jq/commit/b33725c96e36d82e4eb8d3871e7565f43a0c6251", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/b33725c96e36d82e4eb8d3871e7565f43a0c6251/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "url": "https://api.github.com/repos/jqlang/jq/commits/72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "html_url": "https://github.com/jqlang/jq/commit/72f147e82e8051490e6ddfdb18c90ef84ef1d70c" + } + ] + }, + { + "sha": "72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "node_id": "C_kwDOAE3WVdoAKDcyZjE0N2U4MmU4MDUxNDkwZTZkZGZkYjE4YzkwZWY4NGVmMWQ3MGM", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-27T23:46:56Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-28T00:18:16Z" + }, + "message": "Fix release job to create a pull request for signatures", + "tree": { + "sha": "e7a4381ffabdd0632c89586c8bbb9c13ce6df53a", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/e7a4381ffabdd0632c89586c8bbb9c13ce6df53a" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "html_url": "https://github.com/jqlang/jq/commit/72f147e82e8051490e6ddfdb18c90ef84ef1d70c", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/72f147e82e8051490e6ddfdb18c90ef84ef1d70c/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "4160a36fb5dd29b20b5786e40d62f00368aa4108", + "url": "https://api.github.com/repos/jqlang/jq/commits/4160a36fb5dd29b20b5786e40d62f00368aa4108", + "html_url": "https://github.com/jqlang/jq/commit/4160a36fb5dd29b20b5786e40d62f00368aa4108" + } + ] + }, + { + "sha": "4160a36fb5dd29b20b5786e40d62f00368aa4108", + "node_id": "C_kwDOAE3WVdoAKDQxNjBhMzZmYjVkZDI5YjIwYjU3ODZlNDBkNjJmMDAzNjhhYTQxMDg", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-27T19:57:51Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-27T22:01:24Z" + }, + "message": "Commit GPG signatures on release", + "tree": { + "sha": "41951c51166d63b3378f547f02f119ca8bcd2c96", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/41951c51166d63b3378f547f02f119ca8bcd2c96" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/4160a36fb5dd29b20b5786e40d62f00368aa4108", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/4160a36fb5dd29b20b5786e40d62f00368aa4108", + "html_url": "https://github.com/jqlang/jq/commit/4160a36fb5dd29b20b5786e40d62f00368aa4108", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/4160a36fb5dd29b20b5786e40d62f00368aa4108/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "668607e3054d70bee596681f4558da685df81b6f", + "url": "https://api.github.com/repos/jqlang/jq/commits/668607e3054d70bee596681f4558da685df81b6f", + "html_url": "https://github.com/jqlang/jq/commit/668607e3054d70bee596681f4558da685df81b6f" + } + ] + }, + { + "sha": "668607e3054d70bee596681f4558da685df81b6f", + "node_id": "C_kwDOAE3WVdoAKDY2ODYwN2UzMDU0ZDcwYmVlNTk2NjgxZjQ1NThkYTY4NWRmODFiNmY", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-26T22:53:10Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-27T04:56:01Z" + }, + "message": "Enable gamma, drem on macOS", + "tree": { + "sha": "b9fa5902f9c37af4cdcef53f70755b4363f7de60", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/b9fa5902f9c37af4cdcef53f70755b4363f7de60" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/668607e3054d70bee596681f4558da685df81b6f", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/668607e3054d70bee596681f4558da685df81b6f", + "html_url": "https://github.com/jqlang/jq/commit/668607e3054d70bee596681f4558da685df81b6f", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/668607e3054d70bee596681f4558da685df81b6f/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "url": "https://api.github.com/repos/jqlang/jq/commits/a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "html_url": "https://github.com/jqlang/jq/commit/a1e791acf894722b766eceb9e3c0b6eac209f0a8" + } + ] + }, + { + "sha": "a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "node_id": "C_kwDOAE3WVdoAKGExZTc5MWFjZjg5NDcyMmI3NjZlY2ViOWUzYzBiNmVhYzIwOWYwYTg", + "commit": { + "author": { + "name": "itchyny", + "email": "itchyny@cybozu.co.jp", + "date": "2023-07-09T22:30:50Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-27T04:55:00Z" + }, + "message": "Rename --nul-output to --raw-output0, abort on string containing NUL\n\nThe option naming --nul-output was confusing, especially when we have a\nsimilar option for input stream in the future (--nul-input vs --null-input).\nBased on the observation of other command line tools, we rename the option\nto --raw-output0. We also drop the short option -0 to avoid confusion on\nintroducing the NUL-delimited input option.\n\nUnlike the other command line tools outputting file names with NUL delimiter,\njq deals with JSON, and its strings may contain NUL character. To protect\nusers from the risk of injection attacks, we abort the program and print an\nerror message before outputting strings including NUL character. Closes #2683.", + "tree": { + "sha": "299787ef96ed6acf408e95ff16cdad8089975ab8", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/299787ef96ed6acf408e95ff16cdad8089975ab8" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "html_url": "https://github.com/jqlang/jq/commit/a1e791acf894722b766eceb9e3c0b6eac209f0a8", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/a1e791acf894722b766eceb9e3c0b6eac209f0a8/comments", + "author": { + "login": "itchyny", + "id": 375258, + "node_id": "MDQ6VXNlcjM3NTI1OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/375258?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/itchyny", + "html_url": "https://github.com/itchyny", + "followers_url": "https://api.github.com/users/itchyny/followers", + "following_url": "https://api.github.com/users/itchyny/following{/other_user}", + "gists_url": "https://api.github.com/users/itchyny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itchyny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itchyny/subscriptions", + "organizations_url": "https://api.github.com/users/itchyny/orgs", + "repos_url": "https://api.github.com/users/itchyny/repos", + "events_url": "https://api.github.com/users/itchyny/events{/privacy}", + "received_events_url": "https://api.github.com/users/itchyny/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "13fbe98dff927dbe6a3eddd89e4487af3f009185", + "url": "https://api.github.com/repos/jqlang/jq/commits/13fbe98dff927dbe6a3eddd89e4487af3f009185", + "html_url": "https://github.com/jqlang/jq/commit/13fbe98dff927dbe6a3eddd89e4487af3f009185" + } + ] + }, + { + "sha": "13fbe98dff927dbe6a3eddd89e4487af3f009185", + "node_id": "C_kwDOAE3WVdoAKDEzZmJlOThkZmY5MjdkYmU2YTNlZGRkODllNDQ4N2FmM2YwMDkxODU", + "commit": { + "author": { + "name": "pkoppstein", + "email": "pkoppstein@gmail.com", + "date": "2023-07-25T23:19:13Z" + }, + "committer": { + "name": "Nico Williams", + "email": "nico@cryptonector.com", + "date": "2023-07-26T04:43:57Z" + }, + "message": "manual.yml: remove contingent tests\n\nAlso clarify non-prescriptive nature of some tests in jq.test", + "tree": { + "sha": "afed1454ca2c9afda5f96bdcd4b3fb6b6f69f5ea", + "url": "https://api.github.com/repos/jqlang/jq/git/trees/afed1454ca2c9afda5f96bdcd4b3fb6b6f69f5ea" + }, + "url": "https://api.github.com/repos/jqlang/jq/git/commits/13fbe98dff927dbe6a3eddd89e4487af3f009185", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null + } + }, + "url": "https://api.github.com/repos/jqlang/jq/commits/13fbe98dff927dbe6a3eddd89e4487af3f009185", + "html_url": "https://github.com/jqlang/jq/commit/13fbe98dff927dbe6a3eddd89e4487af3f009185", + "comments_url": "https://api.github.com/repos/jqlang/jq/commits/13fbe98dff927dbe6a3eddd89e4487af3f009185/comments", + "author": { + "login": "pkoppstein", + "id": 172847, + "node_id": "MDQ6VXNlcjE3Mjg0Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/172847?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pkoppstein", + "html_url": "https://github.com/pkoppstein", + "followers_url": "https://api.github.com/users/pkoppstein/followers", + "following_url": "https://api.github.com/users/pkoppstein/following{/other_user}", + "gists_url": "https://api.github.com/users/pkoppstein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pkoppstein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pkoppstein/subscriptions", + "organizations_url": "https://api.github.com/users/pkoppstein/orgs", + "repos_url": "https://api.github.com/users/pkoppstein/repos", + "events_url": "https://api.github.com/users/pkoppstein/events{/privacy}", + "received_events_url": "https://api.github.com/users/pkoppstein/received_events", + "type": "User", + "site_admin": false + }, + "committer": { + "login": "nicowilliams", + "id": 604851, + "node_id": "MDQ6VXNlcjYwNDg1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/604851?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nicowilliams", + "html_url": "https://github.com/nicowilliams", + "followers_url": "https://api.github.com/users/nicowilliams/followers", + "following_url": "https://api.github.com/users/nicowilliams/following{/other_user}", + "gists_url": "https://api.github.com/users/nicowilliams/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nicowilliams/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nicowilliams/subscriptions", + "organizations_url": "https://api.github.com/users/nicowilliams/orgs", + "repos_url": "https://api.github.com/users/nicowilliams/repos", + "events_url": "https://api.github.com/users/nicowilliams/events{/privacy}", + "received_events_url": "https://api.github.com/users/nicowilliams/received_events", + "type": "User", + "site_admin": false + }, + "parents": [ + { + "sha": "7b725378b9803a1df74054ebd3d700d9daeb2049", + "url": "https://api.github.com/repos/jqlang/jq/commits/7b725378b9803a1df74054ebd3d700d9daeb2049", + "html_url": "https://github.com/jqlang/jq/commit/7b725378b9803a1df74054ebd3d700d9daeb2049" + } + ] + } +] diff --git a/examples/assets/seaCreatures.json b/examples/assets/seaCreatures.json new file mode 100644 index 0000000..6b3f6ad --- /dev/null +++ b/examples/assets/seaCreatures.json @@ -0,0 +1,6 @@ +[ + { "name": "Sammy", "type": "shark", "clams": 5 }, + { "name": "Bubbles", "type": "orca", "clams": 3 }, + { "name": "Splish", "type": "dolphin", "clams": 2 }, + { "name": "Splash", "type": "dolphin", "clams": 2 } +]