-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
Release 2.4.0 #113
Merged
Merged
Release 2.4.0 #113
Commits on Nov 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for aa79dd7 - Browse repository at this point
Copy the full SHA aa79dd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3fd323 - Browse repository at this point
Copy the full SHA e3fd323View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ebfb6f - Browse repository at this point
Copy the full SHA 3ebfb6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1222aec - Browse repository at this point
Copy the full SHA 1222aecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 97f7cd4 - Browse repository at this point
Copy the full SHA 97f7cd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f190c3c - Browse repository at this point
Copy the full SHA f190c3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 86e555b - Browse repository at this point
Copy the full SHA 86e555bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cf0323 - Browse repository at this point
Copy the full SHA 5cf0323View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab35bd1 - Browse repository at this point
Copy the full SHA ab35bd1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70719d6 - Browse repository at this point
Copy the full SHA 70719d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a0fe61 - Browse repository at this point
Copy the full SHA 4a0fe61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0024abb - Browse repository at this point
Copy the full SHA 0024abbView commit details
Commits on Nov 14, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2a91c5a - Browse repository at this point
Copy the full SHA 2a91c5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0ee2da - Browse repository at this point
Copy the full SHA b0ee2daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 70f506f - Browse repository at this point
Copy the full SHA 70f506fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 67185a7 - Browse repository at this point
Copy the full SHA 67185a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77a8f88 - Browse repository at this point
Copy the full SHA 77a8f88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 928f95d - Browse repository at this point
Copy the full SHA 928f95dView commit details
Commits on Dec 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 76dbbbe - Browse repository at this point
Copy the full SHA 76dbbbeView commit details -
Configuration menu - View commit details
-
Copy full SHA for fb8ad0d - Browse repository at this point
Copy the full SHA fb8ad0dView commit details
Commits on Dec 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 75cd152 - Browse repository at this point
Copy the full SHA 75cd152View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bb72a8 - Browse repository at this point
Copy the full SHA 4bb72a8View commit details
Commits on Jan 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e92d63a - Browse repository at this point
Copy the full SHA e92d63aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ac754f - Browse repository at this point
Copy the full SHA 9ac754fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40dce5b - Browse repository at this point
Copy the full SHA 40dce5bView commit details
Commits on Feb 14, 2023
-
Merge pull request #99 from meteorrn/update-dependencies
Configuration menu - View commit details
-
Copy full SHA for bbb8a78 - Browse repository at this point
Copy the full SHA bbb8a78View commit details
Commits on Feb 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3e734f5 - Browse repository at this point
Copy the full SHA 3e734f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e5c230 - Browse repository at this point
Copy the full SHA 6e5c230View commit details -
Configuration menu - View commit details
-
Copy full SHA for adc0ce6 - Browse repository at this point
Copy the full SHA adc0ce6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 722ea95 - Browse repository at this point
Copy the full SHA 722ea95View commit details -
Configuration menu - View commit details
-
Copy full SHA for 123ded1 - Browse repository at this point
Copy the full SHA 123ded1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e26a4a9 - Browse repository at this point
Copy the full SHA e26a4a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12352a6 - Browse repository at this point
Copy the full SHA 12352a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fff71ae - Browse repository at this point
Copy the full SHA fff71aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f543fa - Browse repository at this point
Copy the full SHA 4f543faView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6b1ad8 - Browse repository at this point
Copy the full SHA b6b1ad8View commit details
Commits on Feb 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ac28f77 - Browse repository at this point
Copy the full SHA ac28f77View commit details -
Configuration menu - View commit details
-
Copy full SHA for 095fe6f - Browse repository at this point
Copy the full SHA 095fe6fView commit details
Commits on Mar 17, 2023
-
Update user logging sequence and make collections deal with reactivit…
…y better Merge pull request #111 from ToyboxZach/Merge Restructure how we handle the Tracker, instead of a global listen to any change make the listens happen on specific queries and collections. Also fixes some bugs where we would generate way too many instances of subscriptions. This also fixes the log in flow so the series of loggingIn -> LoggedIN is consistent and doesn't allow the package to ever auto log you out as that should be handled by the owning app just like in base meteor. Every time you register a callback it gets added to a generic "changed" callback, that means that every single callback needs to be called on every single change to a collection which causes a huge hold up on the UI thread. To make it even worst the subscriptions don't get cleaned up when you resubscribe so every time a "withTracker" or "useTracker" was called you would get stacked subscriptions. This then would lead to 100 plus subscriptions for a single component after some time which leads to bigger and bigger slow downs. My PR separates that out as much as possible and makes sure that you only have as many subscriptions as you actually need. It is a pretty hefty change and I don't personally use and local collections in my app so those are going to be pretty poorly tested, but if other people want to take my change as a jumping off point I think its a pretty good point for server only subscriptions. This also fixes up weirdness with the logging in and order of events where you would have an invalid user state or it would force you to logout because of bad internet Likely fixes these erorrs: #75 #58 and maybe #79
Configuration menu - View commit details
-
Copy full SHA for fec54df - Browse repository at this point
Copy the full SHA fec54dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fd5278 - Browse repository at this point
Copy the full SHA 4fd5278View commit details -
Configuration menu - View commit details
-
Copy full SHA for b52befd - Browse repository at this point
Copy the full SHA b52befdView commit details -
Configuration menu - View commit details
-
Copy full SHA for b003b3b - Browse repository at this point
Copy the full SHA b003b3bView commit details
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.