Skip to content

Commit 2d36cd3

Browse files
authored
Merge pull request #1109 from ipfs/release-v0.37.0
Release v0.37.0
2 parents 0bcf5f9 + 0011242 commit 2d36cd3

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ The following emojis are used to highlight certain changes:
1616

1717
### Added
1818

19+
### Changed
20+
21+
### Removed
22+
23+
### Fixed
24+
25+
### Security
26+
27+
28+
## [v0.37.0]
29+
30+
### Added
31+
1932
- `ipld/unixfs/io`: added `SizeEstimationMode` for configurable HAMT sharding threshold decisions. Supports legacy link-based estimation (`SizeEstimationLinks`), accurate block-based estimation (`SizeEstimationBlock`), or disabling size-based thresholds (`SizeEstimationDisabled`). [#1088](https://github.com/ipfs/boxo/pull/1088), [IPIP-499](https://github.com/ipfs/specs/pull/499)
2033
- `ipld/unixfs/io`: added `UnixFSProfile` with `UnixFS_v0_2015` and `UnixFS_v1_2025` presets for CID-deterministic file and directory DAG construction. [#1088](https://github.com/ipfs/boxo/pull/1088), [IPIP-499](https://github.com/ipfs/specs/pull/499)
2134
- `files`: `NewSerialFileWithOptions` now supports controlling whether symlinks are preserved or dereferenced before being added to IPFS. See `SerialFileOptions.DereferenceSymlinks`. [#1088](https://github.com/ipfs/boxo/pull/1088), [IPIP-499](https://github.com/ipfs/specs/pull/499)
@@ -40,8 +53,6 @@ The following emojis are used to highlight certain changes:
4053
- `ipld/unixfs/mod`: fixed sparse file writes in MFS. Writing past the end of a file (e.g., `ipfs files write --offset 1000 /file` on a smaller file) would lose data because `expandSparse` created the zero-padding node but didn't update the internal pointer. Subsequent writes went to the old unexpanded node.
4154
- `ipld/unixfs/io`: fixed mode/mtime metadata loss during Basic<->HAMT directory conversions. Previously, directories with `WithStat(mode, mtime)` would lose this metadata when converting between basic and sharded formats, or when reloading a HAMT directory from disk.
4255

43-
### Security
44-
4556

4657
## [v0.36.0]
4758

docs/tracing.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ to use the Jaeger UI. The [Gateway examples](../examples/gateway/) fully support
1515
- [Environment Variables](#environment-variables)
1616
- [`OTEL_TRACES_EXPORTER`](#otel_traces_exporter)
1717
- [`OTLP Exporter`](#otlp-exporter)
18-
- [`Zipkin Exporter`](#zipkin-exporter)
1918
- [`File Exporter`](#file-exporter)
2019
- [`OTEL_PROPAGATORS`](#otel_propagators)
2120
- [Using Jaeger UI](#using-jaeger-ui)
@@ -33,7 +32,6 @@ set of additional environment variables used to configure it. The following valu
3332
are supported:
3433

3534
- `otlp`
36-
- `zipkin`
3735
- `stdout`
3836
- `file` -- appends traces to a JSON file on the filesystem
3937

@@ -52,10 +50,6 @@ Specifies the OTLP protocol to use, which is one of:
5250

5351
Default: `"grpc"`
5452

55-
### `Zipkin Exporter`
56-
57-
See [Zipkin Exporter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#zipkin-exporter).
58-
5953
### `File Exporter`
6054

6155
#### `OTEL_EXPORTER_FILE_PATH`
@@ -77,7 +71,6 @@ ephemeral container:
7771
```console
7872
$ docker run -d --rm --name jaeger \
7973
-e COLLECTOR_OTLP_ENABLED=true \
80-
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
8174
-p 5775:5775/udp \
8275
-p 6831:6831/udp \
8376
-p 6832:6832/udp \

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v0.36.0"
2+
"version": "v0.37.0"
33
}

0 commit comments

Comments
 (0)