Arduino 歷史版本列表
開放源代碼 Arduino 軟件(IDE)可以輕鬆編寫代碼並將其上傳到開發板。它運行在 Windows,Mac OS X 和 Linux 上。環境是用 Java 編寫的,基於 Processing 和其他開源軟件。這個軟件可以與任何 Arduino 板一起使用。最有趣的功能是:等待新的 arduino-builder這是一個純粹的命令行工具,它負責修改代碼,解決庫依賴和設置編譯單元。它也可以作為一... Arduino 軟體介紹更新時間:2021-08-25
更新細節:
What's new in this version:
Fixed an SM2 Decryption Buffer Overflow:
- In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter.
- A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small.
- A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated.
Fixed various read buffer overruns processing ASN.1 strings:
- ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte.
- Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure.
- However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function.
- Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur.
- The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions.
- If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext).
更新時間:2021-08-08
更新細節:
更新時間:2021-06-24
更新細節:
更新時間:2021-06-13
更新細節:
更新時間:2021-05-15
更新細節:
What's new in this version:
- Fixed regression in library discovery (failing to compile bundled libs, like SD or Ethernet, on some platforms)
更新時間:2021-05-13
更新細節:
What's new in this version:
Ide:
- Fix status bar custom board preferences disappearing
- Boards Manager bugfix: sometimes the "Install" button appeared instead of "Update" after entering a search term
- Libraries/Boards Manager: the Type and Category filters are kept after install/uninstall
- Added 'deprecated' label support in Boards Manager, platforms marked as deprecated are shown at the bottom of the list
- Serial Plotter: line endings dropdown menu now comply with the global preference settings
- Libraries Manager: Maintainer is displayed instead of the Author
- Firmware Updater: Added new firmwares and support for Nano RP2040 Connect
- Boards Manager: cached 3rd party package_index.json are no more deleted if the origin URL is removed from preferences, this allows other tools (like arduino-cli), that may have different URLs configuration, to work properly.
- The board configuration submenus are now scrollable
- New shortcut: Shift+click on Serial Monitor button will open the Serial Plotter
- Fixed NPE if no board is selected
Arduino-builder:
- Improved lib detection: check for matching name in library.properties
- Fix compile if invalid build.options.json is found
- Improved error messages for .cpp/.h file in the sketch
更新時間:2021-05-13
更新細節:
What's new in this version:
New:
- You can now import WSDL specification into Postman
- You can now preview PDF responses within Postman
- New app icon on macOS
Improvements:
- Saving an example from the response now opens the example in a new tab
- You can now view the complete URL in the Runner by hovering on it
Fixed:
- Fixed an issue where switching back to previous workspace marked the API tab as conflicted
- Fixed an issue where drag and drop of folders inside Runner did not reflect in the run order
- Fixed an issue where files containing special characters did not import from a GitHub repository
- Fixed an issue where large request or response headers raised an error
- Fixed an issue where the request tab crashed intermittently in the scratch pad
更新時間:2021-05-06
更新細節:
更新時間:2021-05-05
更新細節:
What's new in this version:
- This version of Postman includes internal performance and stability improvements and fixes
更新時間:2021-04-26
更新細節:
What's new in this version:
New:
- You can now organize your team members into groups to efficiently manage access control and onboard new members seamlessly
- Postman's in-built proxy now supports capturing HTTPS traffic
- While generating access tokens via OAuth 2.0, you can now specify resource and audience as parameters
Improvements:
- Request body can now be updated via scripts
- Requests and response headers of redirected requests are shown in the Postman Console now - GitHub #8492
- You can now disable TLS v1.3 during request handshake
Fixed:
- Fixed a bug where charset from older responses are persisted when new responses have no charset defined
- Fixed an issue that caused Postman to grab focus twice during launch