René's URL Explorer Experiment


Title: Bump github.com/itchyny/gojq from 0.12.6 to 0.12.11 by dependabot[bot] · Pull Request #28 · DEVBOX10/github-cli · GitHub

Open Graph Title: Bump github.com/itchyny/gojq from 0.12.6 to 0.12.11 by dependabot[bot] · Pull Request #28 · DEVBOX10/github-cli

X Title: Bump github.com/itchyny/gojq from 0.12.6 to 0.12.11 by dependabot[bot] · Pull Request #28 · DEVBOX10/github-cli

Description: Bumps github.com/itchyny/gojq from 0.12.6 to 0.12.11. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.11 fix crash on the assignment operator (=) with multiple values (. = (0,0)) fix isnormal and normals functions against subnormal numbers Release v0.12.10 fix break in try-catch query (label $x | try break $x catch .) fix path value validation for getpath function (path(getpath([[0]][0]))) fix path value validation for custom iterator functions fix walk function with argument emitting multiple values ([1],{x:1} | walk(.,0)) fix @csv, @tsv, @sh to escape the null character (["\u0000"] | @csv,@tsv,@sh) improve performance of assignment operator (=), update-assignment operator (|=), map_values, del, delpaths, walk, ascii_downcase, and ascii_upcase functions Release v0.12.9 fix fromjson to emit error on unexpected trailing string fix path analyzer on variable argument evaluation (def f($x): .y; path(f(.x))) fix raw input option --raw-input (-R) to keep carriage returns and support 64KiB+ lines Release v0.12.8 implement gojq.Compare for comparing values in custom internal functions implement gojq.TypeOf for obtaining type name of values in custom internal functions implement gojq.Preview for previewing values for error messages of custom internal functions fix query lexer to parse string literals as JSON to support surrogate pairs ("\ud83d\ude04") fix priority bug of declared and builtin functions (def empty: .; null | select(.)) fix string indexing by index out of bounds to emit null ("abc" | .[3]) fix array binding pattern not to match against strings ("abc" as [$a] ?// $a | $a) fix sub and gsub functions to emit results in the same order of jq fix fromjson to keep integer precision ("10000000000000000" | fromjson + 1) fix stream option to raise error against incomplete JSON input improve array updating index and string repetition to increase limitations improve mktime to support nanoseconds, just like gmtime and now improve query lexer to report unterminated string literals improve performance of string indexing and slicing by reducing allocations improve performance of object and array indexing, slicing, and iteration, by validating path values by comparing data addresses. This change improves jq compatibility of path value validation ({} | {}.x = 0, [0] | [.[]][] = 1). Also optimize constant indexing and slicing by specialized instruction improve performance of add (on array of strings), flatten, min, max, sort, unique, join, to_entries, from_entries, indices, index, rindex, startswith, endswith, ltrimstr, rtrimstr, explode, capture, sub, and gsub functions Release v0.12.7 fix precedence of try expression against operators (try 0 * error(0)) fix iterator suffix with optional operator (0 | .x[]?) fix stream option with slurp option or input, inputs functions fix the command flag parser to support equal sign in short options with argument fix string conversion of query including empty strings in module and import metadata improve performance of isempty function Changelog Sourced from github.com/itchyny/gojq's changelog. v0.12.11 (2022-12-24) fix crash on assignment operators (=) with multiple values (. = (0,0)) fix isnormal and normals functions against subnormal numbers v0.12.10 (2022-12-01) fix break in try-catch query (label $x | try break $x catch .) fix path value validation for getpath function (path(getpath([[0]][0]))) fix path value validation for custom iterator functions fix walk function with argument emitting multiple values ([1],{x:1} | walk(.,0)) fix @csv, @tsv, @sh to escape the null character (["\u0000"] | @csv,@tsv,@sh) improve performance of assignment operator (=), update-assignment operator (|=), map_values, del, delpaths, walk, ascii_downcase, and ascii_upcase functions v0.12.9 (2022-09-01) fix fromjson to emit error on unexpected trailing string fix path analyzer on variable argument evaluation (def f($x): .y; path(f(.x))) fix raw input option --raw-input (-R) to keep carriage returns and support 64KiB+ lines v0.12.8 (2022-06-01) implement gojq.Compare for comparing values in custom internal functions implement gojq.TypeOf for obtaining type name of values in custom internal functions implement gojq.Preview for previewing values for error messages of custom internal functions fix query lexer to parse string literals as JSON to support surrogate pairs ("\ud83d\ude04") fix priority bug of declared and builtin functions (def empty: .; null | select(.)) fix string indexing by index out of bounds to emit null ("abc" | .[3]) fix array binding pattern not to match against strings ("abc" as [$a] ?// $a | $a) fix sub and gsub functions to emit results in the same order of jq fix fromjson to keep integer precision ("10000000000000000" | fromjson + 1) fix stream option to raise error against incomplete JSON input improve array updating index and string repetition to increase limitations improve mktime to support nanoseconds, just like gmtime and now improve query lexer to report unterminated string literals improve performance of string indexing and slicing by reducing allocations improve performance of object and array indexing, slicing, and iteration, by validating path values by comparing data addresses. This change improves jq compatibility of path value validation ({} | {}.x = 0, [0] | [.[]][] = 1). Also optimize constant indexing and slicing by specialized instruction improve performance of add (on array of strings), flatten, min, max, sort, unique, join, to_entries, from_entries, indices, index, rindex, startswith, endswith, ltrimstr, rtrimstr, explode, capture, sub, and gsub functions v0.12.7 (2022-03-01) fix precedence of try expression against operators (try 0 * error(0)) fix iterator suffix with optional operator (0 | .x[]?) fix stream option with slurp option or input, inputs functions fix the command flag parser to support equal sign in short options with argument fix string conversion of query including empty strings in module and import metadata improve performance of isempty function Commits 584107c bump up version to 0.12.11 720bf54 update CHANGELOG.md for v0.12.11 e4b9b6a fix crash on assignment operators with multiple values afc4c6c fix isnormal and normals functions against subnormal numbers c1a3ebd bump up version to 0.12.10 5294c9e update CHANGELOG.md for v0.12.10 319a797 update dependencies 20ca575 add notes on precedence of unary operators against variable binding 62ffdf7 fix break in try catch syntax 35c123b improve the order of test cases Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Open Graph Description: Bumps github.com/itchyny/gojq from 0.12.6 to 0.12.11. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.11 fix crash on the assignment operator (=) with multiple v...

X Description: Bumps github.com/itchyny/gojq from 0.12.6 to 0.12.11. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.11 fix crash on the assignment operator (=) with multip...

Opengraph URL: https://github.com/DEVBOX10/github-cli/pull/28

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:edb6e851-b1ca-d8f0-67b7-cfb790428ca4
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE6CA:2BD17B:2B0F027:3A6B341:6A548E68
html-safe-nonced4f7306c44148f20fb33b083bbeb15a0edc3647e28cb04755fb337e4bf3dbbe0
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNkNBOjJCRDE3QjoyQjBGMDI3OjNBNkIzNDE6NkE1NDhFNjgiLCJ2aXNpdG9yX2lkIjoiMTQzNzU2MTY3MjEzNTExODQ0MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac6e9bdabbaf1ab91da8b73cd08f0688fc6c30f342b367c6f30cea2011829fc58c
hovercard-subject-tagpull_request:1177713427
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/DEVBOX10/github-cli/pull/28/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps github.com/itchyny/gojq from 0.12.6 to 0.12.11. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.11 fix crash on the assignment operator (=) with multiple v...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/DEVBOX10/github-cli git https://github.com/DEVBOX10/github-cli.git
octolytics-dimension-user_id740576
octolytics-dimension-user_loginDEVBOX10
octolytics-dimension-repository_id318966341
octolytics-dimension-repository_nwoDEVBOX10/github-cli
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id212613049
octolytics-dimension-repository_parent_nwocli/cli
octolytics-dimension-repository_network_root_id212613049
octolytics-dimension-repository_network_root_nwocli/cli
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef8cfff6384f62259baea531c7f58bc7040f8dd92
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/DEVBOX10/github-cli/pull/28/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDEVBOX10%2Fgithub-cli%2Fpull%2F28%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDEVBOX10%2Fgithub-cli%2Fpull%2F28%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=DEVBOX10%2Fgithub-cli
Reloadhttps://github.com/DEVBOX10/github-cli/pull/28/files
Reloadhttps://github.com/DEVBOX10/github-cli/pull/28/files
Reloadhttps://github.com/DEVBOX10/github-cli/pull/28/files
DEVBOX10 https://github.com/DEVBOX10
github-clihttps://github.com/DEVBOX10/github-cli
cli/clihttps://github.com/cli/cli
Notifications https://github.com/login?return_to=%2FDEVBOX10%2Fgithub-cli
Fork 0 https://github.com/login?return_to=%2FDEVBOX10%2Fgithub-cli
Star 0 https://github.com/login?return_to=%2FDEVBOX10%2Fgithub-cli
Code https://github.com/DEVBOX10/github-cli
Pull requests 10 https://github.com/DEVBOX10/github-cli/pulls
Actions https://github.com/DEVBOX10/github-cli/actions
Projects https://github.com/DEVBOX10/github-cli/projects
Security and quality 0 https://github.com/DEVBOX10/github-cli/security
Insights https://github.com/DEVBOX10/github-cli/pulse
Code https://github.com/DEVBOX10/github-cli
Pull requests https://github.com/DEVBOX10/github-cli/pulls
Actions https://github.com/DEVBOX10/github-cli/actions
Projects https://github.com/DEVBOX10/github-cli/projects
Security and quality https://github.com/DEVBOX10/github-cli/security
Insights https://github.com/DEVBOX10/github-cli/pulse
Sign up for GitHub https://github.com/signup?return_to=%2FDEVBOX10%2Fgithub-cli%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FDEVBOX10%2Fgithub-cli%2Fissues%2Fnew%2Fchoose
dependabothttps://github.com/apps/dependabot
trunkhttps://github.com/DEVBOX10/github-cli/tree/trunk
dependabot/go_modules/github.com/itchyny/gojq-0.12.11https://github.com/DEVBOX10/github-cli/tree/dependabot/go_modules/github.com/itchyny/gojq-0.12.11
Conversation 1 https://github.com/DEVBOX10/github-cli/pull/28
Commits 1 https://github.com/DEVBOX10/github-cli/pull/28/commits
Checks 0 https://github.com/DEVBOX10/github-cli/pull/28/checks
Files changed https://github.com/DEVBOX10/github-cli/pull/28/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/28/files
Bump github.com/itchyny/gojq from 0.12.6 to 0.12.11 https://github.com/DEVBOX10/github-cli/pull/28/files#top
Show all changes 1 commit https://github.com/DEVBOX10/github-cli/pull/28/files
60dded9 Bump github.com/itchyny/gojq from 0.12.6 to 0.12.11 dependabot[bot] Dec 26, 2022 https://github.com/DEVBOX10/github-cli/pull/28/commits/60dded9631ce83b0c312cc8a1e13a5d42fa7cb43
Clear filters https://github.com/DEVBOX10/github-cli/pull/28/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/28/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/28/files
go.mod https://github.com/DEVBOX10/github-cli/pull/28/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sum https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
go.modhttps://github.com/DEVBOX10/github-cli/pull/28/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
View file https://github.com/DEVBOX10/github-cli/blob/60dded9631ce83b0c312cc8a1e13a5d42fa7cb43/go.mod
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/DEVBOX10/github-cli/pull/28/{{ revealButtonHref }}
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sumhttps://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
View file https://github.com/DEVBOX10/github-cli/blob/60dded9631ce83b0c312cc8a1e13a5d42fa7cb43/go.sum
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/DEVBOX10/github-cli/pull/28/{{ revealButtonHref }}
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/28/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.