Releases: radiovisual/get-video-id
Releases · radiovisual/get-video-id
4.1.7
4.1.6
What's Changed
- chore(deps-dev): bump ws from 7.5.9 to 7.5.10 by @dependabot in #119
- chore(deps-dev): bump braces from 3.0.2 to 3.0.3 by @dependabot in #118
- fix: export loom package in build by @radiovisual in #121
- ci: update publish workflow by @radiovisual in #122
Full Changelog: 4.1.5...4.1.6
4.1.5
What's Changed
- TS support: Updated package.json to fix export of types by @theRuslan in #116
New Contributors
- @theRuslan made their first contribution in #116
Full Changelog: 4.1.4...4.1.5
4.1.4
4.1.3
What's Changed
- ci: update workflows to node v20 by @radiovisual in #113
Full Changelog: 4.1.2...4.1.3
4.1.2
What's Changed
- ci: open a PR with version bump after successful publish. by @radiovisual in #112
Full Changelog: 4.1.1...4.1.2
4.1.1
What's Changed
- ci: apply version number on publish by @radiovisual in #111
Full Changelog: 4.1.0...4.1.1
4.1.0
4.0.0
What's Changed
- Fix CJS export by @radiovisual in #109
Since get-video-id v4
, the module will return undefined
instead of null
when a service or video id cannot be identified.
So in versions < 4, you would get null
:
const getVideoId('https://some-url-without-video-id');
// => { service: null, id: null }
But now in v4+, you will get:
const getVideoId('https://some-url-without-video-id');
// => { service: undefined, id: undefined }
Full Changelog: 3.7.0...4.0.0
3.7.0
What's Changed
- Add support for youtube live format by @micohasanen in #108
New Contributors
- @micohasanen made their first contribution in #108
Full Changelog: 3.6.5...3.7.0