Skip to content
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

Migrate for Meteor 3.0 #306

Open
wants to merge 62 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
6641d76
build: prepare versions for Meteor async release
jankapunkt Jan 4, 2024
daf21dc
Updating tests, wip
Feb 24, 2024
2f88749
Merge branch 'Meteor-Community-Packages:migrate/3.0' into migrate/3.0
bhunjadi Feb 24, 2024
b033038
Further test updates
Feb 25, 2024
76e5422
Server side test updates
Feb 25, 2024
22b4210
find_one fix
Feb 25, 2024
675a3ac
Fix for remove after async callbacks handling
Feb 25, 2024
12f6964
Test updates for Meteor 2
Feb 25, 2024
e0c4b96
Minor updates
Feb 25, 2024
86dbbbb
Fix failing test for Meteor 3.0 with resolverType: stub
Mar 4, 2024
fbe4463
Insert and update updates, test updates
Mar 10, 2024
5534b93
Tests for Meteor 3.0
Mar 10, 2024
aa97b23
Async before & after hooks for all methods except find
Apr 23, 2024
3265067
Update to 3.0-rc.0
StorytellerCZ May 4, 2024
7ee12ee
Published matb33:collection-hooks@1.4.0-beta.1
StorytellerCZ May 4, 2024
ab31795
Merge branch 'migrate/3.0' into migrate/3.0
StorytellerCZ May 5, 2024
67bebfb
keep sync methods intact, without hooks
May 22, 2024
a06f7b2
handle tests for sync methods (client)
May 22, 2024
c58f1f3
fixed lint errors
May 22, 2024
df6988a
updated eslint to v8, fixing top-level await error
May 22, 2024
c9de6e4
Bump to v2.0.0-beta.1
StorytellerCZ May 26, 2024
d6d20d8
Lint fixes
StorytellerCZ May 26, 2024
f890026
Update lint action dependencies
StorytellerCZ Jun 13, 2024
6cf9690
Update to the latest Meteor rc.4 and start preparing changelog
StorytellerCZ Jun 13, 2024
52e42c6
Published matb33:collection-hooks@2.0.0-beta.2
StorytellerCZ Jun 13, 2024
63f8ea4
fixed update_allow tests
Jun 17, 2024
83cec22
additional tests fixed
Jun 17, 2024
66b310f
support for find hooks
Jun 17, 2024
bef19ee
Add jquery as test dependency
harryadel Jun 18, 2024
9dc5926
Fix failing test
harryadel Jun 18, 2024
2e040c9
Merge pull request #311 from bhunjadi/migrate/3.0
StorytellerCZ Jun 18, 2024
064f9c2
Rework failing test
harryadel Jun 19, 2024
6793651
Fix lint problems
harryadel Jun 19, 2024
033c41c
Update version number
harryadel Jun 19, 2024
0e420c6
published 2.0.0-rc.0
jankapunkt Jun 19, 2024
f744389
Merge branch 'master' into migrate/3.0
StorytellerCZ Jul 16, 2024
057c12d
Published matb33:collection-hooks@2.0.0-rc.1
StorytellerCZ Jul 16, 2024
14fc02f
Update to the latest eslint
StorytellerCZ Jul 16, 2024
61b9a3f
Update versions for final release of Meteor 3
StorytellerCZ Jul 17, 2024
669db28
Published matb33:collection-hooks@2.0.0-rc.2
StorytellerCZ Jul 17, 2024
375dc1b
Update minimum Meteor version to 2.14
StorytellerCZ Jul 18, 2024
e3edceb
Try to get away with using 2.8.1
StorytellerCZ Jul 18, 2024
283002b
Update package lock
StorytellerCZ Jul 18, 2024
5acc8a2
fix publish wrapper on meteor 3.0
nachocodoner Sep 3, 2024
c9715e0
Merge pull request #315 from nachocodoner/fix-publish-wrapper
StorytellerCZ Sep 3, 2024
32248d1
Update test
StorytellerCZ Sep 3, 2024
85acdc4
Prep for rc.3
StorytellerCZ Sep 3, 2024
8484d71
Published matb33:collection-hooks@2.0.0-rc.3
StorytellerCZ Sep 3, 2024
7c3df94
Replace AOP terminology
harryadel Sep 17, 2024
a433249
Update version
harryadel Sep 17, 2024
1533dee
Remove semi-colons
harryadel Sep 17, 2024
8514518
Add new line at end of file
harryadel Sep 17, 2024
b7d0a33
Update tests to use 3.0.3
harryadel Sep 17, 2024
cf69ebc
Fix aspect missing statements
harryadel Sep 17, 2024
1e76dbb
Remove 2.14 tests
harryadel Sep 17, 2024
0d48653
Update find wrapper
harryadel Sep 17, 2024
eec3f36
Fix code lint issues
harryadel Sep 17, 2024
4864526
Remove return statement
harryadel Sep 17, 2024
7b20671
Fix linter errors
harryadel Sep 17, 2024
637a7be
Recommit changes after reinitializing Git
harryadel Sep 18, 2024
2ecf8ac
Merge branch 'temp-branch' into migrate/3.0
harryadel Sep 18, 2024
5761671
Use collection-instances to ensure collections are not re-created
harryadel Sep 23, 2024
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
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Package.onUse(function (api) {
api.versionsFrom(['2.3', '2.8.1', '3.0-beta.0'])

api.use([
'mongo',
'mongo@2.0.0-beta300.0',
StorytellerCZ marked this conversation as resolved.
Show resolved Hide resolved
'tracker',
'ejson',
'minimongo',
Expand Down
Loading