-
Notifications
You must be signed in to change notification settings - Fork 534
Prepare 1.0.1 #379
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
Merged
Merged
Prepare 1.0.1 #379
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,168 @@ | ||
# Release notes for Reactive Streams | ||
|
||
Changes will be listed below after version 1.0.0 is released. | ||
--- | ||
|
||
# Version 1.0.1-RC1 released on 2017-06-29 | ||
|
||
## Announcement: | ||
|
||
After more than two years since 1.0.0, we are proud to announce the immediate availability of `Reactive Streams version 1.0.1-RC1`. | ||
|
||
Since 1.0.0 was released `Reactive Streams` has managed to achieve most, if not all, it set out to achieve. There are now numerous implementations, and it is scheduled to be included in [JDK9](http://download.java.net/java/jdk9/docs/api/java/util/concurrent/Flow.html). | ||
|
||
Also, most importantly, there are no semantical incompatibilities included in this release. | ||
|
||
When JDK9 ships, `Reactive Streams` will publish a compatibility/conversion library to seamlessly convert between the `java.util.concurrent.Flow` and the `org.reactivestreams` namespaces. | ||
|
||
## Highlights: | ||
|
||
- Specification | ||
+ A new [Glossary](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.1-RC1/README.md#glossary) section | ||
+ Description of the intent behind every single rule | ||
+ No breaking semantical changes | ||
+ Multiple rule [clarifications](#specification-clarifications) | ||
- Interfaces | ||
+ No changes | ||
+ Improved JavaDoc | ||
- Technology Compatibility Kit (TCK) | ||
+ Improved coverage | ||
+ Improved JavaDoc | ||
+ Multiple test [alterations](#tck-alterations) | ||
|
||
## Specification clarifications | ||
|
||
## Publisher Rule 1 | ||
|
||
**1.0.0:** The total number of onNext signals sent by a Publisher to a Subscriber MUST be less than or equal to the total number of elements requested by that Subscriber´s Subscription at all times. | ||
|
||
**1.0.1:** The total number of onNext´s signalled by a Publisher to a Subscriber MUST be less than or equal to the total number of elements requested by that Subscriber´s Subscription at all times. | ||
|
||
**Comment: Minor spelling update.** | ||
|
||
## Publisher Rule 2 | ||
|
||
**1.0.0:** A Publisher MAY signal less onNext than requested and terminate the Subscription by calling onComplete or onError. | ||
|
||
**1.0.1:** A Publisher MAY signal fewer onNext than requested and terminate the Subscription by calling onComplete or onError. | ||
|
||
**Comment: Minor spelling update.** | ||
|
||
## Publisher Rule 3 | ||
|
||
**1.0.0:** onSubscribe, onNext, onError and onComplete signaled to a Subscriber MUST be signaled sequentially (no concurrent notifications). | ||
|
||
**1.0.1:** onSubscribe, onNext, onError and onComplete signaled to a Subscriber MUST be signaled in a thread-safe manner—and if performed by multiple threads—use external synchronization. | ||
|
||
**Comment: Reworded the part about sequential signal and its implications, for clarity.** | ||
|
||
## Subscriber Rule 6 | ||
|
||
**1.0.0:** A Subscriber MUST call Subscription.cancel() if it is no longer valid to the Publisher without the Publisher having signaled onError or onComplete. | ||
|
||
**1.0.1:** A Subscriber MUST call Subscription.cancel() if the Subscription is no longer needed. | ||
|
||
**Comment: Rule could be reworded since it now has an intent section describing desired effect.** | ||
|
||
## Subscriber Rule 11 | ||
|
||
**1.0.0:** A Subscriber MUST make sure that all calls on its onXXX methods happen-before [1] the processing of the respective signals. I.e. the Subscriber must take care of properly publishing the signal to its processing logic. | ||
|
||
**1.0.1:** A Subscriber MUST make sure that all calls on its signal methods happen-before the processing of the respective signals. I.e. the Subscriber must take care of properly publishing the signal to its processing logic. | ||
|
||
**Comment: Rule slightly reworded to use the glossary for `signal` instead of the more *ad-hoc* name "onXXX methods". Footnote was reworked into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 1 | ||
|
||
**1.0.0:** Subscription.request and Subscription.cancel MUST only be called inside of its Subscriber context. A Subscription represents the unique relationship between a Subscriber and a Publisher [see 2.12]. | ||
|
||
**1.0.1:** Subscription.request and Subscription.cancel MUST only be called inside of its Subscriber context. | ||
|
||
**Comment: Second part of rule moved into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 3 | ||
|
||
**1.0.0:** Subscription.request MUST place an upper bound on possible synchronous recursion between Publisher and Subscriber[1]. | ||
|
||
**1.0.1:** Subscription.request MUST place an upper bound on possible synchronous recursion between Publisher and Subscriber. | ||
|
||
**Comment: Footnote reworked into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 4 | ||
|
||
**1.0.0:** Subscription.request SHOULD respect the responsivity of its caller by returning in a timely manner[2]. | ||
|
||
**1.0.1:** Subscription.request SHOULD respect the responsivity of its caller by returning in a timely manner. | ||
|
||
**Comment: Footnote reworked into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 5 | ||
|
||
**1.0.0:** Subscription.cancel MUST respect the responsivity of its caller by returning in a timely manner[2], MUST be idempotent and MUST be thread-safe. | ||
|
||
**1.0.1:** Subscription.cancel MUST respect the responsivity of its caller by returning in a timely manner, MUST be idempotent and MUST be thread-safe. | ||
|
||
**Comment: Footnote reworked into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 13 | ||
|
||
**1.0.0:** While the Subscription is not cancelled, Subscription.cancel() MUST request the Publisher to eventually drop any references to the corresponding subscriber. Re-subscribing with the same Subscriber object is discouraged [see 2.12], but this specification does not mandate that it is disallowed since that would mean having to store previously cancelled subscriptions indefinitely. | ||
|
||
**1.0.1:** While the Subscription is not cancelled, Subscription.cancel() MUST request the Publisher to eventually drop any references to the corresponding subscriber. | ||
|
||
**Comment: Second part of rule reworked into the Intent-section of the rule.** | ||
|
||
## Subscription Rule 15 | ||
|
||
**1.0.0:** Calling Subscription.cancel MUST return normally. The only legal way to signal failure to a Subscriber is via the onError method. | ||
|
||
**1.0.1:** Calling Subscription.cancel MUST return normally. | ||
|
||
**Comment: Replaced second part of rule with a definition for `return normally` in the glossary.** | ||
|
||
## Subscription Rule 16 | ||
|
||
**1.0.0:** Calling Subscription.request MUST return normally. The only legal way to signal failure to a Subscriber is via the onError method. | ||
|
||
**1.0.1:** Calling Subscription.request MUST return normally. | ||
|
||
**Comment: Replaced second part of rule with a definition for `return normally` in the glossary.** | ||
|
||
## Subscription Rule 17 | ||
|
||
**1.0.0:** A Subscription MUST support an unbounded number of calls to request and MUST support a demand (sum requested - sum delivered) up to 2^63-1 (java.lang.Long.MAX_VALUE). A demand equal or greater than 2^63-1 (java.lang.Long.MAX_VALUE) MAY be considered by the Publisher as “effectively unbounded”[3]. | ||
|
||
**1.0.1:** A Subscription MUST support an unbounded number of calls to request and MUST support a demand up to 2^63-1 (java.lang.Long.MAX_VALUE). A demand equal or greater than 2^63-1 (java.lang.Long.MAX_VALUE) MAY be considered by the Publisher as “effectively unbounded”. | ||
|
||
**Comment: Rule simplified by defining `demand` in the glossary, and footnote was reworked into the Intent-section of the rule.** | ||
|
||
--- | ||
|
||
## TCK alterations | ||
|
||
- Fixed potential resource leaks in partially consuming Publisher tests ([#375](https://github.com/reactive-streams/reactive-streams-jvm/issues/375)) | ||
- Fixed potential resource leaks in partially emitting Subscriber tests ([#372](https://github.com/reactive-streams/reactive-streams-jvm/issues/372), [#373](https://github.com/reactive-streams/reactive-streams-jvm/issues/373)) | ||
- Renamed `untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation` to `untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation` ([#306](https://github.com/reactive-streams/reactive-streams-jvm/issues/306)) | ||
- Allow configuring separate timeout for "no events during N time", allowing for more aggressive timeouts in the rest of the test suite if required ([#314](https://github.com/reactive-streams/reactive-streams-jvm/issues/314)) | ||
- New test verifying Rule 2.10, in which subscriber must be prepared to receive onError signal without having signaled request before ([#374](https://github.com/reactive-streams/reactive-streams-jvm/issues/374)) | ||
--- | ||
|
||
## Contributors | ||
+ Roland Kuhn [(@rkuhn)](https://github.com/rkuhn) | ||
+ Ben Christensen [(@benjchristensen)](https://github.com/benjchristensen) | ||
+ Viktor Klang [(@viktorklang)](https://github.com/viktorklang) | ||
+ Stephane Maldini [(@smaldini)](https://github.com/smaldini) | ||
+ Stanislav Savulchik [(@savulchik)](https://github.com/savulchik) | ||
+ Konrad Malawski [(@ktoso)](https://github.com/ktoso) | ||
+ Slim Ouertani [(@ouertani)](https://github.com/ouertani) | ||
+ Martynas Mickevičius [(@2m)](https://github.com/2m) | ||
+ Luke Daley [(@ldaley)](https://github.com/ldaley) | ||
+ Colin Godsey [(@colinrgodsey)](https://github.com/colinrgodsey) | ||
+ David Moten [(@davidmoten)](https://github.com/davidmoten) | ||
+ (new) Brian Topping [(@briantopping)](https://github.com/briantopping) | ||
+ (new) Rossen Stoyanchev [(@rstoyanchev)](https://github.com/rstoyanchev) | ||
+ (new) Björn Hamels [(@BjornHamels)](https://github.com/BjornHamels) | ||
+ (new) Jake Wharton [(@JakeWharton)](https://github.com/JakeWharton) | ||
+ (new) Anthony Vanelverdinghe[(@anthonyvdotbe)](https://github.com/anthonyvdotbe) | ||
+ (new) Kazuhiro Sera [(@seratch)](https://github.com/seratch) | ||
+ (new) Dávid Karnok [(@akarnokd)](https://github.com/akarnokd) | ||
+ (new) Evgeniy Getman [(@egetman)](https://github.com/egetman) |
This file contains hidden or 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
This file contains hidden or 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
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.
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.
Add:
request
before +tck #362 wait for request signal in 209, and new additional tests #374those are more interesting than the remaining "just a fix" ones :)
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.
👍