-
-
Notifications
You must be signed in to change notification settings - Fork 424
Comparing changes
Open a pull request
base repository: arduino/arduino-cli
base: v1.0.0-rc.1
head repository: arduino/arduino-cli
compare: master
Commits on May 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 914e11b - Browse repository at this point
Copy the full SHA 914e11bView commit details
Commits on May 22, 2024
-
[skip-changelog] Added more lint checks and fixed some warnings. (#2610)
* Enabled more checks in golangci-lint * Removed unreachable code (impossible condition detected by linter) internal/arduino/sketch/sketch.go:108:14: nilness: impossible condition: non-nil == nil (govet) if mainFile == nil { ^ * Removed function alias for i18n.Tr This allows a deeper lint-check of printf style functions, like: commands/instances.go:344:46: printf: github.com/arduino/arduino-cli/internal/i18n.Tr format %v reads arg #1, but call has 0 args (govet) s := status.Newf(codes.FailedPrecondition, i18n.Tr("Loading index file: %v"), err) * Fixed a lot of i18n.Tr formatting errors This commit fixes invalid calls to i18n.Tr. 1. Missing positional arguments, for example: return fmt.Errorf(i18n.Tr("installing %[1]s tool: %[2]s"), tool, err) in the above case the positional arguments must be part of the Tr call: - return fmt.Errorf(i18n.Tr("installing %[1]s tool: %[2]s"), tool, err) + return fmt.Errorf(i18n.Tr("installing %[1]s tool: %[2]s", tool, err)) 2. This also makes the fmt.Errorf call useless and it could be replaced by the less expensive errors.New: - return fmt.Errorf(i18n.Tr("installing %[1]s tool: %[2]s", tool, err)) + return errors.New(i18n.Tr("installing %[1]s tool: %[2]s", tool, err)) but we have cases of useless calls even when the string is a constant, for example: - err := fmt.Errorf(i18n.Tr("no instance specified")) + err := errors.New(i18n.Tr("no instance specified")) Unfortunately, this imperfection is not detected by the linter. 3. The "%w" directive is not supported directly in i18n.Tr, so we have to wrap it around another fmt.Errorf: - return nil, fmt.Errorf(i18n.Tr("reading library headers: %w"), err) + return nil, fmt.Errorf("%s: %w", i18n.Tr("reading library headers"), err) * Removed useless call to i18n.Tr
Configuration menu - View commit details
-
Copy full SHA for dc13ef6 - Browse repository at this point
Copy the full SHA dc13ef6View commit details
Commits on May 29, 2024
-
[breaking] Allow setting extra paths for build-cache (#2612)
* Small refactoring of compileCore function This change helps to better understand next commits. * Added possibility to set extra build-cache dirs for cores * [breaking] --build-cache-path now saves under 'cores' subdir instead of 'core' * Added integration tests * Updated docs and fixed semantics of GetBuildCacheExtraPaths method * Updated json-schema for configuration * Update rpc/cc/arduino/cli/commands/v1/compile.proto Co-authored-by: Alessio Perugini <alessio@perugini.xyz> * Start integration test from a clean state * Do not force build-cache path creation if not needed * Update internal/cli/configuration/build_cache.go Co-authored-by: Umberto Baldi <34278123+umbynos@users.noreply.github.com> --------- Co-authored-by: Alessio Perugini <alessio@perugini.xyz> Co-authored-by: Umberto Baldi <34278123+umbynos@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 81d517b - Browse repository at this point
Copy the full SHA 81d517bView commit details
Commits on May 30, 2024
-
[breaking] Renamed gRPC field `cc.arduino.cli.commands.v1.PlatformRel…
…ease.type` to `types` (#2620)
Configuration menu - View commit details
-
Copy full SHA for b72f5ca - Browse repository at this point
Copy the full SHA b72f5caView commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b16ae70 - Browse repository at this point
Copy the full SHA b16ae70View commit details -
[skip-changelog] Force the use of the latest prettier in `general:for…
…mat-prettier` task (#2626) * Set the version of prettier to use in task general:format-prettier * Updated docs
Configuration menu - View commit details
-
Copy full SHA for 5c5c176 - Browse repository at this point
Copy the full SHA 5c5c176View commit details
Commits on Jun 12, 2024
-
[skip-changelog] Updated translation files (#2614)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 05c9852 - Browse repository at this point
Copy the full SHA 05c9852View commit details -
[skip-changelog] Batch upgrades from dependabot. (#2635)
* [skip changelog] Bump golang.org/x/term from 0.20.0 to 0.21.0 Bumps [golang.org/x/term](https://github.com/golang/term) from 0.20.0 to 0.21.0. - [Commits](golang/term@v0.20.0...v0.21.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * [skip changelog] Bump golang.org/x/text from 0.15.0 to 0.16.0 Bumps [golang.org/x/text](https://github.com/golang/text) from 0.15.0 to 0.16.0. - [Release notes](https://github.com/golang/text/releases) - [Commits](golang/text@v0.15.0...v0.16.0) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * [skip changelog] Bump github.com/arduino/go-properties-orderedmap Bumps [github.com/arduino/go-properties-orderedmap](https://github.com/arduino/go-properties-orderedmap) from 1.8.0 to 1.8.1. - [Release notes](https://github.com/arduino/go-properties-orderedmap/releases) - [Commits](arduino/go-properties-orderedmap@v1.8.0...v1.8.1) --- updated-dependencies: - dependency-name: github.com/arduino/go-properties-orderedmap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * [skip changelog] Bump github.com/arduino/go-paths-helper Bumps [github.com/arduino/go-paths-helper](https://github.com/arduino/go-paths-helper) from 1.12.0 to 1.12.1. - [Release notes](https://github.com/arduino/go-paths-helper/releases) - [Commits](arduino/go-paths-helper@v1.12.0...v1.12.1) --- updated-dependencies: - dependency-name: github.com/arduino/go-paths-helper dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * [skip changelog] Bump github.com/spf13/viper from 1.18.2 to 1.19.0 Bumps [github.com/spf13/viper](https://github.com/spf13/viper) from 1.18.2 to 1.19.0. - [Release notes](https://github.com/spf13/viper/releases) - [Commits](spf13/viper@v1.18.2...v1.19.0) --- updated-dependencies: - dependency-name: github.com/spf13/viper dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a09150f - Browse repository at this point
Copy the full SHA a09150fView commit details -
[skip changelog] Bump google.golang.org/protobuf from 1.34.1 to 1.34.2 (
#2632) * [skip changelog] Bump google.golang.org/protobuf from 1.34.1 to 1.34.2 Bumps google.golang.org/protobuf from 1.34.1 to 1.34.2. --- updated-dependencies: - dependency-name: google.golang.org/protobuf dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache * Updated protoc generated files and doc * Updated CI task --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 3f0d43f - Browse repository at this point
Copy the full SHA 3f0d43fView commit details
Commits on Jun 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c9c90df - Browse repository at this point
Copy the full SHA c9c90dfView commit details
Commits on Jun 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7219aa8 - Browse repository at this point
Copy the full SHA 7219aa8View commit details -
[skip changelog] Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2642)
* [skip changelog] Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.8.0 to 1.8.1. - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](spf13/cobra@v1.8.0...v1.8.1) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Updated licence cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 55753bd - Browse repository at this point
Copy the full SHA 55753bdView commit details
Commits on Jun 18, 2024
-
fix regression: setting 3rd party URL via ARDUINO_BOARD_MANAGER_ADDIT…
…IONAL_URLS env var (#2645)
Configuration menu - View commit details
-
Copy full SHA for 7d00b5b - Browse repository at this point
Copy the full SHA 7d00b5bView commit details
Commits on Jun 20, 2024
-
[skip-changelog] Updated translation files (#2649)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 590e73b - Browse repository at this point
Copy the full SHA 590e73bView commit details
Commits on Jun 24, 2024
-
regression: allow
monitor
to not require to specify the board if th……e port cannot be identified. (#2647) * Allow default monitor settings if board can't be detected * Improved messages at monitor startup * Moving variable near their usage location * Do not show warnings if the configs are provided by the user * Added a couple of examples in the help
Configuration menu - View commit details
-
Copy full SHA for 850f22a - Browse repository at this point
Copy the full SHA 850f22aView commit details
Commits on Jun 27, 2024
-
Changed license of .protoc definitions to Apache-2.0 (#2653)
* Changed license of .protoc definition to Apache-2.0 * Added also non-generated .go files
Configuration menu - View commit details
-
Copy full SHA for 80c463f - Browse repository at this point
Copy the full SHA 80c463fView commit details
Commits on Jun 28, 2024
-
[skip changelog] Correct format of
upload_port
identification prope……rties in snippet (#2655) The platform developer can associate port properties with a board definition in order to cause Arduino CLI to identify ports having those properties as that board. The list format is supported for these platform properties in order to allow multiple alternative port property sets to be associated. The platform property must have the format `upload_port.n.<property ID>` (where "n" is the array index of the port property set). Although the platform property format is correctly documented in the Arduino Platform Specification, an incorrect format `upload_port.<property ID>.n` was previously used in the boards.txt snippet illustrating the use of the platform properties.
Configuration menu - View commit details
-
Copy full SHA for 7a4f716 - Browse repository at this point
Copy the full SHA 7a4f716View commit details
Commits on Jul 2, 2024
-
[skip-changelog] Updated translation files (#2650)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 33dfa8e - Browse repository at this point
Copy the full SHA 33dfa8eView commit details
Commits on Jul 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for abb2232 - Browse repository at this point
Copy the full SHA abb2232View commit details -
[skip changelog] Bump zipp from 3.8.0 to 3.19.1 (#2660)
Bumps [zipp](https://github.com/jaraco/zipp) from 3.8.0 to 3.19.1. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst) - [Commits](jaraco/zipp@v3.8.0...v3.19.1) --- updated-dependencies: - dependency-name: zipp dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 625aaac - Browse repository at this point
Copy the full SHA 625aaacView commit details
Commits on Jul 12, 2024
-
grpc: fixed BoardListWatch streaming call (#2664)
* grpc: fixed BoardListWatch streaming call * Added integration test * Fixed also existing calls to BoardListWatch
Configuration menu - View commit details
-
Copy full SHA for b4f8849 - Browse repository at this point
Copy the full SHA b4f8849View commit details
Commits on Jul 18, 2024
-
[skip changelog] Bump google.golang.org/grpc from 1.64.0 to 1.65.0 (#…
…2656) * [skip changelog] Bump google.golang.org/grpc from 1.64.0 to 1.65.0 Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.64.0 to 1.65.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.64.0...v1.65.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for cbe162a - Browse repository at this point
Copy the full SHA cbe162aView commit details -
[skip changelog] Bump golang.org/x/term from 0.21.0 to 0.22.0 (#2657)
* [skip changelog] Bump golang.org/x/term from 0.21.0 to 0.22.0 Bumps [golang.org/x/term](https://github.com/golang/term) from 0.21.0 to 0.22.0. - [Commits](golang/term@v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 8246eaa - Browse repository at this point
Copy the full SHA 8246eaaView commit details
Commits on Jul 19, 2024
-
regression: fixed
ARDUINO_USER_AGENT
pollution / resolve compile-sk…Configuration menu - View commit details
-
Copy full SHA for eb28638 - Browse repository at this point
Copy the full SHA eb28638View commit details
Commits on Jul 23, 2024
-
[skip-changelog] Updated translation files (#2659)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8b6ad25 - Browse repository at this point
Copy the full SHA 8b6ad25View commit details
Commits on Jul 26, 2024
-
Improved
{build.*.platform.path}
vars enumeration. (#2652)* Improved build.*.platform.path vars enumeration * Updated docs * Added tests * Added a compatibility note
Configuration menu - View commit details
-
Copy full SHA for b8c927b - Browse repository at this point
Copy the full SHA b8c927bView commit details
Commits on Jul 29, 2024
-
Document breaking change to
config get
command output (#2676)* Correct typo in Upgrading docs * Document breaking change to `config get` command output Previously, the `config dump` CLI command returned the effective configuration, including both the values explicitly set via the configuration file and environment variables as well as the values provided by defaults. It was changed to only return the explicitly set configuration data. The breaking change was not documented at that time.
Configuration menu - View commit details
-
Copy full SHA for 82f60c6 - Browse repository at this point
Copy the full SHA 82f60c6View commit details
Commits on Jul 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c86ca30 - Browse repository at this point
Copy the full SHA c86ca30View commit details
Commits on Jul 31, 2024
-
[skip-changelog] Update artifact-related actions (#2679)
* Updated check-go-dependency workflow In this case we should be fine since there is just one job that uploads the artifacts. * Updated publish-go-tester workflow In this case the uploaded artifacts uses different paths and names, there should be no breaking changes. * Updated publish-go-nightly job In this case the jobs exploited the previous action behaviour when uploading multiple artifacts under the same "name". To upgrade to v4 we need to upload artifacts with unique "name" and merge them when downloading using the "pattern" property. * Updated release-go job This job got the same changes made in the publish-go-nightly job. * Updated sync-label job * Updated test-go job * Updated comments * Missed matrix run in sync-labels workflows. * Missed double-matrix run in test-go workflow
Configuration menu - View commit details
-
Copy full SHA for cbec871 - Browse repository at this point
Copy the full SHA cbec871View commit details -
[skip-changelog] Correctly remove unneded artifacts (#2682)
The previous 'name' value `${{ env.CONFIGURATIONS_ARTIFACT }}` would not match the name of the produced intermediate artifacts. The correct pattern is `${{ env.CONFIGURATIONS_ARTIFACT }}-*`.
Configuration menu - View commit details
-
Copy full SHA for 43598fc - Browse repository at this point
Copy the full SHA 43598fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for faa6359 - Browse repository at this point
Copy the full SHA faa6359View commit details
Commits on Aug 2, 2024
-
Added global
--config-dir
flag (#2677)* Added --config-dir global flag * Renamed function to better reflect his behaviour * Added test
Configuration menu - View commit details
-
Copy full SHA for a353f86 - Browse repository at this point
Copy the full SHA a353f86View commit details
Commits on Aug 8, 2024
-
[skip-changelog] Made the
Debug*
gRPC API implementation in par wit……h the rest (#2672) * Inlined gRPC methods to implement GetDebugConfig and IsDebugSupported * Inlined function * Renamed vars for clarity * Added Debug gRPC adapter function * Moved function and removed useless file * Forward os.interrupt (aka CTRL-C) signal to the gdb process This a challenging problem because we must wait on both an io.Read(...) and a channel-read but, unfortunately, go native select can wait only on channels. To overcome this limitation I had to resort to a conditional variable and write some boilerplate code to make everything synchronized.
Configuration menu - View commit details
-
Copy full SHA for 5f01000 - Browse repository at this point
Copy the full SHA 5f01000View commit details -
[skip changelog] Bump golang.org/x/term from 0.22.0 to 0.23.0 (#2686)
* [skip changelog] Bump golang.org/x/term from 0.22.0 to 0.23.0 Bumps [golang.org/x/term](https://github.com/golang/term) from 0.22.0 to 0.23.0. - [Commits](golang/term@v0.22.0...v0.23.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 0aa75c6 - Browse repository at this point
Copy the full SHA 0aa75c6View commit details -
[skip changelog] Bump golang.org/x/text from 0.16.0 to 0.17.0 (#2687)
* [skip changelog] Bump golang.org/x/text from 0.16.0 to 0.17.0 Bumps [golang.org/x/text](https://github.com/golang/text) from 0.16.0 to 0.17.0. - [Release notes](https://github.com/golang/text/releases) - [Commits](golang/text@v0.16.0...v0.17.0) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 08f429d - Browse repository at this point
Copy the full SHA 08f429dView commit details -
[skip-changelog] Run integration tests on Linux as latest (#2617)
Since the Windows and MacOSX are the slowest to complete this reordering allows to start the long running tests early and reduce the overall completion time.
Configuration menu - View commit details
-
Copy full SHA for e01c114 - Browse repository at this point
Copy the full SHA e01c114View commit details -
[skip-changelog] Upgrade golang version to
1.22
and upgraded some l……ibraries (#2688) * Upgrade supported go version to 1.22 * Upgrade extract library to 4.0.0 * Upgrade go-crypto to v1.1.0-alpha.5-proton
Configuration menu - View commit details
-
Copy full SHA for ce4341f - Browse repository at this point
Copy the full SHA ce4341fView commit details
Commits on Aug 12, 2024
-
[skip-changelog] Updated translation files (#2675)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a0d912d - Browse repository at this point
Copy the full SHA a0d912dView commit details
Commits on Aug 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c5812ee - Browse repository at this point
Copy the full SHA c5812eeView commit details
Commits on Sep 3, 2024
-
[skip changelog] Configure actions/upload-artifact action to upload r…
…equired hidden files (#2699) A breaking change was made in the 3.2.1 release of the "actions/upload-artifact" action, without doing a major version bump as would be done in a responsibly maintained project. The action now defaults to not uploading "hidden" files. This project's "Check Go Dependencies" workflow uses the "Licensed" tool to check for incompatible dependency licenses. The dependencies license metadata cache used by Licensed is stored in a folder named `.licensed`. In order to facilitate updates, the workflow uploads the generated dependencies license metadata cache as a workflow artifact when the current cache is found to be outdated. The `.` at the start of the `.licensed` folder name causes it to now not be uploaded to the workflow artifact. In order to catch such problems, the workflow configures the "actions/upload-artifact" action to fail if no files were uploaded. So in addition to not uploading the artifact, the change in the "actions/upload-artifact" action's behavior also resulted in the workflow runs failing: Error: No files were found with the provided path: .licenses/. No artifacts will be uploaded. The problem is fixed by disabling the "actions/upload-artifact" action's new behavior via the `include-hidden-files` input. After this change, the workflow can once more upload the dependencies license metadata cache to a workflow artifact as needed.
Configuration menu - View commit details
-
Copy full SHA for 0cae891 - Browse repository at this point
Copy the full SHA 0cae891View commit details
Commits on Sep 9, 2024
-
Added possibility to set custom properties on upload/burn-bootloader/…
…debug commands. (#2693) * Fixed dry-run in upload with programmer * Fixed doc comment * Added upload properties to gRPC Upload, UploadWithProgrammer, and BurnBootloader * Removed unused var * Added --upload-properties flag to CLI `upload` and `burn-bootloader` commands. * Added custom debug properties to Debug/IsDebugSupported commands (gRPC and CLI)
Configuration menu - View commit details
-
Copy full SHA for 642ce2e - Browse repository at this point
Copy the full SHA 642ce2eView commit details
Commits on Sep 10, 2024
-
[skip changelog] Bump google.golang.org/grpc from 1.65.0 to 1.66.0 (#…
…2694) * [skip changelog] Bump google.golang.org/grpc from 1.65.0 to 1.66.0 Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.65.0 to 1.66.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.65.0...v1.66.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for c393913 - Browse repository at this point
Copy the full SHA c393913View commit details -
[skip changelog] Bump golang.org/x/text from 0.17.0 to 0.18.0 (#2701)
* [skip changelog] Bump golang.org/x/text from 0.17.0 to 0.18.0 Bumps [golang.org/x/text](https://github.com/golang/text) from 0.17.0 to 0.18.0. - [Release notes](https://github.com/golang/text/releases) - [Commits](golang/text@v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 3bdc77f - Browse repository at this point
Copy the full SHA 3bdc77fView commit details -
[skip changelog] Bump golang.org/x/term from 0.23.0 to 0.24.0 (#2702)
* [skip changelog] Bump golang.org/x/term from 0.23.0 to 0.24.0 Bumps [golang.org/x/term](https://github.com/golang/term) from 0.23.0 to 0.24.0. - [Commits](golang/term@v0.23.0...v0.24.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 9e5deed - Browse repository at this point
Copy the full SHA 9e5deedView commit details
Commits on Sep 11, 2024
-
Add riscv64 linux tools download support (#2700)
* Add riscv64 linux tools download support * fix style * Updated docs --------- Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for a3796a0 - Browse repository at this point
Copy the full SHA a3796a0View commit details -
[skip changelog] Bump github.com/gofrs/uuid/v5 from 5.2.0 to 5.3.0 (#…
…2689) * [skip changelog] Bump github.com/gofrs/uuid/v5 from 5.2.0 to 5.3.0 Bumps [github.com/gofrs/uuid/v5](https://github.com/gofrs/uuid) from 5.2.0 to 5.3.0. - [Release notes](https://github.com/gofrs/uuid/releases) - [Commits](gofrs/uuid@v5.2.0...v5.3.0) --- updated-dependencies: - dependency-name: github.com/gofrs/uuid/v5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * updated license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 23d5036 - Browse repository at this point
Copy the full SHA 23d5036View commit details
Commits on Sep 18, 2024
-
Fixed
build_cache.path
behaviour / The--build-path
dir now produ……ce a full build (#2673) * If a build path is specified ignore all build caches The complete build will be performed in the specified build path. The build artifacts in the build path will be reused for the next build. * Fixed arguments.CheckFlagsConflicts helper Previously it would reject only if ALL the arguments in the given set are used. Now it rejects if AT LEAST TWO arguments of the given set are used. * Added --build-path as alias for --input-dir in upload and debug commands * Created configuration defaults for build_cache.path setting * The build_cache.path setting now affect also the sketches cache * Deprecated --build-cache-path option in compile * Use default user's cache dir instead of tmp for build cache * Add notes in UPGRADING.md * Updated integration test * Updated integration test * Updated integration test * Updated integration test * Updated integration test
Configuration menu - View commit details
-
Copy full SHA for 863c1ec - Browse repository at this point
Copy the full SHA 863c1ecView commit details
Commits on Oct 7, 2024
-
Allow port, protocol and port settings to be specified in profiles. (#…
…2717) * Allow port/protocol keys in sketch profile * Allow port/protocol in profiles * Added port settings in sketch profile * Allow port configuration from sketch profile * Added docs * fix: Moved port-from-profile logic in args.Port.GetPort(...) This allows to implement the selection logic on more commands. * Fixed FQBN selection logic in monitor/arg command * Fixed incorrect tests The previous fixes now let the CLI to produce the correct output.
Configuration menu - View commit details
-
Copy full SHA for 24bd145 - Browse repository at this point
Copy the full SHA 24bd145View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b889a6 - Browse repository at this point
Copy the full SHA 1b889a6View commit details -
[skip changelog] Bump google.golang.org/grpc from 1.66.0 to 1.67.1 (#…
…2714) * [skip changelog] Bump google.golang.org/grpc from 1.66.0 to 1.67.1 Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.66.0 to 1.67.1. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.66.0...v1.67.1) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * update license cache --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Maglie <c.maglie@arduino.cc>
Configuration menu - View commit details
-
Copy full SHA for 4564498 - Browse repository at this point
Copy the full SHA 4564498View commit details
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.