-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: FSJO/ArduinoHttpClient
base: master
head repository: arduino-libraries/ArduinoHttpClient
compare: master
Commits on Jun 28, 2020
-
ContentLength can go over 2 byte int
Converted int to long to allow for more then 65535 bytes in length
Configuration menu - View commit details
-
Copy full SHA for 208dfec - Browse repository at this point
Copy the full SHA 208dfecView commit details -
ContentLength can go over 2 byte int
Converted int to long to allow for more then 65535 bytes in length
Configuration menu - View commit details
-
Copy full SHA for 0fac9f0 - Browse repository at this point
Copy the full SHA 0fac9f0View commit details
Commits on Feb 26, 2021
-
Fix -Wlogical-not-parentheses warning (arduino-libraries#79)
* Fix -Wlogical-not-parentheses warning The warning occurs because `operator!()` has higher precedence than `operator>()`. Alternatively, we can use: ``` iClient->connect(iServerAddress, iServerPort) <= 0 ```
Configuration menu - View commit details
-
Copy full SHA for 9a5afdf - Browse repository at this point
Copy the full SHA 9a5afdfView commit details
Commits on Apr 12, 2021
-
Configure Dependabot to check for outdated actions used in workflows
Dependabot will periodically check the versions of all actions used in the repository's workflows. If any are found to be outdated, it will submit a pull request to update them. NOTE: Dependabot's PRs will sometimes try to pin to the patch version of the action (e.g., updating `uses: foo/bar@v1` to `uses: foo/bar@v2.3.4`). When the action author has provided a major version ref, use that instead (e.g., `uses: foo/bar@v2`). Dependabot will automatically close its PR once the workflow has been updated. More information: https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
Configuration menu - View commit details
-
Copy full SHA for 05b7dfe - Browse repository at this point
Copy the full SHA 05b7dfeView commit details -
Add CI workflow to check for commonly misspelled words
On every push, pull request, and periodically, use the codespell-project/actions-codespell action to check for commonly misspelled words. In the event of a false positive, the problematic word should be added, in all lowercase, to the ignore-words-list field of ./.codespellrc. Regardless of the case of the word in the false positive, it must be in all lowercase in the ignore list. The ignore list is comma-separated with no spaces.
Configuration menu - View commit details
-
Copy full SHA for 42d8a20 - Browse repository at this point
Copy the full SHA 42d8a20View commit details -
Configuration menu - View commit details
-
Copy full SHA for e9897fc - Browse repository at this point
Copy the full SHA e9897fcView commit details -
Add CI workflow to do Arduino project-specific linting
On every push, pull request, and periodically, run Arduino Lint to check for common problems not related to the project code.
Configuration menu - View commit details
-
Copy full SHA for 0d23503 - Browse repository at this point
Copy the full SHA 0d23503View commit details -
Add "smoke test" examples compilation CI workflow
On every push or pull request that affects library source or example files, and periodically, compile all example sketches for the specified boards.
Configuration menu - View commit details
-
Copy full SHA for d07192a - Browse repository at this point
Copy the full SHA d07192aView commit details -
Report changes in memory usage that would result from merging a PR
On creation or commit to a pull request, a report of the resulting change in memory usage of the examples will be commented to the PR thread.
Configuration menu - View commit details
-
Copy full SHA for b9db038 - Browse repository at this point
Copy the full SHA b9db038View commit details
Commits on Apr 14, 2021
-
Merge pull request arduino-libraries#102 from arduino-libraries/ci
Use GitHub Actions for continuous integration
Configuration menu - View commit details
-
Copy full SHA for 1751e10 - Browse repository at this point
Copy the full SHA 1751e10View commit details
Commits on Jan 10, 2022
-
Add GitHub Actions workflow to synchronize with shared repository lab…
…els (arduino-libraries#120) On every push that changes relevant files, and periodically, configure the repository's issue and pull request labels according to the universal, shared, and local label configuration files.
Configuration menu - View commit details
-
Copy full SHA for c014e0c - Browse repository at this point
Copy the full SHA c014e0cView commit details
Commits on Jan 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 09c5309 - Browse repository at this point
Copy the full SHA 09c5309View commit details
Commits on Mar 1, 2022
-
Reduce timeout from 1000ms to 100ms
Using this with the Arduino `WiFiClient` makes simple requests really slow. Reduce the timeout in order to make it faster.
Configuration menu - View commit details
-
Copy full SHA for 527967d - Browse repository at this point
Copy the full SHA 527967dView commit details
Commits on Mar 2, 2022
-
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 2b74b7a - Browse repository at this point
Copy the full SHA 2b74b7aView commit details -
Merge pull request arduino-libraries#126 from arduino-libraries/depen…
…dabot/github_actions/actions/checkout-3 Bump actions/checkout from 2 to 3
Configuration menu - View commit details
-
Copy full SHA for 9b83da4 - Browse repository at this point
Copy the full SHA 9b83da4View commit details
Commits on Apr 8, 2022
-
Bump actions/upload-artifact from 2 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 533711d - Browse repository at this point
Copy the full SHA 533711dView commit details -
Bump actions/download-artifact from 2 to 3
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v2...v3) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 033387f - Browse repository at this point
Copy the full SHA 033387fView commit details
Commits on Apr 11, 2022
-
Merge pull request arduino-libraries#132 from arduino-libraries/depen…
…dabot/github_actions/actions/download-artifact-3 Bump actions/download-artifact from 2 to 3
Configuration menu - View commit details
-
Copy full SHA for 84e1d2f - Browse repository at this point
Copy the full SHA 84e1d2fView commit details -
Merge pull request arduino-libraries#131 from arduino-libraries/depen…
…dabot/github_actions/actions/upload-artifact-3 Bump actions/upload-artifact from 2 to 3
Configuration menu - View commit details
-
Copy full SHA for 31b4947 - Browse repository at this point
Copy the full SHA 31b4947View commit details
Commits on Apr 25, 2022
-
Remove superfluous and broken manifest file (arduino-libraries#133)
`library.json` is PlatformIO's native library manifest file but Arduino's `library.properties` is also supported by PlatformIO: https://docs.platformio.org/en/latest/librarymanager/creating.html#creating-library The `library.json` file was missing the required `version` field: https://docs.platformio.org/en/latest/librarymanager/config.html#version Although it could be added, experience with other libraries indicates that it is not really realistic to expect two manifest files to be properly maintained. Since the Arduino development software and the Arduino Library Manager requires `library.properties`, if we are to have only one the choice of keeping `library.properties` and removing `library.json` is clear.
Configuration menu - View commit details
-
Copy full SHA for b7fe7f7 - Browse repository at this point
Copy the full SHA b7fe7f7View commit details
Commits on Oct 12, 2022
-
Bump geekyeggo/delete-artifact from 1 to 2
Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 1 to 2. - [Release notes](https://github.com/geekyeggo/delete-artifact/releases) - [Commits](GeekyEggo/delete-artifact@v1...v2) --- updated-dependencies: - dependency-name: geekyeggo/delete-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 1f50562 - Browse repository at this point
Copy the full SHA 1f50562View commit details -
Merge pull request arduino-libraries#142 from arduino-libraries/depen…
…dabot/github_actions/geekyeggo/delete-artifact-2 Bump geekyeggo/delete-artifact from 1 to 2
Configuration menu - View commit details
-
Copy full SHA for ded5cdd - Browse repository at this point
Copy the full SHA ded5cddView commit details
Commits on Oct 24, 2022
-
Bump carlosperate/download-file-action from 1 to 2
Bumps [carlosperate/download-file-action](https://github.com/carlosperate/download-file-action) from 1 to 2. - [Release notes](https://github.com/carlosperate/download-file-action/releases) - [Commits](carlosperate/download-file-action@v1...v2) --- updated-dependencies: - dependency-name: carlosperate/download-file-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 8fc4883 - Browse repository at this point
Copy the full SHA 8fc4883View commit details
Commits on Oct 25, 2022
-
Merge pull request arduino-libraries#144 from arduino-libraries/depen…
…dabot/github_actions/carlosperate/download-file-action-2 Bump carlosperate/download-file-action from 1 to 2
Configuration menu - View commit details
-
Copy full SHA for 6dc4867 - Browse repository at this point
Copy the full SHA 6dc4867View commit details
Commits on Apr 9, 2023
-
Make sure to use HttpClient when upgrading the connection for websockets
Using WebSocketClient::begin I got into problems where `status = responseStatusCode();` would be trying to read the HTTP header, but because both HttpClient and WebSocketClient have a read function, the read from WebSocketClient was used, which returns a bunch of gibberish. This caused the WebSocket to think that the connection was not successfully upgraded.
Configuration menu - View commit details
-
Copy full SHA for 8566fb4 - Browse repository at this point
Copy the full SHA 8566fb4View commit details
Commits on Jul 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0a1a8ab - Browse repository at this point
Copy the full SHA 0a1a8abView commit details
Commits on Aug 5, 2023
-
Add ability to set response wait time
Leonardo José authoredAug 5, 2023 Configuration menu - View commit details
-
Copy full SHA for b93e3d2 - Browse repository at this point
Copy the full SHA b93e3d2View commit details -
Add getter and setter functions
Leonardo José authoredAug 5, 2023 Configuration menu - View commit details
-
Copy full SHA for 9b3987c - Browse repository at this point
Copy the full SHA 9b3987cView commit details -
Replace delay constant by variable
Leonardo José authoredAug 5, 2023 Configuration menu - View commit details
-
Copy full SHA for c490dde - Browse repository at this point
Copy the full SHA c490ddeView commit details
Commits on Sep 4, 2023
-
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 42e8f10 - Browse repository at this point
Copy the full SHA 42e8f10View commit details -
Merge pull request arduino-libraries#159 from arduino-libraries/depen…
…dabot/github_actions/actions/checkout-4 Bump actions/checkout from 3 to 4
Configuration menu - View commit details
-
Copy full SHA for 09ecf29 - Browse repository at this point
Copy the full SHA 09ecf29View commit details
Commits on Nov 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0a3e61a - Browse repository at this point
Copy the full SHA 0a3e61aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ab3d000 - Browse repository at this point
Copy the full SHA ab3d000View commit details
Commits on Feb 16, 2024
-
Bump actions/upload-artifact from 3 to 4 (arduino-libraries#164)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... 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 a721a5b - Browse repository at this point
Copy the full SHA a721a5bView commit details -
Bump actions/download-artifact from 3 to 4 (arduino-libraries#165)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... 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 13d12a4 - Browse repository at this point
Copy the full SHA 13d12a4View commit details -
Bump geekyeggo/delete-artifact from 2 to 4 (arduino-libraries#167)
Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 4. - [Release notes](https://github.com/geekyeggo/delete-artifact/releases) - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md) - [Commits](GeekyEggo/delete-artifact@v2...v4) --- updated-dependencies: - dependency-name: geekyeggo/delete-artifact dependency-type: direct:production update-type: version-update:semver-major ... 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 a6a4127 - Browse repository at this point
Copy the full SHA a6a4127View commit details -
Fix regression re report-size-deltas after updating actions/upload-ar…
…tifact. (arduino-libraries#171) For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event .
Configuration menu - View commit details
-
Copy full SHA for 9625575 - Browse repository at this point
Copy the full SHA 9625575View commit details
Commits on Feb 21, 2024
-
Fix regression: report size delta size on PR. (arduino-libraries#172)
The necessary steps have in fact been documented here: https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#workflow-triggered-by-pull_request-event but I have overlooked them when I fixed the upload issue. With this PR the size deltas are - once again - reported within the PR.
Configuration menu - View commit details
-
Copy full SHA for 7a6b39a - Browse repository at this point
Copy the full SHA 7a6b39aView commit details -
Configuration menu - View commit details
-
Copy full SHA for cf741b0 - Browse repository at this point
Copy the full SHA cf741b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6159db9 - Browse repository at this point
Copy the full SHA 6159db9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5db3b5 - Browse repository at this point
Copy the full SHA e5db3b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1a79a5 - Browse repository at this point
Copy the full SHA a1a79a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f01bfe - Browse repository at this point
Copy the full SHA 9f01bfeView commit details -
Correct workflow artifact name pattern in size deltas report workflow
The "sketches-reports-source" input of the "arduino/report-size-deltas" GitHub Actions action defines the regular expression that matches the names of the sketches report workflow artifacts produced by the "Compile Examples" workflow. The key string in the names of these artifacts was set to "sketches-report" when the "Compile Examples" workflow was adjusted for compatibility with the breaking changes introduced by updating to version 4.x of the workflow's "actions/upload-artifact" GitHub Actions action dependency. The pattern set in the size deltas report workflow was "sketches-reports". The "s" at the end of that pattern caused it to no longer match against the key string in the artifact names after that adjustment of the "Compile Examples" workflow, resulting in size deltas reports no longer being generated by the workflow. Although a minimal fix would be to simply remove the "s" from the end of the pattern, the decision was made to use a more strict regular expression. This will make it easier for maintainers and contributors to understand that this value is a regular expression and the exact nature of how that regular expression functions (which is less clear when relying on the "arduino/report-size-deltas" action's partial pattern matching behavior).
Configuration menu - View commit details
-
Copy full SHA for 8c7bff7 - Browse repository at this point
Copy the full SHA 8c7bff7View commit details -
Merge pull request arduino-libraries#174 from arduino-libraries/fix-c…
…ompile-examples Fix size deltas report infrastructure configuration
Configuration menu - View commit details
-
Copy full SHA for 680f815 - Browse repository at this point
Copy the full SHA 680f815View commit details
Commits on Mar 13, 2024
-
Update examples/ParseURL/ParseURL.ino
Co-authored-by: per1234 <accounts@perglass.com>
Configuration menu - View commit details
-
Copy full SHA for 8d44059 - Browse repository at this point
Copy the full SHA 8d44059View commit details -
Configuration menu - View commit details
-
Copy full SHA for dbe65d6 - Browse repository at this point
Copy the full SHA dbe65d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 734f5b5 - Browse repository at this point
Copy the full SHA 734f5b5View commit details
Commits on Mar 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 482e088 - Browse repository at this point
Copy the full SHA 482e088View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ea6ace - Browse repository at this point
Copy the full SHA 9ea6aceView commit details
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.