File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8080 - 20.5.1 # sync unsubscribe bug
8181 - 20.6.0 # sync unsubscribe bug fixed
8282 - 20.x # nothing special, full support dc, latest 20
83+ - 21.0.0 # nothing special, full support dc, first 21
84+ - 21.x # nothing special, full support dc, latest 21
8385 steps :
8486 - uses : actions/checkout@v2
8587 - uses : actions/setup-node@v1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module.exports.MINOR = MINOR;
44module . exports . PATCH = PATCH ;
55
66function hasFullSupport ( ) {
7- return MAJOR >= 20 && MINOR >= 6 ;
7+ return MAJOR > 20 || ( MAJOR > = 20 && MINOR >= 6 ) ;
88}
99module . exports . hasFullSupport = hasFullSupport ;
1010
@@ -38,7 +38,7 @@ function hasZeroSubscribersBug() {
3838module . exports . hasZeroSubscribersBug = hasZeroSubscribersBug ;
3939
4040function hasChannelStoreMethods ( ) {
41- return MAJOR == = 20
41+ return MAJOR > = 20
4242 || ( MAJOR === 19 && MINOR >= 9 ) ;
4343}
4444module . exports . hasChannelStoreMethods = hasChannelStoreMethods ;
You can’t perform that action at this time.
0 commit comments