-
-
Notifications
You must be signed in to change notification settings - Fork 162
Meteor 3.0 compatibility #741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
e113bba
initiate migration
jankapunkt d0ab344
tests: upgraded to Meteor 3.0-beta.0
jankapunkt 0b2d18d
build: upgrade package to Meteor 3.0-beta.0
jankapunkt d15c257
Merge branch 'master' into migrate/3.0
jankapunkt 80b937c
tests: upgraded 2.x project to latest Meteor
jankapunkt 8357887
tests: renamed tests to tests-2x
jankapunkt ca1daf5
tests: added Meteor 3.x tests project
jankapunkt 42c0a12
Merge branch 'migrate/3.0' of github.com:Meteor-Community-Packages/me…
jankapunkt 0dc7f37
tests: upgrade to Meteor 3.0-rc.2
jankapunkt 84ac404
build: upgrade versions for 3.0-rc.2 compatibility
jankapunkt 6c40537
publish 2.0.0-rc300.0
jankapunkt 48166ca
tests: upgrade to 3.0 rc.4
jankapunkt 81d79de
published 2.0.0-rc300.1
jankapunkt a176fbc
Meteor 3 release version updates
StorytellerCZ 9a4e16f
aldeed:simple-schema@2.0.0-rc.300.10
StorytellerCZ 24d68be
Update version for final release
StorytellerCZ 3dca88f
tests: upgraded to Meteor 3.0.2
jankapunkt 269d500
tests: removed 2x project
jankapunkt 10434ab
ci: update Meteor release
jankapunkt ee59859
build: update deps
jankapunkt 283b657
published 2.0.0
jankapunkt f5c1c49
Merge branch 'migrate/3.0' of github.com:Meteor-Community-Packages/me…
jankapunkt c7d945d
Merge branch 'master' of github.com:Meteor-Community-Packages/meteor-…
jankapunkt 9342ceb
docs: update jsdoc comments
jankapunkt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,56 +1,23 @@ | ||
| aldeed:simple-schema@1.13.1 | ||
| allow-deny@1.1.1 | ||
| aldeed:simple-schema@2.0.0-rc.300.10 | ||
| babel-compiler@7.10.5 | ||
| babel-runtime@1.5.1 | ||
| base64@1.0.12 | ||
| binary-heap@1.0.11 | ||
| boilerplate-generator@1.7.2 | ||
| callback-hook@1.5.1 | ||
| check@1.3.2 | ||
| ddp@1.4.1 | ||
| ddp-client@2.6.1 | ||
| ddp-common@1.4.0 | ||
| ddp-server@2.7.0 | ||
| diff-sequence@1.1.2 | ||
| dynamic-import@0.7.3 | ||
| ecmascript@0.16.8 | ||
| ecmascript-runtime@0.8.1 | ||
| ecmascript-runtime-client@0.12.1 | ||
| ecmascript-runtime-server@0.11.0 | ||
| ejson@1.1.3 | ||
| fetch@0.1.4 | ||
| geojson-utils@1.0.11 | ||
| http@1.4.4 | ||
| id-map@1.1.1 | ||
| inter-process-messaging@0.1.1 | ||
| lmieulet:meteor-coverage@3.2.0 | ||
| lmieulet:meteor-legacy-coverage@0.1.0 | ||
| local-test:aldeed:simple-schema@1.13.1 | ||
| logging@1.3.3 | ||
| meteor@1.11.4 | ||
| local-test:aldeed:simple-schema@2.0.0-rc.300.10 | ||
| meteor@1.11.5 | ||
| meteortesting:browser-tests@1.4.2 | ||
| meteortesting:mocha@2.1.0 | ||
| meteortesting:mocha-core@8.0.1 | ||
| minimongo@1.9.3 | ||
| modern-browsers@0.1.10 | ||
| modules@0.20.0 | ||
| modules-runtime@0.13.1 | ||
| mongo@1.16.8 | ||
| mongo-decimal@0.1.3 | ||
| mongo-dev-server@1.1.0 | ||
| mongo-id@1.0.8 | ||
| npm-mongo@4.17.2 | ||
| ordered-dict@1.1.0 | ||
| promise@0.12.2 | ||
| random@1.2.1 | ||
| react-fast-refresh@0.2.8 | ||
| reload@1.3.1 | ||
| retry@1.1.0 | ||
| routepolicy@1.1.1 | ||
| socket-stream-client@0.5.2 | ||
| tracker@1.3.3 | ||
| typescript@4.9.5 | ||
| underscore@1.0.13 | ||
| url@1.3.2 | ||
| webapp@1.13.6 | ||
| webapp-hashing@1.1.1 |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| export const asyncTimeout = ms => new Promise(resolve => { | ||
| setTimeout(() => resolve(), ms) | ||
| }) |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export const isPromiseLike = obj => obj && typeof obj.then === 'function' |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "include": [ | ||
| "**/packages/simple-schema/**/*", | ||
| "**/packages/*aldeed_simple_schema.js" | ||
| ] | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| node_modules/ | ||
| .coverage | ||
| packages/ |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # This file contains information which helps Meteor properly upgrade your | ||
| # app when you run 'meteor update'. You should check it into version control | ||
| # with your project. | ||
|
|
||
| notices-for-0.9.0 | ||
| notices-for-0.9.1 | ||
| 0.9.4-platform-file | ||
| notices-for-facebook-graph-api-2 | ||
| 1.2.0-standard-minifiers-package | ||
| 1.2.0-meteor-platform-split | ||
| 1.2.0-cordova-changes | ||
| 1.2.0-breaking-changes | ||
| 1.3.0-split-minifiers-package | ||
| 1.4.0-remove-old-dev-bundle-link | ||
| 1.4.1-add-shell-server-package | ||
| 1.4.3-split-account-service-packages | ||
| 1.5-add-dynamic-import-package | ||
| 1.7-split-underscore-from-meteor-base | ||
| 1.8.3-split-jquery-from-blaze |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| local |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # This file contains a token that is unique to your project. | ||
| # Check it into your repository along with the rest of this directory. | ||
| # It can be used for purposes such as: | ||
| # - ensuring you don't accidentally deploy one app on top of another | ||
| # - providing package authors with aggregated statistics | ||
|
|
||
| mfudc87vg05j.prele07sj42n |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Meteor packages used by this project, one per line. | ||
| # Check this file (and the other files in this directory) into your repository. | ||
| # | ||
| # 'meteor add' and 'meteor remove' will edit this file for you, | ||
| # but you can also edit it by hand. | ||
|
|
||
| meteor-base@1.5.1 # Packages every Meteor app needs to have | ||
| mobile-experience@1.1.1 # Packages for a great mobile UX | ||
| mongo@1.16.8 # The database Meteor supports right now | ||
| static-html@1.3.2 # Define static page content in .html files | ||
| reactive-var@1.0.12 # Reactive variable for tracker | ||
| tracker@1.3.3 # Meteor's client-side reactive programming library | ||
|
|
||
| standard-minifier-css@1.9.2 # CSS minifier run for production mode | ||
| standard-minifier-js@2.8.1 # JS minifier run for production mode | ||
| es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers | ||
| ecmascript@0.16.8 # Enable ECMAScript2015+ syntax in app code | ||
| shell-server@0.5.0 # Server-side component of the `meteor shell` command | ||
| meteortesting:mocha | ||
| underscore@1.6.0 |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| server | ||
| browser |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| METEOR@2.15 | ||
|
jankapunkt marked this conversation as resolved.
Outdated
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| allow-deny@1.1.1 | ||
| autoupdate@1.8.0 | ||
| babel-compiler@7.10.5 | ||
| babel-runtime@1.5.1 | ||
| base64@1.0.12 | ||
| binary-heap@1.0.11 | ||
| blaze-tools@1.1.4 | ||
| boilerplate-generator@1.7.2 | ||
| caching-compiler@1.2.2 | ||
| caching-html-compiler@1.2.2 | ||
| callback-hook@1.5.1 | ||
| check@1.3.2 | ||
| ddp@1.4.1 | ||
| ddp-client@2.6.1 | ||
| ddp-common@1.4.0 | ||
| ddp-server@2.7.0 | ||
| diff-sequence@1.1.2 | ||
| dynamic-import@0.7.3 | ||
| ecmascript@0.16.8 | ||
| ecmascript-runtime@0.8.1 | ||
| ecmascript-runtime-client@0.12.1 | ||
| ecmascript-runtime-server@0.11.0 | ||
| ejson@1.1.3 | ||
| es5-shim@4.8.0 | ||
| fetch@0.1.4 | ||
| geojson-utils@1.0.11 | ||
| hot-code-push@1.0.4 | ||
| html-tools@1.1.4 | ||
| htmljs@1.2.1 | ||
| http@1.4.4 | ||
| id-map@1.1.1 | ||
| inter-process-messaging@0.1.1 | ||
| launch-screen@2.0.0 | ||
| lmieulet:meteor-coverage@2.0.2 | ||
| logging@1.3.3 | ||
| meteor@1.11.5 | ||
| meteor-base@1.5.1 | ||
| meteortesting:browser-tests@0.2.0 | ||
| meteortesting:mocha@0.6.0 | ||
| minifier-css@1.6.4 | ||
| minifier-js@2.7.5 | ||
| minimongo@1.9.3 | ||
| mobile-experience@1.1.1 | ||
| mobile-status-bar@1.1.0 | ||
| modern-browsers@0.1.10 | ||
| modules@0.20.0 | ||
| modules-runtime@0.13.1 | ||
| mongo@1.16.9 | ||
| mongo-decimal@0.1.3 | ||
| mongo-dev-server@1.1.0 | ||
| mongo-id@1.0.8 | ||
| npm-mongo@4.17.2 | ||
| ordered-dict@1.1.0 | ||
| practicalmeteor:mocha-core@1.0.1 | ||
| promise@0.12.2 | ||
| random@1.2.1 | ||
| react-fast-refresh@0.2.8 | ||
| reactive-var@1.0.12 | ||
| reload@1.3.1 | ||
| retry@1.1.0 | ||
| routepolicy@1.1.1 | ||
| shell-server@0.5.0 | ||
| socket-stream-client@0.5.2 | ||
| spacebars-compiler@1.3.2 | ||
| standard-minifier-css@1.9.2 | ||
| standard-minifier-js@2.8.1 | ||
| static-html@1.3.2 | ||
| templating-tools@1.2.3 | ||
| tracker@1.3.3 | ||
| typescript@4.9.5 | ||
| underscore@1.6.1 | ||
| url@1.3.2 | ||
| webapp@1.13.8 | ||
| webapp-hashing@1.1.1 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.