mongo-collection-instances icon indicating copy to clipboard operation
mongo-collection-instances copied to clipboard

Migration for compatibility with Meteor 3.0

Open jankapunkt opened this issue 1 year ago • 5 comments

  • [x] upgraded deps to Meteor 3.0
  • [x] updated docs
  • [x] updated tests

jankapunkt avatar Jan 04 '24 22:01 jankapunkt

Hello Jan, I just the latest version to my application and seems to be working nicely so far. The only problem is that you had fixed the version to 3.0 and we're yet to make the leap so I had to fork it locally and modify these lines:

  api.versionsFrom(['3.0-beta.0'])
  api.use([
    '[email protected]',
    '[email protected]',
    'lai:[email protected]'])

to:

api.versionsFrom(['3.0-beta.0'])
  api.use([
    '[email protected]',
    '[email protected]',
    'lai:[email protected]'])
  api.addFiles('mongo-instances.js')

and I had to do the same for lai:collection-extensions so my recommendation is drop the 3.0 fix so anybody who's on any version greater than 2.8 can try out the changes and provide feedback.

harryadel avatar Jan 10 '24 10:01 harryadel

@harryadel please try 1.0.0-beta.1

jankapunkt avatar Jan 15 '24 12:01 jankapunkt

Will do, thanks!

harryadel avatar Jan 15 '24 13:01 harryadel

@harryadel @StorytellerCZ this is also fixed now. Please use the latest release 1.0.0-beta300.2 with your Meteor 3 apps and let me know if it works as expected.

jankapunkt avatar Apr 16 '24 05:04 jankapunkt

@harryadel @StorytellerCZ this is also fixed now. Please use the latest release 1.0.0-beta300.2 with your Meteor 3 apps and let me know if it works as expected.

Hello, I am using it in a meteor package I just wrote in meteor 3.0 and it works fine. fyi.

Sergeant61 avatar Aug 17 '24 19:08 Sergeant61