[PR #560] [MERGED] Release 2.3.0 #1125

Closed
opened 2026-03-15 11:19:50 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/asciinema/asciinema/pull/560
Author: @ku1ik
Created: 7/5/2023
Status: Merged
Merged: 7/5/2023
Merged by: @ku1ik

Base: mainHead: release/2.3.0


📝 Commits (10+)

  • d86394c Ignore OSC responses in recorded stdin stream
  • e81ce0e Don't crash on single esc char in input
  • 675b37d Add --stream option to play command
  • 062914a Merge pull request #498 from asciinema/play-stdin
  • 4550bdb Add --out-fmt option to play command
  • a9b3bff Merge pull request #499 from asciinema/play-out-fmt
  • 4393374 Improve help message for play command
  • 5e39546 Add --loop option to play command
  • ce32bb2 Merge pull request #500 from asciinema/play-loop
  • 68b2f01 Use CRLF instead of LF when printing diagnostic messages

📊 Changes

30 files changed (+626 additions, -237 deletions)

View changed files

.github/ISSUE_TEMPLATE/bug-report.md (+38 -0)
📝 .github/workflows/asciinema.yml (+4 -4)
📝 .github/workflows/pre-commit.yml (+2 -2)
📝 .pre-commit-config.yaml (+6 -6)
📝 CHANGELOG.md (+20 -0)
📝 Dockerfile (+1 -1)
📝 README.md (+62 -11)
📝 asciinema/__main__.py (+47 -8)
📝 asciinema/api.py (+7 -5)
📝 asciinema/asciicast/__init__.py (+33 -28)
📝 asciinema/asciicast/events.py (+6 -6)
📝 asciinema/asciicast/raw.py (+20 -2)
📝 asciinema/asciicast/v1.py (+16 -7)
📝 asciinema/asciicast/v2.py (+15 -9)
📝 asciinema/async_worker.py (+7 -1)
📝 asciinema/commands/cat.py (+12 -5)
📝 asciinema/commands/command.py (+1 -1)
📝 asciinema/commands/play.py (+21 -1)
📝 asciinema/commands/record.py (+31 -7)
📝 asciinema/commands/upload.py (+6 -3)

...and 10 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/asciinema/asciinema/pull/560 **Author:** [@ku1ik](https://github.com/ku1ik) **Created:** 7/5/2023 **Status:** ✅ Merged **Merged:** 7/5/2023 **Merged by:** [@ku1ik](https://github.com/ku1ik) **Base:** `main` ← **Head:** `release/2.3.0` --- ### 📝 Commits (10+) - [`d86394c`](https://github.com/asciinema/asciinema/commit/d86394cc970fcb1b7c17a4240c2470f75fc6ddd8) Ignore OSC responses in recorded stdin stream - [`e81ce0e`](https://github.com/asciinema/asciinema/commit/e81ce0ee49cb78c629498c260d741f77d47d4a39) Don't crash on single esc char in input - [`675b37d`](https://github.com/asciinema/asciinema/commit/675b37d535c2e8005210618d6a1c48ed8f1d899d) Add `--stream` option to `play` command - [`062914a`](https://github.com/asciinema/asciinema/commit/062914a03797f8c7582ecd6f09cb9191cb1ec998) Merge pull request #498 from asciinema/play-stdin - [`4550bdb`](https://github.com/asciinema/asciinema/commit/4550bdb7394e6660a2cfb0db910add6835031efd) Add `--out-fmt` option to `play` command - [`a9b3bff`](https://github.com/asciinema/asciinema/commit/a9b3bff650e17f33fae06e2cc5588596b2e4ec54) Merge pull request #499 from asciinema/play-out-fmt - [`4393374`](https://github.com/asciinema/asciinema/commit/43933742811d9eb4674923773d95391b1510e497) Improve help message for `play` command - [`5e39546`](https://github.com/asciinema/asciinema/commit/5e39546e79ae0ad56689f9ac2830cd9eb51d538c) Add `--loop` option to `play` command - [`ce32bb2`](https://github.com/asciinema/asciinema/commit/ce32bb2397b8acc71fe094ac00a886687194fb61) Merge pull request #500 from asciinema/play-loop - [`68b2f01`](https://github.com/asciinema/asciinema/commit/68b2f01c8372ce3b1570860595ff5b8b85294ca7) Use CRLF instead of LF when printing diagnostic messages ### 📊 Changes **30 files changed** (+626 additions, -237 deletions) <details> <summary>View changed files</summary> ➕ `.github/ISSUE_TEMPLATE/bug-report.md` (+38 -0) 📝 `.github/workflows/asciinema.yml` (+4 -4) 📝 `.github/workflows/pre-commit.yml` (+2 -2) 📝 `.pre-commit-config.yaml` (+6 -6) 📝 `CHANGELOG.md` (+20 -0) 📝 `Dockerfile` (+1 -1) 📝 `README.md` (+62 -11) 📝 `asciinema/__main__.py` (+47 -8) 📝 `asciinema/api.py` (+7 -5) 📝 `asciinema/asciicast/__init__.py` (+33 -28) 📝 `asciinema/asciicast/events.py` (+6 -6) 📝 `asciinema/asciicast/raw.py` (+20 -2) 📝 `asciinema/asciicast/v1.py` (+16 -7) 📝 `asciinema/asciicast/v2.py` (+15 -9) 📝 `asciinema/async_worker.py` (+7 -1) 📝 `asciinema/commands/cat.py` (+12 -5) 📝 `asciinema/commands/command.py` (+1 -1) 📝 `asciinema/commands/play.py` (+21 -1) 📝 `asciinema/commands/record.py` (+31 -7) 📝 `asciinema/commands/upload.py` (+6 -3) _...and 10 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 11:19:50 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/asciinema#1125
No description provided.