1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00

Compare commits

...

6 Commits

Author SHA1 Message Date
AnxietyisReal
5a6c5a4a9c Update couple packages 2023-07-20 17:31:59 +10:00
Toast
4f978108db
Update PR title 2023-07-20 17:29:16 +10:00
github-actions[bot]
114aded958
Combined PR (#8)
* Bump @octokit/rest from 19.0.13 to 20.0.1

Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 19.0.13 to 20.0.1.
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](https://github.com/octokit/rest.js/compare/v19.0.13...v20.0.1)

---
updated-dependencies:
- dependency-name: "@octokit/rest"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @discord-player/extractor from 4.3.1 to 4.4.0

Bumps [@discord-player/extractor](https://github.com/Androz2091/discord-player) from 4.3.1 to 4.4.0.
- [Release notes](https://github.com/Androz2091/discord-player/releases)
- [Commits](https://github.com/Androz2091/discord-player/compare/@discord-player/extractor@4.3.1...@discord-player/extractor@4.4.0)

---
updated-dependencies:
- dependency-name: "@discord-player/extractor"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @types/node from 20.3.2 to 20.4.2

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.3.2 to 20.4.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump mongoose from 7.3.3 to 7.4.0

Bumps [mongoose](https://github.com/Automattic/mongoose) from 7.3.3 to 7.4.0.
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Automattic/mongoose/compare/7.3.3...7.4.0)

---
updated-dependencies:
- dependency-name: mongoose
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-20 17:26:52 +10:00
Toast
3ff38ddc0c
Update combine-dependabot-prs.yml 2023-07-20 17:25:11 +10:00
Toast
99f8709fca
Create combine-dependabot-prs.yml 2023-07-20 17:19:35 +10:00
Toast
3632aab1ca
Create dependabot.yml 2023-07-20 17:08:53 +10:00
4 changed files with 282 additions and 115 deletions

19
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,19 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
time: "12:00"
timezone: "Australia/NSW"
assignees:
- "AnxietyisReal"
labels:
- "dependencies"
open-pull-requests-limit: 8
rebase-strategy: auto

View File

@ -0,0 +1,152 @@
name: 'Combine Dependabot PRs'
# Controls when the action will run - in this case triggered manually
on:
workflow_dispatch:
inputs:
branchPrefix:
description: 'Branch prefix to find combinable PRs based on'
required: true
default: 'dependabot'
mustBeGreen:
description: 'Only combine PRs that are green (status is success). Set to false if repo does not run checks'
type: boolean
required: true
default: false
combineBranchName:
description: 'Name of the branch to combine PRs into'
required: true
default: 'combined-prs'
ignoreLabel:
description: 'Exclude PRs with this label'
required: true
default: 'nocombine'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "combine-prs"
combine-prs:
# The type of runner that the job will run on
runs-on: ubuntu-22.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/github-script@v6
id: create-combined-pr
name: Create Combined PR
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const pulls = await github.paginate('GET /repos/:owner/:repo/pulls', {
owner: context.repo.owner,
repo: context.repo.repo
});
let branchesAndPRStrings = [];
let baseBranch = null;
let baseBranchSHA = null;
for (const pull of pulls) {
const branch = pull['head']['ref'];
console.log('Pull for branch: ' + branch);
if (branch.startsWith('${{ github.event.inputs.branchPrefix }}')) {
console.log('Branch matched prefix: ' + branch);
let statusOK = true;
if(${{ github.event.inputs.mustBeGreen }}) {
console.log('Checking green status: ' + branch);
const stateQuery = `query($owner: String!, $repo: String!, $pull_number: Int!) {
repository(owner: $owner, name: $repo) {
pullRequest(number:$pull_number) {
commits(last: 1) {
nodes {
commit {
statusCheckRollup {
state
}
}
}
}
}
}
}`
const vars = {
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: pull['number']
};
const result = await github.graphql(stateQuery, vars);
const [{ commit }] = result.repository.pullRequest.commits.nodes;
const state = commit.statusCheckRollup.state
console.log('Validating status: ' + state);
if(state != 'SUCCESS') {
console.log('Discarding ' + branch + ' with status ' + state);
statusOK = false;
}
}
console.log('Checking labels: ' + branch);
const labels = pull['labels'];
for(const label of labels) {
const labelName = label['name'];
console.log('Checking label: ' + labelName);
if(labelName == '${{ github.event.inputs.ignoreLabel }}') {
console.log('Discarding ' + branch + ' with label ' + labelName);
statusOK = false;
}
}
if (statusOK) {
console.log('Adding branch to array: ' + branch);
const prString = '#' + pull['number'] + ' ' + pull['title'];
branchesAndPRStrings.push({ branch, prString });
baseBranch = pull['base']['ref'];
baseBranchSHA = pull['base']['sha'];
}
}
}
if (branchesAndPRStrings.length == 0) {
core.setFailed('No PRs/branches matched criteria');
return;
}
try {
await github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/heads/' + '${{ github.event.inputs.combineBranchName }}',
sha: baseBranchSHA
});
} catch (error) {
console.log(error);
core.setFailed('Failed to create combined branch - maybe a branch by that name already exists?');
return;
}
let combinedPRs = [];
let mergeFailedPRs = [];
for(const { branch, prString } of branchesAndPRStrings) {
try {
await github.rest.repos.merge({
owner: context.repo.owner,
repo: context.repo.repo,
base: '${{ github.event.inputs.combineBranchName }}',
head: branch,
});
console.log('Merged branch ' + branch);
combinedPRs.push(prString);
} catch (error) {
console.log('Failed to merge branch ' + branch);
mergeFailedPRs.push(prString);
}
}
console.log('Creating combined PR');
const combinedPRsString = combinedPRs.join('\n');
let body = '✅ This PR was created by the Combine Dependabot PRs action by combining the following PRs:\n' + combinedPRsString;
if(mergeFailedPRs.length > 0) {
const mergeFailedPRsString = mergeFailedPRs.join('\n');
body += '\n\n⚠ The following PRs were left out due to merge conflicts:\n' + mergeFailedPRsString
}
await github.rest.pulls.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'Combined Dependabot PR',
head: '${{ github.event.inputs.combineBranchName }}',
base: baseBranch,
body: body
});

