Skip to content

Update soundcloud-downloader requirement from ^0.2.0 to ^0.2.3

Created by: dependabot-preview[bot]

Updates the requirements on soundcloud-downloader to permit the latest version.

Release notes

Sourced from soundcloud-downloader's releases.

v0.2.3

New

Added support for mobile SoundCloud URLs. This allows the package to use URLs copied from SoundCloud's mobile web version, or their mobile app. There are two types:

  • Regular mobile: https://m.soundcloud.com/XXXXXX/XXXX (these are copied from a mobile browser)
  • Firebase URL: https://soundcloud.app.goo.gl/XXXXXXXX (these are copied from the SoundCloud mobile app)

The SCDL class is configured to support these types of URLs by default.

Converting mobile URLs is an inexpensive process, but it may be favourable to disable conversion of Firebase links because they require an HTTP Get request and parsing of the HTML response to find the regular URL. If you wish to disable this behaviour, you may instantiate a custom SCDL class with the appropriate options object:

const scdlCreate = require('../').create
const scdl = scdlCreate({
stripMobilePrefix: false, // Will not convert mobile URLs to regular URLs
convertFirebaseLinks: false, // Will not convert Firebase URLs to regular URLs
})

Additionally, you may configure an existing SCDL instance to disable this behaviour by modifying the SCDL.stripMobilePrefix and SCDL.convertFirebaseLinks properties:

const scdl = require('../').default
scdl.stripMobilePrefix = false
scdl.convertFirebaseLinks = false
Commits
  • e247436 add stripMobilePrefix(), isFirebaseURL, convertFirebaseURL, and add options t...
  • abf1446 add isPlaylistURL and isPersonalizedTrackURL
  • f7d1da9 check if collection length is less than or equal to limit, not equal
  • a2b3c0d don't await before return
  • 999a1bb update license =
  • 4e30c61 version 0.2.1 ~> 0.2.2
  • c7a8a4b update docs for 0.2.2
  • a0db640 Merge pull request #39 from zackradisic/dependabot/npm_and_yarn/m3u8stream-0.8.3
  • e7af130 Merge pull request #40 from zackradisic/dependabot/npm_and_yarn/highlight.js-...
  • abd605d Merge pull request #43 from zackradisic/dependabot/npm_and_yarn/typescript-4.1.3
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Merge request reports