-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CON-285 merge docs and setup.py info back to master. #160
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* CON-92: Added the ability to obtain current version of Connector (#80) * CON-92: Added the ability to obtain current version of Connector 3 static methods have been added to Connector - version - Provides the current version of Connector - native_library_version - Provides the current version of native libraries being used by Connector - native_library_build_string - Provides the build ID of the native libraries being used by Connector * CON-92: Made the _from_native method static * CON-92: Fixed docs * CON-92: Changed output Now a single function that provides a string conatining the API version + core versions. For example: RTI Connector for Python, version 1.1.0 NDDSCORE_BUILD_6.1.0_20210531T122009Z_RTI_UNKNOWN NDDSC_BUILD_6.1.0_20210531T122009Z_RTI_UNKNOWN RTICONNECTOR_BUILD_6.1.0_20210531T122009Z_RTI_UNKNOWN * CON-92: Renamed version to get_version * CON-92: Remove ConnectorVersion from docs Co-authored-by: Sam Raeburn <sam@rti.com> (cherry picked from commit 00164ce) * CON-200: Fix double free segfault (#79) * CON-200: Fix double free segfault * Update test/python/test_rticonnextdds_connector.py Co-authored-by: Alex Campos <alejandro@rti.com> Co-authored-by: Sam Raeburn <sam@rti.com> Co-authored-by: Alex Campos <alejandro@rti.com> (cherry picked from commit 9ffde89)
* CON-191: Added tests for 64-bit int conversions * CON-191: Added docs * CON-191: writer's edits to doc changes (py) * CON-191: Updated tests and docs to reflect new behaviour I noticed in the native libraries that we weren't being consistent with the limits. Sometimes we were not checking for v < -LUA_MAX_INT, and sometimes we were not being consistent with the use of > vs >=. I have rectified this, the supported behaviour is as follows: When setting via set_number, we allow |v| < 2^53. When getting via get_number, we allow |v| <= 2^53. The reason for the discrepancy between the set and get, is that when we have a value in set_number, it has already been cast to a double, so although 2^53 is perfectly representable, we do not know if the original value was larger (e.g., 2^53 + 1 would appear as 2^53). Also extended tests to ensure that all of the various supported ways of setting / getting 64-bit values work as expected: - allow setting large values via __setitem__ (string or number), set_string, set_dictionary - allow getting large values via __getitem__ (returned as float or int depending on size), get_string, get_dictionary * CON-191: Completed tests + docs Co-authored-by: Sam Raeburn <sam@rti.com> Co-authored-by: rkorte <rkorte@rti.com> (cherry picked from commit 62a573c)
…-doc-macOS11-To120 PLATFORMS-2289. Adding macOS 11 to Connector PY release notes in release 1.2.0.
- Move warning from 64-bit number section to release notes - Add link to get_version API
…rypick CORE-11993: canonical url added for python connector
…ck-120 CON-252: updating links from current to 6.1.1, py
…ck-120 Feature/con 251 py cherrypick 120
…rrypick-120 CON-251: added missing release note and fixed canonical formatting error
…-to-120 Feature/con 234 cherry pick to 120
…Updated Supported Platforms to match JS release notes.
…o-120 Feature/con 251 platforms to 120
…1.1 (20211203) (#121) Co-authored-by: Bob Garrow <bgarrow@rti.com>
…DS 6.1.1 (20211203) (#122)
Doc/con 257 release120
…1.1 (20220309, bkprt) (#129)
* CON-276: Updated documentation for supported Windows (#147) * CON-276: Updated documentation for supported Windows * CON-276: Fix notes * CON-276: Updated PAM (cherry picked from commit 0cbb5e1) * Merge pull request #140 from rticommunity/doc/PY-44-readme PY-44: adding deprecation notice to connector-py README files only (cherry picked from commit ddafab4) (cherry picked from commit 1be36f4) * CON-276 CON-272: Cherry-picked changes to docs * CON-276: Fix release notes Co-authored-by: rkorte <36715349+rkorte@users.noreply.github.com>
…1.2.0 (#150) * #fix CON-280-support, change version number to 1.2.2 * #fix CON-280-support, add rc suffix to version string ... Co-authored-by: Bob Garrow <bgarrow@rti.com>
Co-authored-by: Bob Garrow <bgarrow@rti.com>
Doc/hmaint 747 py updating Python Connector for 6.1.2/1.2.2
Co-authored-by: Bob Garrow <bgarrow@rti.com>
Co-authored-by: Bob Garrow <bgarrow@rti.com>
samuelraeburn
approved these changes
Dec 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
feature branch based on master. Merged release/connector/1.2.2.
Several doc files have been updated. setup.py and top rticonnextdds-connector.py change too.