-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: develop on Node 20, CI with 16.17.x + 18 + 20 #35
Merged
Conversation
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 change updates this project's Node versions: - Develop on Node 20 by updating `.nvmrc`. - CI should test on Node 20, 18, and 16.17.x. Node 16.17.x matches the version used by CoMapeo-mobile, which is [email protected]. (We can't specify Node 16.17.10 exactly because [it does not exist][0]; [the patch version is specific to nodejs-mobile-react-native][1].) [0]: https://nodejs.org/dist/ [1]: https://github.com/nodejs-mobile/nodejs-mobile-react-native/tree/51afe46d36d3776d1bfe7158073897216b55d7f2#versioning
EvanHahn
force-pushed
the
update-node-versions
branch
from
January 19, 2024 02:07
f6a00a6
to
259844a
Compare
EvanHahn
changed the title
chore: develop on Node 20, CI with 16.17.10 + 18 + 20
chore: develop on Node 20, CI with 16.17.x + 18 + 20
Jan 19, 2024
gmaclennan
requested changes
Jan 19, 2024
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.
as long as CI passes with the changes to version numbers, go ahead and merge
Co-authored-by: Gregor MacLennan <[email protected]>
EvanHahn
added a commit
to digidem/mapeo-sqlite-indexer
that referenced
this pull request
Jan 22, 2024
This is very similar to [digidem/multi-core-indexer#35][0]. This change updates this project's Node versions: - Develop on Node 20 by updating `.nvmrc`. - CI should test on Node 20, 18.17.1, and 16.17.1. This update also causes npm to update, which means that the package lockfile changed. Node 16.17.1 and 18.17.1 match versions of nodejs-mobile-react-native, used by CoMapeo-mobile. nodejs-mobile has the same major & minor versions as Node, but [different patch versions][1]. For example, [email protected] corresponds to Node 16.17.1. [0]: digidem/multi-core-indexer#35 [1]: https://github.com/nodejs-mobile/nodejs-mobile-react-native/tree/51afe46d36d3776d1bfe7158073897216b55d7f2#versioning BREAKING CHANGE: Node 16.17.1+ is now required.
EvanHahn
added a commit
to digidem/mapeo-sqlite-indexer
that referenced
this pull request
Jan 22, 2024
This is very similar to [digidem/multi-core-indexer#35][0]. This change updates this project's Node versions: - Develop on Node 20 by updating `.nvmrc`. - CI should test on Node 20, 18.17.1, and 16.17.1. - Require this version in the `engines` field. This update also causes npm to update, which means that the package lockfile changed. Node 16.17.1 and 18.17.1 match versions of nodejs-mobile-react-native, used by CoMapeo-mobile. nodejs-mobile has the same major & minor versions as Node, but [different patch versions][1]. For example, [email protected] corresponds to Node 16.17.1. [0]: digidem/multi-core-indexer#35 [1]: https://github.com/nodejs-mobile/nodejs-mobile-react-native/tree/51afe46d36d3776d1bfe7158073897216b55d7f2#versioning BREAKING CHANGE: Node 16.17.1+ is now required.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Update: this title and description is slightly wrong. See the merged commit for the final full details.
This change updates this project's Node versions:
Develop on Node 20 by updating
.nvmrc
.CI should test on Node 20, 18, and 16.17.x.
Node 16.17.x matches the version used by CoMapeo-mobile, which is [email protected]. (We can't specify Node 16.17.10 exactly because it does not exist; the patch version is specific to nodejs-mobile-react-native.)