forked from cult-of-coders/redis-oplog
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/bulk-redis-payload-processing
- Loading branch information
Showing
9 changed files
with
73 additions
and
50 deletions.
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 |
---|---|---|
|
@@ -4,29 +4,29 @@ on: [push, pull_request] | |
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.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] | ||
with: | ||
redis-version: ${{ matrix.redis-version }} | ||
|
||
- name: Setup Meteor | ||
uses: meteorengineer/setup-meteor@v1 | ||
uses: meteorengineer/setup-meteor@v2 | ||
with: | ||
meteor-release: ${{ matrix.meteor }} | ||
- name: Setup tests | ||
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@4 | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ npm-debug.log | |
.idea/ | ||
|
||
test/ | ||
node_modules/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,8 @@ | |
|
||
First, thank you for considering contributing to redis-oplog! It's people like you that make the open source community such a great community! 😊 | ||
|
||
We welcome any type of contribution, not only code. You can help with | ||
We welcome any type of contribution, not only code. You can help with | ||
|
||
- **QA**: file bug reports, the more details you can give the better (e.g. screenshots with the console open) | ||
- **Marketing**: writing blog posts, howto's, printing stickers, ... | ||
- **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, ... | ||
|
@@ -13,7 +14,7 @@ We welcome any type of contribution, not only code. You can help with | |
|
||
## Your First Contribution | ||
|
||
Working on your first Pull Request? You can learn how from this *free* series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github). | ||
Working on your first Pull Request? You can learn how from this _free_ series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github). | ||
|
||
## Submitting code | ||
|
||
|
@@ -26,14 +27,16 @@ It is also always helpful to have some context for your pull request. What was t | |
|
||
## Running Tests | ||
|
||
### Setup | ||
### Setup | ||
|
||
``` | ||
meteor create --release 1.12.2 --bare test | ||
cd test | ||
meteor npm i --save [email protected] simpl-schema chai | ||
meteor npm i --save [email protected] simpl-schema chai@4 | ||
``` | ||
|
||
### Start Tests | ||
|
||
``` | ||
METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=puppeteer meteor test-packages --raw-logs --once --driver-package meteortesting:mocha ../ | ||
``` | ||
|
@@ -55,14 +58,12 @@ You can also reach us at [email protected]. | |
Thank you to all the people who have already contributed to redis-oplog! | ||
<a href="graphs/contributors"><img src="https://opencollective.com/redis-oplog/contributors.svg?width=890" /></a> | ||
|
||
|
||
### Backers | ||
|
||
Thank you to all our backers! [[Become a backer](https://opencollective.com/redis-oplog#backer)] | ||
|
||
<a href="https://opencollective.com/redis-oplog#backers" target="_blank"><img src="https://opencollective.com/redis-oplog/backers.svg?width=890"></a> | ||
|
||
|
||
### Sponsors | ||
|
||
Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/redis-oplog#sponsor)) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package.describe({ | ||
name: 'cultofcoders:redis-oplog', | ||
version: '2.2.0', | ||
version: '2.3.0', | ||
// Brief, one-line summary of the package. | ||
summary: "Replacement for Meteor's MongoDB oplog implementation", | ||
// URL to the Git repository containing the source code for this package. | ||
|
@@ -17,7 +17,7 @@ Npm.depends({ | |
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom(['1.12.2', '2.8.1', '2.12']); | ||
api.versionsFrom(['1.12.2', '2.8.1', '2.13', '2.15', '2.16']); | ||
api.use([ | ||
'underscore', | ||
'ecmascript', | ||
|
@@ -51,7 +51,7 @@ Package.onTest(function(api) { | |
api.use('random'); | ||
api.use('accounts-password'); | ||
api.use('matb33:[email protected]'); | ||
api.use('alanning:roles@3.4.0'); | ||
api.use('alanning:roles@3.5.1'); | ||
|
||
api.use(['meteortesting:[email protected]', 'meteortesting:[email protected]']); | ||
|
||
|