Skip to content

Commit

Permalink
Merge branch 'main' into sqs
Browse files Browse the repository at this point in the history
  • Loading branch information
t4lz committed Jul 14, 2024
2 parents ed3d13f + 6d59418 commit 03caf46
Show file tree
Hide file tree
Showing 25 changed files with 261 additions and 101 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ jobs:
- run: cargo-zigbuild clippy --lib --bins --all-features --target x86_64-unknown-linux-gnu -- -Wclippy::indexing_slicing -D warnings
# Check that compiles for the supported linux targets (aarch64)
- run: cargo-zigbuild clippy --lib --bins --all-features --target aarch64-unknown-linux-gnu -- -Wclippy::indexing_slicing -D warnings
# Check whether `mirrord-operator` crate compiles the way it's used in the operator
- run: cargo-zigbuild check -p mirrord-operator --features crd --target x86_64-unknown-linux-gnu

# if the branch is named is `x.x.x`, x ∈ [0, 9], then it's a release branch
# the output of this test is a boolean indicating if it's a release branch
Expand Down
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,55 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.110.0](https://github.com/metalbear-co/mirrord/tree/3.110.0) - 2024-07-12


### Added

- Added experimental.trust_any_certificate to enable making app trust any
certificate on macOS
[#2576](https://github.com/metalbear-co/mirrord/issues/2576)


### Fixed

- Fix empty request streaming hanging forever
[#2590](https://github.com/metalbear-co/mirrord/issues/2590)

## [3.109.0](https://github.com/metalbear-co/mirrord/tree/3.109.0) - 2024-07-10


### Changed

- mirrord commands now provide a nicer error message when the operator required
but not installed.
[#1730](https://github.com/metalbear-co/mirrord/issues/1730)
- Add Unknown target variant for forwards compatibility.
[#2515](https://github.com/metalbear-co/mirrord/issues/2515)


### Fixed

- Improved agent performance when mirroring is under high load.
[#2529](https://github.com/metalbear-co/mirrord/issues/2529)
- Don't include non-running pods in node capacity check
[#2582](https://github.com/metalbear-co/mirrord/issues/2582)
- Add exclusion for DOTNET_EnableDiagnostics to make DotNet debugging work by
default


### Internal

- CLI now sends additional headers with each request to the mirrord operator.
[#2466](https://github.com/metalbear-co/mirrord/issues/2466)
- Add mirrord-operator-apiserver-authentication `Role` and `RoleBinding` to
fetch `extension-apiserver-authentication` configmap from "kube-system".
- Fixed compilation errors in `mirrord-operator` crate with only `crd` feature
enabled.
- Fixed compilation of `mirrord-operator` crate with no features.
- Updated `x509-certificate` dependency.


## [3.108.0](https://github.com/metalbear-co/mirrord/tree/3.108.0) - 2024-07-02


Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resolver = "2"

# latest commits on rustls suppress certificate verification
[workspace.package]
version = "3.108.0"
version = "3.110.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+dotnet-debug-env.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+fixed-missing-http-dep.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+key-pair-compat.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1730.changed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2466.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2515.changed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2529.fixed.md

This file was deleted.

12 changes: 10 additions & 2 deletions mirrord-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -617,20 +617,28 @@
"type": "object",
"properties": {
"readlink": {
"title": "_experimental_ readlink {#fexperimental-readlink}",
"title": "_experimental_ readlink {#experimental-readlink}",
"description": "Enables the `readlink` hook.",
"type": [
"boolean",
"null"
]
},
"tcp_ping4_mock": {
"title": "_experimental_ tcp_ping4_mock {#fexperimental-tcp_ping4_mock}",
"title": "_experimental_ tcp_ping4_mock {#experimental-tcp_ping4_mock}",
"description": "<https://github.com/metalbear-co/mirrord/issues/2421#issuecomment-2093200904>",
"type": [
"boolean",
"null"
]
},
"trust_any_certificate": {
"title": "_experimental_ trust_any_certificate {#experimental-trust_any_certificate}",
"description": "Enables trusting any certificate on macOS, useful for <https://github.com/golang/go/issues/51991#issuecomment-2059588252>",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
Expand Down
Loading

0 comments on commit 03caf46

Please sign in to comment.