Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v7.23.0 #6051

Merged
merged 7 commits into from
Sep 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 27 # 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 = 32 # 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
Expand Down
6 changes: 6 additions & 0 deletions grammars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,8 @@ vendor/grammars/elixir-tmbundle:
- text.html.elixir
vendor/grammars/elvish:
- source.elvish
- source.elvish-transcript
- source.elvish.in.markdown
vendor/grammars/erlang.tmbundle:
- source.erlang
- text.html.erlang.yaws
Expand Down Expand Up @@ -535,6 +537,7 @@ vendor/grammars/language-etc:
- source.openbsd-pkg.contents
- source.opts
- source.record-jar
- source.sexp
- source.shellcheckrc
- source.sieve
- source.smpl
Expand Down Expand Up @@ -685,6 +688,7 @@ vendor/grammars/language-ring:
- source.ring
vendor/grammars/language-roff:
- hidden.manref
- source.context
- source.ditroff
- source.ditroff.desc
- source.gremlin
Expand Down Expand Up @@ -854,6 +858,7 @@ vendor/grammars/rascal-syntax-highlighting:
vendor/grammars/razor-plus:
- text.html.cshtml
vendor/grammars/rescript-vscode:
- markdown.rescript.codeblock
- source.rescript
vendor/grammars/riot-syntax-highlight:
- text.html.riot
Expand Down Expand Up @@ -1061,6 +1066,7 @@ vendor/grammars/vscode-prisma:
- inline.prisma
- markdown.prisma.codeblock
- source.prisma
- source.ts.prismaClientRawSQL
vendor/grammars/vscode-procfile:
- source.procfile
vendor/grammars/vscode-proto3:
Expand Down
2 changes: 1 addition & 1 deletion lib/linguist/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.22.1
7.23.0
2 changes: 1 addition & 1 deletion vendor/CodeMirror
2 changes: 1 addition & 1 deletion vendor/grammars/Atom-PostScript
2 changes: 1 addition & 1 deletion vendor/grammars/Docker.tmbundle
2 changes: 1 addition & 1 deletion vendor/grammars/VscodeAdblockSyntax
2 changes: 1 addition & 1 deletion vendor/grammars/XojoSyntaxTM
Submodule XojoSyntaxTM updated 1 files
+21 −21 Xojo.tmLanguage
2 changes: 1 addition & 1 deletion vendor/grammars/abap-cds-grammar
2 changes: 1 addition & 1 deletion vendor/grammars/astro
Submodule astro updated 131 files
2 changes: 1 addition & 1 deletion vendor/grammars/atom-language-purescript
2 changes: 1 addition & 1 deletion vendor/grammars/bicep
Submodule bicep updated 1732 files
2 changes: 1 addition & 1 deletion vendor/grammars/bikeshed
2 changes: 1 addition & 1 deletion vendor/grammars/clarity.tmbundle
Submodule clarity.tmbundle updated 1 files
+0 −2 LICENSE
2 changes: 1 addition & 1 deletion vendor/grammars/dart-syntax-highlight
2 changes: 1 addition & 1 deletion vendor/grammars/elixir-tmbundle
2 changes: 1 addition & 1 deletion vendor/grammars/elvish
Submodule elvish updated 221 files
2 changes: 1 addition & 1 deletion vendor/grammars/graphiql
Submodule graphiql updated 434 files
2 changes: 1 addition & 1 deletion vendor/grammars/ionide-fsgrammar
2 changes: 1 addition & 1 deletion vendor/grammars/language-etc
2 changes: 1 addition & 1 deletion vendor/grammars/language-jsonnet
2 changes: 1 addition & 1 deletion vendor/grammars/language-subtitles
2 changes: 1 addition & 1 deletion vendor/grammars/marko-tmbundle
2 changes: 1 addition & 1 deletion vendor/grammars/nix-linguist
Submodule nix-linguist updated 1 files
+2 −2 README.md
2 changes: 1 addition & 1 deletion vendor/grammars/qsharp-compiler
Submodule qsharp-compiler updated 134 files
2 changes: 1 addition & 1 deletion vendor/grammars/rescript-vscode
Submodule rescript-vscode updated 75 files
+50 −0 .github/workflows/bump-version.js
+71 −18 .github/workflows/ci.yml
+68 −7 CHANGELOG.md
+18 −5 CONTRIBUTING.md
+124 −51 README.md
+7 −7 analysis/examples/larger-project/.merlin
+27 −0 analysis/examples/workspace-project/.gitignore
+7 −0 analysis/examples/workspace-project/README.md
+11 −0 analysis/examples/workspace-project/app/bsconfig.json
+4 −0 analysis/examples/workspace-project/app/package.json
+1 −0 analysis/examples/workspace-project/app/src/App.res
+12 −0 analysis/examples/workspace-project/bsconfig.json
+10 −0 analysis/examples/workspace-project/common/bsconfig.json
+4 −0 analysis/examples/workspace-project/common/package.json
+14 −0 analysis/examples/workspace-project/common/src/Utils.mjs
+4 −0 analysis/examples/workspace-project/common/src/Utils.res
+10 −0 analysis/examples/workspace-project/myplugin/bsconfig.json
+4 −0 analysis/examples/workspace-project/myplugin/package.json
+20 −0 analysis/examples/workspace-project/myplugin/src/Promise.mjs
+46 −0 analysis/examples/workspace-project/myplugin/src/Promise.res
+14 −0 analysis/examples/workspace-project/package-lock.json
+26 −0 analysis/examples/workspace-project/package.json
+7 −7 analysis/reanalyze/examples/deadcode/package-lock.json
+1 −1 analysis/reanalyze/examples/deadcode/package.json
+7 −7 analysis/reanalyze/examples/termination/package-lock.json
+1 −1 analysis/reanalyze/examples/termination/package.json
+15 −0 analysis/src/Cli.ml
+25 −0 analysis/src/Commands.ml
+93 −14 analysis/src/CompletionBackEnd.ml
+7 −0 analysis/src/Files.ml
+5 −3 analysis/src/FindFiles.ml
+185 −0 analysis/src/Hint.ml
+0 −45 analysis/src/PrepareUtils.ml
+2 −2 analysis/src/PrintType.ml
+2 −2 analysis/src/ProcessAttributes.ml
+9 −7 analysis/src/ProcessExtra.ml
+42 −0 analysis/src/Protocol.ml
+21 −1 analysis/src/SemanticTokens.ml
+2 −2 analysis/src/Shared.ml
+1 −1 analysis/src/Xform.ml
+7 −7 analysis/tests/package-lock.json
+1 −1 analysis/tests/package.json
+11 −0 analysis/tests/src/CodeLens.res
+2 −0 analysis/tests/src/Dce.res
+2 −1 analysis/tests/src/Debug.res
+46 −0 analysis/tests/src/DocComments.res
+56 −2 analysis/tests/src/Hover.res
+36 −0 analysis/tests/src/InlayHint.res
+1 −0 analysis/tests/src/dce/DceTest.res
+15 −0 analysis/tests/src/expected/CodeLens.res.txt
+1 −1 analysis/tests/src/expected/Dce.res.txt
+5 −74 analysis/tests/src/expected/Debug.res.txt
+12 −0 analysis/tests/src/expected/DocComments.res.txt
+82 −22 analysis/tests/src/expected/Hover.res.txt
+105 −0 analysis/tests/src/expected/InlayHint.res.txt
+69 −22 analysis/vendor/res_outcome_printer/res_core.ml
+10 −10 analysis/vendor/res_outcome_printer/res_grammar.ml
+15 −1 analysis/vendor/res_outcome_printer/res_parens.ml
+1 −1 analysis/vendor/res_outcome_printer/res_parens.mli
+32 −6 analysis/vendor/res_outcome_printer/res_parsetree_viewer.ml
+11 −0 analysis/vendor/res_outcome_printer/res_parsetree_viewer.mli
+72 −36 analysis/vendor/res_outcome_printer/res_printer.ml
+3 −0 analysis/vendor/res_outcome_printer/res_printer.mli
+6 −3 analysis/vendor/res_outcome_printer/res_token.ml
+5 −3 client/src/commands.ts
+23 −4 client/src/commands/code_analysis.ts
+37 −2 client/src/extension.ts
+45 −0 grammars/rescript.markdown.json
+60 −2 package-lock.json
+39 −2 package.json
+2 −2 server/package-lock.json
+1 −1 server/package.json
+7 −6 server/src/constants.ts
+187 −33 server/src/server.ts
+15 −2 server/src/utils.ts
2 changes: 1 addition & 1 deletion vendor/grammars/sas.tmbundle
2 changes: 1 addition & 1 deletion vendor/grammars/sublime-odin
2 changes: 1 addition & 1 deletion vendor/grammars/sublime-q
Submodule sublime-q updated 2 files
+15 −5 q_event.py
+5 −1 q_routine.py
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-antlers-language-server
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-brightscript-language
Submodule vscode-brightscript-language updated 67 files
+8 −2 .eslintrc.js
+2 −2 .github/workflows/build.yml
+1 −1 .vscode/launch.json
+1 −1 .vscode/tasks.json
+105 −0 CHANGELOG.md
+1 −1 README.md
+18 −0 docs/Editing/word-separators.md
+23 −11 docs/contributing.md
+48 −0 images/icons/brighterscript.svg
+54 −0 images/icons/brightscript.svg
+5,328 −1,667 package-lock.json
+38 −22 package.json
+13 −6 scripts/install-local.js
+456 −0 scripts/releases.ts
+4 −1 src/ActiveDeviceManager.ts
+11 −0 src/LogOutputManager.ts
+0 −206 src/RDBViewProviders.ts
+6 −6 src/extension.spec.ts
+29 −31 src/extension.ts
+24 −1 src/grammar/brightscript.tmLanguage.spec.ts
+3 −0 src/mockVscode.spec.ts
+56 −0 src/viewProviders/BaseRdbViewProvider.ts
+132 −0 src/viewProviders/BaseWebviewViewProvider.ts
+7 −2 src/viewProviders/OnlineDevicesViewProvider.ts
+2 −0 src/viewProviders/RendezvousViewProvider.ts
+8 −34 src/viewProviders/RokuCommandsViewProvider.spec.ts
+17 −0 src/viewProviders/RokuCommandsViewProvider.ts
+58 −0 src/viewProviders/RokuRegistryViewProvider.spec.ts
+36 −0 src/viewProviders/RokuRegistryViewProvider.ts
+5 −0 src/viewProviders/SceneGraphInspectorViewProvider.ts
+9 −8 syntaxes/brightscript.tmLanguage.json
+5 −2 tsconfig.json
+0 −20 ui/rdb/index.ts
+11 −8 webviews/rollup.config.js
+0 −0 webviews/src/ChangedFieldEntry.ts
+0 −0 webviews/src/ExtensionIntermediary.ts
+21 −0 webviews/src/index.ts
+0 −0 webviews/src/shared/Chevron.svelte
+0 −0 webviews/src/shared/Loader.svelte
+0 −0 webviews/src/shared/OdcSetupStepsPage.svelte
+0 −0 webviews/src/shared/vscode-ui-toolkit/VscodeCheckbox.svelte
+0 −0 webviews/src/style.css
+0 −0 webviews/src/types.d.ts
+1 −1 webviews/src/utils.spec.ts
+0 −0 webviews/src/utils.ts
+2 −2 webviews/src/views/RokuCommandsView/RokuCommandsView.spec.ts
+4 −4 webviews/src/views/RokuCommandsView/RokuCommandsView.svelte
+1 −1 webviews/src/views/RokuCommandsView/RokuCommandsView.ts
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONArrow.svelte
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONKey.svelte
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONNested.svelte
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONNode.svelte
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONObjectNode.svelte
+1 −1 webviews/src/views/RokuRegistryView/JSONTreePage/JSONTreePage.svelte
+0 −0 webviews/src/views/RokuRegistryView/JSONTreePage/JSONValueNode.svelte
+1 −1 webviews/src/views/RokuRegistryView/RokuRegistryView.spec.ts
+7 −7 webviews/src/views/RokuRegistryView/RokuRegistryView.svelte
+0 −0 webviews/src/views/RokuRegistryView/RokuRegistryView.ts
+0 −0 webviews/src/views/SceneGraphInspectorView/ColorField.spec.ts
+0 −0 webviews/src/views/SceneGraphInspectorView/ColorField.svelte
+0 −0 webviews/src/views/SceneGraphInspectorView/ColorField.ts
+2 −2 webviews/src/views/SceneGraphInspectorView/NodeBranchPage.svelte
+0 −0 webviews/src/views/SceneGraphInspectorView/NodeCountByTypePage.svelte
+1 −1 webviews/src/views/SceneGraphInspectorView/NodeDetailPage.svelte
+13 −13 webviews/src/views/SceneGraphInspectorView/SceneGraphInspectorView.svelte
+1 −1 webviews/src/views/SceneGraphInspectorView/SettingsPage.svelte
+2 −3 webviews/tsconfig.json
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-cadence
Submodule vscode-cadence updated 50 files
+88 −14 .github/workflows/ci.yml
+27 −0 .github/workflows/release.yml
+18 −10 CHANGELOG.md
+1 −1 CODEOWNERS
+3 −1 README.md
+4 −1 cypress.json
+6 −2 extension/src/commands/command-constants.ts
+17 −24 extension/src/commands/command-controller.ts
+80 −0 extension/src/dependency-installer/dependency-installer.ts
+43 −0 extension/src/dependency-installer/installer.ts
+125 −0 extension/src/dependency-installer/installers/flow-cli-installer.ts
+104 −74 extension/src/emulator/emulator-controller.ts
+0 −61 extension/src/emulator/local/account-data.ts
+21 −4 extension/src/emulator/local/config.ts
+53 −79 extension/src/emulator/server/language-server.ts
+66 −0 extension/src/emulator/server/responses.ts
+0 −123 extension/src/emulator/tools/account-manager.ts
+0 −99 extension/src/emulator/tools/terminal.ts
+34 −15 extension/src/extension.ts
+12 −3 extension/src/main.ts
+13 −3 extension/src/settings/settings.ts
+63 −0 extension/src/telemetry/mixpanel-wrapper.ts
+40 −0 extension/src/telemetry/sentry-wrapper.ts
+55 −0 extension/src/telemetry/telemetry.ts
+5 −10 extension/src/ui/components/status-bar.ts
+38 −0 extension/src/ui/prompts.ts
+1 −1 extension/src/ui/ui-controller.ts
+23 −0 extension/src/utils/codelens.ts
+1 −1 extension/src/utils/debug.ts
+0 −7 extension/src/utils/strings.ts
+19 −24 extension/src/utils/utils.ts
+18 −0 extension/test/e2e/0-init.test.ts
+28 −0 extension/test/e2e/1-switch-accounts.test.ts
+32 −0 extension/test/e2e/2-deploy-contract.test.ts
+3 −6 extension/test/e2e/3-send-script.test.ts
+17 −0 extension/test/e2e/4-send-transaction.test.ts
+18 −40 extension/test/e2e/cypress-helpers.ts
+0 −36 extension/test/e2e/deploy-contract.test.ts
+0 −20 extension/test/e2e/send-transaction.test.ts
+0 −42 extension/test/e2e/switch-accounts.test.ts
+ extension/test/fixtures/workspace/sbin/flow
+ extension/test/fixtures/workspace/sbin/flow_arm
+47 −0 extension/test/integration/extension.integration.test.ts
+4 −2 extension/test/integration/index.ts
+5 −6 extension/test/run-integration-tests.ts
+0 −42 extension/test/suite/extension.integration.test.ts
+0 −28 extension/test/unit/account-data.unit.test.ts
+925 −2,746 package-lock.json
+47 −27 package.json
+1 −0 tsconfig.json
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-codeql
Submodule vscode-codeql updated 124 files
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-curry
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-gcode-syntax
Submodule vscode-gcode-syntax updated 45 files
+1 −1 .eslintrc.json
+40 −13 .github/PULL_REQUEST_TEMPLATE.md
+0 −41 .github/stale.yml
+9 −5 .github/workflows/codeql.yml
+20 −0 .github/workflows/greetings.yml
+26 −0 .github/workflows/lock.yml
+29 −0 .github/workflows/stale.yml
+0 −1 .prettierignore
+7 −0 .prettierrc
+28 −12 .vscode/launch.json
+33 −0 CHANGELOG.md
+72 −15 CONTRIBUTING.md
+8 −1 README.md
+369 −267 package-lock.json
+60 −29 package.json
+16 −0 samplenc/sample-mill-metric.nc
+11 −3 src/control.ts
+1 −9 src/extension.ts
+6 −6 src/gcodeUnits.ts
+1 −0 src/hovers/gcodeHoverControl.ts
+0 −21 src/util/commands.ts
+3 −3 src/util/commands/addComment.ts
+3 −2 src/util/commands/addLineNumbers.ts
+12 −13 src/util/commands/base.ts
+6 −7 src/util/commands/cmds.ts
+23 −0 src/util/commands/functions.ts
+3 −3 src/util/commands/removeComment.ts
+3 −2 src/util/commands/removeLineNumbers.ts
+3 −3 src/util/commands/showGCodeSettings.ts
+3 −2 src/util/commands/showSupportGCode.ts
+1 −0 src/util/configuration/defaults.ts
+23 −4 src/util/constants.ts
+13 −8 src/util/localStorageService.ts
+43 −19 src/util/logger.ts
+14 −2 src/util/machineType.ts
+4 −9 src/util/stateControl.ts
+2 −2 src/util/statusBar.ts
+39 −13 src/views/gView.ts
+32 −29 src/views/navTreeView.ts
+6 −7 src/views/providers/gcodeTreeParser.ts
+22 −20 src/views/statsView.ts
+0 −12 src/views/viewCommands.ts
+3 −3 src/webviews/codesWebview.ts
+2 −3 src/webviews/gWebview.ts
+0 −10 src/webviews/webviewCommands.ts
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-gleam
Submodule vscode-gleam updated 1 files
+115 −23 package-lock.json
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-lean
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-move-syntax
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-prisma
2 changes: 1 addition & 1 deletion vendor/grammars/vscode-vlang
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/Atom-PostScript.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Atom-PostScript
version: 773e8711263ea7fa1ae4c319057c271005eb59d0
version: 192c11a0776f45a2dd4cf4209b2a2d77c741c35b
type: git_submodule
homepage: https://github.com/Alhadis/Atom-PostScript
license: isc
Expand Down
12 changes: 11 additions & 1 deletion vendor/licenses/git_submodule/CodeMirror.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: CodeMirror
version: 482b7a45547175cabaa9fa68b31244625215a82a
version: ccacc382636a8f892f665b0eb49dcdce99593ae3
type: git_submodule
homepage: https://github.com/codemirror/CodeMirror
license: mit
Expand Down Expand Up @@ -157,6 +157,7 @@ notices:
Billy Moon
Bin Ni
binny
Bjarki Ágúst Guðmundsson
Bjorn Hansen
B Krishna Chaitanya
Blaine G
Expand All @@ -166,6 +167,7 @@ notices:
Bo Peng
borawjm
Boris K
Boris Verkhovskiy
Brad Metcalf
Brandon Frohs
Brandon Wamboldt
Expand Down Expand Up @@ -295,6 +297,7 @@ notices:
Eric Allam
Eric Bogard
Erik Demaine
Erik Krogh Kristensen
Erik Welander
erosman
eustas
Expand All @@ -303,6 +306,7 @@ notices:
Fabien O'Carroll
Fabio Zendhi Nagao
Faiza Alsaied
Faris Masad
Fauntleroy
fbuchinger
feizhang365
Expand All @@ -327,6 +331,7 @@ notices:
fraxx001
Fredrik Borg
FUJI Goro (gfx)
fzipp
Gabriel Gheorghian
Gabriel Horner
Gabriel Nahmias
Expand Down Expand Up @@ -368,6 +373,7 @@ notices:
Harald Schilly
Hardest
Harshvardhan Gupta
Harutyun Amirjanyan
Hasan Delibaş
Hasan Karahan
Heanes
Expand Down Expand Up @@ -530,6 +536,7 @@ notices:
Klaus Silveira
Koh Zi Han, Cliff
komakino
kometenstaub
Konrad Zapotoczny
Konstantin Chernenko
Konstantin Lopuhin
Expand Down Expand Up @@ -768,6 +775,7 @@ notices:
Pierre Gerold
Pieter Ouwerkerk
Piyush
Pontus Granström
Pontus Melke
prasanthj
Prasanth J
Expand Down Expand Up @@ -919,6 +927,7 @@ notices:
Thomas Schmid
Tim Alby
Tim Baumann
Tim Down
Tim Gates
Tim Nguyen
Timothy Farrell
Expand Down Expand Up @@ -978,6 +987,7 @@ notices:
wonderboyjon
Wu Cheng-Han
Xavier Mendez
Yakov Manshin
Yang Guo
Yash Singh
Yash-Singh1
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/Docker.tmbundle.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Docker.tmbundle
version: 4da4c8ba3fa86b3b1890f408c5f28918731c1690
version: 5d04e13661e96caf8c702eddd09386a5aa4bf5d1
type: git_submodule
homepage: https://github.com/asbjornenge/Docker.tmbundle
license: mit
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/Sublime-REBOL.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Sublime-REBOL
version: aafe2776a422324af44a1cdce9462cebeffcab93
version: da2b4ec0c84d6e593698118061efb4bd64eff853
type: git_submodule
homepage: https://github.com/Oldes/Sublime-REBOL
license: mit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: TypeScript-TmLanguage
version: 0dfae8cc4807fecfbf8f1add095d9817df824c95
version: 448f712d525026502b5ad8b2e50dceab303cb88a
type: git_submodule
homepage: https://github.com/Microsoft/TypeScript-TmLanguage
license: mit
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/VscodeAdblockSyntax.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: VscodeAdblockSyntax
version: 6e56ca195b594789e5e3f964dbf0bf264f656566
version: de372c98775a30eef2bfcecede17a955e563bbbc
type: git_submodule
homepage: https://github.com/ameshkov/VscodeAdblockSyntax.git
license: mit
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/XojoSyntaxTM.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: XojoSyntaxTM
version: 48f9a9098371f3a3170a05d38d9b1d14da85afdd
version: 90dddd6b07dcdfdaaf0660b7c4706a3dfe55d6ea
type: git_submodule
homepage: https://github.com/jimmckay/XojoSyntaxTM
license: apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/abap-cds-grammar.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: abap-cds-grammar
version: '024514393c2f98188e0702ccd3a88e3c5d689fcc'
version: e561dec39390597e9d4275f9bda23982de27594a
type: git_submodule
homepage: https://github.com/FreHu/abap-cds-grammar
license: unlicense
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/astro.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: astro
version: b96c479fdbba0c4cba2fbbf31745ada3a11039f3
version: 5a583d32c5788c219e15a42ddde7ec8dd1c3cc6b
type: git_submodule
homepage: https://github.com/withastro/language-tools.git
license: mit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: atom-language-purescript
version: '0629209cd7009df0e7a4c2b6e6356ffa6c1eeaf2'
version: b5c439559b21af03578d923ed8811cb0609d2210
type: git_submodule
homepage: https://github.com/purescript-contrib/atom-language-purescript
license: mit
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/atom-language-stan.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: atom-language-stan
version: 494364a14ef15df2184c0028595553883efd4bfd
version: 1353c394b611bfe2f95fd7536b53cd63963e9e87
type: git_submodule
homepage: https://github.com/stan-dev/atom-language-stan.git
license: mit
Expand Down
2 changes: 1 addition & 1 deletion vendor/licenses/git_submodule/bicep.dep.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: bicep
version: 476668e54544f0c1a0c746fcffd2066c554c1c3d
version: a35d5a492ca201be56077ae608d723ab27adc79c
type: git_submodule
homepage: https://github.com/azure/bicep
license: mit
Expand Down
Loading