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: editorconfig-checker/editorconfig-checker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.0
Choose a base ref
...
head repository: editorconfig-checker/editorconfig-checker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.1
Choose a head ref
  • 16 commits
  • 21 files changed
  • 3 contributors

Commits on Jan 30, 2025

  1. chore(deps): bump github.com/gkampitakis/go-snaps from 0.5.8 to 0.5.9 (

    …#435)
    
    Bumps [github.com/gkampitakis/go-snaps](https://github.com/gkampitakis/go-snaps) from 0.5.8 to 0.5.9.
    - [Release notes](https://github.com/gkampitakis/go-snaps/releases)
    - [Commits](gkampitakis/go-snaps@v0.5.8...v0.5.9)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/gkampitakis/go-snaps
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 30, 2025
    Configuration menu
    Copy the full SHA
    045ec56 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2025

  1. chore(deps): bump golang.org/x/text from 0.21.0 to 0.22.0 (#438)

    Bumps [golang.org/x/text](https://github.com/golang/text) from 0.21.0 to 0.22.0.
    - [Release notes](https://github.com/golang/text/releases)
    - [Commits](golang/text@v0.21.0...v0.22.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/text
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 5, 2025
    Configuration menu
    Copy the full SHA
    c9353f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2374242 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2025

  1. build: switch to go1.24 (#446)

    * build: upgrade to go1.24 for t.Chdir
    
    * build: go1.24 vet validates first arg of printf now
    
    see https://go.dev/doc/go1.24#vet
    
    * build: replace all uses of os.Chdir with t.Chdir
    klaernie authored Mar 6, 2025
    Configuration menu
    Copy the full SHA
    7ecf099 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e8271c1 View commit details
    Browse the repository at this point in the history
  3. fix: check for exclusion before MIME type (#447)

    * fix: check for exclusion before MIME type
    
    Since the exclusion check is cheap and requires no external interaction,
    it is better to check for the exclusion before opening and reading the
    file to determine the MIME type.
    
    Besides the marginal speedup this also fixes #442 (where exclusions are
    used to prevent editorconfig-checker from reading inaccessible files)
    
    * build: return as soon as a match is found
    
    * docs: document, why using mimetype.EqualsAny would be a bad idea
    klaernie authored Mar 6, 2025
    Configuration menu
    Copy the full SHA
    cd9976b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9ffcae2 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2025

  1. chore(deps): bump golang.org/x/text from 0.22.0 to 0.23.0 (#449)

    Bumps [golang.org/x/text](https://github.com/golang/text) from 0.22.0 to 0.23.0.
    - [Release notes](https://github.com/golang/text/releases)
    - [Commits](golang/text@v0.22.0...v0.23.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/text
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2025
    Configuration menu
    Copy the full SHA
    843f9c0 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2025

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

Commits on Mar 11, 2025

  1. fix(test): support running our test suite under -trimpath, closes #397

     (#439)
    
    * chore(deps): upgrade go-snaps to v0.5.10 that supports trimpath builds
    
    * build(test): start running a pass of our testsuite under -trimpath
    
    This commit is guaranteed to be broken, since our code not yet handles
    the caveats regarding the current working dir assumption that go-snaps
    now has.
    
    * test: echo the commands being executed, to help the user find out which test phase fails
    
    * fix(test): ensure snaps finds the snapshot directory by using an absolute path
    
    Since we "tamper" with the current working directory to achieve a
    certain output from files.GetRelativePath(), we now need to help
    snaps find the __snapshots__ directory.
    klaernie authored Mar 11, 2025
    Configuration menu
    Copy the full SHA
    fc78406 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2025

  1. chore(deps): bump github.com/editorconfig/editorconfig-core-go/v2 (#452)

    Bumps [github.com/editorconfig/editorconfig-core-go/v2](https://github.com/editorconfig/editorconfig-core-go) from 2.6.2 to 2.6.3.
    - [Release notes](https://github.com/editorconfig/editorconfig-core-go/releases)
    - [Changelog](https://github.com/editorconfig/editorconfig-core-go/blob/master/CHANGELOG.md)
    - [Commits](editorconfig/editorconfig-core-go@v2.6.2...v2.6.3)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/editorconfig/editorconfig-core-go/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 12, 2025
    Configuration menu
    Copy the full SHA
    3ab0c97 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump github.com/gkampitakis/go-snaps from 0.5.9 to 0.5.11 (

    #443)
    
    Bumps [github.com/gkampitakis/go-snaps](https://github.com/gkampitakis/go-snaps) from 0.5.9 to 0.5.11.
    - [Release notes](https://github.com/gkampitakis/go-snaps/releases)
    - [Commits](gkampitakis/go-snaps@v0.5.9...v0.5.11)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/gkampitakis/go-snaps
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 12, 2025
    Configuration menu
    Copy the full SHA
    e83454c View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2025

  1. chore(deps): bump golang.org/x/net from 0.33.0 to 0.36.0 (#453)

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.33.0 to 0.36.0.
    - [Commits](golang/net@v0.33.0...v0.36.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/net
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 13, 2025
    Configuration menu
    Copy the full SHA
    b68f511 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2025

  1. Configuration menu
    Copy the full SHA
    65b01f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8799d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a81239 View commit details
    Browse the repository at this point in the history
Loading