Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f5d52d8
Deprecation warning for withTracker
StorytellerCZ May 25, 2024
2fb37b7
refactor: replace lodash with fast-equals
malua Jun 15, 2025
659de2a
Update React and ReactDOM version range to 19
evolross Sep 16, 2025
a83710a
fix(useTrackerSuspense): fix performance issues when multiple useTrac…
welkinwong Oct 16, 2025
ac90109
FEATURE: 4.0.1-beta.0
Grubba27 Oct 17, 2025
4b71138
Merge pull request #452 from evolross/patch-1
Grubba27 Oct 17, 2025
55752a9
Merge pull request #455 from welkinwong/master
Grubba27 Oct 17, 2025
26b0587
Merge pull request #405 from meteor/feature/deprecate-withTracker
Grubba27 Oct 17, 2025
7361bcc
Merge pull request #451 from malua/refactor/replace-lodash-with-fast-…
Grubba27 Oct 17, 2025
d5c07be
dev: version bumps
Grubba27 Oct 17, 2025
6fe3e6a
fix(useTrackerSuspense): fix withDeps unresponsiveness
welkinwong Oct 18, 2025
48e2093
perf(useTrackerSuspense): Subsequent updates now return data directly…
welkinwong Oct 18, 2025
97fb366
Merge pull request #457 from welkinwong/feature/4.0.1
Grubba27 Oct 21, 2025
e5263b6
DEV: release :rocket 4.0.1-beta.1
Grubba27 Oct 21, 2025
931ee40
DEV: add version changes
Grubba27 Oct 21, 2025
65fb349
fix(useTrackerSuspense): fix unmount error in StrictMode (dev only)
welkinwong Oct 23, 2025
16b510e
Merge pull request #458 from welkinwong/feature/4.0.1
Grubba27 Oct 23, 2025
e2e7887
DEV: bump package versions
Grubba27 Oct 23, 2025
fc9f1c3
fix(useTrackerSuspense): fix unresponsiveness under StrictMode (dev o…
welkinwong Oct 24, 2025
ffd9b52
fix(useTrackerSuspense): fix unresponsiveness after query conditions …
welkinwong Oct 24, 2025
6205b5e
style(useTrackerSuspenseTests): format useTrackerSuspense tests
welkinwong Oct 24, 2025
d2acdee
perf(useTrackerSuspense): replace delete with undefined for refs cleanup
welkinwong Oct 25, 2025
6f89c91
Merge pull request #459 from welkinwong/feature/4.0.1
Grubba27 Oct 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/react-meteor-data/.npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions packages/react-meteor-data/.versions
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
[email protected]
babel-compiler@7.11.3
babel-compiler@7.12.2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].0
[email protected].2
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].10
[email protected].13
[email protected]
[email protected]
[email protected]
[email protected].4
[email protected].5
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
local-test:[email protected].0
local-test:[email protected].1-beta.2
[email protected]
[email protected].0
[email protected].2
[email protected].1
[email protected].1
[email protected].4
[email protected].3
[email protected]
[email protected]
[email protected].1
[email protected].4
[email protected]
[email protected]
[email protected]
npm-mongo@6.10.2
npm-mongo@6.16.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1-beta.2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected].1
[email protected].2
[email protected]
[email protected].3
[email protected].6
[email protected]
[email protected].6
[email protected].7
[email protected]
zodern:[email protected]
4 changes: 2 additions & 2 deletions packages/react-meteor-data/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Package.describe({
name: 'react-meteor-data',
summary: 'React hook for reactively tracking Meteor data',
version: '4.0.0',
version: '4.0.1-beta.2',
documentation: 'README.md',
git: 'https://github.com/meteor/react-packages'
})

Npm.depends({
'lodash.isequal': '4.5.0'
'fast-equals': '5.2.2'
})

Package.onUse((api) => {
Expand Down
Loading