Skip to content

Releases: metalbear-co/mirrord

3.115.0

21 Aug 10:08
f4c8991
Compare
Choose a tag to compare

3.115.0 - 2024-08-21

Added

  • Adds a batching readdir requests, which should improve the performance when
    traversing large directories. Introduces a new ReadDirBatched message to the protocol.
    #2611

Fixed

  • Fix hooking on arm64 Go on Linux
    #2680

3.114.1

18 Aug 12:52
9ecab5d
Compare
Choose a tag to compare

3.114.1 - 2024-08-18

Fixed

  • Make splitqueues optional to support old version
    #2675

3.114.0

16 Aug 14:20
37901b1
Compare
Choose a tag to compare

3.114.0 - 2024-08-16

Added

  • Add port forwarding feature which can be used to proxy data from a local port
    to a remote one -
    if the local port is not specified, it will default to the same as the remote
    mirrord port-forward [options] -L [local_port:]remote_ip:remote_port
    
    #567
  • Client side support for the upcoming SQS queue splitting support in mirrord
    for Teams
    . #2066

3.113.1

15 Aug 18:00
9d9257b
Compare
Choose a tag to compare

3.113.1 - 2024-08-15

Fixed

  • Fix small error in shared sockets that resulted in it adding the shared
    socket env several times.
    #864
  • Specify that mirrord container is an unstable feature.
    #2641
  • Fix IncomingConfig json schema regression.
    #2662
  • Fix arm64 version of mirrord-cli container image and add github cache for
    container builds.
  • Fixed symbol hooks for Go 1.23.

3.113.0

13 Aug 14:41
fe8cb6c
Compare
Choose a tag to compare

3.113.0 - 2024-08-12

Added

  • Add new api to run mirrord inside container

    mirrord container [options] -- <docker/podman> run ...
    

    Because we need to run internal proxy process on the same network as the
    process loaded with mirrord-layer, to keep config and kubernetes
    comparability the communication to mirrord agent is made via external proxy
    that will run on the host machine.

                       ┌────────────────┐
                   k8s │ mirrord agent  │
                       └─────┬────▲─────┘
                             │    │
                             │    │
                       ┌─────▼────┴─────┐
        container host │ external proxy │
                       └─────┬────▲─────┘
                             │    │
                             │    │
                       ┌─────▼────┴─────┐◄──────┐
     sidecar container │ internal proxy │       │
                       └──┬─────────────┴──┐    │
            run container │ mirrord-layer  ├────┘
                          └────────────────┘
    

    #1658

Fixed

  • Add custom handling for istio ambient mode where we set
    /proc/sys/net/ipv4/conf/all/route_localnet to 1 so it does require
    agent.privileged = true to work. (See
    #2456)
    #2456
  • Fix issue introduced in #2612 that broke configs with one-value definition
    for IncomingConfig for network feature.
    #2647

3.112.1

05 Aug 12:23
c64b4ae
Compare
Choose a tag to compare

3.112.1 - 2024-08-05

Added

  • Added experimental.enable_exec_hooks_linux switch to the mirrord config.

Changed

  • Change operator port from 3000 to 443 to work without any FW exceptions

Fixed

  • Fixed execve hook (fix data race on process initialization, might fix more stuff)
    #2624
  • Added new VSCode debugpy args layout to debugger port detection

3.112.0

31 Jul 06:49
992f379
Compare
Choose a tag to compare

3.112.0 - 2024-07-30

Added

  • Add fs mapping, under feature.fs.mapping now it's possible to specify regex
    match and replace for paths while running mirrord exec.

    Example:

    [feature.fs.mapping]
    "/var/app/temp" = "/tmp" # Will replace all calls to read/write/scan for
    "/var/app/temp/sample.txt" to "/tmp/sample.txt"
    "/var/app/.cache" = "/workspace/mirrord$0" # Will replace
    "/var/app/.cache/sample.txt" to
    "/workspace/mirrord/var/app/.cache/sample.txt" see
    [Regex::replace](https://docs.rs/regex/latest/regex/struct.Regex.html#method.replace)
    ``` [#2068](https://github.com/metalbear-co/mirrord/issues/2068)
  • Warning when mirrord automatically picked one of multiple containers on the
    target.

Changed

  • Allows targeting StatefulSet without the copy_target feature (still requires
    operator though).

Fixed

  • Remove invalid schema doc mentioning podname as a valid pod target selector.
    #721
  • Pass the list of UserSocket to child processes when exec is called through an
    env var MIRRORD_SHARED_SOCKETS.
    #864
  • Fixed an issue where operator license was incorrectly recognized as expired
    when it was expiring later the same day.
  • Fixed new exec hooks breaking execution of Flask apps.

3.111.0

17 Jul 11:14
60fa79e
Compare
Choose a tag to compare

3.111.0 - 2024-07-17

Added

  • Extended feature.network.dns config with an optional local/remote filter,
    following feature.network.outgoing pattern.
    #2581

Fixed

  • Update loopback detection to include pod ip's
    #2572
  • Fixed a bug where enabling remote DNS prevented making a local connection
    with telnet. #2579
  • Remove automatic ignore of incoming/outgoing traffic for ports 50000-60000
    #2597

3.110.0

12 Jul 08:34
6d59418
Compare
Choose a tag to compare

3.110.0 - 2024-07-12

Added

  • Added experimental.trust_any_certificate to enable making app trust any
    certificate on macOS
    #2576

Fixed

  • Fix empty request streaming hanging forever
    #2590

3.109.0

10 Jul 11:40
8f5aba5
Compare
Choose a tag to compare

3.109.0 - 2024-07-10

Changed

  • mirrord commands now provide a nicer error message when the operator required
    but not installed.
    #1730
  • Add Unknown target variant for forwards compatibility.
    #2515

Fixed

  • Improved agent performance when mirroring is under high load.
    #2529
  • Don't include non-running pods in node capacity check
    #2582
  • Add exclusion for DOTNET_EnableDiagnostics to make DotNet debugging work by
    default