You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Make sure you read [Mastering-Markdown](https://guides.github.com/features/maste
14
14
15
15
- NodeJS: 0.0.0
16
16
- mongodb-memory-server-*: 0.0.0 <!--"latest" is not a version-->
17
-
- mongodb(the binary version): 0.0.0 <!--Let this stay at "0", when assuming default, also see https://nodkz.github.io/mongodb-memory-server/docs/guides/mongodb-server-versions#mongodb-memory-server-core-version-table -->
17
+
- mongodb(the binary version): 0.0.0 <!--Let this stay at "0", when assuming default, also see https://typegoose.github.io/mongodb-memory-server/docs/guides/mongodb-server-versions#mongodb-memory-server-core-version-table -->
18
18
- mongodb(the js package): 0.0.0 <!--Not required when having "mongoose" set-->
19
19
- mongoose: 0.0.0 <!--Remove this if not used-->
20
20
- system: <!--One of: Windows, MacOS, Linux (with distro and distro version)-->
@@ -40,7 +40,7 @@ code here
40
40
## Debug Output
41
41
42
42
<!--
43
-
In most cases the [Debug Output](https://github.com/nodkz/mongodb-memory-server#enable-debug-mode) would be helpful
43
+
In most cases the [Debug Output](https://github.com/typegoose/mongodb-memory-server#enable-debug-mode) would be helpful
44
44
Please provide the debug output in one of the following ways (the higher the more its preferred):
45
45
(replace the `<details>` section with the url, if a URL is needed)
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/distribution-support.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ assignees: 'hasezoey'
9
9
<!--
10
10
Make sure you read [Mastering-Markdown](https://guides.github.com/features/mastering-markdown/)
11
11
12
-
List of currently [Supported Systems](https://nodkz.github.io/mongodb-memory-server/docs/guides/supported-systems)
12
+
List of currently [Supported Systems](https://typegoose.github.io/mongodb-memory-server/docs/guides/supported-systems)
13
13
-->
14
14
15
15
## Versions
@@ -72,7 +72,7 @@ console.log("Arch", os.arch());
72
72
## Current Error
73
73
74
74
<!--Please include the current error you are having, if any-->
75
-
<!--Also if you see any "Falling back to legacy MongoDB build!" please include Debug Output, see https://nodkz.github.io/mongodb-memory-server/docs/guides/enable-debug-mode -->
75
+
<!--Also if you see any "Falling back to legacy MongoDB build!" please include Debug Output, see https://typegoose.github.io/mongodb-memory-server/docs/guides/enable-debug-mode -->
@@ -14,7 +14,7 @@ This package spins up an actual/real MongoDB server programmatically from within
14
14
15
15
On install, this [package downloads](#configuring-which-mongod-binary-to-use) the latest MongoDB binaries and saves them to a cache folder. (only `mongodb-memory-server-core` does not download on `postinstall`)
16
16
17
-
On starting a new instance of the memory server, if the binary cannot be found, it will be auto-downloaded (if [`RUNTIME_DOWNLOAD`](https://nodkz.github.io/mongodb-memory-server/docs/api/config-options#runtime_download) option is truthy), thus the first run may take some time. All further runs will be fast, because they will use the downloaded binaries.
17
+
On starting a new instance of the memory server, if the binary cannot be found, it will be auto-downloaded (if [`RUNTIME_DOWNLOAD`](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options#runtime_download) option is truthy), thus the first run may take some time. All further runs will be fast, because they will use the downloaded binaries.
18
18
19
19
This package automatically downloads binaries from [https://fastdl.mongodb.org/](https://fastdl.mongodb.org/) according to your operating system. You can see all available versions for [Linux](https://www.mongodb.org/dl/linux) (Ubuntu, RHEL, Debian, SUSE, Amazon), [OSX](https://www.mongodb.org/dl/osx), and [Windows](https://www.mongodb.org/dl/win32).
20
20
@@ -82,11 +82,11 @@ On Linux, you will also need `libcurl4` (or `libcurl3` on some older distro vers
82
82
83
83
### Choose the Correct Package
84
84
85
-
[Choose the right package for the task](https://nodkz.github.io/mongodb-memory-server/docs/guides/quick-start-guide#choose-the-right-package)
85
+
[Choose the right package for the task](https://typegoose.github.io/mongodb-memory-server/docs/guides/quick-start-guide#choose-the-right-package)
86
86
87
87
### Configuring which mongod binary to use
88
88
89
-
The default behavior is that version `7.0.9` for your OS will be downloaded. By setting [Environment variables](https://nodkz.github.io/mongodb-memory-server/docs/api/config-options) you are able to specify which version and binary will be downloaded:
89
+
The default behavior is that version `7.0.9` for your OS will be downloaded. By setting [Environment variables](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options) you are able to specify which version and binary will be downloaded:
@@ -129,7 +129,7 @@ const mongod = new MongoMemoryServer({
129
129
},
130
130
binary?: {
131
131
version?: string, // by default '7.0.9'
132
-
downloadDir?: string, // see the documentation on what is chosen by default https://nodkz.github.io/mongodb-memory-server/docs/api/config-options#download_dir
132
+
downloadDir?: string, // see the documentation on what is chosen by default https://typegoose.github.io/mongodb-memory-server/docs/api/config-options#download_dir
133
133
platform?: string, // by default os.platform()
134
134
arch?: string, // by default os.arch()
135
135
checkMD5?: boolean, // by default false OR process.env.MONGOMS_MD5_CHECK
@@ -217,15 +217,15 @@ const replSet = new MongoMemoryReplSet({
217
217
218
218
### Config Options
219
219
220
-
[Documentation of Config Options](https://nodkz.github.io/mongodb-memory-server/docs/api/config-options)
220
+
[Documentation of Config Options](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options)
221
221
222
222
### Simple test with MongoClient in Jest
223
223
224
-
A example test file for a *single*[MongoMemoryServer](https://github.com/nodkz/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/singleDB.test.ts) within jest.
224
+
A example test file for a *single*[MongoMemoryServer](https://github.com/typegoose/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/singleDB.test.ts) within jest.
225
225
226
-
A example test file for *multiple*[MongoMemoryServer](https://github.com/nodkz/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/multipleDB.test.ts) within jest.
226
+
A example test file for *multiple*[MongoMemoryServer](https://github.com/typegoose/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/multipleDB.test.ts) within jest.
227
227
228
-
A example test file for a *single*[MongoMemoryReplSet](https://github.com/nodkz/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/replset-multi.test.ts) within jest.
228
+
A example test file for a *single*[MongoMemoryReplSet](https://github.com/typegoose/mongodb-memory-server/blob/master/packages/mongodb-memory-server-core/src/__tests__/replset-multi.test.ts) within jest.
[Documentation for Test Runner Integration Examples](https://nodkz.github.io/mongodb-memory-server/docs/guides/integration-examples/test-runners)
250
+
[Documentation for Test Runner Integration Examples](https://typegoose.github.io/mongodb-memory-server/docs/guides/integration-examples/test-runners)
251
251
252
252
### Docker Alpine
253
253
254
254
There isn't currently an official MongoDB release for alpine linux. This means that we can't pull binaries for Alpine
255
255
(or any other platform that isn't officially supported by MongoDB), but you can use a Docker image that already has mongod
256
-
built in and then set the [`MONGOMS_SYSTEM_BINARY`](https://nodkz.github.io/mongodb-memory-server/docs/api/config-options#system_binary) variable to point at that binary. This should allow you to use `mongodb-memory-server` on any system on which you can install mongod manually.
256
+
built in and then set the [`MONGOMS_SYSTEM_BINARY`](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options#system_binary) variable to point at that binary. This should allow you to use `mongodb-memory-server` on any system on which you can install mongod manually.
257
257
258
258
### Enable Debug Mode
259
259
@@ -275,7 +275,7 @@ or
275
275
}
276
276
```
277
277
278
-
Also see the [Enable Debug Mode](https://nodkz.github.io/mongodb-memory-server/docs/guides/enable-debug-mode) Guide.
278
+
Also see the [Enable Debug Mode](https://typegoose.github.io/mongodb-memory-server/docs/guides/enable-debug-mode) Guide.
279
279
280
280
## Contributing
281
281
@@ -287,9 +287,9 @@ To ask questions or just talk with us, [join our Discord Server](https://discord
Currently does not check if the instance is in a correct state and just resets all values, see [#662](https://github.com/nodkz/mongodb-memory-server/issues/662).
45
+
Currently does not check if the instance is in a correct state and just resets all values, see [#662](https://github.com/typegoose/mongodb-memory-server/issues/662).
Copy file name to clipboardExpand all lines: docs/api/interfaces/mongo-memory-server-createuser.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ API Documentation of `CreateUser`-Interface
7
7
8
8
## Values
9
9
10
-
This Interface inherits most values from the `CreateUserMongoDB` interface, which is a interface for the `createUser` command manually types, see [#663](https://github.com/nodkz/mongodb-memory-server/issues/663) for tracking on switching to native interface.
10
+
This Interface inherits most values from the `CreateUserMongoDB` interface, which is a interface for the `createUser` command manually types, see [#663](https://github.com/typegoose/mongodb-memory-server/issues/663) for tracking on switching to native interface.
11
11
12
12
Because most values are inherited, only the new ones and important ones are described here.
@@ -186,11 +186,11 @@ The Linux distro in use does not have a mapping for a mongodb version, please re
186
186
Code: `MMS001`
187
187
Message: `mongodb-memory-server will fully drop support for ia32 in 9.0`
188
188
189
-
In the major version `9.0` MMS will fully drop support for the architecture `ia32` (`i386` / `i686`), because MongoDB stopped supporting the architecture past 3.x, and MMS never full supported 3.6 or lower anyway, see [#638 for tracking](https://github.com/nodkz/mongodb-memory-server/issues/638).
189
+
In the major version `9.0` MMS will fully drop support for the architecture `ia32` (`i386` / `i686`), because MongoDB stopped supporting the architecture past 3.x, and MMS never full supported 3.6 or lower anyway, see [#638 for tracking](https://github.com/typegoose/mongodb-memory-server/issues/638).
190
190
191
191
### MMS002
192
192
193
193
Code: `MMS002`
194
194
Message: `mongodb-memory-server will fully drop support for sunos in 9.0`
195
195
196
-
In the major version `9.0` MMS will fully drop support for the platfrom `sunos`, because MMS never actually supported `sunos` in the first place and Mongodb has stopped providing builds after ~3.4, see [#661 for tracking](https://github.com/nodkz/mongodb-memory-server/issues/661).
196
+
In the major version `9.0` MMS will fully drop support for the platfrom `sunos`, because MMS never actually supported `sunos` in the first place and Mongodb has stopped providing builds after ~3.4, see [#661 for tracking](https://github.com/typegoose/mongodb-memory-server/issues/661).
Copy file name to clipboardExpand all lines: docs/guides/migration/migrate7.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: 'Migrate to version 7.0.0'
6
6
Here are the Important changes made for 7.0.0
7
7
8
8
:::caution Important, Read this first
9
-
This Guide is written for migration from version `6.9.6` to `7.0.0`, for versions `>7.0.0 <8.0.0`, please consult the [CHANGELOG](https://github.com/nodkz/mongodb-memory-server/blob/master/CHANGELOG.md)
9
+
This Guide is written for migration from version `6.9.6` to `7.0.0`, for versions `>7.0.0 <8.0.0`, please consult the [CHANGELOG](https://github.com/typegoose/mongodb-memory-server/blob/master/CHANGELOG.md)
10
10
:::
11
11
12
12
## Requirement Changes
@@ -84,7 +84,7 @@ This also includes function renames:
84
84
85
85
This was changed to allow mongodb and mongoose URI's to work at the same time (they slightly differ).
86
86
87
-
[See the code comment for more information](https://github.com/nodkz/mongodb-memory-server/blob/3624253f509a54cff04997943894b9eb7e7e64fe/packages/mongodb-memory-server-core/src/util/utils.ts#L13-L17)
87
+
[See the code comment for more information](https://github.com/typegoose/mongodb-memory-server/blob/3624253f509a54cff04997943894b9eb7e7e64fe/packages/mongodb-memory-server-core/src/util/utils.ts#L13-L17)
Copy file name to clipboardExpand all lines: docs/guides/migration/migrate8.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: 'Migrate to version 8.0.0'
6
6
Here are the Important changes made for 8.0.0
7
7
8
8
:::caution Important, Read this first
9
-
This Guide is written for migration from version `7.6.0` to `8.0.0`, for versions `>8.0.0 <9.0.0`, please consult the [CHANGELOG](https://github.com/nodkz/mongodb-memory-server/blob/master/CHANGELOG.md)
9
+
This Guide is written for migration from version `7.6.0` to `8.0.0`, for versions `>8.0.0 <9.0.0`, please consult the [CHANGELOG](https://github.com/typegoose/mongodb-memory-server/blob/master/CHANGELOG.md)
0 commit comments