Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: static-web-server/static-web-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.32.2
Choose a base ref
...
head repository: static-web-server/static-web-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.33.0
Choose a head ref
  • 8 commits
  • 37 files changed
  • 3 contributors

Commits on Aug 13, 2024

  1. docs: v2.32.2 [skip ci]

    joseluisq committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    e67e4c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. feat: experimental in-memory files cache with eviction policy support (

    …#328)
    
    Via a new advanced configuration entry.
    
    The feature also supports expiration policies such as Time To Live (TTL) and Time To Idle (TTI).
    
    Admission to a cache is controlled by the Least Frequently Used (LFU) policy and the eviction from a cache is controlled by the Least Recently Used (LRU) policy.
    
    Example:
    
    ```toml
    [general]
    
    [advanced]
    
    [advanced.memory-cache]
    # Maximum capacity entries of the memory cache-store. Default 256
    capacity = 256
    # Time to live in seconds of a cached file entry. Default 1h
    ttl = 3600
    # Time to idle in seconds of a cached file entry. Default 5min
    tti = 300
    # Maximum size in bytes for a file entry to be cached. Default 8MB
    max-file-size = 8192
    ```
    
    Note that this feature requires Rust 1.76.0 or newer.
    
    This feature is **experimental**. However, when stabilized then a cargo feature will be available as well as a proper documentation page.
    joseluisq authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    5bdfcd4 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. feat: support for generating man pages and completions (#475)

    via a new `static-web-server generate` subcomand.
    
    * feat: generate man page and completions
    * fix: missing Windows imports in binary server entrypoint
    * refactor: log completions and man pages generation using server_info
    
    ---------
    
    Co-authored-by: Jose Quintana <[email protected]>
    jcgruenhage and joseluisq authored Sep 8, 2024
    Configuration menu
    Copy the full SHA
    d567b4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6bb6138 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. fix: issues when building SWS without default features (#480)

    * fix: issues when building without default features
    * fix: windows http1_cancel_recv build issues
    joseluisq authored Sep 10, 2024
    Configuration menu
    Copy the full SHA
    a3d40b8 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2024

  1. Configuration menu
    Copy the full SHA
    e25b586 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec85abd View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. v2.33.0

    joseluisq committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    e6a3487 View commit details
    Browse the repository at this point in the history
Loading