René's URL Explorer Experiment


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

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

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

Description: Bumps github.com/itchyny/gojq from 0.12.6 to 0.12.12. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.12 fix assignment operator (=) with overlapping paths and multiple values ([[]] | .. = ..) fix crash on multiplying large numbers to an empty string (9223372036854775807 * "") improve zsh completion file 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[]?) ... (truncated) Changelog Sourced from github.com/itchyny/gojq's changelog. v0.12.12 (2023-03-01) fix assignment operator (=) with overlapping paths and multiple values ([[]] | .. = ..) fix crash on multiplying large numbers to an empty string (9223372036854775807 * "") improve zsh completion file v0.12.11 (2022-12-24) fix crash on assignment operator (=) 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[]?) ... (truncated) Commits 655bcab bump up version to 0.12.12 05310e0 update CHANGELOG.md for v0.12.12 e2175d8 update dependencies e09b851 improve zsh completion for positional flags and query argument 218ec1a improve flag descriptions and the zsh completion file 5e5766d rename encoder methods for the map type to respect JSON terms 1a32db9 fix crash on multiplying large numbers to an empty string (close #209) 54b7644 specify write permission of packages in the release workflow 34c413a fix assignment operator with overlapping paths and values again 5240688 fix assignment operator with overlapping paths and multiple values 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.12. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.12 fix assignment operator (=) with overlapping paths and m...

X Description: Bumps github.com/itchyny/gojq from 0.12.6 to 0.12.12. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.12 fix assignment operator (=) with overlapping paths a...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:d73daf76-82b8-ba92-17af-8d9342c7c187
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idDF7A:21DF5A:2E91947:414AFF1:6A54BFD7
html-safe-nonce599a45d4474da87b55b1f2eb26f8e06b3aa9cb01eb8cb94320ce0c39b9f62f26
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJERjdBOjIxREY1QToyRTkxOTQ3OjQxNEFGRjE6NkE1NEJGRDciLCJ2aXNpdG9yX2lkIjoiMjYzNTA5NjAwMjc3MjkxMDAzOSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac5fc4957649f3d4d1575f76ea86fbdfb0ff3a7f63a3934e5de96d06ede1ff5b51
hovercard-subject-tagpull_request:1260338984
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/29/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.12. Release notes Sourced from github.com/itchyny/gojq's releases. Release v0.12.12 fix assignment operator (=) with overlapping paths and m...
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
release69f9664dd5e7a82ba8ab1b4cb7f5a2f09333ab38
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/DEVBOX10/github-cli/pull/29/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDEVBOX10%2Fgithub-cli%2Fpull%2F29%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%2F29%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/29/files
Reloadhttps://github.com/DEVBOX10/github-cli/pull/29/files
Reloadhttps://github.com/DEVBOX10/github-cli/pull/29/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.12https://github.com/DEVBOX10/github-cli/tree/dependabot/go_modules/github.com/itchyny/gojq-0.12.12
Conversation 0 https://github.com/DEVBOX10/github-cli/pull/29
Commits 1 https://github.com/DEVBOX10/github-cli/pull/29/commits
Checks 0 https://github.com/DEVBOX10/github-cli/pull/29/checks
Files changed https://github.com/DEVBOX10/github-cli/pull/29/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/29/files
Bump github.com/itchyny/gojq from 0.12.6 to 0.12.12 https://github.com/DEVBOX10/github-cli/pull/29/files#top
Show all changes 1 commit https://github.com/DEVBOX10/github-cli/pull/29/files
dad099f Bump github.com/itchyny/gojq from 0.12.6 to 0.12.12 dependabot[bot] Mar 2, 2023 https://github.com/DEVBOX10/github-cli/pull/29/commits/dad099fe39b08ed9dec1c43af4eee143ed1d3d0f
Clear filters https://github.com/DEVBOX10/github-cli/pull/29/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/29/files
Please reload this pagehttps://github.com/DEVBOX10/github-cli/pull/29/files
go.mod https://github.com/DEVBOX10/github-cli/pull/29/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sum https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
go.modhttps://github.com/DEVBOX10/github-cli/pull/29/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
View file https://github.com/DEVBOX10/github-cli/blob/dad099fe39b08ed9dec1c43af4eee143ed1d3d0f/go.mod
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/DEVBOX10/github-cli/pull/29/{{ revealButtonHref }}
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sumhttps://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
View file https://github.com/DEVBOX10/github-cli/blob/dad099fe39b08ed9dec1c43af4eee143ed1d3d0f/go.sum
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/DEVBOX10/github-cli/pull/29/{{ revealButtonHref }}
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/DEVBOX10/github-cli/pull/29/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.