From 0ddafac56e06dde22b102af4c0bbdfffe580ad6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2024 22:28:56 +0200 Subject: [PATCH 1/7] chore(deps): bump codecov/codecov-action from 3 to 4 (#851) * chore(deps): bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Paul Damnhorns Co-authored-by: hasezoey --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d4eb516e..123222c0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -53,7 +53,9 @@ jobs: CI: true - name: Send codecov.io stats if: matrix.node-version == '14.x' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} publish: if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta' || startsWith(github.ref, 'refs/heads/old') From dacd9a5e80d513c6e40e0d2a546b6a07e1099857 Mon Sep 17 00:00:00 2001 From: hasezoey Date: Sat, 13 Jul 2024 13:45:01 +0200 Subject: [PATCH 2/7] docs: update links "nodkz.github.io" -> "typegoose.github.io" because of the repository transfer the old links point to 404 --- .github/ISSUE_TEMPLATE/bug.md | 2 +- .../ISSUE_TEMPLATE/distribution-support.md | 4 ++-- README.md | 22 +++++++++---------- docs/guides/error-warning-details.md | 2 +- .../MongoMemoryReplSet.test.ts.snap | 14 ++++++------ .../MongoMemoryServer.test.ts.snap | 14 ++++++------ .../src/util/errors.ts | 2 +- website/docusaurus.config.js | 2 +- 8 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 69564877..f3d4b8fe 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -14,7 +14,7 @@ Make sure you read [Mastering-Markdown](https://guides.github.com/features/maste - NodeJS: 0.0.0 - mongodb-memory-server-*: 0.0.0 -- mongodb(the binary version): 0.0.0 +- mongodb(the binary version): 0.0.0 - mongodb(the js package): 0.0.0 - mongoose: 0.0.0 - system: diff --git a/.github/ISSUE_TEMPLATE/distribution-support.md b/.github/ISSUE_TEMPLATE/distribution-support.md index 55573336..b8773592 100644 --- a/.github/ISSUE_TEMPLATE/distribution-support.md +++ b/.github/ISSUE_TEMPLATE/distribution-support.md @@ -9,7 +9,7 @@ assignees: 'hasezoey' ## Versions @@ -72,7 +72,7 @@ console.log("Arch", os.arch()); ## Current Error - + ```txt Paste Error in Here diff --git a/README.md b/README.md index 91661e52..cf8276ed 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This package spins up an actual/real MongoDB server programmatically from within 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`) -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. +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. 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). @@ -82,11 +82,11 @@ On Linux, you will also need `libcurl4` (or `libcurl3` on some older distro vers ### Choose the Correct Package -[Choose the right package for the task](https://nodkz.github.io/mongodb-memory-server/docs/guides/quick-start-guide#choose-the-right-package) +[Choose the right package for the task](https://typegoose.github.io/mongodb-memory-server/docs/guides/quick-start-guide#choose-the-right-package) ### Configuring which mongod binary to use -The default behavior is that version `6.0.14` 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: +The default behavior is that version `6.0.14` 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: ```sh export MONGOMS_DOWNLOAD_URL=https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-4.2.8.tgz @@ -129,7 +129,7 @@ const mongod = new MongoMemoryServer({ }, binary?: { version?: string, // by default '6.0.14' - downloadDir?: string, // see the documentation on what is chosen by default https://nodkz.github.io/mongodb-memory-server/docs/api/config-options#download_dir + downloadDir?: string, // see the documentation on what is chosen by default https://typegoose.github.io/mongodb-memory-server/docs/api/config-options#download_dir platform?: string, // by default os.platform() arch?: string, // by default os.arch() checkMD5?: boolean, // by default false OR process.env.MONGOMS_MD5_CHECK @@ -217,7 +217,7 @@ const replSet = new MongoMemoryReplSet({ ### Config Options -[Documentation of Config Options](https://nodkz.github.io/mongodb-memory-server/docs/api/config-options) +[Documentation of Config Options](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options) ### Simple test with MongoClient in Jest @@ -247,13 +247,13 @@ const mongoServer = await MongoMemoryServer.create(); ### Test Runner Examples -[Documentation for Test Runner Integration Examples](https://nodkz.github.io/mongodb-memory-server/docs/guides/integration-examples/test-runners) +[Documentation for Test Runner Integration Examples](https://typegoose.github.io/mongodb-memory-server/docs/guides/integration-examples/test-runners) ### Docker Alpine There isn't currently an official MongoDB release for alpine linux. This means that we can't pull binaries for Alpine (or any other platform that isn't officially supported by MongoDB), but you can use a Docker image that already has mongod -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. +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. ### Enable Debug Mode @@ -275,7 +275,7 @@ or } ``` -Also see the [Enable Debug Mode](https://nodkz.github.io/mongodb-memory-server/docs/guides/enable-debug-mode) Guide. +Also see the [Enable Debug Mode](https://typegoose.github.io/mongodb-memory-server/docs/guides/enable-debug-mode) Guide. ## Contributing @@ -287,9 +287,9 @@ To ask questions or just talk with us, [join our Discord Server](https://discord ## Documentation -- [Documentation](https://nodkz.github.io/mongodb-memory-server/docs/api/index-api) -- [Quick start guide](https://nodkz.github.io/mongodb-memory-server/docs/guides/quick-start-guide/) -- [Known Issues](https://nodkz.github.io/mongodb-memory-server/docs/guides/known-issues) +- [Documentation](https://typegoose.github.io/mongodb-memory-server/docs/api/index-api) +- [Quick start guide](https://typegoose.github.io/mongodb-memory-server/docs/guides/quick-start-guide/) +- [Known Issues](https://typegoose.github.io/mongodb-memory-server/docs/guides/known-issues) ## Credits diff --git a/docs/guides/error-warning-details.md b/docs/guides/error-warning-details.md index d26eccf4..0d49f4f3 100644 --- a/docs/guides/error-warning-details.md +++ b/docs/guides/error-warning-details.md @@ -10,7 +10,7 @@ Example: ```txt Incorrect State for operation: "${gotState}", allowed States: "[${wantedStates.join(',')}]" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything ``` Details: diff --git a/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryReplSet.test.ts.snap b/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryReplSet.test.ts.snap index ee783ed7..2f56aa61 100644 --- a/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryReplSet.test.ts.snap +++ b/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryReplSet.test.ts.snap @@ -11,19 +11,19 @@ exports[`MongoMemoryReplSet getters & setters setter of "replSetOpts" should thr exports[`MongoMemoryReplSet getters & setters state errors setter of "binaryOpts" should throw an error if state is not "stopped" 1`] = ` "Incorrect State for operation: \\"init\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryReplSet getters & setters state errors setter of "instanceOpts" should throw an error if state is not "stopped" 1`] = ` "Incorrect State for operation: \\"init\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryReplSet getters & setters state errors setter of "replSetOpts" should throw an error if state is not "stopped" 1`] = ` "Incorrect State for operation: \\"init\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryReplSet server version specific should warn if "ephemeralForTest" is used explicitly in mongodb 7.0 1`] = ` @@ -38,7 +38,7 @@ This warning is because the mentioned storage engine is explicitly used and mong exports[`single server replset "_initReplSet" should throw an error if _state is not "init" 1`] = ` "Incorrect State for operation: \\"running\\", allowed States: \\"[init]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`single server replset "_initReplSet" should throw if server count is 0 or less 1`] = `"One or more servers are required."`; @@ -46,7 +46,7 @@ exports[`single server replset "_initReplSet" should throw if server count is 0 exports[`single server replset "getUri" should throw an error if _state is not "running" or "init" 1`] = ` "Incorrect State for operation: \\"stopped\\", allowed States: \\"[running,init]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`single server replset "new" should throw an error if replSet count is 0 or less 1`] = `"ReplSet Count needs to be 1 or higher! (specified count: \\"0\\")"`; @@ -54,11 +54,11 @@ exports[`single server replset "new" should throw an error if replSet count is 0 exports[`single server replset "start" should throw an error if _state is not "stopped" 1`] = ` "Incorrect State for operation: \\"running\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`single server replset "waitUntilRunning" should throw an error if _state is not "init" 1`] = ` "Incorrect State for operation: \\"stopped\\", allowed States: \\"[running,init]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; diff --git a/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryServer.test.ts.snap b/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryServer.test.ts.snap index da3d8328..075bff64 100644 --- a/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryServer.test.ts.snap +++ b/packages/mongodb-memory-server-core/src/__tests__/__snapshots__/MongoMemoryServer.test.ts.snap @@ -5,13 +5,13 @@ exports[`MongoMemoryServer "createAuth" should throw an error if called without exports[`MongoMemoryServer cleanup() should not support boolean arguments 1`] = ` "Incorrect State for operation: \\"new\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer cleanup() should throw an error if state is not "stopped" 1`] = ` "Incorrect State for operation: \\"new\\", allowed States: \\"[stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer ensureInstance() should throw an error if "instanceInfo" is undefined but "_state" is "running" 1`] = `"\\"instanceInfo\\" was undefined when expected to be defined! (where: \\"MongoMemoryServer.ensureInstance (state: running)\\")"`; @@ -21,7 +21,7 @@ exports[`MongoMemoryServer ensureInstance() should throw an error if no "instanc exports[`MongoMemoryServer ensureInstance() should throw an error if the given "_state" has no case 1`] = ` "Incorrect State for operation: \\"not Existing\\", allowed States: \\"[running,new,stopped,starting]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer getStartOptions() should work with -latest versions [#841] 1`] = ` @@ -35,13 +35,13 @@ Array [ exports[`MongoMemoryServer getUri() should throw an state error, if not starting or running 1`] = ` "Incorrect State for operation: \\"new\\", allowed States: \\"[running,starting]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer getUri() should throw an state error, if not starting or running 2`] = ` "Incorrect State for operation: \\"new\\", allowed States: \\"[running,starting]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer server version specific should warn if "ephemeralForTest" is used explicitly in mongodb 7.0 1`] = ` @@ -56,13 +56,13 @@ This warning is because the mentioned storage engine is explicitly used and mong exports[`MongoMemoryServer start() should throw an error if state is not "new" or "stopped" 1`] = ` "Incorrect State for operation: \\"starting\\", allowed States: \\"[new,stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer start() should throw an error if state is not "new" or "stopped" 2`] = ` "Incorrect State for operation: \\"running\\", allowed States: \\"[new,stopped]\\" This may be because of using a v6.x way of calling functions, look at the following guide if anything applies: -https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" +https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything" `; exports[`MongoMemoryServer stop() should not support boolean arguments 1`] = `"Unsupported argument type: boolean"`; diff --git a/packages/mongodb-memory-server-core/src/util/errors.ts b/packages/mongodb-memory-server-core/src/util/errors.ts index 9939ba0a..0af50573 100644 --- a/packages/mongodb-memory-server-core/src/util/errors.ts +++ b/packages/mongodb-memory-server-core/src/util/errors.ts @@ -10,7 +10,7 @@ export class StateError extends Error { ',' )}]"\n` + 'This may be because of using a v6.x way of calling functions, look at the following guide if anything applies:\n' + - 'https://nodkz.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything' + 'https://typegoose.github.io/mongodb-memory-server/docs/guides/migration/migrate7#no-function-other-than-start-create-ensureinstance-will-be-starting-anything' ); } } diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index acd3d846..41c631d9 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -15,7 +15,7 @@ module.exports = { title: 'mongodb-memory-server', tagline: 'Spinning up mongod in memory for fast tests. If you run tests in parallel this lib helps to spin up dedicated mongodb servers for every test file in MacOS, *nix, Windows or CI environments (in most cases with zero-config).', - url: 'https://nodkz.github.io', + url: 'https://typegoose.github.io', baseUrl: baseUrl, favicon: 'img/favicon.ico', organizationName: 'nodkz', From 2d5db7e15b1327b6dcc6b9d63f4e997909da66e6 Mon Sep 17 00:00:00 2001 From: hasezoey Date: Sat, 13 Jul 2024 13:49:41 +0200 Subject: [PATCH 3/7] docs: update links "github.com/nodkz" -> "github.com/typegoose" github automatically redirects those links, but it is still better the update them --- .github/ISSUE_TEMPLATE/bug.md | 2 +- README.md | 10 +++++----- docs/api/classes/mongo-instance.md | 2 +- docs/api/interfaces/mongo-memory-server-createuser.md | 2 +- docs/guides/error-warning-details.md | 4 ++-- docs/guides/migration/migrate7.md | 4 ++-- docs/guides/migration/migrate8.md | 2 +- docs/guides/migration/migrate9.md | 2 +- package.json | 2 +- packages/mongodb-memory-server-core/README.md | 6 +++--- packages/mongodb-memory-server-core/package.json | 6 +++--- .../src/util/DryMongoBinary.ts | 2 +- .../src/util/MongoBinaryDownloadUrl.ts | 4 ++-- .../src/util/MongoInstance.ts | 2 +- .../src/util/__tests__/MongoBinaryDownloadUrl.test.ts | 4 ++-- .../src/util/__tests__/MongoInstance.test.ts | 6 +++--- .../src/util/getos/__tests__/getos.test.ts | 2 +- packages/mongodb-memory-server-core/src/util/utils.ts | 4 ++-- packages/mongodb-memory-server-global-4.0/README.md | 6 +++--- packages/mongodb-memory-server-global-4.0/package.json | 4 ++-- packages/mongodb-memory-server-global-4.2/README.md | 6 +++--- packages/mongodb-memory-server-global-4.2/package.json | 4 ++-- packages/mongodb-memory-server-global-4.4/README.md | 6 +++--- packages/mongodb-memory-server-global-4.4/package.json | 4 ++-- packages/mongodb-memory-server-global/README.md | 6 +++--- packages/mongodb-memory-server-global/package.json | 4 ++-- packages/mongodb-memory-server/README.md | 6 +++--- packages/mongodb-memory-server/package.json | 4 ++-- website/docusaurus.config.js | 10 +++++----- 29 files changed, 63 insertions(+), 63 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index f3d4b8fe..0a3967bf 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -40,7 +40,7 @@ code here ## Debug Output