diff --git a/Rakefile b/Rakefile index 65b2a19088..4e4961cb78 100644 --- a/Rakefile +++ b/Rakefile @@ -59,7 +59,7 @@ end # The error count will need to be adjusted here until such time as all grammars are 100% error free. desc "Check that compiling the grammars doesn't introduce any new unexpected errors" task :check_grammars do - expected_error_count = 36 # This count should only ever go down. If it goes up, there's a new issue that needs to be addressed before updating the grammar. + expected_error_count = 63 # This count should only ever go down. If it goes up, there's a new issue that needs to be addressed before updating the grammar. rm_rf "linguist-grammars" output, status = Open3.capture2e("script/grammar-compiler", "compile", "-o", "linguist-grammars") errors_found = output[/The grammar library contains ([0-9]+) errors/, 1].to_i diff --git a/grammars.yml b/grammars.yml index cfec15ad44..6092a1f229 100644 --- a/grammars.yml +++ b/grammars.yml @@ -414,12 +414,13 @@ vendor/grammars/gradle.tmbundle: - source.groovy.gradle vendor/grammars/graphiql: - inline.graphql +- inline.graphql.markdown.codeblock - inline.graphql.php - inline.graphql.python +- inline.graphql.rb - inline.graphql.re - inline.graphql.res - inline.graphql.scala -- markdown.graphql.codeblock - source.graphql vendor/grammars/graphviz.tmbundle: - source.dot @@ -1090,6 +1091,7 @@ vendor/grammars/vhdl: vendor/grammars/vsc-ember-syntax: - inline.hbs - inline.template +- markdown.glimmer.codeblock - source.gjs - source.gts - text.html.ember-handlebars diff --git a/lib/linguist/VERSION b/lib/linguist/VERSION index 757a860d63..d88eca009e 100644 --- a/lib/linguist/VERSION +++ b/lib/linguist/VERSION @@ -1 +1 @@ -7.28.0 +7.29.0 diff --git a/script/list-grammars b/script/list-grammars index cbc39bee34..5cd47c9b61 100755 --- a/script/list-grammars +++ b/script/list-grammars @@ -24,6 +24,7 @@ TREE_SITTER_GRAMMARS = { "Regular Expression" => "https://github.com/tree-sitter/tree-sitter-regex", "Ruby" => "https://github.com/tree-sitter/tree-sitter-ruby", "Rust" => "https://github.com/tree-sitter/tree-sitter-rust", + "Swift" => "https://github.com/alex-pinkus/tree-sitter-swift", "TLA" => "https://github.com/tlaplus-community/tree-sitter-tlaplus", "TypeScript" => "https://github.com/tree-sitter/tree-sitter-typescript" } diff --git a/vendor/CodeMirror b/vendor/CodeMirror index e84384b421..0c8456c3bc 160000 --- a/vendor/CodeMirror +++ b/vendor/CodeMirror @@ -1 +1 @@ -Subproject commit e84384b4210bc35300994de07c6333666f2a5c9e +Subproject commit 0c8456c3bc92fb3085ac636f5ed117df24e22ca7 diff --git a/vendor/README.md b/vendor/README.md index 0618c5fd75..2dd99fc849 100644 --- a/vendor/README.md +++ b/vendor/README.md @@ -547,7 +547,7 @@ This is a list of grammars that Linguist selects to provide syntax highlighting - **Svelte:** [sebastinez/svelte-atom](https://github.com/sebastinez/svelte-atom) - **Sway:** [FuelLabs/sway-vscode-plugin](https://github.com/FuelLabs/sway-vscode-plugin) - **Sweave:** [textmate/sweave.tmbundle](https://github.com/textmate/sweave.tmbundle) -- **Swift:** [jtbandes/swift-tmlanguage](https://github.com/jtbandes/swift-tmlanguage) +- **Swift:** [alex-pinkus/tree-sitter-swift](https://github.com/alex-pinkus/tree-sitter-swift) 🐌 - **SystemVerilog:** [TheClams/SystemVerilog](https://github.com/TheClams/SystemVerilog) - **TI Program:** [TIny-Hacker/language-ti-basic](https://github.com/TIny-Hacker/language-ti-basic) - **TL-Verilog:** [adamint/tlv-vscode](https://github.com/adamint/tlv-vscode) diff --git a/vendor/grammars/AL b/vendor/grammars/AL index 96c4076639..980dd02ef2 160000 --- a/vendor/grammars/AL +++ b/vendor/grammars/AL @@ -1 +1 @@ -Subproject commit 96c407663984341b21e574a58ef6ca6f89cc3fc0 +Subproject commit 980dd02ef2a61316ec76d7a2e9765f1460e6c142 diff --git a/vendor/grammars/MATLAB-Language-grammar b/vendor/grammars/MATLAB-Language-grammar index da0cd40def..f3533822b2 160000 --- a/vendor/grammars/MATLAB-Language-grammar +++ b/vendor/grammars/MATLAB-Language-grammar @@ -1 +1 @@ -Subproject commit da0cd40defa79fb9f867d6d0b222091cfdab3869 +Subproject commit f3533822b2d740fd4128722854c98b9f1b5d07ee diff --git a/vendor/grammars/Nasal.tmbundle b/vendor/grammars/Nasal.tmbundle index 95113f60db..beb4c5bee4 160000 --- a/vendor/grammars/Nasal.tmbundle +++ b/vendor/grammars/Nasal.tmbundle @@ -1 +1 @@ -Subproject commit 95113f60db7cb7ac7b6c3d854683773879407a48 +Subproject commit beb4c5bee4e83de7cbf25c0cdc25e28489c8a1f7 diff --git a/vendor/grammars/Terraform.tmLanguage b/vendor/grammars/Terraform.tmLanguage index 7faec10b40..1576c26c2a 160000 --- a/vendor/grammars/Terraform.tmLanguage +++ b/vendor/grammars/Terraform.tmLanguage @@ -1 +1 @@ -Subproject commit 7faec10b4057b95bff82fb585730e560871d26c4 +Subproject commit 1576c26c2ac215f9bed5e1f8a061f123bf63e6b2 diff --git a/vendor/grammars/TypeScript-TmLanguage b/vendor/grammars/TypeScript-TmLanguage index 6df2bff55f..4fdfd38727 160000 --- a/vendor/grammars/TypeScript-TmLanguage +++ b/vendor/grammars/TypeScript-TmLanguage @@ -1 +1 @@ -Subproject commit 6df2bff55f94bfe0bde94a323e041193d150c67e +Subproject commit 4fdfd387273124944e32582f9f5af019f515158e diff --git a/vendor/grammars/VscodeAdblockSyntax b/vendor/grammars/VscodeAdblockSyntax index 58e8198dc4..b4a53bee21 160000 --- a/vendor/grammars/VscodeAdblockSyntax +++ b/vendor/grammars/VscodeAdblockSyntax @@ -1 +1 @@ -Subproject commit 58e8198dc42e11fcf471471acd1212fe62525d56 +Subproject commit b4a53bee21c0f5074956a7377a36a45febf97d25 diff --git a/vendor/grammars/abl-tmlanguage b/vendor/grammars/abl-tmlanguage index e928116b41..bc85d5f1b0 160000 --- a/vendor/grammars/abl-tmlanguage +++ b/vendor/grammars/abl-tmlanguage @@ -1 +1 @@ -Subproject commit e928116b4138bcf191b6f64be5bf92ef9c345d75 +Subproject commit bc85d5f1b0e10ca4a3eb6946d5426d2560a4e328 diff --git a/vendor/grammars/aidl-language b/vendor/grammars/aidl-language index ce07cdf6b9..c2c0074c59 160000 --- a/vendor/grammars/aidl-language +++ b/vendor/grammars/aidl-language @@ -1 +1 @@ -Subproject commit ce07cdf6b9b9dbc4857c4b2fc59a55ac0e17ecd4 +Subproject commit c2c0074c593954bcd27036db118aee6a13abfa20 diff --git a/vendor/grammars/astro b/vendor/grammars/astro index dd23bc1c16..1a55b6f122 160000 --- a/vendor/grammars/astro +++ b/vendor/grammars/astro @@ -1 +1 @@ -Subproject commit dd23bc1c169f67d90c949da52c0a1265b9a8d5ba +Subproject commit 1a55b6f122f35d1e08716627fad6c8bcfeedab2f diff --git a/vendor/grammars/atom-language-julia b/vendor/grammars/atom-language-julia index 85cf3ef2dd..0735fb8026 160000 --- a/vendor/grammars/atom-language-julia +++ b/vendor/grammars/atom-language-julia @@ -1 +1 @@ -Subproject commit 85cf3ef2ddcb7bc9b2b17b2a5f1fc664e1f1e718 +Subproject commit 0735fb802696a2b6d89e12ba302d0a85d901bc17 diff --git a/vendor/grammars/bicep b/vendor/grammars/bicep index 49dcf8ea70..0c0394b9f7 160000 --- a/vendor/grammars/bicep +++ b/vendor/grammars/bicep @@ -1 +1 @@ -Subproject commit 49dcf8ea70ac2f9a3201fc8b9f516f443e2e8b44 +Subproject commit 0c0394b9f70f59b4a2d31dc9cc9b0ba03493685f diff --git a/vendor/grammars/bikeshed b/vendor/grammars/bikeshed index 7d798b7462..584813e638 160000 --- a/vendor/grammars/bikeshed +++ b/vendor/grammars/bikeshed @@ -1 +1 @@ -Subproject commit 7d798b74621222a5f9f392312e8206bd309ce8b1 +Subproject commit 584813e6380533a19c6656594c810bf974854e68 diff --git a/vendor/grammars/csharp-tmLanguage b/vendor/grammars/csharp-tmLanguage index 0febdc7893..7a7482ffc7 160000 --- a/vendor/grammars/csharp-tmLanguage +++ b/vendor/grammars/csharp-tmLanguage @@ -1 +1 @@ -Subproject commit 0febdc78936552b2671a034ae3c06d485c0e0a05 +Subproject commit 7a7482ffc72a6677a87eb1ed76005593a4f7f131 diff --git a/vendor/grammars/d.tmbundle b/vendor/grammars/d.tmbundle index e031d03ce0..9fb354be1c 160000 --- a/vendor/grammars/d.tmbundle +++ b/vendor/grammars/d.tmbundle @@ -1 +1 @@ -Subproject commit e031d03ce0c2fe0f9e064dad1faf670a19bde482 +Subproject commit 9fb354be1c3fbb6a91f543f584d47099d338baf0 diff --git a/vendor/grammars/dart-syntax-highlight b/vendor/grammars/dart-syntax-highlight index 0a6648177b..1b307d29d4 160000 --- a/vendor/grammars/dart-syntax-highlight +++ b/vendor/grammars/dart-syntax-highlight @@ -1 +1 @@ -Subproject commit 0a6648177bdbb91a4e1a38c16e57ede0ccba4f18 +Subproject commit 1b307d29d454a382f1c143de516335b1a885484b diff --git a/vendor/grammars/edge-vscode b/vendor/grammars/edge-vscode index 384dee2794..90ee5daf16 160000 --- a/vendor/grammars/edge-vscode +++ b/vendor/grammars/edge-vscode @@ -1 +1 @@ -Subproject commit 384dee2794fa3819ea70bc5767197b08bb3f97a5 +Subproject commit 90ee5daf16680df3a00a9f1aed0bf014087dec8b diff --git a/vendor/grammars/elixir-tmbundle b/vendor/grammars/elixir-tmbundle index b01fffc491..f6867d6aee 160000 --- a/vendor/grammars/elixir-tmbundle +++ b/vendor/grammars/elixir-tmbundle @@ -1 +1 @@ -Subproject commit b01fffc49179bdec936ca19b53ba4fc7c51a2cc0 +Subproject commit f6867d6aee89c23a9803d958c62eef1c60170e28 diff --git a/vendor/grammars/elvish b/vendor/grammars/elvish index 1c0cffbfed..eadae7fc65 160000 --- a/vendor/grammars/elvish +++ b/vendor/grammars/elvish @@ -1 +1 @@ -Subproject commit 1c0cffbfed892aa7129ae0a19dad1617255a9faa +Subproject commit eadae7fc651345f925e6e412628e1a463954ae5f diff --git a/vendor/grammars/gemini-vscode b/vendor/grammars/gemini-vscode index a23bc21ab3..72ef757a0c 160000 --- a/vendor/grammars/gemini-vscode +++ b/vendor/grammars/gemini-vscode @@ -1 +1 @@ -Subproject commit a23bc21ab36a0dd5f292a594f7795ae539449907 +Subproject commit 72ef757a0cb5d1e7137edd97579a92588f7e54cb diff --git a/vendor/grammars/godot-vscode-plugin b/vendor/grammars/godot-vscode-plugin index e7e2d0439d..5cef963162 160000 --- a/vendor/grammars/godot-vscode-plugin +++ b/vendor/grammars/godot-vscode-plugin @@ -1 +1 @@ -Subproject commit e7e2d0439dea0fb3a568378554c81e0a17348a84 +Subproject commit 5cef96316208d76795c9763291889b92f2d84d4b diff --git a/vendor/grammars/graphiql b/vendor/grammars/graphiql index a80801970e..ece99f63f5 160000 --- a/vendor/grammars/graphiql +++ b/vendor/grammars/graphiql @@ -1 +1 @@ -Subproject commit a80801970e095e493eb0fda7687766f103bf701e +Subproject commit ece99f63f5d8d01057b735e90a6957edea3e42b9 diff --git a/vendor/grammars/ide-tools b/vendor/grammars/ide-tools index feab331f7c..730b51f7bd 160000 --- a/vendor/grammars/ide-tools +++ b/vendor/grammars/ide-tools @@ -1 +1 @@ -Subproject commit feab331f7c44d153adb8a0e5ddff8a02cb4ab78f +Subproject commit 730b51f7bda8d6144eee18c78b3899733cf6aa44 diff --git a/vendor/grammars/ionide-fsgrammar b/vendor/grammars/ionide-fsgrammar index 472c6b2030..7d029a46f1 160000 --- a/vendor/grammars/ionide-fsgrammar +++ b/vendor/grammars/ionide-fsgrammar @@ -1 +1 @@ -Subproject commit 472c6b2030c962217cbbb26e4ddcce1b8ffe0867 +Subproject commit 7d029a46f17637228b2ee85dd02e511c3e8039b3 diff --git a/vendor/grammars/language-bh b/vendor/grammars/language-bh index b3dba370c2..803ee32719 160000 --- a/vendor/grammars/language-bh +++ b/vendor/grammars/language-bh @@ -1 +1 @@ -Subproject commit b3dba370c2d669e922fce25cc8319adab82abc3e +Subproject commit 803ee327190ef7974caeba4ecbf24158efb33633 diff --git a/vendor/grammars/language-csound b/vendor/grammars/language-csound index 975436138f..55beb6eab9 160000 --- a/vendor/grammars/language-csound +++ b/vendor/grammars/language-csound @@ -1 +1 @@ -Subproject commit 975436138f2ab808e4a2c3897586ccb0b3c958c2 +Subproject commit 55beb6eab9ad3783336fbefac52d759245954bc1 diff --git a/vendor/grammars/language-etc b/vendor/grammars/language-etc index 6d176400d6..1fd00541cc 160000 --- a/vendor/grammars/language-etc +++ b/vendor/grammars/language-etc @@ -1 +1 @@ -Subproject commit 6d176400d627b0c723180c46bec862b078250401 +Subproject commit 1fd00541cc0cd25b319c2a749d55e0144a91451c diff --git a/vendor/grammars/language-subtitles b/vendor/grammars/language-subtitles index 70c9d731c1..82cf7686f8 160000 --- a/vendor/grammars/language-subtitles +++ b/vendor/grammars/language-subtitles @@ -1 +1 @@ -Subproject commit 70c9d731c1ba24f058c6630824cf1188cbee9843 +Subproject commit 82cf7686f8f15c19c80e612c8b7da57d87eeb5b7 diff --git a/vendor/grammars/language-ti-basic b/vendor/grammars/language-ti-basic index 38372ee47d..a99235c170 160000 --- a/vendor/grammars/language-ti-basic +++ b/vendor/grammars/language-ti-basic @@ -1 +1 @@ -Subproject commit 38372ee47dba84daf4bfb8ba4267d344a5bbfe1f +Subproject commit a99235c170f4bfec723bd07cf3b4a66c56ec2cc2 diff --git a/vendor/grammars/latex.tmbundle b/vendor/grammars/latex.tmbundle index 0be3da8fd8..90d3383ff8 160000 --- a/vendor/grammars/latex.tmbundle +++ b/vendor/grammars/latex.tmbundle @@ -1 +1 @@ -Subproject commit 0be3da8fd8de49a8bfc178a71728e6bfb5117570 +Subproject commit 90d3383ff86b7f4495e33c7c5240dde7308376ee diff --git a/vendor/grammars/markdown-tm-language b/vendor/grammars/markdown-tm-language index 11eeefed6b..371d61df9d 160000 --- a/vendor/grammars/markdown-tm-language +++ b/vendor/grammars/markdown-tm-language @@ -1 +1 @@ -Subproject commit 11eeefed6b5b13f0bfda019972ab96405a10a8fd +Subproject commit 371d61df9ddc3850e12aabe61b602d02e259e8a4 diff --git a/vendor/grammars/nu-grammar b/vendor/grammars/nu-grammar index c8c9493f75..1ee4b15bd2 160000 --- a/vendor/grammars/nu-grammar +++ b/vendor/grammars/nu-grammar @@ -1 +1 @@ -Subproject commit c8c9493f755468ac8cadf229c9d240950302ce33 +Subproject commit 1ee4b15bd214c951b75270d55c3e273b486f0a75 diff --git a/vendor/grammars/praatvscode b/vendor/grammars/praatvscode index 725a508445..17f2d5eedf 160000 --- a/vendor/grammars/praatvscode +++ b/vendor/grammars/praatvscode @@ -1 +1 @@ -Subproject commit 725a508445b14c3e68b470c9488ede0dc24b9f89 +Subproject commit 17f2d5eedf54c66b098d8db32956bda9e4bca090 diff --git a/vendor/grammars/qsharp-compiler b/vendor/grammars/qsharp-compiler index 96258b0a5e..1b4270217a 160000 --- a/vendor/grammars/qsharp-compiler +++ b/vendor/grammars/qsharp-compiler @@ -1 +1 @@ -Subproject commit 96258b0a5e7fa13f711ebfa05bb190e83aca5c8c +Subproject commit 1b4270217aff846fb8d2d1f24094bd7bb36514a5 diff --git a/vendor/grammars/rescript-vscode b/vendor/grammars/rescript-vscode index fde49b6ab1..69bfb269cd 160000 --- a/vendor/grammars/rescript-vscode +++ b/vendor/grammars/rescript-vscode @@ -1 +1 @@ -Subproject commit fde49b6ab1fb1681581e8366809388564e885473 +Subproject commit 69bfb269cde531e2d2cd3ad8e6768ae4a7d62d1f diff --git a/vendor/grammars/roc-vscode-unofficial b/vendor/grammars/roc-vscode-unofficial index 51a7a603b0..d53277f0ab 160000 --- a/vendor/grammars/roc-vscode-unofficial +++ b/vendor/grammars/roc-vscode-unofficial @@ -1 +1 @@ -Subproject commit 51a7a603b0648c7cec4ab8aa655a2ca320e1652f +Subproject commit d53277f0ab5c213949acd5293cf6b48f32f8ae50 diff --git a/vendor/grammars/rust-syntax b/vendor/grammars/rust-syntax index 20730dff3c..cf3c686a50 160000 --- a/vendor/grammars/rust-syntax +++ b/vendor/grammars/rust-syntax @@ -1 +1 @@ -Subproject commit 20730dff3c367cb40a7edd278fdaf0239ea50833 +Subproject commit cf3c686a50295380ce9994218138691f8767870c diff --git a/vendor/grammars/sas.tmbundle b/vendor/grammars/sas.tmbundle index c00ce8fe26..9d84eddcbf 160000 --- a/vendor/grammars/sas.tmbundle +++ b/vendor/grammars/sas.tmbundle @@ -1 +1 @@ -Subproject commit c00ce8fe26ce245672d6e208d87d488f1db99ebd +Subproject commit 9d84eddcbffb86df3091fc88d0983bc33ec358a0 diff --git a/vendor/grammars/selinux-policy-languages b/vendor/grammars/selinux-policy-languages index 7bd17d9c91..502c96ccf3 160000 --- a/vendor/grammars/selinux-policy-languages +++ b/vendor/grammars/selinux-policy-languages @@ -1 +1 @@ -Subproject commit 7bd17d9c9160cd8168a159c6cc574d45cb67b125 +Subproject commit 502c96ccf38476a627897209bf726fd4e40296b8 diff --git a/vendor/grammars/sourcepawn-vscode b/vendor/grammars/sourcepawn-vscode index 5deb97723f..339ceeb9d3 160000 --- a/vendor/grammars/sourcepawn-vscode +++ b/vendor/grammars/sourcepawn-vscode @@ -1 +1 @@ -Subproject commit 5deb97723f34bdd1cbbe45fdbb80df2757f73902 +Subproject commit 339ceeb9d3c3c61706a743d14284821f33f04d26 diff --git a/vendor/grammars/sublime-pony b/vendor/grammars/sublime-pony index 13f1b55340..80f6c4dfbf 160000 --- a/vendor/grammars/sublime-pony +++ b/vendor/grammars/sublime-pony @@ -1 +1 @@ -Subproject commit 13f1b55340ddd46c7dfeac6446030dfe8d105f90 +Subproject commit 80f6c4dfbff2edc4e8546b33c983f4314de06630 diff --git a/vendor/grammars/sway-vscode-plugin b/vendor/grammars/sway-vscode-plugin index 87a3e64593..a6bb690d0a 160000 --- a/vendor/grammars/sway-vscode-plugin +++ b/vendor/grammars/sway-vscode-plugin @@ -1 +1 @@ -Subproject commit 87a3e645933f353e27fc0e8aa246d9d8786c2f30 +Subproject commit a6bb690d0a9839450971eae22a0f207c654126a5 diff --git a/vendor/grammars/swift-tmlanguage b/vendor/grammars/swift-tmlanguage index a032cf0fd2..d13e3fb2ed 160000 --- a/vendor/grammars/swift-tmlanguage +++ b/vendor/grammars/swift-tmlanguage @@ -1 +1 @@ -Subproject commit a032cf0fd2bca0a33ac2267ff6d6406cc22c7930 +Subproject commit d13e3fb2ed23a42959bab7f4c22a872a5b528ab7 diff --git a/vendor/grammars/syntax b/vendor/grammars/syntax index ced984baed..aa2c94baee 160000 --- a/vendor/grammars/syntax +++ b/vendor/grammars/syntax @@ -1 +1 @@ -Subproject commit ced984baed78a85834dbbd1724d3e600ba50ef8d +Subproject commit aa2c94baeea2856835f87bd206237c550197e97f diff --git a/vendor/grammars/vscode-antlers-language-server b/vendor/grammars/vscode-antlers-language-server index c8239a2e57..bff5066893 160000 --- a/vendor/grammars/vscode-antlers-language-server +++ b/vendor/grammars/vscode-antlers-language-server @@ -1 +1 @@ -Subproject commit c8239a2e5769b7178f37978a51fd234e94236bf9 +Subproject commit bff50668934abb41b197d75650a13fb5e300132e diff --git a/vendor/grammars/vscode-bitbake b/vendor/grammars/vscode-bitbake index aa82827bfc..9e40b81902 160000 --- a/vendor/grammars/vscode-bitbake +++ b/vendor/grammars/vscode-bitbake @@ -1 +1 @@ -Subproject commit aa82827bfc25cbb08da262b75162981f0ca3773e +Subproject commit 9e40b819028eddc09388840e014aa5d24e884046 diff --git a/vendor/grammars/vscode-brightscript-language b/vendor/grammars/vscode-brightscript-language index e478cfef01..b05f3a31a8 160000 --- a/vendor/grammars/vscode-brightscript-language +++ b/vendor/grammars/vscode-brightscript-language @@ -1 +1 @@ -Subproject commit e478cfef01559c25c705d31dfde84a10a8f50d14 +Subproject commit b05f3a31a8877a8fa0e00ff554a3e98328050c44 diff --git a/vendor/grammars/vscode-cadence b/vendor/grammars/vscode-cadence index 18d86f3589..2ce921581a 160000 --- a/vendor/grammars/vscode-cadence +++ b/vendor/grammars/vscode-cadence @@ -1 +1 @@ -Subproject commit 18d86f3589d487e1894e79e00c539ef6463b82b1 +Subproject commit 2ce921581a804fa32317b829c54c1c0fd904975a diff --git a/vendor/grammars/vscode-codeql b/vendor/grammars/vscode-codeql index 8fac9b1413..3005dacf4e 160000 --- a/vendor/grammars/vscode-codeql +++ b/vendor/grammars/vscode-codeql @@ -1 +1 @@ -Subproject commit 8fac9b1413b019f0eff5682cd6ab7aa747e41e2b +Subproject commit 3005dacf4ed480aa76e541b7d3697f5a34571faf diff --git a/vendor/grammars/vscode-fluent b/vendor/grammars/vscode-fluent index cae702ed1b..51ceeb59d6 160000 --- a/vendor/grammars/vscode-fluent +++ b/vendor/grammars/vscode-fluent @@ -1 +1 @@ -Subproject commit cae702ed1b3a6a2b6a58260a8e1194bc40421218 +Subproject commit 51ceeb59d645d0d1ec9b4080175bc1ce4d709075 diff --git a/vendor/grammars/vscode-go b/vendor/grammars/vscode-go index d6fb20289a..b4b68a76fa 160000 --- a/vendor/grammars/vscode-go +++ b/vendor/grammars/vscode-go @@ -1 +1 @@ -Subproject commit d6fb20289a8484e57dc4fa21a2f44094de7f1a5b +Subproject commit b4b68a76fac190ca12179ef9ef24ecffc57ea9d6 diff --git a/vendor/grammars/vscode-hack b/vendor/grammars/vscode-hack index d75dd72a5d..dd79d7146c 160000 --- a/vendor/grammars/vscode-hack +++ b/vendor/grammars/vscode-hack @@ -1 +1 @@ -Subproject commit d75dd72a5d52436d208a627a2ead5423c94eb3e9 +Subproject commit dd79d7146ccffb3e0a1020e9f8790242c37b6c21 diff --git a/vendor/grammars/vscode-jest b/vendor/grammars/vscode-jest index 9ce5948c18..0c57873f91 160000 --- a/vendor/grammars/vscode-jest +++ b/vendor/grammars/vscode-jest @@ -1 +1 @@ -Subproject commit 9ce5948c187f29251956baa39b7a6f48f3b358c5 +Subproject commit 0c57873f91138961f90fedeb5fd1f0da9d45c601 diff --git a/vendor/grammars/vscode-lean4 b/vendor/grammars/vscode-lean4 index 9a70ded672..5bba1807fa 160000 --- a/vendor/grammars/vscode-lean4 +++ b/vendor/grammars/vscode-lean4 @@ -1 +1 @@ -Subproject commit 9a70ded67215a5c27186b13db1889ce4f6677711 +Subproject commit 5bba1807fa3e11db829fdc4728fe873b3d7edff3 diff --git a/vendor/grammars/vscode-motoko b/vendor/grammars/vscode-motoko index 6ca939989c..1d256baa0c 160000 --- a/vendor/grammars/vscode-motoko +++ b/vendor/grammars/vscode-motoko @@ -1 +1 @@ -Subproject commit 6ca939989c08c5dc25619fe0cc0f356a088481ab +Subproject commit 1d256baa0cfec3cb3083c519d926a0453f201623 diff --git a/vendor/grammars/vscode-move-syntax b/vendor/grammars/vscode-move-syntax index 87e11a9807..f9436ad72c 160000 --- a/vendor/grammars/vscode-move-syntax +++ b/vendor/grammars/vscode-move-syntax @@ -1 +1 @@ -Subproject commit 87e11a9807c7cb27bda25889318b29fe3679599b +Subproject commit f9436ad72cc7d3c6848eb02759c808ae0663295d diff --git a/vendor/grammars/vscode-opa b/vendor/grammars/vscode-opa index d3ed1f25c3..dcf4476992 160000 --- a/vendor/grammars/vscode-opa +++ b/vendor/grammars/vscode-opa @@ -1 +1 @@ -Subproject commit d3ed1f25c39ed03460cf230783184aa6f9deef55 +Subproject commit dcf447699243ef2984d8dcb0b009b35b3fe74400 diff --git a/vendor/grammars/vscode-prisma b/vendor/grammars/vscode-prisma index 57be6b1802..bf28282fd0 160000 --- a/vendor/grammars/vscode-prisma +++ b/vendor/grammars/vscode-prisma @@ -1 +1 @@ -Subproject commit 57be6b1802b1fe1802a99aef4e231868fb84c67e +Subproject commit bf28282fd07c675b79282cafb63b4912bc6c7156 diff --git a/vendor/grammars/vscode-procfile b/vendor/grammars/vscode-procfile index b1ddcf5c34..4e149fd5e7 160000 --- a/vendor/grammars/vscode-procfile +++ b/vendor/grammars/vscode-procfile @@ -1 +1 @@ -Subproject commit b1ddcf5c349acaa005fabdcf7111f34443d552f3 +Subproject commit 4e149fd5e757352aa5867b59934acc16e19182a1 diff --git a/vendor/grammars/vscode-python b/vendor/grammars/vscode-python index 209d6bd696..e931bed3ef 160000 --- a/vendor/grammars/vscode-python +++ b/vendor/grammars/vscode-python @@ -1 +1 @@ -Subproject commit 209d6bd69699220bc56666a938798c8549baf933 +Subproject commit e931bed3efbede7b05113316506958ecd7506777 diff --git a/vendor/grammars/vscode-scala-syntax b/vendor/grammars/vscode-scala-syntax index 27315cb983..fb73e8a0bf 160000 --- a/vendor/grammars/vscode-scala-syntax +++ b/vendor/grammars/vscode-scala-syntax @@ -1 +1 @@ -Subproject commit 27315cb9837bbce3190c452bf77169910afac0eb +Subproject commit fb73e8a0bfcd9a3c45f2c1b712e00c35865a9178 diff --git a/vendor/grammars/vscode-slice b/vendor/grammars/vscode-slice index 895b11ce75..a4aacfa8bc 160000 --- a/vendor/grammars/vscode-slice +++ b/vendor/grammars/vscode-slice @@ -1 +1 @@ -Subproject commit 895b11ce7543e307004f884abf295afbe7e60161 +Subproject commit a4aacfa8bc1ec6cc925dfd891dd75dfbf9df207d diff --git a/vendor/grammars/vscode-vba b/vendor/grammars/vscode-vba index 94e1124164..5aad9c16d2 160000 --- a/vendor/grammars/vscode-vba +++ b/vendor/grammars/vscode-vba @@ -1 +1 @@ -Subproject commit 94e112416478e1f1728ce9ce88fc4ff1a9ed01ad +Subproject commit 5aad9c16d2bff5d43c2bb639dcd414a24696ce42 diff --git a/vendor/grammars/vscode_cobol b/vendor/grammars/vscode_cobol index 4ce2db022a..b09f64b00e 160000 --- a/vendor/grammars/vscode_cobol +++ b/vendor/grammars/vscode_cobol @@ -1 +1 @@ -Subproject commit 4ce2db022af24d9864c82f5bf0db40233a0cbfd8 +Subproject commit b09f64b00eee66dca496a69ea68f4c2c5c78e359 diff --git a/vendor/licenses/git_submodule/AL.dep.yml b/vendor/licenses/git_submodule/AL.dep.yml index f596892927..c6681bbab2 100644 --- a/vendor/licenses/git_submodule/AL.dep.yml +++ b/vendor/licenses/git_submodule/AL.dep.yml @@ -1,6 +1,6 @@ --- name: AL -version: 96c407663984341b21e574a58ef6ca6f89cc3fc0 +version: 980dd02ef2a61316ec76d7a2e9765f1460e6c142 type: git_submodule homepage: https://github.com/microsoft/AL license: mit diff --git a/vendor/licenses/git_submodule/CodeMirror.dep.yml b/vendor/licenses/git_submodule/CodeMirror.dep.yml index ee6d157dc1..545e10b1c7 100644 --- a/vendor/licenses/git_submodule/CodeMirror.dep.yml +++ b/vendor/licenses/git_submodule/CodeMirror.dep.yml @@ -1,6 +1,6 @@ --- name: CodeMirror -version: e84384b4210bc35300994de07c6333666f2a5c9e +version: 0c8456c3bc92fb3085ac636f5ed117df24e22ca7 type: git_submodule homepage: https://github.com/codemirror/CodeMirror license: mit diff --git a/vendor/licenses/git_submodule/MATLAB-Language-grammar.dep.yml b/vendor/licenses/git_submodule/MATLAB-Language-grammar.dep.yml index a62189851b..4adcbebaed 100644 --- a/vendor/licenses/git_submodule/MATLAB-Language-grammar.dep.yml +++ b/vendor/licenses/git_submodule/MATLAB-Language-grammar.dep.yml @@ -1,6 +1,6 @@ --- name: MATLAB-Language-grammar -version: da0cd40defa79fb9f867d6d0b222091cfdab3869 +version: f3533822b2d740fd4128722854c98b9f1b5d07ee type: git_submodule homepage: https://github.com/mathworks/MATLAB-Language-grammar license: bsd-2-clause diff --git a/vendor/licenses/git_submodule/Nasal.tmbundle.dep.yml b/vendor/licenses/git_submodule/Nasal.tmbundle.dep.yml index d23ad3e742..bcc70bdb2e 100644 --- a/vendor/licenses/git_submodule/Nasal.tmbundle.dep.yml +++ b/vendor/licenses/git_submodule/Nasal.tmbundle.dep.yml @@ -1,6 +1,6 @@ --- name: Nasal.tmbundle -version: 95113f60db7cb7ac7b6c3d854683773879407a48 +version: beb4c5bee4e83de7cbf25c0cdc25e28489c8a1f7 type: git_submodule homepage: https://github.com/BobDotCom/Nasal.tmbundle.git license: mit diff --git a/vendor/licenses/git_submodule/Terraform.tmLanguage.dep.yml b/vendor/licenses/git_submodule/Terraform.tmLanguage.dep.yml index 23c0d929bd..8c29e40aa8 100644 --- a/vendor/licenses/git_submodule/Terraform.tmLanguage.dep.yml +++ b/vendor/licenses/git_submodule/Terraform.tmLanguage.dep.yml @@ -1,6 +1,6 @@ --- name: Terraform.tmLanguage -version: 7faec10b4057b95bff82fb585730e560871d26c4 +version: 1576c26c2ac215f9bed5e1f8a061f123bf63e6b2 type: git_submodule homepage: https://github.com/alexlouden/Terraform.tmLanguage license: mit diff --git a/vendor/licenses/git_submodule/TypeScript-TmLanguage.dep.yml b/vendor/licenses/git_submodule/TypeScript-TmLanguage.dep.yml index db159e8ed4..cdaa599e6f 100644 --- a/vendor/licenses/git_submodule/TypeScript-TmLanguage.dep.yml +++ b/vendor/licenses/git_submodule/TypeScript-TmLanguage.dep.yml @@ -1,6 +1,6 @@ --- name: TypeScript-TmLanguage -version: 6df2bff55f94bfe0bde94a323e041193d150c67e +version: 4fdfd387273124944e32582f9f5af019f515158e type: git_submodule homepage: https://github.com/Microsoft/TypeScript-TmLanguage license: mit diff --git a/vendor/licenses/git_submodule/VscodeAdblockSyntax.dep.yml b/vendor/licenses/git_submodule/VscodeAdblockSyntax.dep.yml index aac3475cbd..a1783f292a 100644 --- a/vendor/licenses/git_submodule/VscodeAdblockSyntax.dep.yml +++ b/vendor/licenses/git_submodule/VscodeAdblockSyntax.dep.yml @@ -1,6 +1,6 @@ --- name: VscodeAdblockSyntax -version: 58e8198dc42e11fcf471471acd1212fe62525d56 +version: b4a53bee21c0f5074956a7377a36a45febf97d25 type: git_submodule homepage: https://github.com/AdguardTeam/VscodeAdblockSyntax.git license: mit diff --git a/vendor/licenses/git_submodule/abl-tmlanguage.dep.yml b/vendor/licenses/git_submodule/abl-tmlanguage.dep.yml index acec35ed92..852a6e16f8 100644 --- a/vendor/licenses/git_submodule/abl-tmlanguage.dep.yml +++ b/vendor/licenses/git_submodule/abl-tmlanguage.dep.yml @@ -1,6 +1,6 @@ --- name: abl-tmlanguage -version: e928116b4138bcf191b6f64be5bf92ef9c345d75 +version: bc85d5f1b0e10ca4a3eb6946d5426d2560a4e328 type: git_submodule homepage: https://github.com/chriscamicas/abl-tmlanguage license: mit diff --git a/vendor/licenses/git_submodule/aidl-language.dep.yml b/vendor/licenses/git_submodule/aidl-language.dep.yml index 11ec0d1857..7572eac527 100644 --- a/vendor/licenses/git_submodule/aidl-language.dep.yml +++ b/vendor/licenses/git_submodule/aidl-language.dep.yml @@ -1,6 +1,6 @@ --- name: aidl-language -version: ce07cdf6b9b9dbc4857c4b2fc59a55ac0e17ecd4 +version: c2c0074c593954bcd27036db118aee6a13abfa20 type: git_submodule homepage: https://github.com/google/aidl-language license: apache-2.0 diff --git a/vendor/licenses/git_submodule/astro.dep.yml b/vendor/licenses/git_submodule/astro.dep.yml index 04196bec15..8add33b746 100644 --- a/vendor/licenses/git_submodule/astro.dep.yml +++ b/vendor/licenses/git_submodule/astro.dep.yml @@ -1,6 +1,6 @@ --- name: astro -version: dd23bc1c169f67d90c949da52c0a1265b9a8d5ba +version: 1a55b6f122f35d1e08716627fad6c8bcfeedab2f type: git_submodule homepage: https://github.com/withastro/language-tools.git license: mit diff --git a/vendor/licenses/git_submodule/atom-language-julia.dep.yml b/vendor/licenses/git_submodule/atom-language-julia.dep.yml index 18621e8f99..e3a94c7451 100644 --- a/vendor/licenses/git_submodule/atom-language-julia.dep.yml +++ b/vendor/licenses/git_submodule/atom-language-julia.dep.yml @@ -1,6 +1,6 @@ --- name: atom-language-julia -version: 85cf3ef2ddcb7bc9b2b17b2a5f1fc664e1f1e718 +version: 0735fb802696a2b6d89e12ba302d0a85d901bc17 type: git_submodule homepage: https://github.com/JuliaEditorSupport/atom-language-julia license: mit diff --git a/vendor/licenses/git_submodule/bicep.dep.yml b/vendor/licenses/git_submodule/bicep.dep.yml index db00c10a01..ff92b35256 100644 --- a/vendor/licenses/git_submodule/bicep.dep.yml +++ b/vendor/licenses/git_submodule/bicep.dep.yml @@ -1,6 +1,6 @@ --- name: bicep -version: 49dcf8ea70ac2f9a3201fc8b9f516f443e2e8b44 +version: 0c0394b9f70f59b4a2d31dc9cc9b0ba03493685f type: git_submodule homepage: https://github.com/azure/bicep license: mit diff --git a/vendor/licenses/git_submodule/bikeshed.dep.yml b/vendor/licenses/git_submodule/bikeshed.dep.yml index 2ea6fa64a2..87e81b2f91 100644 --- a/vendor/licenses/git_submodule/bikeshed.dep.yml +++ b/vendor/licenses/git_submodule/bikeshed.dep.yml @@ -1,6 +1,6 @@ --- name: bikeshed -version: 7d798b74621222a5f9f392312e8206bd309ce8b1 +version: 584813e6380533a19c6656594c810bf974854e68 type: git_submodule homepage: https://github.com/tabatkins/bikeshed.git license: other diff --git a/vendor/licenses/git_submodule/csharp-tmLanguage.dep.yml b/vendor/licenses/git_submodule/csharp-tmLanguage.dep.yml index 0d49fc97ab..ea28b69b27 100644 --- a/vendor/licenses/git_submodule/csharp-tmLanguage.dep.yml +++ b/vendor/licenses/git_submodule/csharp-tmLanguage.dep.yml @@ -1,6 +1,6 @@ --- name: csharp-tmLanguage -version: 0febdc78936552b2671a034ae3c06d485c0e0a05 +version: 7a7482ffc72a6677a87eb1ed76005593a4f7f131 type: git_submodule homepage: https://github.com/dotnet/csharp-tmLanguage license: mit diff --git a/vendor/licenses/git_submodule/d.tmbundle.dep.yml b/vendor/licenses/git_submodule/d.tmbundle.dep.yml index 6fb461d6cd..a5d0096140 100644 --- a/vendor/licenses/git_submodule/d.tmbundle.dep.yml +++ b/vendor/licenses/git_submodule/d.tmbundle.dep.yml @@ -1,6 +1,6 @@ --- name: d.tmbundle -version: e031d03ce0c2fe0f9e064dad1faf670a19bde482 +version: 9fb354be1c3fbb6a91f543f584d47099d338baf0 type: git_submodule homepage: https://github.com/textmate/d.tmbundle license: permissive diff --git a/vendor/licenses/git_submodule/dart-syntax-highlight.dep.yml b/vendor/licenses/git_submodule/dart-syntax-highlight.dep.yml index c6ebf702de..2dea71a2e0 100644 --- a/vendor/licenses/git_submodule/dart-syntax-highlight.dep.yml +++ b/vendor/licenses/git_submodule/dart-syntax-highlight.dep.yml @@ -1,6 +1,6 @@ --- name: dart-syntax-highlight -version: 0a6648177bdbb91a4e1a38c16e57ede0ccba4f18 +version: 1b307d29d454a382f1c143de516335b1a885484b type: git_submodule homepage: https://github.com/dart-lang/dart-syntax-highlight license: bsd-3-clause diff --git a/vendor/licenses/git_submodule/edge-vscode.dep.yml b/vendor/licenses/git_submodule/edge-vscode.dep.yml index 2f77dac3ff..5cb4748c88 100644 --- a/vendor/licenses/git_submodule/edge-vscode.dep.yml +++ b/vendor/licenses/git_submodule/edge-vscode.dep.yml @@ -1,6 +1,6 @@ --- name: edge-vscode -version: 384dee2794fa3819ea70bc5767197b08bb3f97a5 +version: 90ee5daf16680df3a00a9f1aed0bf014087dec8b type: git_submodule homepage: https://github.com/edge-js/edge-vscode.git license: mit diff --git a/vendor/licenses/git_submodule/elixir-tmbundle.dep.yml b/vendor/licenses/git_submodule/elixir-tmbundle.dep.yml index a147956edb..0cf0b6236c 100644 --- a/vendor/licenses/git_submodule/elixir-tmbundle.dep.yml +++ b/vendor/licenses/git_submodule/elixir-tmbundle.dep.yml @@ -1,6 +1,6 @@ --- name: elixir-tmbundle -version: b01fffc49179bdec936ca19b53ba4fc7c51a2cc0 +version: f6867d6aee89c23a9803d958c62eef1c60170e28 type: git_submodule homepage: https://github.com/elixir-lang/elixir-tmbundle license: apache-2.0 diff --git a/vendor/licenses/git_submodule/elvish.dep.yml b/vendor/licenses/git_submodule/elvish.dep.yml index 22253d31b5..2ef3aab25c 100644 --- a/vendor/licenses/git_submodule/elvish.dep.yml +++ b/vendor/licenses/git_submodule/elvish.dep.yml @@ -1,6 +1,6 @@ --- name: elvish -version: 1c0cffbfed892aa7129ae0a19dad1617255a9faa +version: eadae7fc651345f925e6e412628e1a463954ae5f type: git_submodule homepage: https://github.com/elves/elvish.git license: bsd-2-clause @@ -18,7 +18,7 @@ licenses: for the following: - Files in [pkg/diff](pkg/diff) and [pkg/rpc](pkg/rpc) are released under the - BSD 3-clause license, since they are copied from + BSD 3-clause license, since they are derived from [Go's source code](https://github.com/golang/go). See [pkg/diff/LICENSE](pkg/diff/LICENSE) and [pkg/rpc/LICENSE](pkg/rpc/LICENSE). diff --git a/vendor/licenses/git_submodule/gemini-vscode.dep.yml b/vendor/licenses/git_submodule/gemini-vscode.dep.yml index f5b1f8552a..606cf88e98 100644 --- a/vendor/licenses/git_submodule/gemini-vscode.dep.yml +++ b/vendor/licenses/git_submodule/gemini-vscode.dep.yml @@ -1,6 +1,6 @@ --- name: gemini-vscode -version: a23bc21ab36a0dd5f292a594f7795ae539449907 +version: 72ef757a0cb5d1e7137edd97579a92588f7e54cb type: git_submodule homepage: https://github.com/printfn/gemini-vscode.git license: mit diff --git a/vendor/licenses/git_submodule/godot-vscode-plugin.dep.yml b/vendor/licenses/git_submodule/godot-vscode-plugin.dep.yml index a96528d0c6..254a27adfa 100644 --- a/vendor/licenses/git_submodule/godot-vscode-plugin.dep.yml +++ b/vendor/licenses/git_submodule/godot-vscode-plugin.dep.yml @@ -1,6 +1,6 @@ --- name: godot-vscode-plugin -version: e7e2d0439dea0fb3a568378554c81e0a17348a84 +version: 5cef96316208d76795c9763291889b92f2d84d4b type: git_submodule homepage: https://github.com/godotengine/godot-vscode-plugin license: mit diff --git a/vendor/licenses/git_submodule/graphiql.dep.yml b/vendor/licenses/git_submodule/graphiql.dep.yml index cdeeb2a123..2522d4fd61 100644 --- a/vendor/licenses/git_submodule/graphiql.dep.yml +++ b/vendor/licenses/git_submodule/graphiql.dep.yml @@ -1,6 +1,6 @@ --- name: graphiql -version: a80801970e095e493eb0fda7687766f103bf701e +version: ece99f63f5d8d01057b735e90a6957edea3e42b9 type: git_submodule homepage: https://github.com/graphql/graphiql.git license: mit diff --git a/vendor/licenses/git_submodule/ide-tools.dep.yml b/vendor/licenses/git_submodule/ide-tools.dep.yml index 7afbd5c129..cc29fd9ee5 100644 --- a/vendor/licenses/git_submodule/ide-tools.dep.yml +++ b/vendor/licenses/git_submodule/ide-tools.dep.yml @@ -1,6 +1,6 @@ --- name: ide-tools -version: feab331f7c44d153adb8a0e5ddff8a02cb4ab78f +version: 730b51f7bda8d6144eee18c78b3899733cf6aa44 type: git_submodule homepage: https://github.com/toitware/ide-tools.git license: mit diff --git a/vendor/licenses/git_submodule/ionide-fsgrammar.dep.yml b/vendor/licenses/git_submodule/ionide-fsgrammar.dep.yml index a964270bf5..43e258e7e7 100644 --- a/vendor/licenses/git_submodule/ionide-fsgrammar.dep.yml +++ b/vendor/licenses/git_submodule/ionide-fsgrammar.dep.yml @@ -1,6 +1,6 @@ --- name: ionide-fsgrammar -version: 472c6b2030c962217cbbb26e4ddcce1b8ffe0867 +version: 7d029a46f17637228b2ee85dd02e511c3e8039b3 type: git_submodule homepage: https://github.com/ionide/ionide-fsgrammar license: mit diff --git a/vendor/licenses/git_submodule/language-bh.dep.yml b/vendor/licenses/git_submodule/language-bh.dep.yml index fb1f20287f..19a3219c76 100644 --- a/vendor/licenses/git_submodule/language-bh.dep.yml +++ b/vendor/licenses/git_submodule/language-bh.dep.yml @@ -1,6 +1,6 @@ --- name: language-bh -version: b3dba370c2d669e922fce25cc8319adab82abc3e +version: 803ee327190ef7974caeba4ecbf24158efb33633 type: git_submodule homepage: https://github.com/B-Lang-org/language-bh.git license: bsd-3-clause diff --git a/vendor/licenses/git_submodule/language-csound.dep.yml b/vendor/licenses/git_submodule/language-csound.dep.yml index f02e4eeaf2..c03c19c6c4 100644 --- a/vendor/licenses/git_submodule/language-csound.dep.yml +++ b/vendor/licenses/git_submodule/language-csound.dep.yml @@ -1,6 +1,6 @@ --- name: language-csound -version: 975436138f2ab808e4a2c3897586ccb0b3c958c2 +version: 55beb6eab9ad3783336fbefac52d759245954bc1 type: git_submodule homepage: https://github.com/nwhetsell/language-csound license: mit diff --git a/vendor/licenses/git_submodule/language-etc.dep.yml b/vendor/licenses/git_submodule/language-etc.dep.yml index e6ea1f9b7c..324f374294 100644 --- a/vendor/licenses/git_submodule/language-etc.dep.yml +++ b/vendor/licenses/git_submodule/language-etc.dep.yml @@ -1,6 +1,6 @@ --- name: language-etc -version: 6d176400d627b0c723180c46bec862b078250401 +version: 1fd00541cc0cd25b319c2a749d55e0144a91451c type: git_submodule homepage: https://github.com/Alhadis/language-etc license: isc diff --git a/vendor/licenses/git_submodule/language-subtitles.dep.yml b/vendor/licenses/git_submodule/language-subtitles.dep.yml index 975d086683..86cbf6f38b 100644 --- a/vendor/licenses/git_submodule/language-subtitles.dep.yml +++ b/vendor/licenses/git_submodule/language-subtitles.dep.yml @@ -1,13 +1,13 @@ --- name: language-subtitles -version: 70c9d731c1ba24f058c6630824cf1188cbee9843 +version: 82cf7686f8f15c19c80e612c8b7da57d87eeb5b7 type: git_submodule homepage: https://github.com/Alhadis/language-subtitles.git license: isc licenses: - sources: LICENSE.md text: | - Copyright (c) 2022, John Gardner + Copyright (c) 2022-2024, John Gardner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/vendor/licenses/git_submodule/language-ti-basic.dep.yml b/vendor/licenses/git_submodule/language-ti-basic.dep.yml index 886cba2761..b44c6280e2 100644 --- a/vendor/licenses/git_submodule/language-ti-basic.dep.yml +++ b/vendor/licenses/git_submodule/language-ti-basic.dep.yml @@ -1,6 +1,6 @@ --- name: language-ti-basic -version: 38372ee47dba84daf4bfb8ba4267d344a5bbfe1f +version: a99235c170f4bfec723bd07cf3b4a66c56ec2cc2 type: git_submodule homepage: https://github.com/TIny-Hacker/language-ti-basic.git license: bsd-3-clause diff --git a/vendor/licenses/git_submodule/latex.tmbundle.dep.yml b/vendor/licenses/git_submodule/latex.tmbundle.dep.yml index 3c8bad3499..3d14011935 100644 --- a/vendor/licenses/git_submodule/latex.tmbundle.dep.yml +++ b/vendor/licenses/git_submodule/latex.tmbundle.dep.yml @@ -1,6 +1,6 @@ --- name: latex.tmbundle -version: 0be3da8fd8de49a8bfc178a71728e6bfb5117570 +version: 90d3383ff86b7f4495e33c7c5240dde7308376ee type: git_submodule homepage: https://github.com/textmate/latex.tmbundle license: permissive diff --git a/vendor/licenses/git_submodule/markdown-tm-language.dep.yml b/vendor/licenses/git_submodule/markdown-tm-language.dep.yml index e875080de0..a5de8a20c2 100644 --- a/vendor/licenses/git_submodule/markdown-tm-language.dep.yml +++ b/vendor/licenses/git_submodule/markdown-tm-language.dep.yml @@ -1,6 +1,6 @@ --- name: markdown-tm-language -version: 11eeefed6b5b13f0bfda019972ab96405a10a8fd +version: 371d61df9ddc3850e12aabe61b602d02e259e8a4 type: git_submodule homepage: https://github.com/wooorm/markdown-tm-language.git license: mit diff --git a/vendor/licenses/git_submodule/nu-grammar.dep.yml b/vendor/licenses/git_submodule/nu-grammar.dep.yml index 2ec68d9f88..7a8899e1d2 100644 --- a/vendor/licenses/git_submodule/nu-grammar.dep.yml +++ b/vendor/licenses/git_submodule/nu-grammar.dep.yml @@ -1,6 +1,6 @@ --- name: nu-grammar -version: c8c9493f755468ac8cadf229c9d240950302ce33 +version: 1ee4b15bd214c951b75270d55c3e273b486f0a75 type: git_submodule homepage: https://github.com/hustcer/nu-grammar.git license: mit diff --git a/vendor/licenses/git_submodule/praatvscode.dep.yml b/vendor/licenses/git_submodule/praatvscode.dep.yml index 4feff6dbfe..a74a585e33 100644 --- a/vendor/licenses/git_submodule/praatvscode.dep.yml +++ b/vendor/licenses/git_submodule/praatvscode.dep.yml @@ -1,6 +1,6 @@ --- name: praatvscode -version: 725a508445b14c3e68b470c9488ede0dc24b9f89 +version: 17f2d5eedf54c66b098d8db32956bda9e4bca090 type: git_submodule homepage: https://github.com/orhunulusahin/praatvscode.git license: mit diff --git a/vendor/licenses/git_submodule/qsharp-compiler.dep.yml b/vendor/licenses/git_submodule/qsharp-compiler.dep.yml index e015081ac0..6169e6a038 100644 --- a/vendor/licenses/git_submodule/qsharp-compiler.dep.yml +++ b/vendor/licenses/git_submodule/qsharp-compiler.dep.yml @@ -1,6 +1,6 @@ --- name: qsharp-compiler -version: 96258b0a5e7fa13f711ebfa05bb190e83aca5c8c +version: 1b4270217aff846fb8d2d1f24094bd7bb36514a5 type: git_submodule homepage: https://github.com/microsoft/qsharp-compiler license: mit diff --git a/vendor/licenses/git_submodule/rescript-vscode.dep.yml b/vendor/licenses/git_submodule/rescript-vscode.dep.yml index 5627b8213d..72a8589d73 100644 --- a/vendor/licenses/git_submodule/rescript-vscode.dep.yml +++ b/vendor/licenses/git_submodule/rescript-vscode.dep.yml @@ -1,6 +1,6 @@ --- name: rescript-vscode -version: fde49b6ab1fb1681581e8366809388564e885473 +version: 69bfb269cde531e2d2cd3ad8e6768ae4a7d62d1f type: git_submodule homepage: https://github.com/rescript-lang/rescript-vscode license: mit diff --git a/vendor/licenses/git_submodule/roc-vscode-unofficial.dep.yml b/vendor/licenses/git_submodule/roc-vscode-unofficial.dep.yml index cdeb6e7b4c..1dec1bd3a4 100644 --- a/vendor/licenses/git_submodule/roc-vscode-unofficial.dep.yml +++ b/vendor/licenses/git_submodule/roc-vscode-unofficial.dep.yml @@ -1,6 +1,6 @@ --- name: roc-vscode-unofficial -version: 51a7a603b0648c7cec4ab8aa655a2ca320e1652f +version: d53277f0ab5c213949acd5293cf6b48f32f8ae50 type: git_submodule homepage: https://github.com/ivan-demchenko/roc-vscode-unofficial.git license: mit diff --git a/vendor/licenses/git_submodule/rust-syntax.dep.yml b/vendor/licenses/git_submodule/rust-syntax.dep.yml index 36fffdcbe3..404bf7a0cd 100644 --- a/vendor/licenses/git_submodule/rust-syntax.dep.yml +++ b/vendor/licenses/git_submodule/rust-syntax.dep.yml @@ -1,6 +1,6 @@ --- name: rust-syntax -version: 20730dff3c367cb40a7edd278fdaf0239ea50833 +version: cf3c686a50295380ce9994218138691f8767870c type: git_submodule homepage: https://github.com/dustypomerleau/rust-syntax.git license: mit diff --git a/vendor/licenses/git_submodule/sas.tmbundle.dep.yml b/vendor/licenses/git_submodule/sas.tmbundle.dep.yml index 3f582156df..42bb3e3980 100644 --- a/vendor/licenses/git_submodule/sas.tmbundle.dep.yml +++ b/vendor/licenses/git_submodule/sas.tmbundle.dep.yml @@ -1,6 +1,6 @@ --- name: sas.tmbundle -version: c00ce8fe26ce245672d6e208d87d488f1db99ebd +version: 9d84eddcbffb86df3091fc88d0983bc33ec358a0 type: git_submodule homepage: https://github.com/rpardee/sas.tmbundle license: mit diff --git a/vendor/licenses/git_submodule/selinux-policy-languages.dep.yml b/vendor/licenses/git_submodule/selinux-policy-languages.dep.yml index 0697fda785..2c146c72b8 100644 --- a/vendor/licenses/git_submodule/selinux-policy-languages.dep.yml +++ b/vendor/licenses/git_submodule/selinux-policy-languages.dep.yml @@ -1,6 +1,6 @@ --- name: selinux-policy-languages -version: 7bd17d9c9160cd8168a159c6cc574d45cb67b125 +version: 502c96ccf38476a627897209bf726fd4e40296b8 type: git_submodule homepage: https://github.com/google/selinux-policy-languages license: apache-2.0 diff --git a/vendor/licenses/git_submodule/sourcepawn-vscode.dep.yml b/vendor/licenses/git_submodule/sourcepawn-vscode.dep.yml index c591c4fb5e..b33005fd8f 100644 --- a/vendor/licenses/git_submodule/sourcepawn-vscode.dep.yml +++ b/vendor/licenses/git_submodule/sourcepawn-vscode.dep.yml @@ -1,6 +1,6 @@ --- name: sourcepawn-vscode -version: 5deb97723f34bdd1cbbe45fdbb80df2757f73902 +version: 339ceeb9d3c3c61706a743d14284821f33f04d26 type: git_submodule homepage: https://github.com/Sarrus1/sourcepawn-vscode.git license: mit diff --git a/vendor/licenses/git_submodule/sublime-pony.dep.yml b/vendor/licenses/git_submodule/sublime-pony.dep.yml index c52225367c..a4e51ed5c1 100644 --- a/vendor/licenses/git_submodule/sublime-pony.dep.yml +++ b/vendor/licenses/git_submodule/sublime-pony.dep.yml @@ -1,6 +1,6 @@ --- name: sublime-pony -version: 13f1b55340ddd46c7dfeac6446030dfe8d105f90 +version: 80f6c4dfbff2edc4e8546b33c983f4314de06630 type: git_submodule homepage: https://github.com/CausalityLtd/sublime-pony license: bsd-2-clause diff --git a/vendor/licenses/git_submodule/sway-vscode-plugin.dep.yml b/vendor/licenses/git_submodule/sway-vscode-plugin.dep.yml index d6e143868b..ffed540562 100644 --- a/vendor/licenses/git_submodule/sway-vscode-plugin.dep.yml +++ b/vendor/licenses/git_submodule/sway-vscode-plugin.dep.yml @@ -1,6 +1,6 @@ --- name: sway-vscode-plugin -version: 87a3e645933f353e27fc0e8aa246d9d8786c2f30 +version: a6bb690d0a9839450971eae22a0f207c654126a5 type: git_submodule homepage: https://github.com/FuelLabs/sway-vscode-plugin.git license: apache-2.0 diff --git a/vendor/licenses/git_submodule/swift-tmlanguage.dep.yml b/vendor/licenses/git_submodule/swift-tmlanguage.dep.yml index f30d2981d1..5332b9723d 100644 --- a/vendor/licenses/git_submodule/swift-tmlanguage.dep.yml +++ b/vendor/licenses/git_submodule/swift-tmlanguage.dep.yml @@ -1,6 +1,6 @@ --- name: swift-tmlanguage -version: a032cf0fd2bca0a33ac2267ff6d6406cc22c7930 +version: d13e3fb2ed23a42959bab7f4c22a872a5b528ab7 type: git_submodule homepage: https://github.com/jtbandes/swift-tmlanguage.git license: mit diff --git a/vendor/licenses/git_submodule/syntax.dep.yml b/vendor/licenses/git_submodule/syntax.dep.yml index 79fe5ba55c..45e6c73746 100644 --- a/vendor/licenses/git_submodule/syntax.dep.yml +++ b/vendor/licenses/git_submodule/syntax.dep.yml @@ -1,6 +1,6 @@ --- name: syntax -version: ced984baed78a85834dbbd1724d3e600ba50ef8d +version: aa2c94baeea2856835f87bd206237c550197e97f type: git_submodule homepage: https://github.com/hashicorp/syntax.git license: mpl-2.0 diff --git a/vendor/licenses/git_submodule/vscode-antlers-language-server.dep.yml b/vendor/licenses/git_submodule/vscode-antlers-language-server.dep.yml index 42ae0fe9e0..37d3966b5d 100644 --- a/vendor/licenses/git_submodule/vscode-antlers-language-server.dep.yml +++ b/vendor/licenses/git_submodule/vscode-antlers-language-server.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-antlers-language-server -version: c8239a2e5769b7178f37978a51fd234e94236bf9 +version: bff50668934abb41b197d75650a13fb5e300132e type: git_submodule homepage: https://github.com/Stillat/vscode-antlers-language-server.git license: mit diff --git a/vendor/licenses/git_submodule/vscode-bitbake.dep.yml b/vendor/licenses/git_submodule/vscode-bitbake.dep.yml index 4cc44e99a1..70b559ed17 100644 --- a/vendor/licenses/git_submodule/vscode-bitbake.dep.yml +++ b/vendor/licenses/git_submodule/vscode-bitbake.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-bitbake -version: aa82827bfc25cbb08da262b75162981f0ca3773e +version: 9e40b819028eddc09388840e014aa5d24e884046 type: git_submodule homepage: https://github.com/yoctoproject/vscode-bitbake.git license: mit diff --git a/vendor/licenses/git_submodule/vscode-brightscript-language.dep.yml b/vendor/licenses/git_submodule/vscode-brightscript-language.dep.yml index 8db2af61d3..8eb0d6f838 100644 --- a/vendor/licenses/git_submodule/vscode-brightscript-language.dep.yml +++ b/vendor/licenses/git_submodule/vscode-brightscript-language.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-brightscript-language -version: e478cfef01559c25c705d31dfde84a10a8f50d14 +version: b05f3a31a8877a8fa0e00ff554a3e98328050c44 type: git_submodule homepage: https://github.com/rokucommunity/vscode-brightscript-language.git license: mit diff --git a/vendor/licenses/git_submodule/vscode-cadence.dep.yml b/vendor/licenses/git_submodule/vscode-cadence.dep.yml index 08e5847693..a08d22eab0 100644 --- a/vendor/licenses/git_submodule/vscode-cadence.dep.yml +++ b/vendor/licenses/git_submodule/vscode-cadence.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-cadence -version: 18d86f3589d487e1894e79e00c539ef6463b82b1 +version: 2ce921581a804fa32317b829c54c1c0fd904975a type: git_submodule homepage: https://github.com/onflow/vscode-cadence.git license: apache-2.0 diff --git a/vendor/licenses/git_submodule/vscode-codeql.dep.yml b/vendor/licenses/git_submodule/vscode-codeql.dep.yml index 824c67c348..d7881929dd 100644 --- a/vendor/licenses/git_submodule/vscode-codeql.dep.yml +++ b/vendor/licenses/git_submodule/vscode-codeql.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-codeql -version: 8fac9b1413b019f0eff5682cd6ab7aa747e41e2b +version: 3005dacf4ed480aa76e541b7d3697f5a34571faf type: git_submodule homepage: https://github.com/github/vscode-codeql license: mit diff --git a/vendor/licenses/git_submodule/vscode-fluent.dep.yml b/vendor/licenses/git_submodule/vscode-fluent.dep.yml index aaa895f5b6..d9b71b10aa 100644 --- a/vendor/licenses/git_submodule/vscode-fluent.dep.yml +++ b/vendor/licenses/git_submodule/vscode-fluent.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-fluent -version: cae702ed1b3a6a2b6a58260a8e1194bc40421218 +version: 51ceeb59d645d0d1ec9b4080175bc1ce4d709075 type: git_submodule homepage: https://github.com/macabeus/vscode-fluent license: mit diff --git a/vendor/licenses/git_submodule/vscode-go.dep.yml b/vendor/licenses/git_submodule/vscode-go.dep.yml index dff7571490..2456304c80 100644 --- a/vendor/licenses/git_submodule/vscode-go.dep.yml +++ b/vendor/licenses/git_submodule/vscode-go.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-go -version: d6fb20289a8484e57dc4fa21a2f44094de7f1a5b +version: b4b68a76fac190ca12179ef9ef24ecffc57ea9d6 type: git_submodule homepage: https://github.com/golang/vscode-go license: other diff --git a/vendor/licenses/git_submodule/vscode-hack.dep.yml b/vendor/licenses/git_submodule/vscode-hack.dep.yml index 8ab4f5f291..d8ff735e21 100644 --- a/vendor/licenses/git_submodule/vscode-hack.dep.yml +++ b/vendor/licenses/git_submodule/vscode-hack.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-hack -version: d75dd72a5d52436d208a627a2ead5423c94eb3e9 +version: dd79d7146ccffb3e0a1020e9f8790242c37b6c21 type: git_submodule homepage: https://github.com/slackhq/vscode-hack license: mit @@ -57,7 +57,7 @@ notices: be made available to recipients or other requestors under the terms of the same OSS LICENSE. Recipients or requestors who would like to receive a copy of such corresponding source code should submit a request to Slack by post at:\n\n\nSlack - \ \nAttn: Open Source Requests \n500 Howard St. \nSan Francisco, CA 94105\n\n---\n**[@vscode/debugadapter@1.61.0](https://github.com/microsoft/vscode-debugadapter-node)**\n```\nCopyright + \ \nAttn: Open Source Requests \n500 Howard St. \nSan Francisco, CA 94105\n\n---\n**[@vscode/debugadapter@1.65.0](https://github.com/microsoft/vscode-debugadapter-node)**\n```\nCopyright (c) Microsoft Corporation\r\n\r\nAll rights reserved. \r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software @@ -71,7 +71,7 @@ notices: PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[@vscode/debugprotocol@1.61.0](https://github.com/microsoft/vscode-debugadapter-node)**\n```\nCopyright + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[@vscode/debugprotocol@1.65.0](https://github.com/microsoft/vscode-debugadapter-node)**\n```\nCopyright (c) Microsoft Corporation\r\n\r\nAll rights reserved. \r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software @@ -85,7 +85,35 @@ notices: PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[semver@5.7.2](https://github.com/npm/node-semver)**\n```\nThe + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[balanced-match@1.0.0](https://github.com/juliangruber/balanced-match)**\n```\n(MIT)\n\nCopyright + (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby + granted, free of charge, to any person obtaining a copy of\nthis software and + associated documentation files (the \"Software\"), to deal in\nthe Software without + restriction, including without limitation the rights to\nuse, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit + persons to whom the Software is furnished to do\nso, subject to the following + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n**[brace-expansion@2.0.1](https://github.com/juliangruber/brace-expansion)**\n```\nMIT + License\n\nCopyright (c) 2013 Julian Gruber \n\nPermission + is hereby granted, free of charge, to any person obtaining a copy\nof this software + and associated documentation files (the \"Software\"), to deal\nin the Software + without restriction, including without limitation the rights\nto use, copy, modify, + merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and + to permit persons to whom the Software is\nfurnished to do so, subject to the + following conditions:\n\nThe above copyright notice and this permission notice + shall be included in all\ncopies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n**[lru-cache@6.0.0](https://github.com/isaacs/node-lru-cache)**\n```\nThe ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this @@ -95,60 +123,90 @@ notices: AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n```\n\n**[vscode-jsonrpc@4.0.0](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright - (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nMIT License\r\n\r\nPermission + OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n```\n\n**[minimatch@5.1.6](https://github.com/isaacs/minimatch)**\n```\nThe + ISC License\n\nCopyright (c) 2011-2023 Isaac Z. Schlueter and Contributors\n\nPermission + to use, copy, modify, and/or distribute this software for any\npurpose with or + without fee is hereby granted, provided that the above\ncopyright notice and this + permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" + AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING + ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER + IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n```\n\n**[semver@7.6.0](https://github.com/npm/node-semver)**\n```\nThe + ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission + to use, copy, modify, and/or distribute this software for any\npurpose with or + without fee is hereby granted, provided that the above\ncopyright notice and this + permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" + AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING + ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER + IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n```\n\n**[vscode-jsonrpc@8.2.0](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright + (c) Microsoft Corporation\n\nAll rights reserved.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following - conditions:\r\n\r\nThe above copyright notice and this permission notice shall - be included in all copies or substantial portions of the Software.\r\n\r\nTHE - SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageclient@5.2.1](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright - (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nMIT License\r\n\r\nPermission + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageclient@9.0.1](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright + (c) Microsoft Corporation\n\nAll rights reserved.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following - conditions:\r\n\r\nThe above copyright notice and this permission notice shall - be included in all copies or substantial portions of the Software.\r\n\r\nTHE - SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageserver-protocol@3.14.1](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright - (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nMIT License\r\n\r\nPermission + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageserver-protocol@3.17.5](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright + (c) Microsoft Corporation\n\nAll rights reserved.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following - conditions:\r\n\r\nThe above copyright notice and this permission notice shall - be included in all copies or substantial portions of the Software.\r\n\r\nTHE - SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageserver-types@3.14.0](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright - (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nMIT License\r\n\r\nPermission + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[vscode-languageserver-types@3.17.5](https://github.com/Microsoft/vscode-languageserver-node)**\n```\nCopyright + (c) Microsoft Corporation\n\nAll rights reserved.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following - conditions:\r\n\r\nThe above copyright notice and this permission notice shall - be included in all copies or substantial portions of the Software.\r\n\r\nTHE - SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```" + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n**[yallist@4.0.0](https://github.com/isaacs/yallist)**\n```\nThe + ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission + to use, copy, modify, and/or distribute this software for any\npurpose with or + without fee is hereby granted, provided that the above\ncopyright notice and this + permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" + AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING + ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER + IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n```" diff --git a/vendor/licenses/git_submodule/vscode-jest.dep.yml b/vendor/licenses/git_submodule/vscode-jest.dep.yml index fd8ea44ed9..10827e3387 100644 --- a/vendor/licenses/git_submodule/vscode-jest.dep.yml +++ b/vendor/licenses/git_submodule/vscode-jest.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-jest -version: 9ce5948c187f29251956baa39b7a6f48f3b358c5 +version: 0c57873f91138961f90fedeb5fd1f0da9d45c601 type: git_submodule homepage: https://github.com/jest-community/vscode-jest license: mit diff --git a/vendor/licenses/git_submodule/vscode-lean4.dep.yml b/vendor/licenses/git_submodule/vscode-lean4.dep.yml index 9e23683867..6ed3489c0e 100644 --- a/vendor/licenses/git_submodule/vscode-lean4.dep.yml +++ b/vendor/licenses/git_submodule/vscode-lean4.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-lean4 -version: 9a70ded67215a5c27186b13db1889ce4f6677711 +version: 5bba1807fa3e11db829fdc4728fe873b3d7edff3 type: git_submodule homepage: https://github.com/leanprover/vscode-lean4.git license: apache-2.0 diff --git a/vendor/licenses/git_submodule/vscode-motoko.dep.yml b/vendor/licenses/git_submodule/vscode-motoko.dep.yml index 090a02dce5..38a2b77312 100644 --- a/vendor/licenses/git_submodule/vscode-motoko.dep.yml +++ b/vendor/licenses/git_submodule/vscode-motoko.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-motoko -version: 6ca939989c08c5dc25619fe0cc0f356a088481ab +version: 1d256baa0cfec3cb3083c519d926a0453f201623 type: git_submodule homepage: https://github.com/dfinity/vscode-motoko.git license: apache-2.0 diff --git a/vendor/licenses/git_submodule/vscode-move-syntax.dep.yml b/vendor/licenses/git_submodule/vscode-move-syntax.dep.yml index 4f2f3e28f7..8fb974e7f3 100644 --- a/vendor/licenses/git_submodule/vscode-move-syntax.dep.yml +++ b/vendor/licenses/git_submodule/vscode-move-syntax.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-move-syntax -version: 87e11a9807c7cb27bda25889318b29fe3679599b +version: f9436ad72cc7d3c6848eb02759c808ae0663295d type: git_submodule homepage: https://github.com/damirka/vscode-move-syntax.git license: mit diff --git a/vendor/licenses/git_submodule/vscode-opa.dep.yml b/vendor/licenses/git_submodule/vscode-opa.dep.yml index 9bf7601ee6..8c930985d7 100644 --- a/vendor/licenses/git_submodule/vscode-opa.dep.yml +++ b/vendor/licenses/git_submodule/vscode-opa.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-opa -version: d3ed1f25c39ed03460cf230783184aa6f9deef55 +version: dcf447699243ef2984d8dcb0b009b35b3fe74400 type: git_submodule homepage: https://github.com/open-policy-agent/vscode-opa.git license: apache-2.0 diff --git a/vendor/licenses/git_submodule/vscode-prisma.dep.yml b/vendor/licenses/git_submodule/vscode-prisma.dep.yml index 89a7e971c4..10ccd5f516 100644 --- a/vendor/licenses/git_submodule/vscode-prisma.dep.yml +++ b/vendor/licenses/git_submodule/vscode-prisma.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-prisma -version: 57be6b1802b1fe1802a99aef4e231868fb84c67e +version: bf28282fd07c675b79282cafb63b4912bc6c7156 type: git_submodule homepage: https://github.com/prisma/vscode-prisma license: apache-2.0 diff --git a/vendor/licenses/git_submodule/vscode-procfile.dep.yml b/vendor/licenses/git_submodule/vscode-procfile.dep.yml index 2051e0320f..4bd4cd0b20 100644 --- a/vendor/licenses/git_submodule/vscode-procfile.dep.yml +++ b/vendor/licenses/git_submodule/vscode-procfile.dep.yml @@ -1,30 +1,30 @@ --- name: vscode-procfile -version: b1ddcf5c349acaa005fabdcf7111f34443d552f3 +version: 4e149fd5e757352aa5867b59934acc16e19182a1 type: git_submodule homepage: https://github.com/benspaulding/vscode-procfile -license: bsd-3-clause +license: bsd-3-clause licenses: -- sources: LICENSE +- sources: LICENSE.txt text: | BSD 3-Clause License - Copyright (c) 2020, Ben Spaulding. + Copyright (c) 2024, Ben Spaulding. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE diff --git a/vendor/licenses/git_submodule/vscode-python.dep.yml b/vendor/licenses/git_submodule/vscode-python.dep.yml index 8de88ebb22..f1cb04ac33 100644 --- a/vendor/licenses/git_submodule/vscode-python.dep.yml +++ b/vendor/licenses/git_submodule/vscode-python.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-python -version: 209d6bd69699220bc56666a938798c8549baf933 +version: e931bed3efbede7b05113316506958ecd7506777 type: git_submodule homepage: https://github.com/microsoft/vscode-python.git license: mit diff --git a/vendor/licenses/git_submodule/vscode-scala-syntax.dep.yml b/vendor/licenses/git_submodule/vscode-scala-syntax.dep.yml index 9ee7ff9b70..46419d1c7a 100644 --- a/vendor/licenses/git_submodule/vscode-scala-syntax.dep.yml +++ b/vendor/licenses/git_submodule/vscode-scala-syntax.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-scala-syntax -version: 27315cb9837bbce3190c452bf77169910afac0eb +version: fb73e8a0bfcd9a3c45f2c1b712e00c35865a9178 type: git_submodule homepage: https://github.com/scala/vscode-scala-syntax license: other diff --git a/vendor/licenses/git_submodule/vscode-slice.dep.yml b/vendor/licenses/git_submodule/vscode-slice.dep.yml index fa796e7b9f..40cfbdb010 100644 --- a/vendor/licenses/git_submodule/vscode-slice.dep.yml +++ b/vendor/licenses/git_submodule/vscode-slice.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-slice -version: 895b11ce7543e307004f884abf295afbe7e60161 +version: a4aacfa8bc1ec6cc925dfd891dd75dfbf9df207d type: git_submodule homepage: https://github.com/zeroc-ice/vscode-slice license: bsd-3-clause diff --git a/vendor/licenses/git_submodule/vscode-vba.dep.yml b/vendor/licenses/git_submodule/vscode-vba.dep.yml index 328349e1df..e9f6a8b514 100644 --- a/vendor/licenses/git_submodule/vscode-vba.dep.yml +++ b/vendor/licenses/git_submodule/vscode-vba.dep.yml @@ -1,6 +1,6 @@ --- name: vscode-vba -version: 94e112416478e1f1728ce9ce88fc4ff1a9ed01ad +version: 5aad9c16d2bff5d43c2bb639dcd414a24696ce42 type: git_submodule homepage: https://github.com/serkonda7/vscode-vba.git license: mpl-2.0 @@ -382,9 +382,9 @@ licenses: defined by the Mozilla Public License, v. 2.0. - sources: README.md text: |- - Source code and grammars are licensed under the [Mozilla Public License (MPL-2.0)](LICENSE.txt). + Source code, grammars and snippets are provided under the [Mozilla Public License (MPL-2.0)](LICENSE.txt). - The icon is licensed under the [Creative Commons ShareAlike](images/LICENSE) license. + The icon is provided under [CC-BY-4.0](images/LICENSE.txt), courtesy of the GitHub Explore authors. @@ -398,7 +398,7 @@ licenses: [discussions]: https://github.com/serkonda7/vscode-vba/discussions - [gh-linguist]: https://github.com/DecimalTurn/linguist/blob/master/vendor/licenses/git_submodule/vscode-vba-json.dep.yml + [gh-linguist]: https://github.com/github-linguist/linguist/tree/master/vendor [sponsors-badge]: https://img.shields.io/badge/Sponsor-GitHub-blue.svg [sponsors-profile]: https://github.com/sponsors/serkonda7 diff --git a/vendor/licenses/git_submodule/vscode_cobol.dep.yml b/vendor/licenses/git_submodule/vscode_cobol.dep.yml index 985e0ad578..906d86ee87 100644 --- a/vendor/licenses/git_submodule/vscode_cobol.dep.yml +++ b/vendor/licenses/git_submodule/vscode_cobol.dep.yml @@ -1,6 +1,6 @@ --- name: vscode_cobol -version: 4ce2db022af24d9864c82f5bf0db40233a0cbfd8 +version: b09f64b00eee66dca496a69ea68f4c2c5c78e359 type: git_submodule homepage: https://github.com/spgennard/vscode_cobol.git license: mit