Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Automattic/mongoose
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c83999b3b792d540763fb0b2dd61173730fbac3d
Choose a base ref
...
head repository: Automattic/mongoose
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e76c41cea9e772535ca620ec7bcc0bafa3107ed8
Choose a head ref

Commits on Aug 27, 2020

  1. Copy the full SHA
    3ec17eb View commit details
  2. ESLint changes

    biomorgoth committed Aug 27, 2020
    Copy the full SHA
    cf68cdc View commit details

Commits on Aug 28, 2020

  1. Copy the full SHA
    ef87058 View commit details

Commits on Sep 9, 2020

  1. Copy the full SHA
    b002f31 View commit details

Commits on Sep 10, 2020

  1. feat(document+model): make change tracking skip saving if new value m…

    …atches last saved value
    
    Fix #9396
    vkarpov15 committed Sep 10, 2020
    Copy the full SHA
    63fcb04 View commit details

Commits on Sep 13, 2020

  1. Copy the full SHA
    7a6f5b4 View commit details

Commits on Sep 19, 2020

  1. Copy the full SHA
    066cfa2 View commit details

Commits on Sep 22, 2020

  1. Copy the full SHA
    8eaec11 View commit details
  2. Copy the full SHA
    5fc6fe1 View commit details

Commits on Sep 23, 2020

  1. Copy the full SHA
    b532fc8 View commit details
  2. Copy the full SHA
    fa77b82 View commit details
  3. Copy the full SHA
    182d0b1 View commit details
  4. feat: basic queries re: #8108

    vkarpov15 committed Sep 23, 2020
    Copy the full SHA
    e540a13 View commit details
  5. Copy the full SHA
    2fc8af6 View commit details

Commits on Sep 24, 2020

  1. Copy the full SHA
    374a50b View commit details
  2. Copy the full SHA
    f9c733b View commit details
  3. Copy the full SHA
    af8c862 View commit details

Commits on Sep 25, 2020

  1. Merge pull request #9366 from biomorgoth/feature/cursor-populate-by-b…

    …atch-size
    
    Implement cursor population in batches, only when batchSize is passed
    vkarpov15 authored Sep 25, 2020
    Copy the full SHA
    6684621 View commit details

Commits on Oct 4, 2020

  1. Copy the full SHA
    9298b53 View commit details
  2. Copy the full SHA
    ab79675 View commit details
  3. Copy the full SHA
    9ab14c8 View commit details

Commits on Oct 5, 2020

  1. chore(index.d.ts): add type bindings for discriminator() and other …

    …static model functions re: #8108
    vkarpov15 committed Oct 5, 2020
    Copy the full SHA
    3389dcf View commit details
  2. Copy the full SHA
    be67bb9 View commit details
  3. Copy the full SHA
    3adad9e View commit details
  4. Copy the full SHA
    4ae032d View commit details
  5. Copy the full SHA
    4ffccd6 View commit details

Commits on Oct 6, 2020

  1. Copy the full SHA
    8be0155 View commit details

Commits on Oct 9, 2020

  1. Copy the full SHA
    9c7eb40 View commit details
  2. Copy the full SHA
    ec2f1d6 View commit details
  3. Copy the full SHA
    fa31bdf View commit details
  4. Copy the full SHA
    6cc6769 View commit details

Commits on Oct 10, 2020

  1. Copy the full SHA
    649172d View commit details

Commits on Oct 22, 2020

  1. Copy the full SHA
    a99a1dc View commit details
  2. feat(connection): add bufferTimeoutMS option that configures how long…

    … Mongoose will allow commands to buffer
    
    Fix #9469
    vkarpov15 committed Oct 22, 2020
    Copy the full SHA
    8868102 View commit details

Commits on Oct 23, 2020

  1. Copy the full SHA
    5e9a95f View commit details
  2. Copy the full SHA
    59f7332 View commit details
  3. Copy the full SHA
    d7aaa55 View commit details

Commits on Oct 24, 2020

  1. Copy the full SHA
    31b7621 View commit details
  2. Copy the full SHA
    3063f0b View commit details
  3. Copy the full SHA
    017758e View commit details
  4. Copy the full SHA
    07ae7f0 View commit details
  5. Copy the full SHA
    a715d02 View commit details
  6. Copy the full SHA
    9c899f5 View commit details
  7. Copy the full SHA
    5a4a377 View commit details
  8. style: fix lint

    vkarpov15 committed Oct 24, 2020
    Copy the full SHA
    738b7e5 View commit details
  9. Copy the full SHA
    370eadf View commit details

Commits on Oct 25, 2020

  1. Copy the full SHA
    32e8a1d View commit details
  2. Copy the full SHA
    01d24b8 View commit details

Commits on Oct 30, 2020

  1. Copy the full SHA
    b970e92 View commit details
  2. Copy the full SHA
    509c2d7 View commit details
Showing 337 changed files with 22,412 additions and 30,485 deletions.
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,9 @@
**What is the current behavior?**

**If the current behavior is a bug, please provide the steps to reproduce.**
<!-- If you can, provide a standalone script / gist to reproduce your issue -->
<!-- If you can, provide a standalone script / gist to reproduce your issue. -->

<!-- If you are using TypeScript, please include your `tsconfig.json` -->

**What is the expected behavior?**

60 changes: 60 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Test
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
node: [4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Upgrade Node <= 5 npm
run: npm install -g npm@3
if: ${{ matrix.node <= 5 }}

- name: Upgrade Node 7 npm
run: npm install -g npm@6
if: ${{ matrix.node == 7 }}

- run: npm install

- name: Setup
run: |
wget -q http://downloads.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-4.0.2.tgz
tar xf mongodb-linux-x86_64-ubuntu1804-4.0.2.tgz
mkdir -p ./data/db/27017 ./data/db/27000
printf "\n--timeout 8000" >> ./test/mocha.opts
./mongodb-linux-x86_64-ubuntu1804-4.0.2/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
sleep 2
mongod --version
mkdir ./test/typescript/node_modules
ln -s `pwd` ./test/typescript/node_modules/mongoose
echo `pwd`/mongodb-linux-x86_64-ubuntu1804-4.0.2/bin >> $GITHUB_PATH
- run: npm test

lint:
runs-on: ubuntu-latest
name: Linter
steps:
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 14

- run: npm install

- name: Linter
run: npm run lint
24 changes: 21 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ benchmarks/benchmarks
benchmarks/benchmarks2
benchmarks/benchmarks3
benchmarks/v8.log
benchmarks/typescript/**/*.js
.DS_Store
docs/*.json
docs/source/_docs
@@ -34,12 +35,29 @@ tools/31*

*.key

docs/*.html

# Webpack output
dist
test/files/main.js

package-lock.json

.config*
.config.js

# Compiled docs
docs/*.html
docs/tutorials/*.html
docs/typescript/*.html
docs/api/*.html
index.html

# Local Netlify folder
.netlify

# yarn package-lock
yarn.lock

# npm pack output
mongoose.tgz
mongoose-*.tgz

examples/ecommerce-netlify-functions/.netlify/state.json
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ examples/
.vscode
.eslintignore
CONTRIBUTING.md
HISTORY.md
History.*
format_deps.js
release-items.md
static.js
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

Loading