-
Notifications
You must be signed in to change notification settings - Fork 9
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
*DO NOT MERGE* Test upgrade to ion v1.0.0-rc #424
base: main
Are you sure you want to change the base?
Conversation
Only blocker discovered so far is amazon-ion/ion-rust#624 |
Conformance comparison report
Number passing in both: 5649 Number failing in both: 694 Number passing in Base (d93dfe7) but now fail: 0 Number failing in Base (d93dfe7) but now pass: 0 |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #424 +/- ##
==========================================
- Coverage 81.70% 81.65% -0.05%
==========================================
Files 62 62
Lines 15235 15183 -52
Branches 15235 15183 -52
==========================================
- Hits 12447 12398 -49
Misses 2285 2285
+ Partials 503 500 -3
☔ View full report in Codecov by Sentry. |
encoding: Encoding, | ||
) -> IonDecodeResult { | ||
let reader = ion_rs::element::element_stream_reader::ElementStreamReader::new(contents); | ||
// Awaiting https://github.com/amazon-ion/ion-rust/issues/624 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked on amazon-ion/ion-rust#624
|
||
// Awaiting https://github.com/amazon-ion/ion-rust/issues/624 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked on amazon-ion/ion-rust#624
@@ -88,11 +90,15 @@ mod tests { | |||
let decoded_ion_text = decode_ion_text(ion, encoding).expect("decode text expected"); | |||
assert_eq!(decoded_ion_text, expected_value); | |||
|
|||
// Awaiting https://github.com/amazon-ion/ion-rust/issues/624 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked on amazon-ion/ion-rust#624
@@ -102,73 +108,67 @@ mod tests { | |||
assert_eq!(decoded_encoded_text_value, expected_value); | |||
|
|||
// round-trip value through element | |||
// Awaiting https://github.com/amazon-ion/ion-rust/issues/624 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked on amazon-ion/ion-rust#624
let mut encoded_element_value = | ||
encode_ion_element(&expected_value, encoding).expect("encode to element"); | ||
assert_eq!(encoded_element_value.len(), 1); | ||
*/ | ||
|
||
// Awaiting https://github.com/amazon-ion/ion-rust/issues/624 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocked on amazon-ion/ion-rust#624
Test upgrade to ion-rs v1.0.0-rc to provide release candidate feedback.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.