Skip to content
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

Support both Meteor.Collection.ObjectID() and the default Meteor ID strings #1

Merged
merged 13 commits into from
Aug 27, 2014
Merged

Commits on Aug 22, 2014

  1. Fix upserting issue due to invalid ObjectID

    This fixes an issue in ngMeteor-collections.js that would cause
    upserting to fail because of an invalid ObjectID being passed to
    collection.update() (as first argument).
    leoetlino committed Aug 22, 2014
    Configuration menu
    Copy the full SHA
    327a757 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2014

  1. Fix removing issue due to invalid ObjectID

    This fixes an issue in ngMeteor-collections.js that would cause
    removing to fail because of an invalid ObjectID being passed to
    collection.remove() (as first argument).
    
    Same fix for upserting.
    leoetlino committed Aug 23, 2014
    Configuration menu
    Copy the full SHA
    7af1e4a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d76edc6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1fe9f16 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    600efef View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    98c390e View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2014

  1. Construct the correct ObjectId depending on item ID

    There seems to be two types of ObjectId:
    - A simple string
    - Meteor's ObjectId.
    
    This commit allows ngMeteor to handle both types.
    leoetlino committed Aug 24, 2014
    Configuration menu
    Copy the full SHA
    97e3029 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from Urigo/v0.2

    Merge urigo/ngMeteor v0.2
    leoetlino committed Aug 24, 2014
    Configuration menu
    Copy the full SHA
    ecae371 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2014

  1. Revert "feat(Meteor0.8.3): Support Meteor 0.8.3 and prior for ngMeteo…

    …r v0.2"
    
    This reverts commit 27382bb, as it
    seems to be causing issues on 0.8.3 and on versions prior to 0.8.2.
    leoetlino committed Aug 25, 2014
    Configuration menu
    Copy the full SHA
    21e6839 View commit details
    Browse the repository at this point in the history
  2. Revert "Revert "feat(Meteor0.8.3): Support Meteor 0.8.3 and prior for…

    … ngMeteor v0.2""
    
    This reverts commit 21e6839.
    leoetlino committed Aug 25, 2014
    Configuration menu
    Copy the full SHA
    c8928ce View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2014

  1. Remove $$hashKeys when upserting

    $$hashKeys will sometimes cause upserting to fail with the below error:
    > Error: key $$hashKey must not start with '$'
    leoetlino committed Aug 26, 2014
    Configuration menu
    Copy the full SHA
    8e1f524 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0303840 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d750ae View commit details
    Browse the repository at this point in the history