Skip to content

Commit

Permalink
Compatibility with Meteor 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jun 24, 2021
1 parent 84a97a6 commit 906e21e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,26 @@

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

## 3.4.1

Make compatible with Meteor 2.3

## 3.4.0

Code modernization in few places

You can now set `packages.collection2.disableCollectionNamesInValidation` in your Meteor settings to disable showing Collection name in errors from server, this is set to `false` by default to preserve the original behavior. (fixes [#422](https://github.com/Meteor-Community-Packages/meteor-collection2/issues/422))

Moved from CircleCI testing to GitHub actions

## 3.3.0

Force `raix:eventemitter@1.0.0` and `tmeasday:check-npm-versions@1.0.1`

## 3.2.2

Allow `tmeasday:check-npm-versions` to use version `1.0.1` as well

## 3.2.1

Add fix for extending schemas caused by previous release [421](https://github.com/Meteor-Community-Packages/meteor-collection2/issues/421)
Expand Down
2 changes: 1 addition & 1 deletion package/collection2/.versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aldeed:collection2@3.4.0
aldeed:collection2@3.4.1
allow-deny@1.1.0
babel-compiler@7.6.1
babel-runtime@1.5.0
Expand Down
4 changes: 2 additions & 2 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Package.describe({
name: "aldeed:collection2",
summary: "Automatic validation of Meteor Mongo insert and update operations on the client and server",
version: "3.4.0",
version: "3.4.1",
documentation: "../../README.md",
git: "https://github.com/aldeed/meteor-collection2.git"
});
Expand All @@ -15,7 +15,7 @@ Npm.depends({
});

Package.onUse(function(api) {
api.versionsFrom('1.12.1');
api.versionsFrom(['1.12.1', '2.3']);
api.use('mongo');
api.imply('mongo');
api.use('minimongo');
Expand Down

0 comments on commit 906e21e

Please sign in to comment.