Skip to content

Commit

Permalink
chore: version packages (#121)
Browse files Browse the repository at this point in the history
* chore: version packages

* ci: bump

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Chase Adams <c@cadams.io>
  • Loading branch information
3 people authored Nov 2, 2022
1 parent 74ad6ef commit 5abadf1
Show file tree
Hide file tree
Showing 14 changed files with 3,870 additions and 8,196 deletions.
6 changes: 0 additions & 6 deletions .changeset/perfect-toys-travel.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/popular-birds-laugh.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/quiet-singers-clean.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tall-beds-beg.md

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ tsconfig.tsbuildinfo
logs
*.log
pnpm-debug.log*

# local env files
.env
.envrc
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
},
"dependencies": {
"@livepeer/design-system": "^1.0.3",
"@livepeer/react": "^1.2.1",
"@livepeer/react": "^1.3.0",
"@reach/skip-nav": "^0.17.0",
"aptos": "^1.3.15",
"connectkit": "^0.0.2",
"ethers": "^5.7.1",
"formidable": "^2.0.1",
"hls.js": "^1.2.4",
"livepeer": "^1.2.1",
"livepeer": "^1.2.2",
"next": "^12.3.1",
"next-themes": "^0.2.1",
"nextra": "2.0.0-beta.17",
Expand Down
2 changes: 1 addition & 1 deletion examples/_dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@livepeer/react": "^1.2.1",
"@livepeer/react": "^1.3.0",
"connectkit": "^0.0.2",
"ethers": "^5.7.1",
"next": "^12.3.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@livepeer/react": "^1.2.1",
"@livepeer/react": "^1.3.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"vite": "^3.1.6"
},
"dependencies": {
"livepeer": "^1.2.1"
"livepeer": "^1.2.2"
}
}
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# livepeer

## 1.2.2

### Patch Changes

- [#122](https://github.com/livepeer/livepeer.js/pull/122) [`f5b370c`](https://github.com/livepeer/livepeer.js/commit/f5b370cfb94f57c1075dbd9f211b6881bb0da017) Thanks [@suhailkakar](https://github.com/suhailkakar)! - Fix: updated the fingerprint for Tus upload. This should fix the issue with the resumable uploads.

- [#120](https://github.com/livepeer/livepeer.js/pull/120) [`86d9a69`](https://github.com/livepeer/livepeer.js/commit/86d9a69d82c32f841fc4e460c59267146ecf754c) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** updated the Player metrics endpoint to use the correct ports for staging and canary environments.

- [#129](https://github.com/livepeer/livepeer.js/pull/129) [`543560c`](https://github.com/livepeer/livepeer.js/commit/543560c6b9bb25352c4cdfce4dc56d0405592f6d) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** Added automatic fetching/importing of Arweave URLs to the Player.

An Arweave URL (such as `ar://<HASH>`, `https://<SUBDOMAIN>.arweave.dev/<HASH>` or `https://arweave.net/<HASH>`, _but cannot be a directory_) can be passed as the `src` or `playbackID` to the Player, and it will automatically detect if it is a valid Arweave URL and attempt to fetch the playback info. If the API does not have an Asset with the corresponding Arweave transaction hash, the Player will automatically attempt to import the Arweave content, and then play the transcoded content back.

## 1.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "livepeer",
"description": "Livepeer's vanilla JS library.",
"license": "MIT",
"version": "1.2.1",
"version": "1.2.2",
"repository": {
"type": "git",
"url": "https://github.com/livepeer/livepeer.js.git",
Expand Down
21 changes: 21 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @livepeer/react

## 1.3.0

### Minor Changes

- [#123](https://github.com/livepeer/livepeer.js/pull/123) [`b5990cf`](https://github.com/livepeer/livepeer.js/commit/b5990cf0b2f8e366c60462083966eb335555998f) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** added prefetch to all React hooks.

The new functions include: `prefetchAsset`, `prefetchAssetMetrics`, `prefetchPlaybackInfo`, `prefetchStream`, `prefetchStreamSession`, `prefetchStreamSessions`, which provide prefetching using React Query. Also added `prefetchPlayer`, which wraps `prefetchPlaybackInfo` to make it easier to use the prefetch hooks with the Player.

### Patch Changes

- [#122](https://github.com/livepeer/livepeer.js/pull/122) [`f5b370c`](https://github.com/livepeer/livepeer.js/commit/f5b370cfb94f57c1075dbd9f211b6881bb0da017) Thanks [@suhailkakar](https://github.com/suhailkakar)! - Fix: updated the fingerprint for Tus upload. This should fix the issue with the resumable uploads.

- [#120](https://github.com/livepeer/livepeer.js/pull/120) [`86d9a69`](https://github.com/livepeer/livepeer.js/commit/86d9a69d82c32f841fc4e460c59267146ecf754c) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** updated the Player metrics endpoint to use the correct ports for staging and canary environments.

- [#129](https://github.com/livepeer/livepeer.js/pull/129) [`543560c`](https://github.com/livepeer/livepeer.js/commit/543560c6b9bb25352c4cdfce4dc56d0405592f6d) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** Added automatic fetching/importing of Arweave URLs to the Player.

An Arweave URL (such as `ar://<HASH>`, `https://<SUBDOMAIN>.arweave.dev/<HASH>` or `https://arweave.net/<HASH>`, _but cannot be a directory_) can be passed as the `src` or `playbackID` to the Player, and it will automatically detect if it is a valid Arweave URL and attempt to fetch the playback info. If the API does not have an Asset with the corresponding Arweave transaction hash, the Player will automatically attempt to import the Arweave content, and then play the transcoded content back.

- Updated dependencies [[`f5b370c`](https://github.com/livepeer/livepeer.js/commit/f5b370cfb94f57c1075dbd9f211b6881bb0da017), [`86d9a69`](https://github.com/livepeer/livepeer.js/commit/86d9a69d82c32f841fc4e460c59267146ecf754c), [`543560c`](https://github.com/livepeer/livepeer.js/commit/543560c6b9bb25352c4cdfce4dc56d0405592f6d)]:
- livepeer@1.2.2

## 1.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@livepeer/react",
"description": "React components & hooks for apps built with Livepeer.",
"license": "MIT",
"version": "1.2.1",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/livepeer/livepeer.js.git",
Expand Down Expand Up @@ -83,7 +83,7 @@
"@tanstack/react-query": "4.10.1",
"@tanstack/react-query-persist-client": "4.10.1",
"core-js": "^3.25.5",
"livepeer": "^1.2.1",
"livepeer": "^1.2.2",
"use-sync-external-store": "^1.2.0",
"zustand": "^4.1.1"
},
Expand Down
Loading

3 comments on commit 5abadf1

@vercel
Copy link

@vercel vercel bot commented on 5abadf1 Nov 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5abadf1 Nov 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5abadf1 Nov 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.