Skip to content

Commit 77336a0

Browse files
authored
Merge pull request #1123 from wader/release-0.15.0
fq: Release 0.15.0
2 parents 27c7b27 + 91d1e0c commit 77336a0

File tree

2 files changed

+72
-1
lines changed

2 files changed

+72
-1
lines changed

CHANGES.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,74 @@
1+
# 0.15.0
2+
3+
## Changes
4+
5+
- Fix issue running fq without a home directory. #1107 Thanks @phiekl for the report.
6+
7+
## Format changes
8+
9+
- `avc_nalu` Decode payload into a `rbsp` struct (raw byte sequence payload) and only introduce a sub-buffer if de-emulation prevention was done. #1120
10+
- `hevc_nalu` Decode payload into a `rbsp` struct. See above. #1120
11+
- `matroska` Update specification. #1124
12+
- `mp4`
13+
- Add a `skip_samples` option to not add fields or decode samples at all. Useful when dealing with broken mp4 files. #1089
14+
- Add a `truncated_size` field if allow_truncated is used and we had to truncate. Useful when dealing with broken mp4 files. #1091
15+
- `pcmC` Decode box. #1082
16+
- `chnl` Decode box. #1082
17+
- Don't decode samples for `ipcm` track format. Could end up with a huge array and not be very useful. #1083
18+
- `trun` Skip samples array if there are no sample flags
19+
- `uuid` Decode `tfxd` and `tfrf` boxes. #1110 Thanks @rafalborczuch
20+
21+
## Changelog
22+
23+
* 4a57b12d Correct a few spelling mistakes.
24+
* 4116c002 Update docker-golang to 1.24.0 from 1.23.6
25+
* c3f5faac Update docker-golang to 1.24.1 from 1.24.0
26+
* ab8cf3a2 Update docker-golang to 1.24.2 from 1.24.1
27+
* d0c772d8 Update github-go-version to 1.24.0 from 1.23.6
28+
* 240adf71 Update github-go-version to 1.24.1 from 1.24.0
29+
* 176fce11 Update github-go-version to 1.24.2 from 1.24.1
30+
* 35e5248c Update github-golangci-lint to 1.64.2 from 1.63.4
31+
* 867a3935 Update github-golangci-lint to 1.64.4 from 1.64.2
32+
* b59fc575 Update github-golangci-lint to 1.64.5 from 1.64.4
33+
* 2639e8eb Update github-golangci-lint to 1.64.6 from 1.64.5
34+
* 442bff51 Update github-golangci-lint to 1.64.7 from 1.64.6
35+
* 58d78f35 Update github-golangci-lint to 1.64.8 from 1.64.7
36+
* 6f89d45d Update github-golangci-lint to 2.1.2 from 2.1.1
37+
* d5f5ca00 Update gomod-BurntSushi/toml to 1.5.0 from 1.4.0
38+
* a161bd53 Update gomod-golang-x-crypto to 0.33.0 from 0.32.0
39+
* a056193b Update gomod-golang-x-crypto to 0.34.0 from 0.33.0
40+
* d04a1d26 Update gomod-golang-x-crypto to 0.35.0 from 0.34.0
41+
* af70b0ae Update gomod-golang-x-crypto to 0.37.0 from 0.36.0
42+
* 74a4d9e7 Update gomod-golang-x-net to 0.35.0 from 0.34.0
43+
* 788b39cb Update gomod-golang-x-net to 0.36.0 from 0.35.0
44+
* a32e6c33 Update gomod-golang-x-net to 0.37.0 from 0.36.0
45+
* c4149176 Update gomod-golang-x-net to 0.38.0 from 0.37.0
46+
* b526d0c3 Update gomod-golang-x-net to 0.39.0 from 0.38.0
47+
* aa2b1a69 Update gomod-golang-x-term to 0.31.0 from 0.30.0
48+
* 0b2da0d3 Update gomod-golang/text to 0.24.0 from 0.23.0
49+
* ef00cbb2 Update make-golangci-lint to 1.64.2 from 1.63.4
50+
* b2cdd4b8 Update make-golangci-lint to 1.64.4 from 1.64.2
51+
* 6aafdb31 Update make-golangci-lint to 1.64.5 from 1.64.4
52+
* bc73d2fc Update make-golangci-lint to 1.64.6 from 1.64.5
53+
* 1419e939 Update make-golangci-lint to 1.64.7 from 1.64.6
54+
* 5510e025 Update make-golangci-lint to 1.64.8 from 1.64.7
55+
* e160120b Update make-golangci-lint to 2.1.2 from 2.1.1
56+
* d5430710 avc,hevc: Only use sub-buffer for rbsp if needed
57+
* c3b30614 bump,action: Use ^2 for golangci-lint
58+
* c02bc3af doc: Regenerate
59+
* fb322412 fq: Don't fail at start if both HOME and XDG_CONFIG_HOME are not set
60+
* 0fc335b2 gha: Update actions and configs
61+
* f5a4ea93 go: Run modernize
62+
* 493ba6bf go: Switch to golangci-lint v2
63+
* 485dfde9 matroska: Update spec
64+
* 3ed43136 mp4: Add a "truncated_size" field if allow_truncated is used and we truncate
65+
* db9c03af mp4: Add skip_samples options
66+
* 4994c33f mp4: Decode pcmC and chnl box
67+
* c2481928 mp4: Don't decode samples for ipcm
68+
* de3c7054 mp4: trun: Skip samples array if there are no sample flags
69+
* bb0276d7 mp4: uuid: decode tfxd and tfrf boxes
70+
* 1a3232f3 xml: Fix "right hand must be only type assertion" by igoring cast error more explicitly
71+
172
# 0.14.0
273

374
## Changes

fq.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/wader/fq/pkg/interp"
77
)
88

9-
const version = "0.14.0"
9+
const version = "0.15.0"
1010

1111
func main() {
1212
cli.Main(interp.DefaultRegistry, version)

0 commit comments

Comments
 (0)