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

Compatibility with meteor 3 #36

Open
gustawdaniel opened this issue Feb 4, 2024 · 3 comments
Open

Compatibility with meteor 3 #36

gustawdaniel opened this issue Feb 4, 2024 · 3 comments

Comments

@gustawdaniel
Copy link

After command:

meteor update --release 3.0-beta.0

in the existing meteor 2 project I see error:

* [email protected] <- livedata 1.0.18 <- communitypackages:fast-render 4.0.7-alpha.1 <-
communitypackages:react-router-ssr 3.0.4

in package.js of this package I see

Package.onUse(function _ (api) {
  api.versionsFrom('2.3');
  api.use(['ecmascript', 'communitypackages:[email protected]', 'tmeasday:[email protected]']);

  api.mainModule('client.jsx', 'client');
  api.mainModule('server.jsx', 'server');
});

but proposed package should contain

Package.onUse((api) => {
  api.versionsFrom(['1.10', '2.3', '3.0-beta.0']);
  //                               ^^^^^^^ for testing your package with meteor 3.0

  api.versionsFrom(['1.10', '2.3', '3.0']);
  //                              ^^^^^^^ for meteor 3.0

according to

https://guide.meteor.com/3.0-migration#How-do-I-migrate-my-package-to-be-compatible-with-Meteor-3-0

Copy link

github-actions bot commented Feb 4, 2024

Thank you for submitting this issue!

We, the Members of Meteor Community Packages take every issue seriously.
Our goal is to provide long-term lifecycles for packages and keep up
with the newest changes in Meteor and the overall NodeJs/JavaScript ecosystem.

However, we contribute to these packages mostly in our free time.
Therefore, we can't guarantee you issues to be solved within certain time.

If you think this issue is trivial to solve, don't hesitate to submit
a pull request, too! We will accompany you in the process with reviews and hints
on how to get development set up.

Please also consider sponsoring the maintainers of the package.
If you don't know who is currently maintaining this package, just leave a comment
and we'll let you know

@StorytellerCZ
Copy link
Member

StorytellerCZ commented Feb 5, 2024

Well, as you can guess from the code, this package is not yet Meteor 3 compatible. Though the fast render reference is strange, maybe it is trying to satisfy the Meteor 3 constraint by using the fast render alpha version.

@copleykj
Copy link
Member

copleykj commented Jun 4, 2024

This will be worked on very soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants