-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
fix: issue with collection hooks #404
Closed
Closed
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
acb4596
Allow checking for Subscription initialization
KoenLav 46ae8d2
Merge remote-tracking branch 'cult-of-coders/master' into allow-check…
StorytellerCZ 63aa86d
Merge branch 'master' into allow-checking-subscription-initialization
StorytellerCZ 3a9685a
Merge branch 'master' into allow-checking-subscription-initialization
StorytellerCZ 23d7c6d
Merge branch 'master' into allow-checking-subscription-initialization
StorytellerCZ a0ffa1e
Sync versionsFrom and tests
StorytellerCZ 822d84d
Added docs and tests
KoenLav 71bd6ce
Removed extra line
KoenLav 19a03fa
Fixed tests
KoenLav 9f3845d
Fixed test?
KoenLav a1c41ac
Update test dependencies
StorytellerCZ 2207871
Reverse test deps upgrade to keep Meteor 1 compat
StorytellerCZ e5df7b2
Merge branch 'master' into allow-checking-subscription-initialization
jdgjsag67251 7403b15
Added missing wrap
jdgjsag67251 12a5853
Merge pull request #1 from jdgjsag67251/allow-checking-subscription-i…
jdgjsag67251 38340bc
Update test dependencies & revert redis action version
StorytellerCZ 08e2cb8
More reverts
StorytellerCZ 24b43a6
Use simpl-schema compatible with Meteor in testing
StorytellerCZ 0a534cc
Merge branch 'Meteor-Community-Packages:master' into master
jdgjsag67251 471c239
Fixed issue with requery
jdgjsag67251 d4b220e
Don't swallow errors
jdgjsag67251 051591f
Removed 'SubscriptionInitialization'
jdgjsag67251 24abd09
Fix override
jdgjsag67251 af94119
Fixed test
jdgjsag67251 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 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 |
---|---|---|
|
@@ -7,11 +7,11 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
meteor: [1.12.2, 2.6.1, 2.7.3, 2.8.1, 2.12] | ||
meteor: [1.12.2, 2.8.1, 2.12, 2.15] | ||
redis-version: [4, 5, 6, 7] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
|
@@ -26,7 +26,7 @@ jobs: | |
run: | | ||
meteor create --release ${{ matrix.meteor }} --bare test | ||
cd test | ||
meteor npm i --save [email protected] simpl-schema chai | ||
meteor npm i --save [email protected] simpl-schema@1.13.1 chai | ||
- name: Test | ||
working-directory: ./test | ||
run: METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=puppeteer meteor test-packages --raw-logs --once --driver-package meteortesting:mocha ../ |
This file contains 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 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 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 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 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 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 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
Oops, something went wrong.
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.
Previously these were just swallowed when debug was not turned on