Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Feb 14, 2025
1 parent 9fb49e3 commit 6b1806a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
File renamed without changes.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*

- [4.1.0](#410)
- [4.0.4](#404)
- [4.0.3](#403)
- [4.0.2](#402)
Expand Down Expand Up @@ -82,6 +83,13 @@

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## 4.1.0

- Added types
- Switched to use `for of` loops instead of `forEach` in many places to increase performance.
- Renamed arg variables to be less ambiguous
- Fix deprecation warnings on Meteor 3.1

## 4.0.4

- Return unaltered error message when collection isn't being validated and doesn't have simple schema attached thanks to @DmytroSoninLinguahouse
Expand Down
6 changes: 3 additions & 3 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Package.describe({
name: 'aldeed:collection2',
summary:
'Automatic validation of Meteor Mongo insert and update operations on the client and server',
version: '4.0.4',
version: '4.1.0',
documentation: '../../README.md',
git: 'https://github.com/aldeed/meteor-collection2.git'
});

Package.onUse(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.versionsFrom(['1.12.1', '2.3', '3.0', '3.1.2']);
api.use('mongo');
api.imply('mongo');
api.use('minimongo');
Expand All @@ -29,7 +29,7 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.versionsFrom(['1.12.1', '2.3', '3.0', '3.1.2']);
api.use([
'meteortesting:[email protected] || 3.2.0',
'aldeed:collection2'
Expand Down

0 comments on commit 6b1806a

Please sign in to comment.