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: compose-spec/compose-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.1
Choose a base ref
...
head repository: compose-spec/compose-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.0
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Sep 23, 2022

  1. env: fix errors on valid interpolation expressions (#307)

    The parser was too strict here and would reject valid constructs
    that used an unescaped `$` that was not part of a variable
    expression (and not ambiguous).
    
    Now, only errors for unmatched braced expressions (e.g. `${FOO`)
    are returned, but other valid cases are ignored and the `$` will
    be treated literally, e.g. `a $ string` -> `a $ string`, which is
    the same as in POSIX.
    
    Signed-off-by: Milas Bowman <milas.bowman@docker.com>
    milas authored Sep 23, 2022
    Configuration menu
    Copy the full SHA
    6bf774c View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. ci: use currently maintained Golang releases (1.18 & 1.19) (#309)

    Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
    glours authored Sep 26, 2022
    Configuration menu
    Copy the full SHA
    be0dada View commit details
    Browse the repository at this point in the history
  2. env: fix a bunch of escaping/parsing edge cases (#308)

    * Handle standard escape sequences based on XSI/XBD
      https://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html
    * Fix parsing with escaped quotes at end of quoted
      value
    * Handle key whose name starts with `export` (require
      whitespace between `export` keyword when stripping)
    * Fix parsing of unquoted values with embedded `#`
      (require a space before starting an inline comment)
    * Use correct parser methods throughout all test cases
    * Eliminate a lot of unused code that was not working
      right
    
    Signed-off-by: Milas Bowman <milas.bowman@docker.com>
    milas authored Sep 26, 2022
    Configuration menu
    Copy the full SHA
    08a21df View commit details
    Browse the repository at this point in the history
Loading