Skip to content

Commit

Permalink
Published aldeed:[email protected].
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jan 9, 2024
1 parent c41adf1 commit 65d78b1
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 46 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 3.1.0

Update dependencies (`aldeed:[email protected]`, `ecmascript` according to Meteor version)
Index creation and dropping has been updated to use newer API if available

## 3.0.0

Updated to depend on `aldeed:[email protected]` rather than `aldeed:collection2-core`. Core has been merged back into the main package as a 3.0.0 release.
Expand All @@ -26,4 +31,4 @@ Update to work with SimpleSchema 2.0

## 1.0.0

Initial release. Originally included in the aldeed:collection2 package.
Initial release. Originally included in the aldeed:collection2 package.
90 changes: 47 additions & 43 deletions package/indexing/.versions
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
aldeed:collection2@3.0.0
aldeed:schema-index@3.0.0
[email protected].0
babel-compiler@7.0.0
babel-runtime@1.2.2
[email protected].10
[email protected].10
boilerplate-generator@1.4.0
callback-hook@1.1.0
[email protected].0
[email protected].0
ddp-client@2.3.1
aldeed:collection2@3.5.0
aldeed:schema-index@3.1.0
[email protected].1
babel-compiler@7.10.5
babel-runtime@1.5.1
[email protected].12
[email protected].11
boilerplate-generator@1.7.2
callback-hook@1.5.1
[email protected].2
[email protected].1
ddp-client@2.6.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].6
npm-mongo@2.2.34
[email protected].8
npm-mongo@4.17.2
[email protected]
[email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
routepolicy@1.0.12
socket-stream-client@0.1.0
tmeasday:check-npm-versions@0.3.2
tracker@1.1.3
[email protected]
url@1.2.0
webapp@1.5.0
webapp-hashing@1.0.9
routepolicy@1.1.1
socket-stream-client@0.5.2
tmeasday:check-npm-versions@1.0.2
tracker@1.3.3
[email protected]
underscore@1.0.13
webapp@1.13.6
webapp-hashing@1.1.1
6 changes: 4 additions & 2 deletions package/indexing/package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
Package.describe({
name: "aldeed:schema-index",
summary: "Control some MongoDB indexing with schema options",
version: "3.0.0",
version: "3.1.0",
documentation: "../../README.md",
git: "https://github.com/aldeed/meteor-schema-index.git",
});

Package.onUse(function (api) {
api.use(["aldeed:[email protected]", "[email protected]"]);
api.versionsFrom(["1.12.1", "2.3.6", "2.8.1"]);
api.use("ecmascript");
api.use("aldeed:[email protected]");

api.mainModule("client.js", "client");
api.mainModule("server.js", "server");
Expand Down

0 comments on commit 65d78b1

Please sign in to comment.