Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages/docker-reverse-proxy": "0.0.1",
"packages/client-proxy": "0.0.1",
"packages/clickhouse": "0.1.0",
"packages/envd": "0.6.13",
"packages/envd": "0.7.0",
"packages/orchestrator": "0.0.2",
"packages/api": "0.0.1",
"packages/dashboard-api": "0.1.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/envd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.7.0](https://github.com/e2b-dev/infra/compare/envd-v0.6.13...envd-v0.7.0) (2026-08-05)


### Features

* **azure:** add azure provider arms to byoc-path build tooling ([#1361](https://github.com/e2b-dev/infra/issues/1361)) ([f8fb541](https://github.com/e2b-dev/infra/commit/f8fb541387f4d390dbbf1d8638c765419ac48048))
* **orch:** distro-aware template base-image provisioning ([#3411](https://github.com/e2b-dev/infra/issues/3411)) ([1abece1](https://github.com/e2b-dev/infra/commit/1abece1991dbd94c6d84efed08e119156271f064))


### Bug Fixes

* added envd to artifact repository ([#3432](https://github.com/e2b-dev/infra/issues/3432)) ([b7024ba](https://github.com/e2b-dev/infra/commit/b7024ba2ab34fb7973c5686bf1cc8b4aaa916a67))
* **envd:** replace time.Sleep with ticker in ScanAndBroadcast for prompt shutdown ([#3374](https://github.com/e2b-dev/infra/issues/3374)) ([002fd9f](https://github.com/e2b-dev/infra/commit/002fd9f1abf35f311f8434eba21733c87738c838))
* **oss:** upload with gcloud storage instead of gsutil ([#1302](https://github.com/e2b-dev/infra/issues/1302)) ([416a1b2](https://github.com/e2b-dev/infra/commit/416a1b21353a1605204b900afd194c3499ab0d48))

## 0.0.1 (2026-07-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/envd/pkg/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package pkg

const Version = "0.6.13" // x-release-please-version
const Version = "0.7.0" // x-release-please-version
2 changes: 1 addition & 1 deletion packages/shared/pkg/telemetry/shutdown_flush_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func TestShutdownFlushesPendingMetrics(t *testing.T) {
meterProvider, err := NewMeterProvider(exporter, time.Hour, nil)
require.NoError(t, err)

counter, err := meterProvider.Meter("test").Int64Counter("test.batch.runs")
counter, err := meterProvider.Meter("github.com/e2b-dev/infra/packages/shared/pkg/telemetry").Int64Counter("test.batch.runs")
require.NoError(t, err)
counter.Add(ctx, 1)

Expand Down
Loading