Skip to content

Commit

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

* 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 committed Mar 6, 2024
1 parent 5802873 commit 1241018
Show file tree
Hide file tree
Showing 9 changed files with 148 additions and 36 deletions.
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
"@livepeer/core-web": "4.1.8",
"@livepeer/react": "4.1.8"
},
"changesets": ["good-mice-exist"]
"changesets": [
"good-mice-exist",
"plenty-goats-heal"
]
}
11 changes: 10 additions & 1 deletion packages/core-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @livepeer/core-react

## 3.2.0-next.1

### Patch Changes

- [#507](https://github.com/livepeer/ui-kit/pull/507) [`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** broke `version` and `player` out into different fields, improved `play`/`pause` events to be triggered on HTML events, added `clip` event.

- Updated dependencies [[`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b)]:
- @livepeer/core@3.2.0-next.1

## 3.2.0-next.0

### Minor Changes
Expand Down Expand Up @@ -154,7 +163,7 @@

### Patch Changes

- [#505](https://github.com/livepeer/ui-kit/pull/505) [`0875372`](https://github.com/livepeer/ui-kit/commit/08753720d424dde1e7f1c335f67838f6ecee8e25) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** added `backoff` and `backoffMax` to the Player, which defines the time which the Player waits before attempting, as well as the cap for exponential backoff.
- [#505](https://github.com/livepeer/ui-kit/pull/505) [`0875372`](https://github.com/livepeer/ui-kit/commit/08753720d424dde1e7f1c335f67838f6ecee8e25) Thanks [@0xcadams](https://github.com/0xcadams)! - **Feature:** added `backoff` and `backoffMax` to the Player, which defines the time which the Player waits before attempting, as well as the cap for exponential backoff.

```tsx
/**
Expand Down
21 changes: 16 additions & 5 deletions packages/core-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@livepeer/core-react",
"description": "Internal library used for livepeer react primitives.",
"license": "MIT",
"version": "3.2.0-next.0",
"version": "3.2.0-next.1",
"type": "module",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand All @@ -29,8 +31,12 @@
},
"typesVersions": {
"*": {
"crypto": ["./dist/crypto/index.d.ts"],
"*": ["./dist/index.d.ts"]
"crypto": [
"./dist/crypto/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand All @@ -55,5 +61,10 @@
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": ["livepeer", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"video",
"streaming",
"livestream"
]
}
9 changes: 9 additions & 0 deletions packages/core-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# livepeer

## 4.2.0-next.1

### Patch Changes

- [#507](https://github.com/livepeer/ui-kit/pull/507) [`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** broke `version` and `player` out into different fields, improved `play`/`pause` events to be triggered on HTML events, added `clip` event.

- Updated dependencies [[`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b)]:
- @livepeer/core@3.2.0-next.1

## 4.2.0-next.0

### Minor Changes
Expand Down
41 changes: 31 additions & 10 deletions packages/core-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@livepeer/core-web",
"description": "Livepeer UI Kit's core web library, for adding reactive stores to video elements.",
"license": "MIT",
"version": "4.2.0-next.0",
"version": "4.2.0-next.1",
"type": "module",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand Down Expand Up @@ -54,13 +56,27 @@
},
"typesVersions": {
"*": {
"broadcast": ["./dist/broadcast/index.d.ts"],
"browser": ["./dist/browser/index.d.ts"],
"external": ["./dist/external/index.d.ts"],
"hls": ["./dist/hls/index.d.ts"],
"media": ["./dist/media/index.d.ts"],
"webrtc": ["./dist/webrtc/index.d.ts"],
"*": ["./dist/index.d.ts"]
"broadcast": [
"./dist/broadcast/index.d.ts"
],
"browser": [
"./dist/browser/index.d.ts"
],
"external": [
"./dist/external/index.d.ts"
],
"hls": [
"./dist/hls/index.d.ts"
],
"media": [
"./dist/media/index.d.ts"
],
"webrtc": [
"./dist/webrtc/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand All @@ -74,5 +90,10 @@
"hls.js": "^1.5.2",
"zustand": "^4.5.0"
},
"keywords": ["livepeer", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"video",
"streaming",
"livestream"
]
}
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @livepeer/core

## 3.2.0-next.1

### Patch Changes

- [#507](https://github.com/livepeer/ui-kit/pull/507) [`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** broke `version` and `player` out into different fields, improved `play`/`pause` events to be triggered on HTML events, added `clip` event.

## 3.2.0-next.0

### Minor Changes
Expand Down Expand Up @@ -143,6 +149,7 @@
events: PlaybackEvent[];
live: boolean;
};
```

## 3.1.9

Expand Down
41 changes: 31 additions & 10 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Livepeer UI Kit's core vanilla JS library.",
"license": "MIT",
"type": "module",
"version": "3.2.0-next.0",
"version": "3.2.0-next.1",
"repository": {
"type": "git",
"url": "https://github.com/livepeer/ui-kit.git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand Down Expand Up @@ -54,13 +56,27 @@
},
"typesVersions": {
"*": {
"crypto": ["./dist/crypto/index.d.ts"],
"errors": ["./dist/errors/index.d.ts"],
"media": ["./dist/media/index.d.ts"],
"storage": ["./dist/storage/index.d.ts"],
"utils": ["./dist/utils/index.d.ts"],
"version": ["./dist/version/index.d.ts"],
"*": ["./dist/index.d.ts"]
"crypto": [
"./dist/crypto/index.d.ts"
],
"errors": [
"./dist/errors/index.d.ts"
],
"media": [
"./dist/media/index.d.ts"
],
"storage": [
"./dist/storage/index.d.ts"
],
"utils": [
"./dist/utils/index.d.ts"
],
"version": [
"./dist/version/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand All @@ -76,5 +92,10 @@
"devDependencies": {
"jose": "^5.2.2"
},
"keywords": ["livepeer", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"video",
"streaming",
"livestream"
]
}
11 changes: 11 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @livepeer/react

## 4.2.0-next.1

### Patch Changes

- [#507](https://github.com/livepeer/ui-kit/pull/507) [`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b) Thanks [@0xcadams](https://github.com/0xcadams)! - **Fix:** broke `version` and `player` out into different fields, improved `play`/`pause` events to be triggered on HTML events, added `clip` event.

- Updated dependencies [[`5802873`](https://github.com/livepeer/ui-kit/commit/58028734de512fff59e98b2c7bcd2058a7db420b)]:
- @livepeer/core-react@3.2.0-next.1
- @livepeer/core-web@4.2.0-next.1
- @livepeer/core@3.2.0-next.1

## 4.2.0-next.0

### Minor Changes
Expand Down
38 changes: 29 additions & 9 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 primitives for video apps.",
"license": "MIT",
"version": "4.2.0-next.0",
"version": "4.2.0-next.1",
"type": "module",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand Down Expand Up @@ -49,12 +51,24 @@
},
"typesVersions": {
"*": {
"assets": ["./dist/assets/index.d.ts"],
"broadcast": ["./dist/broadcast/index.d.ts"],
"crypto": ["./dist/crypto/index.d.ts"],
"external": ["./dist/external/index.d.ts"],
"player": ["./dist/player/index.d.ts"],
"*": ["./dist/index.d.ts"]
"assets": [
"./dist/assets/index.d.ts"
],
"broadcast": [
"./dist/broadcast/index.d.ts"
],
"crypto": [
"./dist/crypto/index.d.ts"
],
"external": [
"./dist/external/index.d.ts"
],
"player": [
"./dist/player/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand Down Expand Up @@ -100,5 +114,11 @@
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": ["livepeer", "react", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"react",
"video",
"streaming",
"livestream"
]
}

0 comments on commit 1241018

Please sign in to comment.