Skip to content

Commit

Permalink
Merge branch 'main' into remove_proxy_patch
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha committed Nov 20, 2023
2 parents 5d5116f + fa814c2 commit 7a9bd24
Show file tree
Hide file tree
Showing 54 changed files with 833 additions and 291 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ jobs:
- run: |
cd mirrord/layer/tests/apps/issue1458portnot53
rustc issue1458portnot53.rs --out-dir target
- run: |
cd mirrord/layer/tests/apps/issue2058
rustc issue2058.rs --out-dir target
# For the `java_temurin_sip` test.
- uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f
id: sdkman
Expand Down Expand Up @@ -350,6 +353,9 @@ jobs:
- run: |
cd mirrord/layer/tests/apps/issue1458portnot53
rustc issue1458portnot53.rs --out-dir target
- run: |
cd mirrord/layer/tests/apps/issue2058
rustc issue2058.rs --out-dir target
- uses: actions/setup-go@v4
with:
go-version: "1.18"
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"rust-analyzer.cargo.features": [
"binary"
"binary",
]
}
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,50 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.75.1](https://github.com/metalbear-co/mirrord/tree/3.75.1) - 2023-11-14


### Fixed

- Add a hook for
[gethostbyname](https://www.man7.org/linux/man-pages/man3/gethostbyname.3.html)
to allow erlang/elixir to resolve DNS.
[#2055](https://github.com/metalbear-co/mirrord/issues/2055)
- Change spammy connect log's level from info to trace.


### Internal

- Documentation of `env` config pattern matching.


## [3.75.0](https://github.com/metalbear-co/mirrord/tree/3.75.0) - 2023-11-08


### Added

- Added 'copy pod' operator feature to the CLI.
[#1974](https://github.com/metalbear-co/mirrord/issues/1974)
- Added option to scale down target deployment when using `copy target`
feature. [#2053](https://github.com/metalbear-co/mirrord/issues/2053)


### Fixed

- Don't drop mutex in child on fork_detour, fixes bug with elixir.
[#2047](https://github.com/metalbear-co/mirrord/issues/2047)
- Fixed `port_mapping` feature.
[#2058](https://github.com/metalbear-co/mirrord/issues/2058)
- Local file filter now applies to directory listing [regex] and not just
underlying files


### Internal

- Improved crates structure around internal proxy and mirrord console.
[#2039](https://github.com/metalbear-co/mirrord/issues/2039)


## [3.74.1](https://github.com/metalbear-co/mirrord/tree/3.74.1) - 2023-10-31


Expand Down
71 changes: 39 additions & 32 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 @@ -23,7 +23,7 @@ resolver = "2"

# latest commits on rustls suppress certificate verification
[workspace.package]
version = "3.74.1"
version = "3.75.1"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/1974.added.md

This file was deleted.

Loading

0 comments on commit 7a9bd24

Please sign in to comment.