214
package-lock.json generated
View File

@ -18,26 +18,26 @@
"linux" "linux"
], ],
"dependencies": { "dependencies": {
"@discord-player/extractor": "4.3.1", "@discord-player/extractor": "4.4.0",
"@discordjs/opus": "0.9.0", "@discordjs/opus": "0.9.0",
"@ffmpeg-installer/ffmpeg": "1.1.0", "@ffmpeg-installer/ffmpeg": "1.1.0",
"@octokit/auth-token": "4.0.0", "@octokit/auth-token": "4.0.0",
"@octokit/rest": "19.0.13", "@octokit/rest": "20.0.1",
"axios": "1.4.0", "axios": "1.4.0",
"canvas": "2.11.2", "canvas": "2.11.2",
"discord-player": "6.6.0", "discord-player": "6.6.1",
"discord.js": "14.11.0", "discord.js": "14.11.0",
"moment": "2.29.4", "moment": "2.29.4",
"mongoose": "7.3.3", "mongoose": "7.4.0",
"ms": "2.1.3", "ms": "2.1.3",
"systeminformation": "5.18.6", "systeminformation": "5.18.7",
"typescript": "5.1.6", "typescript": "5.1.6",
"xml-js": "1.6.11", "xml-js": "1.6.11",
"ytdl-core": "4.11.5" "ytdl-core": "4.11.5"
}, },
"devDependencies": { "devDependencies": {
"@types/ms": "0.7.31", "@types/ms": "0.7.31",
"@types/node": "20.3.2" "@types/node": "20.4.2"
}, },
"engines": { "engines": {
"node": ">=18.12.0" "node": ">=18.12.0"
@ -49,9 +49,9 @@
"integrity": "sha512-U86em1cMtopXVuKFDxP8J2DcNOqwCAsYQ2tkzPoJvchsrezcI2cgvN3jtGt9FFECP3pLvSz96ZB9FOHZKG5Mqg==" "integrity": "sha512-U86em1cMtopXVuKFDxP8J2DcNOqwCAsYQ2tkzPoJvchsrezcI2cgvN3jtGt9FFECP3pLvSz96ZB9FOHZKG5Mqg=="
}, },
"node_modules/@discord-player/extractor": { "node_modules/@discord-player/extractor": {
"version": "4.3.1", "version": "4.4.0",
"resolved": "https://registry.npmjs.org/@discord-player/extractor/-/extractor-4.3.1.tgz", "resolved": "https://registry.npmjs.org/@discord-player/extractor/-/extractor-4.4.0.tgz",
"integrity": "sha512-f8EwbQkplZQdVb4pCazc+5zo57y4gkPCl4Zq+3nHhwD+lz03OSmFGfoU6Ho9InBbx6S6PthO6CSPyFXN3sH6nw==", "integrity": "sha512-TpHZk6ZFS5ot504iVAfnaJrGe2xv9yMauI+2zNLCmAYPeFe6YUbliXrSRoOmKoZi5n1ahkP2VurbmBhqKqEVkw==",
"dependencies": { "dependencies": {
"file-type": "^16.5.4", "file-type": "^16.5.4",
"genius-lyrics": "^4.4.3", "genius-lyrics": "^4.4.3",
@ -128,9 +128,9 @@
"integrity": "sha512-0kW6q4gMQN2B4Z4EzmUgXrKQSXXmyhjdZBBZ/6jSHZ9fh814oOu+JXP01VvtWHwTylI7qJHIctEWtSyjEubCJg==" "integrity": "sha512-0kW6q4gMQN2B4Z4EzmUgXrKQSXXmyhjdZBBZ/6jSHZ9fh814oOu+JXP01VvtWHwTylI7qJHIctEWtSyjEubCJg=="
}, },
"node_modules/@discord-player/utils": { "node_modules/@discord-player/utils": {
"version": "0.2.1", "version": "0.2.2",
"resolved": "https://registry.npmjs.org/@discord-player/utils/-/utils-0.2.1.tgz", "resolved": "https://registry.npmjs.org/@discord-player/utils/-/utils-0.2.2.tgz",
"integrity": "sha512-yPxfdO2N3i2YEEiwlLDNyuBEdnhV1mZaC7im2BI4FKn3ak1UAtVcbKeJhdd/va0A170+PZs3zUKVGldY0z/+ng==", "integrity": "sha512-UklWUT7BcZEkBgywM9Cmpo2nwj3SQ9Wmhu6ml1uy/YRQnY8IRdZEHD84T2kfjOg4LVZek0ej1VerIqq7a9PAHQ==",
"dependencies": { "dependencies": {
"@discordjs/collection": "^1.1.0" "@discordjs/collection": "^1.1.0"
} }
@ -408,54 +408,46 @@
} }
}, },
"node_modules/@octokit/core": { "node_modules/@octokit/core": {
"version": "4.2.1", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.1.tgz", "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.0.tgz",
"integrity": "sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw==", "integrity": "sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A==",
"dependencies": { "dependencies": {
"@octokit/auth-token": "^3.0.0", "@octokit/auth-token": "^4.0.0",
"@octokit/graphql": "^5.0.0", "@octokit/graphql": "^7.0.0",
"@octokit/request": "^6.0.0", "@octokit/request": "^8.0.2",
"@octokit/request-error": "^3.0.0", "@octokit/request-error": "^5.0.0",
"@octokit/types": "^9.0.0", "@octokit/types": "^11.0.0",
"before-after-hook": "^2.2.0", "before-after-hook": "^2.2.0",
"universal-user-agent": "^6.0.0" "universal-user-agent": "^6.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
}
},
"node_modules/@octokit/core/node_modules/@octokit/auth-token": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz",
"integrity": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==",
"engines": {
"node": ">= 14"
} }
}, },
"node_modules/@octokit/endpoint": { "node_modules/@octokit/endpoint": {
"version": "7.0.5", "version": "9.0.0",
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.0.tgz",
"integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", "integrity": "sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ==",
"dependencies": { "dependencies": {
"@octokit/types": "^9.0.0", "@octokit/types": "^11.0.0",
"is-plain-object": "^5.0.0", "is-plain-object": "^5.0.0",
"universal-user-agent": "^6.0.0" "universal-user-agent": "^6.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
} }
}, },
"node_modules/@octokit/graphql": { "node_modules/@octokit/graphql": {
"version": "5.0.5", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.1.tgz",
"integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", "integrity": "sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w==",
"dependencies": { "dependencies": {
"@octokit/request": "^6.0.0", "@octokit/request": "^8.0.1",
"@octokit/types": "^9.0.0", "@octokit/types": "^11.0.0",
"universal-user-agent": "^6.0.0" "universal-user-agent": "^6.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
} }
}, },
"node_modules/@octokit/openapi-types": { "node_modules/@octokit/openapi-types": {
@ -464,94 +456,90 @@
"integrity": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" "integrity": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw=="
}, },
"node_modules/@octokit/plugin-paginate-rest": { "node_modules/@octokit/plugin-paginate-rest": {
"version": "6.1.2", "version": "8.0.0",
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz", "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-8.0.0.tgz",
"integrity": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==", "integrity": "sha512-2xZ+baZWUg+qudVXnnvXz7qfrTmDeYPCzangBVq/1gXxii/OiS//4shJp9dnCCvj1x+JAm9ji1Egwm1BA47lPQ==",
"dependencies": { "dependencies": {
"@octokit/tsconfig": "^1.0.2", "@octokit/types": "^11.0.0"
"@octokit/types": "^9.2.3"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
}, },
"peerDependencies": { "peerDependencies": {
"@octokit/core": ">=4" "@octokit/core": ">=5"
} }
}, },
"node_modules/@octokit/plugin-request-log": { "node_modules/@octokit/plugin-request-log": {
"version": "1.0.4", "version": "4.0.0",
"resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-4.0.0.tgz",
"integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", "integrity": "sha512-2uJI1COtYCq8Z4yNSnM231TgH50bRkheQ9+aH8TnZanB6QilOnx8RMD2qsnamSOXtDj0ilxvevf5fGsBhBBzKA==",
"engines": {
"node": ">= 18"
},
"peerDependencies": { "peerDependencies": {
"@octokit/core": ">=3" "@octokit/core": ">=5"
} }
}, },
"node_modules/@octokit/plugin-rest-endpoint-methods": { "node_modules/@octokit/plugin-rest-endpoint-methods": {
"version": "7.2.1", "version": "9.0.0",
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.1.tgz", "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-9.0.0.tgz",
"integrity": "sha512-UmlNrrcF+AXxcxhZslTt1a/8aDxUKH0trrt/mJCxEPrWbW1ZEc+6xxcd5/n0iw3b+Xo8UBJQUKDr71+vNCBpRQ==", "integrity": "sha512-KquMF/VB1IkKNiVnzJKspY5mFgGyLd7HzdJfVEGTJFzqu9BRFNWt+nwTCMuUiWc72gLQhRWYubTwOkQj+w/1PA==",
"dependencies": { "dependencies": {
"@octokit/types": "^9.3.1" "@octokit/types": "^11.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
}, },
"peerDependencies": { "peerDependencies": {
"@octokit/core": ">=3" "@octokit/core": ">=5"
} }
}, },
"node_modules/@octokit/request": { "node_modules/@octokit/request": {
"version": "6.2.3", "version": "8.1.1",
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.1.tgz",
"integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", "integrity": "sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ==",
"dependencies": { "dependencies": {
"@octokit/endpoint": "^7.0.0", "@octokit/endpoint": "^9.0.0",
"@octokit/request-error": "^3.0.0", "@octokit/request-error": "^5.0.0",
"@octokit/types": "^9.0.0", "@octokit/types": "^11.1.0",
"is-plain-object": "^5.0.0", "is-plain-object": "^5.0.0",
"node-fetch": "^2.6.7",
"universal-user-agent": "^6.0.0" "universal-user-agent": "^6.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
} }
}, },
"node_modules/@octokit/request-error": { "node_modules/@octokit/request-error": {
"version": "3.0.3", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.0.tgz",
"integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", "integrity": "sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ==",
"dependencies": { "dependencies": {
"@octokit/types": "^9.0.0", "@octokit/types": "^11.0.0",
"deprecation": "^2.0.0", "deprecation": "^2.0.0",
"once": "^1.4.0" "once": "^1.4.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
} }
}, },
"node_modules/@octokit/rest": { "node_modules/@octokit/rest": {
"version": "19.0.13", "version": "20.0.1",
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.13.tgz", "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-20.0.1.tgz",
"integrity": "sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==", "integrity": "sha512-wROV21RwHQIMNb2Dgd4+pY+dVy1Dwmp85pBrgr6YRRDYRBu9Gb+D73f4Bl2EukZSj5hInq2Tui9o7gAQpc2k2Q==",
"dependencies": { "dependencies": {
"@octokit/core": "^4.2.1", "@octokit/core": "^5.0.0",
"@octokit/plugin-paginate-rest": "^6.1.2", "@octokit/plugin-paginate-rest": "^8.0.0",
"@octokit/plugin-request-log": "^1.0.4", "@octokit/plugin-request-log": "^4.0.0",
"@octokit/plugin-rest-endpoint-methods": "^7.1.2" "@octokit/plugin-rest-endpoint-methods": "^9.0.0"
}, },
"engines": { "engines": {
"node": ">= 14" "node": ">= 18"
} }
}, },
"node_modules/@octokit/tsconfig": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz",
"integrity": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA=="
},
"node_modules/@octokit/types": { "node_modules/@octokit/types": {
"version": "9.3.1", "version": "11.1.0",
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.3.1.tgz", "resolved": "https://registry.npmjs.org/@octokit/types/-/types-11.1.0.tgz",
"integrity": "sha512-zfJzyXLHC42sWcn2kS+oZ/DRvFZBYCCbfInZtwp1Uopl1qh6pRg4NSP/wFX1xCOpXvEkctiG1sxlSlkZmzvxdw==", "integrity": "sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==",
"dependencies": { "dependencies": {
"@octokit/openapi-types": "^18.0.0" "@octokit/openapi-types": "^18.0.0"
} }
@ -599,9 +587,9 @@
"dev": true "dev": true
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "20.3.2", "version": "20.4.2",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz",
"integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==" "integrity": "sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw=="
}, },
"node_modules/@types/webidl-conversions": { "node_modules/@types/webidl-conversions": {
"version": "7.0.0", "version": "7.0.0",
@ -715,9 +703,9 @@
} }
}, },
"node_modules/bson": { "node_modules/bson": {
"version": "5.3.0", "version": "5.4.0",
"resolved": "https://registry.npmjs.org/bson/-/bson-5.3.0.tgz", "resolved": "https://registry.npmjs.org/bson/-/bson-5.4.0.tgz",
"integrity": "sha512-ukmCZMneMlaC5ebPHXIkP8YJzNl5DC41N5MAIvKDqLggdao342t4McltoJBQfQya/nHBWAcSsYRqlXPoQkTJag==", "integrity": "sha512-WRZ5SQI5GfUuKnPTNmAYPiKIof3ORXAF4IRU5UcgmivNIon01rWQlw5RUH954dpu8yGL8T59YShVddIPaU/gFA==",
"engines": { "engines": {
"node": ">=14.20.1" "node": ">=14.20.1"
} }
@ -910,13 +898,13 @@
"integrity": "sha512-FaPGBK9hx3zqSRX1x3KQWj+OElAJKmcyyfcdCy+U4AKv+gYuIkRySM7zd1So2sE4gc1DikkghkSBgBgKh6pe4Q==" "integrity": "sha512-FaPGBK9hx3zqSRX1x3KQWj+OElAJKmcyyfcdCy+U4AKv+gYuIkRySM7zd1So2sE4gc1DikkghkSBgBgKh6pe4Q=="
}, },
"node_modules/discord-player": { "node_modules/discord-player": {
"version": "6.6.0", "version": "6.6.1",
"resolved": "https://registry.npmjs.org/discord-player/-/discord-player-6.6.0.tgz", "resolved": "https://registry.npmjs.org/discord-player/-/discord-player-6.6.1.tgz",
"integrity": "sha512-lW5IcGLycJK6mNtpz5/QqKuhhpBVm475xlsVKEUhoS1CFNcLqob5nAlEXurKjlIhxR+fFglSZ8jmtdFjR8p50g==", "integrity": "sha512-l72ql51uya3Uq5VrTPvR6xWBHOa3lI9oWTl7YDDHvofMXEYLgqAuDlyuelQ7AY+lUC7FOK7MoS2QgVFHeAciNw==",
"dependencies": { "dependencies": {
"@discord-player/equalizer": "^0.2.2", "@discord-player/equalizer": "^0.2.2",
"@discord-player/ffmpeg": "^0.1.0", "@discord-player/ffmpeg": "^0.1.0",
"@discord-player/utils": "^0.2.1", "@discord-player/utils": "^0.2.2",
"@discordjs/voice": "latest", "@discordjs/voice": "latest",
"libsodium-wrappers": "^0.7.10" "libsodium-wrappers": "^0.7.10"
}, },
@ -924,7 +912,7 @@
"url": "https://github.com/Androz2091/discord-player?sponsor=1" "url": "https://github.com/Androz2091/discord-player?sponsor=1"
}, },
"peerDependencies": { "peerDependencies": {
"@discord-player/extractor": "^4.3.1", "@discord-player/extractor": "^4.4.0",
"discord.js": "14.x", "discord.js": "14.x",
"youtube-sr": "4.x" "youtube-sr": "4.x"
} }
@ -1431,11 +1419,11 @@
} }
}, },
"node_modules/mongodb": { "node_modules/mongodb": {
"version": "5.6.0", "version": "5.7.0",
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.6.0.tgz", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.7.0.tgz",
"integrity": "sha512-z8qVs9NfobHJm6uzK56XBZF8XwM9H294iRnB7wNjF0SnY93si5HPziIJn+qqvUR5QOff/4L0gCD6SShdR/GtVQ==", "integrity": "sha512-zm82Bq33QbqtxDf58fLWBwTjARK3NSvKYjyz997KSy6hpat0prjeX/kxjbPVyZY60XYPDNETaHkHJI2UCzSLuw==",
"dependencies": { "dependencies": {
"bson": "^5.3.0", "bson": "^5.4.0",
"mongodb-connection-string-url": "^2.6.0", "mongodb-connection-string-url": "^2.6.0",
"socks": "^2.7.1" "socks": "^2.7.1"
}, },
@ -1447,6 +1435,8 @@
}, },
"peerDependencies": { "peerDependencies": {
"@aws-sdk/credential-providers": "^3.201.0", "@aws-sdk/credential-providers": "^3.201.0",
"@mongodb-js/zstd": "^1.1.0",
"kerberos": "^2.0.1",
"mongodb-client-encryption": ">=2.3.0 <3", "mongodb-client-encryption": ">=2.3.0 <3",
"snappy": "^7.2.2" "snappy": "^7.2.2"
}, },
@ -1454,6 +1444,12 @@
"@aws-sdk/credential-providers": { "@aws-sdk/credential-providers": {
"optional": true "optional": true
}, },
"@mongodb-js/zstd": {
"optional": true
},
"kerberos": {
"optional": true
},
"mongodb-client-encryption": { "mongodb-client-encryption": {
"optional": true "optional": true
}, },
@ -1472,13 +1468,13 @@
} }
}, },
"node_modules/mongoose": { "node_modules/mongoose": {
"version": "7.3.3", "version": "7.4.0",
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.3.3.tgz", "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.4.0.tgz",
"integrity": "sha512-g4NrRGIUEUYLeScaSChQR8i4Dlk9lR0UJzkK3r6TPJyqJ6ZWdRVP3oXfOG9Yn+hNeKcCJKfVEHo+jsU1rh3YTA==", "integrity": "sha512-oHE1eqodfKzugXRlQxpo+msIea7jPcRoayDuEMr50+bYwM/juA5f+1stjkWlXcg6vo1PdJFVA6DGaKOPLuG5mA==",
"dependencies": { "dependencies": {
"bson": "^5.3.0", "bson": "^5.4.0",
"kareem": "2.5.1", "kareem": "2.5.1",
"mongodb": "5.6.0", "mongodb": "5.7.0",
"mpath": "0.9.0", "mpath": "0.9.0",
"mquery": "5.0.0", "mquery": "5.0.0",
"ms": "2.1.3", "ms": "2.1.3",
@ -1966,9 +1962,9 @@
} }
}, },
"node_modules/systeminformation": { "node_modules/systeminformation": {
"version": "5.18.6", "version": "5.18.7",
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.18.6.tgz", "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.18.7.tgz",
"integrity": "sha512-pLXv6kjJZ1xUcVs9SrCqbQ9y0x1rgRWxBUc8/KxpOp9IRxFGFfzVK5efsxBn/KdYog4C9rPcKk+kHNIL2SB/8Q==", "integrity": "sha512-ROxysxhjjnhWxQDkDPxCCQdeOt9IUKIGgfM0A++kqqNC+V/hAHQRshyG+5421R//DsOfXFc11pUFGpzA8YqRNQ==",
"os": [ "os": [
"darwin", "darwin",
"linux", "linux",

View File

@ -26,23 +26,23 @@
"dependencies": { "dependencies": {
"axios": "1.4.0", "axios": "1.4.0",
"canvas": "2.11.2", "canvas": "2.11.2",
"@discord-player/extractor": "4.3.1", "@discord-player/extractor": "4.4.0",
"@ffmpeg-installer/ffmpeg": "1.1.0", "@ffmpeg-installer/ffmpeg": "1.1.0",
"@discordjs/opus": "0.9.0", "@discordjs/opus": "0.9.0",
"discord-player": "6.6.0", "discord-player": "6.6.1",
"discord.js": "14.11.0", "discord.js": "14.11.0",
"ytdl-core": "4.11.5", "ytdl-core": "4.11.5",
"moment": "2.29.4", "moment": "2.29.4",
"ms": "2.1.3", "ms": "2.1.3",
"mongoose": "7.3.3", "mongoose": "7.4.0",
"systeminformation": "5.18.6", "systeminformation": "5.18.7",
"@octokit/rest": "19.0.13", "@octokit/rest": "20.0.1",
"@octokit/auth-token": "4.0.0", "@octokit/auth-token": "4.0.0",
"typescript": "5.1.6", "typescript": "5.1.6",
"xml-js": "1.6.11" "xml-js": "1.6.11"
}, },
"devDependencies": { "devDependencies": {
"@types/ms": "0.7.31", "@types/ms": "0.7.31",
"@types/node": "20.3.2" "@types/node": "20.4.2"
} }
} }