Skip to content

Commit

Permalink
Merge branch 'master' into feature/forofloops
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Nov 12, 2024
2 parents ade48d8 + f1804ea commit d4b4949
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [ '2.13.3', '3.0.4' ]
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup meteor
uses: meteorengineer/setup-meteor@v2
with:
meteor-release: '3.0.4'
meteor-release: ${{ matrix.meteor }}

- name: cache dependencies
uses: actions/cache@v4
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
- Return unaltered error message when collection isn't being validated and doesn't have simple schema attached thanks to @DmytroSoninLinguahouse
- Update test application to use Meteor release number 3.0.4
- Remove lodash dependencies
- Updated dependencies
- Expanded dependencies compatibility
- Extended test suite

## 4.0.3

Expand Down
6 changes: 3 additions & 3 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Package.onUse(function (api) {
api.use('minimongo');
api.use('ejson');
api.use('ecmascript');
api.use('raix:eventemitter@1.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0-rc300.1');
api.use('raix:eventemitter@1.0.0 || 2.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0');

api.addFiles(['./collection2.js']);

Expand All @@ -30,7 +30,7 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.use([
'meteortesting:mocha@3.2.0',
'meteortesting:mocha@2.1.0 || 3.2.0',
'aldeed:collection2'
]);
});

0 comments on commit d4b4949

Please sign in to comment.