diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 920afba..a7c15e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,16 @@ on: branches: - main +env: + # As defined by the Taskfile's PROJECT_NAME variable + PROJECT_NAME: arduino-language-server + ARTIFACT_PREFIX: dist- + AWS_REGION: "us-east-1" + # The project's folder on Arduino's download server for uploading builds + AWS_PLUGIN_TARGET: /arduino-language-server/nightly/ + # As defined by the Taskfile's DIST_DIR variable + DIST_DIR: dist + jobs: build: @@ -20,13 +30,16 @@ jobs: strategy: matrix: config: - - os: ubuntu-latest + - artifact-suffix: Linux_64bit + os: ubuntu-latest ExecutableSuffix: '' Exports: '' - - os: macos-latest + - artifact-suffix: macOS_ARM64 + os: macos-latest ExecutableSuffix: '' Exports: 'CGO_ENABLED=1 MACOSX_DEPLOYMENT_TARGET=10.14 ' - - os: windows-2019 + - artifact-suffix: Windows_64bit + os: windows-2019 ExecutableSuffix: '.exe' Exports: '' runs-on: ${{ matrix.config.os }} @@ -37,7 +50,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21.5' + go-version: '1.22.0' - name: Build and Test run: | @@ -48,9 +61,9 @@ jobs: run: 7z a "${{ github.workspace }}/${{ env.BUILD_OUTPUT_DIRECTORY }}/archive/${{ env.EXECUTABLE_NAME }}_${{ runner.OS }}_amd64.zip" "${{ github.workspace }}/${{ env.BUILD_OUTPUT_DIRECTORY }}/${{ runner.OS }}_amd64/*" - name: Upload Workflow Artifact [GitHub Actions] - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: build-artifacts + name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.config.artifact-suffix }} # this makes the artifact a .zip of the .zip archive, which is currently necessary to preserve the executable file permissions # see: https://github.com/actions/upload-artifact/issues/38 path: ${{ env.BUILD_OUTPUT_DIRECTORY }}/archive/${{ env.EXECUTABLE_NAME }}_${{ runner.OS }}_amd64.zip @@ -59,19 +72,24 @@ jobs: needs: build if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') runs-on: ubuntu-latest + environment: production + permissions: + contents: write + id-token: write # This is required for requesting the JWT steps: - name: Download Workflow Artifact [GitHub Actions] - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 + with: + pattern: ${{ env.ARTIFACT_PREFIX }}* + merge-multiple: true + path: ${{ env.DIST_DIR }} + + - name: configure aws credentials + uses: aws-actions/configure-aws-credentials@v4 with: - name: build-artifacts - path: build-artifacts + role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} + role-session-name: "github_${{ env.PROJECT_NAME }}" + aws-region: ${{ env.AWS_REGION }} - - name: Publish Nightly [S3] - uses: docker://plugins/s3 - env: - PLUGIN_SOURCE: "build-artifacts/*" - PLUGIN_TARGET: "/arduino-language-server/nightly" - PLUGIN_STRIP_PREFIX: "build-artifacts/" - PLUGIN_BUCKET: ${{ secrets.DOWNLOADS_BUCKET }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + - name: Upload release files on Arduino downloads servers + run: aws s3 sync ${{ env.DIST_DIR }} s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }} diff --git a/.github/workflows/check-go-dependencies-task.yml b/.github/workflows/check-go-dependencies-task.yml index 4144be6..d409048 100644 --- a/.github/workflows/check-go-dependencies-task.yml +++ b/.github/workflows/check-go-dependencies-task.yml @@ -3,7 +3,7 @@ name: Check Go Dependencies env: # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax - GO_VERSION: "1.21.5" + GO_VERSION: "1.22.0" # See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows on: @@ -108,9 +108,10 @@ jobs: # Some might find it convenient to have CI generate the cache rather than setting up for it locally - name: Upload cache to workflow artifact if: failure() && steps.diff.outcome == 'failure' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: if-no-files-found: error + include-hidden-files: true name: dep-licenses-cache path: .licenses/ diff --git a/.github/workflows/check-go-task.yml b/.github/workflows/check-go-task.yml index f63d8fc..c994e35 100644 --- a/.github/workflows/check-go-task.yml +++ b/.github/workflows/check-go-task.yml @@ -3,7 +3,7 @@ name: Check Go env: # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax - GO_VERSION: "1.21.5" + GO_VERSION: "1.22.0" # See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows on: diff --git a/.github/workflows/release-go-task.yml b/.github/workflows/release-go-task.yml index 43f9feb..f34365e 100644 --- a/.github/workflows/release-go-task.yml +++ b/.github/workflows/release-go-task.yml @@ -8,7 +8,8 @@ env: DIST_DIR: dist # The project's folder on Arduino's download server for uploading builds AWS_PLUGIN_TARGET: /arduino-language-server/ - ARTIFACT_NAME: dist + AWS_REGION: "us-east-1" + ARTIFACT_PREFIX: dist- on: push: @@ -22,15 +23,24 @@ jobs: strategy: matrix: os: - - Windows_32bit - - Windows_64bit - - Linux_32bit - - Linux_64bit - - Linux_ARMv6 - - Linux_ARMv7 - - Linux_ARM64 - - macOS_64bit - - macOS_ARM64 + - task: Windows_32bit + artifact-suffix: Windows_32bit + - task: Windows_64bit + artifact-suffix: Windows_64bit + - task: Linux_32bit + artifact-suffix: Linux_32bit + - task: Linux_64bit + artifact-suffix: Linux_64bit + - task: Linux_ARMv6 + artifact-suffix: Linux_ARMv6 + - task: Linux_ARMv7 + artifact-suffix: Linux_ARMv7 + - task: Linux_ARM64 + artifact-suffix: Linux_ARM64 + - task: macOS_64bit + artifact-suffix: macOS_64bit + - task: macOS_ARM64 + artifact-suffix: macOS_ARM64 steps: - name: Checkout repository @@ -40,7 +50,7 @@ jobs: - name: Create changelog # Avoid creating the same changelog for each os - if: matrix.os == 'Windows_32bit' + if: matrix.os.task == 'Windows_32bit' uses: arduino/create-changelog@v1 with: tag-regex: '^[0-9]+\.[0-9]+\.[0-9]+.*$' @@ -55,17 +65,17 @@ jobs: version: 3.x - name: Build - run: task dist:${{ matrix.os }} + run: task dist:${{ matrix.os.task }} - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: if-no-files-found: error - name: ${{ env.ARTIFACT_NAME }} + name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }} path: ${{ env.DIST_DIR }} notarize-macos: - name: Notarize ${{ matrix.artifact.name }} + name: Notarize ${{ matrix.build.folder-suffix }} runs-on: macos-latest needs: create-release-artifacts outputs: @@ -77,20 +87,29 @@ jobs: strategy: matrix: - artifact: - - name: darwin_amd64 - path: "macOS_64bit.tar.gz" - - name: darwin_arm64 - path: "macOS_ARM64.tar.gz" + build: + - artifact-suffix: macOS_64bit + folder-suffix: darwin_amd64 + package-suffix: "macOS_64bit.tar.gz" + - artifact-suffix: macOS_ARM64 + folder-suffix: darwin_arm64 + package-suffix: "macOS_ARM64.tar.gz" steps: + - name: Set environment variables + run: | + # See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable + echo "BUILD_FOLDER=${{ env.PROJECT_NAME }}_osx_${{ matrix.build.folder-suffix }}" >> "$GITHUB_ENV" + TAG="${GITHUB_REF/refs\/tags\//}" + echo "PACKAGE_FILENAME=${{ env.PROJECT_NAME }}_${TAG}_${{ matrix.build.package-suffix }}" >> $GITHUB_ENV + - name: Checkout repository uses: actions/checkout@v4 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: ${{ env.ARTIFACT_NAME }} + name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }} path: ${{ env.DIST_DIR }} - name: Import Code-Signing Certificates @@ -127,7 +146,7 @@ jobs: run: | cat > "${{ env.GON_CONFIG_PATH }}" <> $GITHUB_ENV - - name: Upload artifact - uses: actions/upload-artifact@v3 + - name: Replace artifact with notarized build + uses: actions/upload-artifact@v4 with: if-no-files-found: error - name: ${{ env.ARTIFACT_NAME }} + name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }} + overwrite: true path: ${{ env.DIST_DIR }}/${{ env.PACKAGE_FILENAME }} create-release: runs-on: ubuntu-latest + environment: production needs: notarize-macos + permissions: + contents: write + id-token: write # This is required for requesting the JWT steps: - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: ${{ env.ARTIFACT_NAME }} + pattern: ${{ env.ARTIFACT_PREFIX }}* + merge-multiple: true path: ${{ env.DIST_DIR }} - name: Create checksum file @@ -216,12 +238,12 @@ jobs: # (all the files we need are in the DIST_DIR root) artifacts: ${{ env.DIST_DIR }}/* + - name: configure aws credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} + role-session-name: "github_${{ env.PROJECT_NAME }}" + aws-region: ${{ env.AWS_REGION }} + - name: Upload release files on Arduino downloads servers - uses: docker://plugins/s3 - env: - PLUGIN_SOURCE: "${{ env.DIST_DIR }}/*" - PLUGIN_TARGET: ${{ env.AWS_PLUGIN_TARGET }} - PLUGIN_STRIP_PREFIX: "${{ env.DIST_DIR }}/" - PLUGIN_BUCKET: ${{ secrets.DOWNLOADS_BUCKET }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + run: aws s3 sync ${{ env.DIST_DIR }} s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }} diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 0a211f5..30809a1 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -19,7 +19,7 @@ on: env: CONFIGURATIONS_FOLDER: .github/label-configuration-files - CONFIGURATIONS_ARTIFACT: label-configuration-files + CONFIGURATIONS_ARTIFACT_PREFIX: label-configuration-file- jobs: check: @@ -71,13 +71,13 @@ jobs: file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }} - name: Pass configuration files to next job via workflow artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: | *.yaml *.yml if-no-files-found: error - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }} sync: needs: download @@ -108,16 +108,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Download configuration files artifact - uses: actions/download-artifact@v3 + - name: Download configuration file artifacts + uses: actions/download-artifact@v4 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + merge-multiple: true + pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* path: ${{ env.CONFIGURATIONS_FOLDER }} - - name: Remove unneeded artifact - uses: geekyeggo/delete-artifact@v2 + - name: Remove unneeded artifacts + uses: geekyeggo/delete-artifact@v5 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* - name: Merge label configuration files run: | diff --git a/.licensed.yml b/.licensed.yml index b8e0c83..1477e64 100644 --- a/.licensed.yml +++ b/.licensed.yml @@ -5,6 +5,52 @@ sources: apps: - source_path: ./ +reviewed: + go: + - github.com/ProtonMail/go-crypto/bitcurves + - github.com/arduino/go-paths-helper + - github.com/arduino/go-properties-orderedmap + - go.bug.st/json + - golang.org/x/net/http2 + - google.golang.org/protobuf + - golang.org/x/net/http2 + - golang.org/x/net/internal/timeseries + - golang.org/x/net/trace + - golang.org/x/sys/unix + - google.golang.org/protobuf/encoding/protojson + - google.golang.org/protobuf/encoding/prototext + - google.golang.org/protobuf/encoding/protowire + - google.golang.org/protobuf/internal/descfmt + - google.golang.org/protobuf/internal/descopts + - google.golang.org/protobuf/internal/detrand + - google.golang.org/protobuf/internal/editiondefaults + - google.golang.org/protobuf/internal/encoding/defval + - google.golang.org/protobuf/internal/encoding/json + - google.golang.org/protobuf/internal/encoding/messageset + - google.golang.org/protobuf/internal/encoding/tag + - google.golang.org/protobuf/internal/encoding/text + - google.golang.org/protobuf/internal/errors + - google.golang.org/protobuf/internal/filedesc + - google.golang.org/protobuf/internal/filetype + - google.golang.org/protobuf/internal/flags + - google.golang.org/protobuf/internal/genid + - google.golang.org/protobuf/internal/impl + - google.golang.org/protobuf/internal/order + - google.golang.org/protobuf/internal/pragma + - google.golang.org/protobuf/internal/set + - google.golang.org/protobuf/internal/strs + - google.golang.org/protobuf/internal/version + - google.golang.org/protobuf/proto + - google.golang.org/protobuf/protoadapt + - google.golang.org/protobuf/reflect/protoreflect + - google.golang.org/protobuf/reflect/protoregistry + - google.golang.org/protobuf/runtime/protoiface + - google.golang.org/protobuf/runtime/protoimpl + - google.golang.org/protobuf/types/known/anypb + - google.golang.org/protobuf/types/known/durationpb + - google.golang.org/protobuf/types/known/timestamppb + + # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies/AGPL-3.0/.licensed.yml allowed: # The following are based on: https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses diff --git a/.licenses/arduino-language-server/go/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1.dep.yml b/.licenses/arduino-language-server/go/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1.dep.yml index 92cfcb3..1e097df 100644 --- a/.licenses/arduino-language-server/go/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1.dep.yml @@ -1,12 +1,216 @@ --- name: github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1 -version: v1.0.0 +version: v1.0.3 type: go -summary: -homepage: https://pkg.go.dev/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1 -license: gpl-3.0-only +summary: +homepage: https://godoc.org/github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1 +license: other licenses: -- sources: arduino-cli@v1.0.0/LICENSE.txt +- sources: rpc/LICENSE.txt + text: |2 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: arduino-cli@v1.0.3/LICENSE.txt text: |2 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -682,7 +886,7 @@ licenses: the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . -- sources: arduino-cli@v1.0.0/license_header.tpl +- sources: arduino-cli@v1.0.3/license_header.tpl text: | This file is part of arduino-cli. @@ -698,7 +902,7 @@ licenses: modify or otherwise use the software for commercial activities involving the Arduino software without disclosing the source code of your own applications. To purchase a commercial license, send an email to license@arduino.cc. -- sources: arduino-cli@v1.0.0/README.md +- sources: arduino-cli@v1.0.3/README.md text: |- Arduino CLI is licensed under the [GPL 3.0] license. diff --git a/.licenses/arduino-language-server/go/github.com/arduino/go-paths-helper.dep.yml b/.licenses/arduino-language-server/go/github.com/arduino/go-paths-helper.dep.yml index 05f3eca..a0bf5f8 100644 --- a/.licenses/arduino-language-server/go/github.com/arduino/go-paths-helper.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/arduino/go-paths-helper.dep.yml @@ -1,10 +1,10 @@ --- name: github.com/arduino/go-paths-helper -version: v1.12.0 +version: v1.12.1 type: go -summary: -homepage: https://pkg.go.dev/github.com/arduino/go-paths-helper -license: gpl-2.0-or-later +summary: +homepage: https://godoc.org/github.com/arduino/go-paths-helper +license: gpl-2.0 licenses: - sources: LICENSE text: |2 diff --git a/.licenses/arduino-language-server/go/github.com/arduino/go-properties-orderedmap.dep.yml b/.licenses/arduino-language-server/go/github.com/arduino/go-properties-orderedmap.dep.yml index 9905b39..a8ea518 100644 --- a/.licenses/arduino-language-server/go/github.com/arduino/go-properties-orderedmap.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/arduino/go-properties-orderedmap.dep.yml @@ -1,10 +1,10 @@ --- name: github.com/arduino/go-properties-orderedmap -version: v1.8.0 +version: v1.8.1 type: go summary: Package properties is a library for handling maps of hierarchical properties. -homepage: https://pkg.go.dev/github.com/arduino/go-properties-orderedmap -license: gpl-2.0+ +homepage: https://godoc.org/github.com/arduino/go-properties-orderedmap +license: gpl-2.0 licenses: - sources: LICENSE text: |2 diff --git a/.licenses/arduino-language-server/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml b/.licenses/arduino-language-server/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml index 2fdbca2..eda775d 100644 --- a/.licenses/arduino-language-server/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml @@ -4,7 +4,7 @@ version: v2.2.0 type: go summary: Package discovery is a library for handling the Arduino Pluggable-Discovery protocol (https://github.com/arduino/tooling-rfcs/blob/main/RFCs/0002-pluggable-discovery.md#pluggable-discovery-api-via-stdinstdout) -homepage: https://pkg.go.dev/github.com/arduino/pluggable-discovery-protocol-handler/v2 +homepage: https://godoc.org/github.com/arduino/pluggable-discovery-protocol-handler/v2 license: other licenses: - sources: LICENSE.txt diff --git a/.licenses/arduino-language-server/go/github.com/fatih/color.dep.yml b/.licenses/arduino-language-server/go/github.com/fatih/color.dep.yml index 10f4250..b876112 100644 --- a/.licenses/arduino-language-server/go/github.com/fatih/color.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/fatih/color.dep.yml @@ -4,7 +4,7 @@ version: v1.17.0 type: go summary: Package color is an ANSI color package to output colorized or SGR defined output to the standard output. -homepage: https://pkg.go.dev/github.com/fatih/color +homepage: https://godoc.org/github.com/fatih/color license: mit licenses: - sources: LICENSE.md diff --git a/.licenses/arduino-language-server/go/github.com/mattn/go-colorable.dep.yml b/.licenses/arduino-language-server/go/github.com/mattn/go-colorable.dep.yml index dab73bc..25f7b20 100644 --- a/.licenses/arduino-language-server/go/github.com/mattn/go-colorable.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/mattn/go-colorable.dep.yml @@ -2,8 +2,8 @@ name: github.com/mattn/go-colorable version: v0.1.13 type: go -summary: -homepage: https://pkg.go.dev/github.com/mattn/go-colorable +summary: +homepage: https://godoc.org/github.com/mattn/go-colorable license: mit licenses: - sources: LICENSE diff --git a/.licenses/arduino-language-server/go/github.com/mattn/go-isatty.dep.yml b/.licenses/arduino-language-server/go/github.com/mattn/go-isatty.dep.yml index fcf3912..ffb85ef 100644 --- a/.licenses/arduino-language-server/go/github.com/mattn/go-isatty.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/mattn/go-isatty.dep.yml @@ -3,7 +3,7 @@ name: github.com/mattn/go-isatty version: v0.0.20 type: go summary: Package isatty implements interface to isatty -homepage: https://pkg.go.dev/github.com/mattn/go-isatty +homepage: https://godoc.org/github.com/mattn/go-isatty license: mit licenses: - sources: LICENSE diff --git a/.licenses/arduino-language-server/go/github.com/pkg/errors.dep.yml b/.licenses/arduino-language-server/go/github.com/pkg/errors.dep.yml index a9b72bc..9f7286c 100644 --- a/.licenses/arduino-language-server/go/github.com/pkg/errors.dep.yml +++ b/.licenses/arduino-language-server/go/github.com/pkg/errors.dep.yml @@ -3,7 +3,7 @@ name: github.com/pkg/errors version: v0.9.1 type: go summary: Package errors provides simple error handling primitives. -homepage: https://pkg.go.dev/github.com/pkg/errors +homepage: https://godoc.org/github.com/pkg/errors license: bsd-2-clause licenses: - sources: LICENSE diff --git a/.licenses/arduino-language-server/go/go.bug.st/json.dep.yml b/.licenses/arduino-language-server/go/go.bug.st/json.dep.yml index cfbb0cc..8b70508 100644 --- a/.licenses/arduino-language-server/go/go.bug.st/json.dep.yml +++ b/.licenses/arduino-language-server/go/go.bug.st/json.dep.yml @@ -3,8 +3,8 @@ name: go.bug.st/json version: v1.15.6 type: go summary: Package json implements encoding and decoding of JSON as defined in RFC 7159. -homepage: https://pkg.go.dev/go.bug.st/json -license: bsd-3-clause +homepage: https://godoc.org/go.bug.st/json +license: other licenses: - sources: LICENSE text: |2+ @@ -14,3 +14,4 @@ licenses: - sources: README.md text: 'The license is the same from the Golang source code: https://github.com/golang/go/blob/master/LICENSE' notices: [] +... diff --git a/.licenses/arduino-language-server/go/go.bug.st/lsp.dep.yml b/.licenses/arduino-language-server/go/go.bug.st/lsp.dep.yml index 7d9fae5..2ec4a4b 100644 --- a/.licenses/arduino-language-server/go/go.bug.st/lsp.dep.yml +++ b/.licenses/arduino-language-server/go/go.bug.st/lsp.dep.yml @@ -1,9 +1,9 @@ --- name: go.bug.st/lsp -version: v0.1.2 +version: v0.1.3 type: go -summary: -homepage: https://pkg.go.dev/go.bug.st/lsp +summary: Package lsp is an implementation of a Language Server Protocol handler. +homepage: https://godoc.org/go.bug.st/lsp license: bsd-3-clause licenses: - sources: LICENSE diff --git a/.licenses/arduino-language-server/go/go.bug.st/lsp/jsonrpc.dep.yml b/.licenses/arduino-language-server/go/go.bug.st/lsp/jsonrpc.dep.yml index 689139d..9a31135 100644 --- a/.licenses/arduino-language-server/go/go.bug.st/lsp/jsonrpc.dep.yml +++ b/.licenses/arduino-language-server/go/go.bug.st/lsp/jsonrpc.dep.yml @@ -1,12 +1,13 @@ --- name: go.bug.st/lsp/jsonrpc -version: v0.1.2 +version: v0.1.3 type: go -summary: -homepage: https://pkg.go.dev/go.bug.st/lsp/jsonrpc +summary: Package jsonrpc is an implementation of a Language Server Protocol JSON-RPC + protocol. +homepage: https://godoc.org/go.bug.st/lsp/jsonrpc license: bsd-3-clause licenses: -- sources: lsp@v0.1.2/LICENSE +- sources: lsp@v0.1.3/LICENSE text: |2+ Copyright (c) 2021, Cristian Maglie. diff --git a/.licenses/arduino-language-server/go/go.bug.st/lsp/textedits.dep.yml b/.licenses/arduino-language-server/go/go.bug.st/lsp/textedits.dep.yml index 03554bc..9d70fe1 100644 --- a/.licenses/arduino-language-server/go/go.bug.st/lsp/textedits.dep.yml +++ b/.licenses/arduino-language-server/go/go.bug.st/lsp/textedits.dep.yml @@ -1,12 +1,12 @@ --- name: go.bug.st/lsp/textedits -version: v0.1.2 +version: v0.1.3 type: go summary: -homepage: https://pkg.go.dev/go.bug.st/lsp/textedits +homepage: https://godoc.org/go.bug.st/lsp/textedits license: bsd-3-clause licenses: -- sources: lsp@v0.1.2/LICENSE +- sources: lsp@v0.1.3/LICENSE text: |2+ Copyright (c) 2021, Cristian Maglie. diff --git a/.licenses/arduino-language-server/go/go.bug.st/relaxed-semver.dep.yml b/.licenses/arduino-language-server/go/go.bug.st/relaxed-semver.dep.yml index 6a4349b..78ff197 100644 --- a/.licenses/arduino-language-server/go/go.bug.st/relaxed-semver.dep.yml +++ b/.licenses/arduino-language-server/go/go.bug.st/relaxed-semver.dep.yml @@ -2,8 +2,8 @@ name: go.bug.st/relaxed-semver version: v0.12.0 type: go -summary: -homepage: https://pkg.go.dev/go.bug.st/relaxed-semver +summary: +homepage: https://godoc.org/go.bug.st/relaxed-semver license: bsd-3-clause licenses: - sources: LICENSE @@ -42,3 +42,4 @@ licenses: POSSIBILITY OF SUCH DAMAGE. notices: [] +... diff --git a/.licenses/arduino-language-server/go/golang.org/x/net/http2.dep.yml b/.licenses/arduino-language-server/go/golang.org/x/net/http2.dep.yml index 79cad66..ff9c430 100644 --- a/.licenses/arduino-language-server/go/golang.org/x/net/http2.dep.yml +++ b/.licenses/arduino-language-server/go/golang.org/x/net/http2.dep.yml @@ -1,12 +1,12 @@ --- name: golang.org/x/net/http2 -version: v0.23.0 +version: v0.25.0 type: go summary: Package http2 implements the HTTP/2 protocol. -homepage: https://pkg.go.dev/golang.org/x/net/http2 -license: bsd-3-clause +homepage: https://godoc.org/golang.org/x/net/http2 +license: other licenses: -- sources: net@v0.23.0/LICENSE +- sources: net@v0.25.0/LICENSE text: | Copyright (c) 2009 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: net@v0.23.0/PATENTS +- sources: net@v0.25.0/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/golang.org/x/net/internal/timeseries.dep.yml b/.licenses/arduino-language-server/go/golang.org/x/net/internal/timeseries.dep.yml index 25b0bc4..cd71a87 100644 --- a/.licenses/arduino-language-server/go/golang.org/x/net/internal/timeseries.dep.yml +++ b/.licenses/arduino-language-server/go/golang.org/x/net/internal/timeseries.dep.yml @@ -1,12 +1,12 @@ --- name: golang.org/x/net/internal/timeseries -version: v0.23.0 +version: v0.25.0 type: go summary: Package timeseries implements a time series structure for stats collection. -homepage: https://pkg.go.dev/golang.org/x/net/internal/timeseries -license: bsd-3-clause +homepage: https://godoc.org/golang.org/x/net/internal/timeseries +license: other licenses: -- sources: net@v0.23.0/LICENSE +- sources: net@v0.25.0/LICENSE text: | Copyright (c) 2009 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: net@v0.23.0/PATENTS +- sources: net@v0.25.0/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/golang.org/x/net/trace.dep.yml b/.licenses/arduino-language-server/go/golang.org/x/net/trace.dep.yml index 6286e35..43d409b 100644 --- a/.licenses/arduino-language-server/go/golang.org/x/net/trace.dep.yml +++ b/.licenses/arduino-language-server/go/golang.org/x/net/trace.dep.yml @@ -1,12 +1,12 @@ --- name: golang.org/x/net/trace -version: v0.23.0 +version: v0.25.0 type: go summary: Package trace implements tracing of requests and long-lived objects. -homepage: https://pkg.go.dev/golang.org/x/net/trace -license: bsd-3-clause +homepage: https://godoc.org/golang.org/x/net/trace +license: other licenses: -- sources: net@v0.23.0/LICENSE +- sources: net@v0.25.0/LICENSE text: | Copyright (c) 2009 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: net@v0.23.0/PATENTS +- sources: net@v0.25.0/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/golang.org/x/sys/unix.dep.yml b/.licenses/arduino-language-server/go/golang.org/x/sys/unix.dep.yml index 8c6dd95..7ea8761 100644 --- a/.licenses/arduino-language-server/go/golang.org/x/sys/unix.dep.yml +++ b/.licenses/arduino-language-server/go/golang.org/x/sys/unix.dep.yml @@ -1,12 +1,12 @@ --- name: golang.org/x/sys/unix -version: v0.20.0 +version: v0.22.0 type: go summary: Package unix contains an interface to the low-level operating system primitives. -homepage: https://pkg.go.dev/golang.org/x/sys/unix -license: bsd-3-clause +homepage: https://godoc.org/golang.org/x/sys/unix +license: other licenses: -- sources: sys@v0.20.0/LICENSE +- sources: sys@v0.22.0/LICENSE text: | Copyright (c) 2009 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: sys@v0.20.0/PATENTS +- sources: sys@v0.22.0/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/genproto/googleapis/rpc/status.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/genproto/googleapis/rpc/status.dep.yml index 39ef8d2..761a190 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/genproto/googleapis/rpc/status.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/genproto/googleapis/rpc/status.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/genproto/googleapis/rpc/status -version: v0.0.0-20240318140521-94a12d6c2237 +version: v0.0.0-20240528184218-531527333157 type: go -summary: -homepage: https://pkg.go.dev/google.golang.org/genproto/googleapis/rpc/status +summary: +homepage: https://godoc.org/google.golang.org/genproto/googleapis/rpc/status license: apache-2.0 licenses: -- sources: rpc@v0.0.0-20240318140521-94a12d6c2237/LICENSE +- sources: rpc@v0.0.0-20240528184218-531527333157/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc.dep.yml index a67b933..5f486b6 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc.dep.yml @@ -1,9 +1,9 @@ --- name: google.golang.org/grpc -version: v1.64.0 +version: v1.65.0 type: go summary: Package grpc implements an RPC system called gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc +homepage: https://godoc.org/google.golang.org/grpc license: apache-2.0 licenses: - sources: LICENSE diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/attributes.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/attributes.dep.yml index d5a0d7f..05650fd 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/attributes.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/attributes.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/attributes -version: v1.64.0 +version: v1.65.0 type: go summary: Package attributes defines a generic key/value store used in various gRPC components. -homepage: https://pkg.go.dev/google.golang.org/grpc/attributes +homepage: https://godoc.org/google.golang.org/grpc/attributes license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/backoff.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/backoff.dep.yml index e650cee..3b58650 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/backoff.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/backoff.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/backoff -version: v1.64.0 +version: v1.65.0 type: go summary: Package backoff provides configuration options for backoff. -homepage: https://pkg.go.dev/google.golang.org/grpc/backoff +homepage: https://godoc.org/google.golang.org/grpc/backoff license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer.dep.yml index 1290024..0776326 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/balancer -version: v1.64.0 +version: v1.65.0 type: go summary: Package balancer defines APIs for load balancing in gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/balancer +homepage: https://godoc.org/google.golang.org/grpc/balancer license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/base.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/base.dep.yml index a982c58..2ba0b59 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/base.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/base.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/balancer/base -version: v1.64.0 +version: v1.65.0 type: go summary: Package base defines a balancer base that can be used to build balancers with different picking algorithms. -homepage: https://pkg.go.dev/google.golang.org/grpc/balancer/base +homepage: https://godoc.org/google.golang.org/grpc/balancer/base license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/grpclb/state.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/grpclb/state.dep.yml index 8ef5bc0..9c147e9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/grpclb/state.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/grpclb/state.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/balancer/grpclb/state -version: v1.64.0 +version: v1.65.0 type: go summary: Package state declares grpclb types to be set by resolvers wishing to pass information to grpclb via resolver.State Attributes. -homepage: https://pkg.go.dev/google.golang.org/grpc/balancer/grpclb/state +homepage: https://godoc.org/google.golang.org/grpc/balancer/grpclb/state license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcrand.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/pickfirst.dep.yml similarity index 97% rename from .licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcrand.dep.yml rename to .licenses/arduino-language-server/go/google.golang.org/grpc/balancer/pickfirst.dep.yml index 63a4e82..202be02 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcrand.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/pickfirst.dep.yml @@ -1,13 +1,12 @@ --- -name: google.golang.org/grpc/internal/grpcrand -version: v1.64.0 +name: google.golang.org/grpc/balancer/pickfirst +version: v1.65.0 type: go -summary: Package grpcrand implements math/rand functions in a concurrent-safe way - with a global random source, independent of math/rand's global source. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/grpcrand +summary: Package pickfirst contains the pick_first load balancing policy. +homepage: https://godoc.org/google.golang.org/grpc/balancer/pickfirst license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/roundrobin.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/roundrobin.dep.yml index 3aa7bf7..e2f3107 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/roundrobin.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/balancer/roundrobin.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/balancer/roundrobin -version: v1.64.0 +version: v1.65.0 type: go summary: Package roundrobin defines a roundrobin balancer. -homepage: https://pkg.go.dev/google.golang.org/grpc/balancer/roundrobin +homepage: https://godoc.org/google.golang.org/grpc/balancer/roundrobin license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/binarylog/grpc_binarylog_v1.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/binarylog/grpc_binarylog_v1.dep.yml index c031a2d..bc9fd12 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/binarylog/grpc_binarylog_v1.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/binarylog/grpc_binarylog_v1.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/binarylog/grpc_binarylog_v1 -version: v1.64.0 +version: v1.65.0 type: go -summary: -homepage: https://pkg.go.dev/google.golang.org/grpc/binarylog/grpc_binarylog_v1 +summary: +homepage: https://godoc.org/google.golang.org/grpc/binarylog/grpc_binarylog_v1 license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/channelz.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/channelz.dep.yml index 439537a..b8acbcd 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/channelz.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/channelz.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/channelz -version: v1.64.0 +version: v1.65.0 type: go summary: Package channelz exports internals of the channelz implementation as required by other gRPC packages. -homepage: https://pkg.go.dev/google.golang.org/grpc/channelz +homepage: https://godoc.org/google.golang.org/grpc/channelz license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/codes.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/codes.dep.yml index d02abf0..709d7b9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/codes.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/codes.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/codes -version: v1.64.0 +version: v1.65.0 type: go summary: Package codes defines the canonical error codes used by gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/codes +homepage: https://godoc.org/google.golang.org/grpc/codes license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/connectivity.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/connectivity.dep.yml index efe1d2c..9529786 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/connectivity.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/connectivity.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/connectivity -version: v1.64.0 +version: v1.65.0 type: go summary: Package connectivity defines connectivity semantics. -homepage: https://pkg.go.dev/google.golang.org/grpc/connectivity +homepage: https://godoc.org/google.golang.org/grpc/connectivity license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials.dep.yml index 571cbde..4fb8029 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials.dep.yml @@ -1,15 +1,15 @@ --- name: google.golang.org/grpc/credentials -version: v1.64.0 +version: v1.65.0 type: go summary: Package credentials implements various credentials supported by gRPC library, which encapsulate all the state needed by a client to authenticate with a server and make various assertions, e.g., about the client's identity, role, or whether it is authorized to make a particular call. -homepage: https://pkg.go.dev/google.golang.org/grpc/credentials +homepage: https://godoc.org/google.golang.org/grpc/credentials license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials/insecure.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials/insecure.dep.yml index 94f2ea1..4bf1a84 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials/insecure.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/credentials/insecure.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/credentials/insecure -version: v1.64.0 +version: v1.65.0 type: go summary: Package insecure provides an implementation of the credentials.TransportCredentials interface which disables transport security. -homepage: https://pkg.go.dev/google.golang.org/grpc/credentials/insecure +homepage: https://godoc.org/google.golang.org/grpc/credentials/insecure license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding.dep.yml index 56ad90a..56d20e8 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/encoding -version: v1.64.0 +version: v1.65.0 type: go summary: Package encoding defines the interface for the compressor and codec, and functions to register and retrieve compressors and codecs. -homepage: https://pkg.go.dev/google.golang.org/grpc/encoding +homepage: https://godoc.org/google.golang.org/grpc/encoding license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding/proto.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding/proto.dep.yml index d4e7e06..e20f295 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding/proto.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/encoding/proto.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/encoding/proto -version: v1.64.0 +version: v1.65.0 type: go summary: Package proto defines the protobuf codec. -homepage: https://pkg.go.dev/google.golang.org/grpc/encoding/proto +homepage: https://godoc.org/google.golang.org/grpc/encoding/proto license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/grpclog.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/grpclog.dep.yml index 3dd1007..b57f816 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/grpclog.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/grpclog.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/grpclog -version: v1.64.0 +version: v1.65.0 type: go summary: Package grpclog defines logging for grpc. -homepage: https://pkg.go.dev/google.golang.org/grpc/grpclog +homepage: https://godoc.org/google.golang.org/grpc/grpclog license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal.dep.yml index a181f93..c43f492 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal -version: v1.64.0 +version: v1.65.0 type: go summary: Package internal contains gRPC-internal code, to avoid polluting the godoc of the top-level grpc package. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal +homepage: https://godoc.org/google.golang.org/grpc/internal license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/backoff.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/backoff.dep.yml index a42fc10..2b59cf0 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/backoff.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/backoff.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/backoff -version: v1.64.0 +version: v1.65.0 type: go summary: Package backoff implement the backoff strategy for gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/backoff +homepage: https://godoc.org/google.golang.org/grpc/internal/backoff license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancer/gracefulswitch.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancer/gracefulswitch.dep.yml index 34734fd..13f742e 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancer/gracefulswitch.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancer/gracefulswitch.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/balancer/gracefulswitch -version: v1.64.0 +version: v1.65.0 type: go summary: Package gracefulswitch implements a graceful switch load balancer. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/balancer/gracefulswitch +homepage: https://godoc.org/google.golang.org/grpc/internal/balancer/gracefulswitch license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancerload.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancerload.dep.yml index 51cfa9f..e03c52c 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancerload.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/balancerload.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/balancerload -version: v1.64.0 +version: v1.65.0 type: go summary: Package balancerload defines APIs to parse server loads in trailers. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/balancerload +homepage: https://godoc.org/google.golang.org/grpc/internal/balancerload license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/binarylog.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/binarylog.dep.yml index 24ab72c..e5ce31e 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/binarylog.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/binarylog.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/binarylog -version: v1.64.0 +version: v1.65.0 type: go summary: Package binarylog implementation binary logging as defined in https://github.com/grpc/proposal/blob/master/A16-binary-logging.md. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/binarylog +homepage: https://godoc.org/google.golang.org/grpc/internal/binarylog license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/buffer.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/buffer.dep.yml index eff84fe..21856ec 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/buffer.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/buffer.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/buffer -version: v1.64.0 +version: v1.65.0 type: go summary: Package buffer provides an implementation of an unbounded buffer. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/buffer +homepage: https://godoc.org/google.golang.org/grpc/internal/buffer license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/channelz.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/channelz.dep.yml index e81e03a..47b56a9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/channelz.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/channelz.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/channelz -version: v1.64.0 +version: v1.65.0 type: go summary: Package channelz defines internal APIs for enabling channelz service, entry registration/deletion, and accessing channelz data. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/channelz +homepage: https://godoc.org/google.golang.org/grpc/internal/channelz license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/credentials.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/credentials.dep.yml index 0370966..da1c772 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/credentials.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/credentials.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/credentials -version: v1.64.0 +version: v1.65.0 type: go summary: Package credentials defines APIs for parsing SPIFFE ID. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/credentials +homepage: https://godoc.org/google.golang.org/grpc/internal/credentials license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/envconfig.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/envconfig.dep.yml index b046eaa..c4ef317 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/envconfig.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/envconfig.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/envconfig -version: v1.64.0 +version: v1.65.0 type: go summary: Package envconfig contains grpc settings configured by environment variables. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/envconfig +homepage: https://godoc.org/google.golang.org/grpc/internal/envconfig license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpclog.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpclog.dep.yml index 01c0438..263d57b 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpclog.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpclog.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/grpclog -version: v1.64.0 +version: v1.65.0 type: go summary: Package grpclog (internal) defines depth logging for grpc. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/grpclog +homepage: https://godoc.org/google.golang.org/grpc/internal/grpclog license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcsync.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcsync.dep.yml index d2c371c..3a3a530 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcsync.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcsync.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/grpcsync -version: v1.64.0 +version: v1.65.0 type: go summary: Package grpcsync implements additional synchronization primitives built upon the sync package. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/grpcsync +homepage: https://godoc.org/google.golang.org/grpc/internal/grpcsync license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcutil.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcutil.dep.yml index 49fc63e..8654998 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcutil.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/grpcutil.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/grpcutil -version: v1.64.0 +version: v1.65.0 type: go summary: Package grpcutil provides utility functions used across the gRPC codebase. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/grpcutil +homepage: https://godoc.org/google.golang.org/grpc/internal/grpcutil license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/idle.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/idle.dep.yml index 0fed46f..f642e81 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/idle.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/idle.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/idle -version: v1.64.0 +version: v1.65.0 type: go summary: Package idle contains a component for managing idleness (entering and exiting) based on RPC activity. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/idle +homepage: https://godoc.org/google.golang.org/grpc/internal/idle license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/metadata.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/metadata.dep.yml index 253e336..3c07cd0 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/metadata.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/metadata.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/metadata -version: v1.64.0 +version: v1.65.0 type: go summary: Package metadata contains functions to set and get metadata from addresses. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/metadata +homepage: https://godoc.org/google.golang.org/grpc/internal/metadata license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/pretty.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/pretty.dep.yml index 05f9d08..829c25c 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/pretty.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/pretty.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/pretty -version: v1.64.0 +version: v1.65.0 type: go summary: Package pretty defines helper functions to pretty-print structs for logging. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/pretty +homepage: https://godoc.org/google.golang.org/grpc/internal/pretty license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver.dep.yml index 08be9f2..f8625f3 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/resolver -version: v1.64.0 +version: v1.65.0 type: go summary: Package resolver provides internal resolver-related functionality. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/resolver +homepage: https://godoc.org/google.golang.org/grpc/internal/resolver license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns.dep.yml index fd26270..08cf4a5 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/resolver/dns -version: v1.64.0 +version: v1.65.0 type: go summary: Package dns implements a dns resolver to be installed as the default resolver in grpc. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/resolver/dns +homepage: https://godoc.org/google.golang.org/grpc/internal/resolver/dns license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns/internal.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns/internal.dep.yml index 1ef000f..09de048 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns/internal.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/dns/internal.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/resolver/dns/internal -version: v1.64.0 +version: v1.65.0 type: go summary: Package internal contains functionality internal to the dns resolver package. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/resolver/dns/internal +homepage: https://godoc.org/google.golang.org/grpc/internal/resolver/dns/internal license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/passthrough.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/passthrough.dep.yml index ca5e898..8e15ad9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/passthrough.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/passthrough.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/resolver/passthrough -version: v1.64.0 +version: v1.65.0 type: go summary: Package passthrough implements a pass-through resolver. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/resolver/passthrough +homepage: https://godoc.org/google.golang.org/grpc/internal/resolver/passthrough license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/unix.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/unix.dep.yml index 6acc344..f9a8102 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/unix.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/resolver/unix.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/resolver/unix -version: v1.64.0 +version: v1.65.0 type: go summary: Package unix implements a resolver for unix targets. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/resolver/unix +homepage: https://godoc.org/google.golang.org/grpc/internal/resolver/unix license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/serviceconfig.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/serviceconfig.dep.yml index 94e7686..cab2a67 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/serviceconfig.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/serviceconfig.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/serviceconfig -version: v1.64.0 +version: v1.65.0 type: go summary: Package serviceconfig contains utility functions to parse service config. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/serviceconfig +homepage: https://godoc.org/google.golang.org/grpc/internal/serviceconfig license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/status.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/status.dep.yml index 254ebb5..a12d3ec 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/status.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/status.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/status -version: v1.64.0 +version: v1.65.0 type: go summary: Package status implements errors returned by gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/status +homepage: https://godoc.org/google.golang.org/grpc/internal/status license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/syscall.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/syscall.dep.yml index bb7931a..8278a40 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/syscall.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/syscall.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/syscall -version: v1.64.0 +version: v1.65.0 type: go summary: Package syscall provides functionalities that grpc uses to get low-level operating system stats/info. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/syscall +homepage: https://godoc.org/google.golang.org/grpc/internal/syscall license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport.dep.yml index b8c8533..d11ba61 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/internal/transport -version: v1.64.0 +version: v1.65.0 type: go summary: Package transport defines and implements message oriented communication channel to complete various transactions (e.g., an RPC). -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/transport +homepage: https://godoc.org/google.golang.org/grpc/internal/transport license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport/networktype.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport/networktype.dep.yml index f570661..96d4840 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport/networktype.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/internal/transport/networktype.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/internal/transport/networktype -version: v1.64.0 +version: v1.65.0 type: go summary: Package networktype declares the network type to be used in the default dialer. -homepage: https://pkg.go.dev/google.golang.org/grpc/internal/transport/networktype +homepage: https://godoc.org/google.golang.org/grpc/internal/transport/networktype license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/keepalive.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/keepalive.dep.yml index c15171e..3faedd3 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/keepalive.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/keepalive.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/keepalive -version: v1.64.0 +version: v1.65.0 type: go summary: Package keepalive defines configurable parameters for point-to-point healthcheck. -homepage: https://pkg.go.dev/google.golang.org/grpc/keepalive +homepage: https://godoc.org/google.golang.org/grpc/keepalive license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/metadata.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/metadata.dep.yml index 8d91643..c3665e2 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/metadata.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/metadata.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/metadata -version: v1.64.0 +version: v1.65.0 type: go summary: Package metadata define the structure of the metadata supported by gRPC library. -homepage: https://pkg.go.dev/google.golang.org/grpc/metadata +homepage: https://godoc.org/google.golang.org/grpc/metadata license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/peer.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/peer.dep.yml index bedaa82..135ec05 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/peer.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/peer.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/peer -version: v1.64.0 +version: v1.65.0 type: go summary: Package peer defines various peer information associated with RPCs and corresponding utils. -homepage: https://pkg.go.dev/google.golang.org/grpc/peer +homepage: https://godoc.org/google.golang.org/grpc/peer license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver.dep.yml index 45b1438..59672d8 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/resolver -version: v1.64.0 +version: v1.65.0 type: go summary: Package resolver defines APIs for name resolution in gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/resolver +homepage: https://godoc.org/google.golang.org/grpc/resolver license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver/dns.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver/dns.dep.yml index 50b963d..749f7e7 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver/dns.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/resolver/dns.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/resolver/dns -version: v1.64.0 +version: v1.65.0 type: go summary: Package dns implements a dns resolver to be installed as the default resolver in grpc. -homepage: https://pkg.go.dev/google.golang.org/grpc/resolver/dns +homepage: https://godoc.org/google.golang.org/grpc/resolver/dns license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/serviceconfig.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/serviceconfig.dep.yml index 3bb21af..88181e1 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/serviceconfig.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/serviceconfig.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/serviceconfig -version: v1.64.0 +version: v1.65.0 type: go summary: Package serviceconfig defines types and methods for operating on gRPC service configs. -homepage: https://pkg.go.dev/google.golang.org/grpc/serviceconfig +homepage: https://godoc.org/google.golang.org/grpc/serviceconfig license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/stats.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/stats.dep.yml index 7248d8e..c47df19 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/stats.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/stats.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/stats -version: v1.64.0 +version: v1.65.0 type: go summary: Package stats is for collecting and reporting various network and RPC stats. -homepage: https://pkg.go.dev/google.golang.org/grpc/stats +homepage: https://godoc.org/google.golang.org/grpc/stats license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/status.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/status.dep.yml index 059f7d0..a9d32e2 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/status.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/status.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/grpc/status -version: v1.64.0 +version: v1.65.0 type: go summary: Package status implements errors returned by gRPC. -homepage: https://pkg.go.dev/google.golang.org/grpc/status +homepage: https://godoc.org/google.golang.org/grpc/status license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/grpc/tap.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/grpc/tap.dep.yml index 0aa6d66..89bd8c9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/grpc/tap.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/grpc/tap.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/grpc/tap -version: v1.64.0 +version: v1.65.0 type: go summary: Package tap defines the function handles which are executed on the transport layer of gRPC-Go and related information. -homepage: https://pkg.go.dev/google.golang.org/grpc/tap +homepage: https://godoc.org/google.golang.org/grpc/tap license: apache-2.0 licenses: -- sources: grpc@v1.64.0/LICENSE +- sources: grpc@v1.65.0/LICENSE text: |2 Apache License diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protojson.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protojson.dep.yml index 3ac7d22..85ff056 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protojson.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protojson.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/encoding/protojson -version: v1.34.1 +version: v1.34.2 type: go summary: Package protojson marshals and unmarshals protocol buffer messages as JSON format. -homepage: https://pkg.go.dev/google.golang.org/protobuf/encoding/protojson -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/encoding/protojson +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/prototext.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/prototext.dep.yml index e15cfd9..9971fe0 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/prototext.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/prototext.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/encoding/prototext -version: v1.34.1 +version: v1.34.2 type: go summary: Package prototext marshals and unmarshals protocol buffer messages as the textproto format. -homepage: https://pkg.go.dev/google.golang.org/protobuf/encoding/prototext -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/encoding/prototext +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protowire.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protowire.dep.yml index d935d1d..3a30289 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protowire.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/encoding/protowire.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/encoding/protowire -version: v1.34.1 +version: v1.34.2 type: go summary: Package protowire parses and formats the raw wire encoding. -homepage: https://pkg.go.dev/google.golang.org/protobuf/encoding/protowire -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/encoding/protowire +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descfmt.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descfmt.dep.yml index dbeab8d..f6ce4b4 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descfmt.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descfmt.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/descfmt -version: v1.34.1 +version: v1.34.2 type: go summary: Package descfmt provides functionality to format descriptors. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/descfmt -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/descfmt +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descopts.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descopts.dep.yml index bfa2504..3793ba2 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descopts.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/descopts.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/descopts -version: v1.34.1 +version: v1.34.2 type: go summary: Package descopts contains the nil pointers to concrete descriptor options. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/descopts -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/descopts +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/detrand.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/detrand.dep.yml index 1b4a97a..203ad04 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/detrand.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/detrand.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/detrand -version: v1.34.1 +version: v1.34.2 type: go summary: Package detrand provides deterministically random functionality. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/detrand -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/detrand +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/editiondefaults.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/editiondefaults.dep.yml index 65cfe03..006e377 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/editiondefaults.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/editiondefaults.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/internal/editiondefaults -version: v1.34.1 +version: v1.34.2 type: go summary: Package editiondefaults contains the binary representation of the editions defaults. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/editiondefaults -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/editiondefaults +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/defval.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/defval.dep.yml index bcde818..d746b43 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/defval.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/defval.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/encoding/defval -version: v1.34.1 +version: v1.34.2 type: go summary: Package defval marshals and unmarshals textual forms of default values. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/encoding/defval -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/encoding/defval +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/json.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/json.dep.yml index ad9ae74..cc86689 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/json.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/json.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/encoding/json -version: v1.34.1 +version: v1.34.2 type: go -summary: -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/encoding/json -license: bsd-3-clause +summary: +homepage: https://godoc.org/google.golang.org/protobuf/internal/encoding/json +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/messageset.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/messageset.dep.yml index 8cf22dd..adfc38f 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/messageset.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/messageset.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/encoding/messageset -version: v1.34.1 +version: v1.34.2 type: go summary: Package messageset encodes and decodes the obsolete MessageSet wire format. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/encoding/messageset -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/encoding/messageset +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/tag.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/tag.dep.yml index 9026707..a07df2a 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/tag.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/tag.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/internal/encoding/tag -version: v1.34.1 +version: v1.34.2 type: go summary: Package tag marshals and unmarshals the legacy struct tags as generated by historical versions of protoc-gen-go. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/encoding/tag -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/encoding/tag +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/text.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/text.dep.yml index a9708de..3d6c0c9 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/text.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/encoding/text.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/encoding/text -version: v1.34.1 +version: v1.34.2 type: go summary: Package text implements the text format for protocol buffers. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/encoding/text -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/encoding/text +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/errors.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/errors.dep.yml index ee63cc3..ac18f0d 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/errors.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/errors.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/errors -version: v1.34.1 +version: v1.34.2 type: go summary: Package errors implements functions to manipulate errors. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/errors -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/errors +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filedesc.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filedesc.dep.yml index 1bc0bc1..cfcdb7f 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filedesc.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filedesc.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/filedesc -version: v1.34.1 +version: v1.34.2 type: go summary: Package filedesc provides functionality for constructing descriptors. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/filedesc -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/filedesc +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filetype.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filetype.dep.yml index c839cb6..ee05235 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filetype.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/filetype.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/internal/filetype -version: v1.34.1 +version: v1.34.2 type: go summary: Package filetype provides functionality for wrapping descriptors with Go type information. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/filetype -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/filetype +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/flags.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/flags.dep.yml index 4ad5ad8..91e6888 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/flags.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/flags.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/flags -version: v1.34.1 +version: v1.34.2 type: go summary: Package flags provides a set of flags controlled by build tags. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/flags -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/flags +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/genid.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/genid.dep.yml index 7466922..431b52d 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/genid.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/genid.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/internal/genid -version: v1.34.1 +version: v1.34.2 type: go summary: Package genid contains constants for declarations in descriptor.proto and the well-known types. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/genid -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/genid +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/impl.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/impl.dep.yml index 5848323..3a25b1b 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/impl.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/impl.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/impl -version: v1.34.1 +version: v1.34.2 type: go -summary: -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/impl -license: bsd-3-clause +summary: +homepage: https://godoc.org/google.golang.org/protobuf/internal/impl +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/order.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/order.dep.yml index 43e239a..1ab0944 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/order.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/order.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/order -version: v1.34.1 +version: v1.34.2 type: go summary: Package order provides ordered access to messages and maps. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/order -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/order +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/pragma.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/pragma.dep.yml index b8f4d4e..501bd31 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/pragma.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/pragma.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/internal/pragma -version: v1.34.1 +version: v1.34.2 type: go summary: Package pragma provides types that can be embedded into a struct to statically enforce or prevent certain language properties. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/pragma -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/pragma +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/set.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/set.dep.yml index 9f59966..9cf556b 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/set.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/set.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/set -version: v1.34.1 +version: v1.34.2 type: go summary: Package set provides simple set data structures for uint64s. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/set -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/set +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/strs.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/strs.dep.yml index a2137bf..076807b 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/strs.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/strs.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/strs -version: v1.34.1 +version: v1.34.2 type: go summary: Package strs provides string manipulation functionality specific to protobuf. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/strs -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/strs +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/version.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/version.dep.yml index 29866ee..392a9fd 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/version.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/internal/version.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/internal/version -version: v1.34.1 +version: v1.34.2 type: go summary: Package version records versioning information about this module. -homepage: https://pkg.go.dev/google.golang.org/protobuf/internal/version -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/internal/version +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/proto.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/proto.dep.yml index bcbae24..3390217 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/proto.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/proto.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/proto -version: v1.34.1 +version: v1.34.2 type: go summary: Package proto provides functions operating on protocol buffer messages. -homepage: https://pkg.go.dev/google.golang.org/protobuf/proto -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/proto +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/protoadapt.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/protoadapt.dep.yml index 86b283d..17bd1ef 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/protoadapt.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/protoadapt.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/protoadapt -version: v1.34.1 +version: v1.34.2 type: go summary: Package protoadapt bridges the original and new proto APIs. -homepage: https://pkg.go.dev/google.golang.org/protobuf/protoadapt -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/protoadapt +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoreflect.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoreflect.dep.yml index d382944..5e9e678 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoreflect.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoreflect.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/reflect/protoreflect -version: v1.34.1 +version: v1.34.2 type: go summary: Package protoreflect provides interfaces to dynamically manipulate messages. -homepage: https://pkg.go.dev/google.golang.org/protobuf/reflect/protoreflect -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/reflect/protoreflect +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoregistry.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoregistry.dep.yml index 7374741..4879b9b 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoregistry.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/reflect/protoregistry.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/reflect/protoregistry -version: v1.34.1 +version: v1.34.2 type: go summary: Package protoregistry provides data structures to register and lookup protobuf descriptor types. -homepage: https://pkg.go.dev/google.golang.org/protobuf/reflect/protoregistry -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/reflect/protoregistry +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoiface.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoiface.dep.yml index 559ff53..c011187 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoiface.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoiface.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/runtime/protoiface -version: v1.34.1 +version: v1.34.2 type: go summary: Package protoiface contains types referenced or implemented by messages. -homepage: https://pkg.go.dev/google.golang.org/protobuf/runtime/protoiface -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/runtime/protoiface +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoimpl.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoimpl.dep.yml index 7687cce..97eab28 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoimpl.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/runtime/protoimpl.dep.yml @@ -1,13 +1,13 @@ --- name: google.golang.org/protobuf/runtime/protoimpl -version: v1.34.1 +version: v1.34.2 type: go summary: Package protoimpl contains the default implementation for messages generated by protoc-gen-go. -homepage: https://pkg.go.dev/google.golang.org/protobuf/runtime/protoimpl -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/runtime/protoimpl +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -36,7 +36,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/anypb.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/anypb.dep.yml index c787fff..6bfa3b7 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/anypb.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/anypb.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/types/known/anypb -version: v1.34.1 +version: v1.34.2 type: go summary: Package anypb contains generated types for google/protobuf/any.proto. -homepage: https://pkg.go.dev/google.golang.org/protobuf/types/known/anypb -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/types/known/anypb +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/durationpb.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/durationpb.dep.yml index 461ad3f..1d6fa97 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/durationpb.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/durationpb.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/types/known/durationpb -version: v1.34.1 +version: v1.34.2 type: go summary: Package durationpb contains generated types for google/protobuf/duration.proto. -homepage: https://pkg.go.dev/google.golang.org/protobuf/types/known/durationpb -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/types/known/durationpb +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/timestamppb.dep.yml b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/timestamppb.dep.yml index 05124ff..749593a 100644 --- a/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/timestamppb.dep.yml +++ b/.licenses/arduino-language-server/go/google.golang.org/protobuf/types/known/timestamppb.dep.yml @@ -1,12 +1,12 @@ --- name: google.golang.org/protobuf/types/known/timestamppb -version: v1.34.1 +version: v1.34.2 type: go summary: Package timestamppb contains generated types for google/protobuf/timestamp.proto. -homepage: https://pkg.go.dev/google.golang.org/protobuf/types/known/timestamppb -license: bsd-3-clause +homepage: https://godoc.org/google.golang.org/protobuf/types/known/timestamppb +license: other licenses: -- sources: protobuf@v1.34.1/LICENSE +- sources: protobuf@v1.34.2/LICENSE text: | Copyright (c) 2018 The Go Authors. All rights reserved. @@ -35,7 +35,7 @@ licenses: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: protobuf@v1.34.1/PATENTS +- sources: protobuf@v1.34.2/PATENTS text: | Additional IP Rights Grant (Patents) diff --git a/.licenses/arduino-language-server/go/gopkg.in/yaml.v3.dep.yml b/.licenses/arduino-language-server/go/gopkg.in/yaml.v3.dep.yml index e77248e..f49dce5 100644 --- a/.licenses/arduino-language-server/go/gopkg.in/yaml.v3.dep.yml +++ b/.licenses/arduino-language-server/go/gopkg.in/yaml.v3.dep.yml @@ -3,7 +3,7 @@ name: gopkg.in/yaml.v3 version: v3.0.1 type: go summary: Package yaml implements YAML support for the Go language. -homepage: https://pkg.go.dev/gopkg.in/yaml.v3 +homepage: https://godoc.org/gopkg.in/yaml.v3 license: other licenses: - sources: LICENSE diff --git a/DistTasks.yml b/DistTasks.yml index 89585e6..1f43ec9 100644 --- a/DistTasks.yml +++ b/DistTasks.yml @@ -19,7 +19,7 @@ version: "3" vars: CONTAINER: "docker.elastic.co/beats-dev/golang-crossbuild" - GO_VERSION: "1.21.5" + GO_VERSION: "1.22.0" tasks: Windows_32bit: @@ -131,11 +131,12 @@ tasks: desc: Builds Linux ARMv6 binaries dir: "{{.DIST_DIR}}" cmds: + # "git config safe.directory" is required until this is fixed https://github.com/elastic/golang-crossbuild/issues/232 - | docker run -v `pwd`/..:/home/build -w /home/build \ -e CGO_ENABLED=1 \ {{.CONTAINER}}:{{.CONTAINER_TAG}} \ - --build-cmd "{{.BUILD_COMMAND}}" \ + --build-cmd "git config --global --add safe.directory /home/build && {{.BUILD_COMMAND}}" \ -p "{{.BUILD_PLATFORM}}" tar cz -C {{.PLATFORM_DIR}} {{.PROJECT_NAME}} -C ../.. LICENSE.txt -f {{.PACKAGE_NAME}} @@ -172,7 +173,7 @@ tasks: # # Until there is a fix released we must use a recent gcc for Linux_ARMv6 build, so for this # build we select the debian10 based container. - CONTAINER_TAG: "{{.GO_VERSION}}-armel-debian10" + CONTAINER_TAG: "{{.GO_VERSION}}-armel-debian11" PACKAGE_PLATFORM: "Linux_ARMv6" PACKAGE_NAME: "{{.PROJECT_NAME}}_{{.VERSION}}_{{.PACKAGE_PLATFORM}}.tar.gz" @@ -201,11 +202,12 @@ tasks: desc: Builds Mac OS X 64 bit binaries dir: "{{.DIST_DIR}}" cmds: + # "git config safe.directory" is required until this is fixed https://github.com/elastic/golang-crossbuild/issues/232 - | docker run -v `pwd`/..:/home/build -w /home/build \ -e CGO_ENABLED=1 \ {{.CONTAINER}}:{{.CONTAINER_TAG}} \ - --build-cmd "{{.BUILD_COMMAND}}" \ + --build-cmd "git config --global --add safe.directory /home/build && {{.BUILD_COMMAND}}" \ -p "{{.BUILD_PLATFORM}}" tar cz -C {{.PLATFORM_DIR}} {{.PROJECT_NAME}} -C ../.. LICENSE.txt -f {{.PACKAGE_NAME}} @@ -235,11 +237,12 @@ tasks: desc: Builds Mac OS X ARM64 binaries dir: "{{.DIST_DIR}}" cmds: + # "git config safe.directory" is required until this is fixed https://github.com/elastic/golang-crossbuild/issues/232 - | docker run -v `pwd`/..:/home/build -w /home/build \ -e CGO_ENABLED=1 \ {{.CONTAINER}}:{{.CONTAINER_TAG}} \ - --build-cmd "{{.BUILD_COMMAND}}" \ + --build-cmd "git config --global --add safe.directory /home/build && {{.BUILD_COMMAND}}" \ -p "{{.BUILD_PLATFORM}}" tar cz -C {{.PLATFORM_DIR}} {{.PROJECT_NAME}} -C ../.. LICENSE.txt -f {{.PACKAGE_NAME}} diff --git a/go.mod b/go.mod index bc66898..928679f 100644 --- a/go.mod +++ b/go.mod @@ -1,34 +1,34 @@ module github.com/arduino/arduino-language-server -go 1.21 +go 1.22.0 -toolchain go1.21.5 +toolchain go1.24.1 require ( - github.com/arduino/arduino-cli v1.0.0 - github.com/arduino/go-paths-helper v1.12.0 + github.com/arduino/arduino-cli v1.0.3 + github.com/arduino/go-paths-helper v1.12.1 github.com/fatih/color v1.17.0 github.com/mattn/go-isatty v0.0.20 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.9.0 go.bug.st/json v1.15.6 - go.bug.st/lsp v0.1.2 - google.golang.org/grpc v1.64.0 + go.bug.st/lsp v0.1.3 + google.golang.org/grpc v1.65.0 ) require ( - github.com/arduino/go-properties-orderedmap v1.8.0 // indirect + github.com/arduino/go-properties-orderedmap v1.8.1 // indirect github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/kr/pretty v0.3.1 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect go.bug.st/relaxed-semver v0.12.0 // indirect - golang.org/x/net v0.23.0 // indirect - golang.org/x/sys v0.20.0 // indirect - golang.org/x/text v0.15.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect - google.golang.org/protobuf v1.34.1 // indirect + golang.org/x/net v0.25.0 // indirect + golang.org/x/sys v0.22.0 // indirect + golang.org/x/text v0.16.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect + google.golang.org/protobuf v1.34.2 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 5d46c11..15b1ecb 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +1,10 @@ -github.com/arduino/arduino-cli v1.0.0 h1:Rh90psXljNwuDiskbAxZzPo2JuLMpB0/DFO+xMEu8GM= -github.com/arduino/arduino-cli v1.0.0/go.mod h1:/KZJmi+DX+y5qKLJIZI1RSlo0+QTWYciFkiWpZmSUvg= +github.com/arduino/arduino-cli v1.0.3 h1:mzLXzobYQNe7oOBMXCYbnAq8eTaDHyEZ2J34AIXpkxs= +github.com/arduino/arduino-cli v1.0.3/go.mod h1:lvfuOgY+4KNsPmRKR+AZC/x8sx6rzUWt4yGZFon7VLA= github.com/arduino/go-paths-helper v1.0.1/go.mod h1:HpxtKph+g238EJHq4geEPv9p+gl3v5YYu35Yb+w31Ck= -github.com/arduino/go-paths-helper v1.6.1/go.mod h1:V82BWgAAp4IbmlybxQdk9Bpkz8M4Qyx+RAFKaG9NuvU= -github.com/arduino/go-paths-helper v1.12.0 h1:xizOQtI9iHdl19qXd1EmWg5i9W//2bOCOYwlNv8F61E= -github.com/arduino/go-paths-helper v1.12.0/go.mod h1:jcpW4wr0u69GlXhTYydsdsqAjLaYK5n7oWHfKqOG6LM= -github.com/arduino/go-properties-orderedmap v1.8.0 h1:wEfa6hHdpezrVOh787OmClsf/Kd8qB+zE3P2Xbrn0CQ= -github.com/arduino/go-properties-orderedmap v1.8.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk= +github.com/arduino/go-paths-helper v1.12.1 h1:WkxiVUxBjKWlLMiMuYy8DcmVrkxdP7aKxQOAq7r2lVM= +github.com/arduino/go-paths-helper v1.12.1/go.mod h1:jcpW4wr0u69GlXhTYydsdsqAjLaYK5n7oWHfKqOG6LM= +github.com/arduino/go-properties-orderedmap v1.8.1 h1:nU5S6cXPwMoxZs4ORw61wPTALNfriIduvNB4cxTmNYM= +github.com/arduino/go-properties-orderedmap v1.8.1/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk= github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0 h1:v7og6LpskewFabmaShKVzWXl5MXbmsxaRP3yo4dJta8= github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0/go.mod h1:1dgblsmK2iBx3L5iNTyRIokeaxbTLUrYiUbHBK6yC3Y= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= @@ -39,32 +38,30 @@ github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= go.bug.st/json v1.15.6 h1:pvSpotu6f5JoCbx1TnKn6asVH7o9Tg2/GKsZSVzBOsc= go.bug.st/json v1.15.6/go.mod h1:bh58F9adz5ePlNqtvbuXuXcf9k6IrDLKH6lJUsHP3TI= -go.bug.st/lsp v0.1.2 h1:/n2kJ5yow53nJ7gICUKxeB2G6H+pcsh4x+MEmzxoqsk= -go.bug.st/lsp v0.1.2/go.mod h1:oYTh1uf5hI1teV5crrWut41Pk8vD/NqIjs4zD+No5FE= +go.bug.st/lsp v0.1.3 h1:gZxjjcHzIUJLRdGbm+2HD/ZieLMVtgZ1TYmdxFMxUV4= +go.bug.st/lsp v0.1.3/go.mod h1:gAUjofIinATc1DRErYVSHgUpMeX3Vvxg8DH3qvb3mvM= go.bug.st/relaxed-semver v0.12.0 h1:se8v3lTdAAFp68+/RS/0Y/nFdnpdzkP5ICY04SPau4E= go.bug.st/relaxed-semver v0.12.0/go.mod h1:Cpcbiig6Omwlq6bS7i3MQWiqS7W7HDd8CAnZFC40Cl0= -golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= -golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= -golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk= -golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= -google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY= -google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg= -google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= -google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= +golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 h1:Zy9XzmMEflZ/MAaA7vNcoebnRAld7FsPW1EeBB7V0m8= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157/go.mod h1:EfXuqaE1J41VCDicxHzUDm+8rk+7ZdXzHV0IhO/I6s0= +google.golang.org/grpc v1.65.0 h1:bs/cUb4lp1G5iImFFd3u5ixQzweKizoZJAwBNLR42lc= +google.golang.org/grpc v1.65.0/go.mod h1:WgYC2ypjlB0EiQi6wdKixMqukr6lBc0Vo+oOgjrM5ZQ= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=