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: Keats/tera
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.19.1
Choose a base ref
...
head repository: Keats/tera
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.20.0
Choose a head ref
  • 18 commits
  • 14 files changed
  • 11 contributors

Commits on Sep 3, 2023

  1. https there as well

    Keats committed Sep 3, 2023
    Configuration menu
    Copy the full SHA
    8dbc623 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. Fix escaping of backslashes _index.md (#857)

    A single leading and training space character is stripped from [inline code](https://spec.commonmark.org/0.30/#example-330).
    mgeisler authored Sep 15, 2023
    Configuration menu
    Copy the full SHA
    872760a View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

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

Commits on Oct 28, 2023

  1. Bump MSRV for deps (#869)

    Co-authored-by: Harrison Kaiser <harrison.kaiser@str.us>
    harrisonkaiser and Harrison Kaiser authored Oct 28, 2023
    Configuration menu
    Copy the full SHA
    55dff09 View commit details
    Browse the repository at this point in the history
  2. chore: Update chrono crate and avoid newly deprecated function (#868)

    Change calls to DataTime::from_utc() to DateTime::from_naive_utc_and_offset:
    Deprecated since 0.4.27: Use DateTime::from_naive_utc_and_offset instead.
    
    Co-authored-by: Harrison Kaiser <harrison.kaiser@str.us>
    harrisonkaiser and Harrison Kaiser authored Oct 28, 2023
    Configuration menu
    Copy the full SHA
    1ae170a View commit details
    Browse the repository at this point in the history
  3. Avoid a Vec allocation (#867)

    This was found using clippy with `-D clippy::perf`. Since we know the size of the
    slice at compile time, we can avoid heap allocating a Vec.
    
    Co-authored-by: Harrison Kaiser <harrison.kaiser@str.us>
    harrisonkaiser and Harrison Kaiser authored Oct 28, 2023
    Configuration menu
    Copy the full SHA
    a9ee9e0 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Update MSRV in Cargo.toml (#873)

    Co-authored-by: Harrison Kaiser <harrison.kaiser@str.us>
    harrisonkaiser and Harrison Kaiser authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    69a76e7 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Patch 1 (#875)

    * Update _index.md
    
    * Update _index.md
    
    * Update _index.md
    3tilley authored Nov 22, 2023
    Configuration menu
    Copy the full SHA
    290889e View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. Configuration menu
    Copy the full SHA
    93c92b9 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. parser: allocate vector with exact capacity (#894)

    This tweaks `parse_content()` logic in order to reduce the amount
    of vector growing, as the final vector capacity is already known
    beforehand.
    lucab authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    cafe175 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2024

  1. Configuration menu
    Copy the full SHA
    3b2e96f View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Mention whitespace control in expressions and comments (#919)

    * Mention whitespace control in expressions
    
    * Mention whitespace control with comments too
    uncenter authored May 24, 2024
    Configuration menu
    Copy the full SHA
    15b6609 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Closes #882 (#908)

    jeremija authored May 27, 2024
    Configuration menu
    Copy the full SHA
    9653290 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    41a0bf3 View commit details
    Browse the repository at this point in the history
  3. Optimize find_value_in_for_loop when no Value is found (#865)

    In the event that a for loop iterates over `Value`s and also referes to
    elements not defined by the for loop, `find_value_in_for_loop` would needlessly
    call `ForLoop::get_current_value` for each of those lookups.
    
    `ForLoop::get_current_value` can be expensive, potentially incurring a clone of
    a possibly large `Value`.
    
    This change moves the `get_current_value` so that we only clone a `Value` when
    needed.
    
    Co-authored-by: Harrison Kaiser <harrison.kaiser@str.us>
    harrisonkaiser and Harrison Kaiser authored May 27, 2024
    Configuration menu
    Copy the full SHA
    7f32cf9 View commit details
    Browse the repository at this point in the history
  4. Fix for square bracket identifiers breaking tests (#839)

    * Update tera.pest test rules
    
    * Update mod.rs test rule parsing
    p-ackland authored May 27, 2024
    Configuration menu
    Copy the full SHA
    7b3942b View commit details
    Browse the repository at this point in the history
  5. Get ready for release (#920)

    Keats authored May 27, 2024
    Configuration menu
    Copy the full SHA
    0d5de55 View commit details
    Browse the repository at this point in the history
  6. Update version number

    Keats committed May 27, 2024
    Configuration menu
    Copy the full SHA
    c05bff1 View commit details
    Browse the repository at this point in the history
Loading