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: ipfs/aegir
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v40.0.13
Choose a base ref
...
head repository: ipfs/aegir
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v41.0.4
Choose a head ref
  • 10 commits
  • 15 files changed
  • 3 contributors

Commits on Sep 30, 2023

  1. deps!: update eslint-config-ipfs (#1374)

    - See ipfs/eslint-config-ipfs#190
    
    BREAKING CHANGE: All interfaces now need to use method signature style rather than property function style
    
    eg:
    before
    ```ts
    interface Foo {
      bar: (baz: number) => void
    }
    ```
    after
    ```ts
    interface Foo {
      bar(baz: number): void
    }
    ```
    wemeetagain authored Sep 30, 2023
    Configuration menu
    Copy the full SHA
    5fadfb7 View commit details
    Browse the repository at this point in the history
  2. chore(release): 41.0.0 [skip ci]

    ## [41.0.0](v40.0.13...v41.0.0) (2023-09-30)
    
    ### ⚠ BREAKING CHANGES
    
    * All interfaces now need to use method signature style rather than property function style
    
    eg:
    before
    ```ts
    interface Foo {
      bar: (baz: number) => void
    }
    ```
    after
    ```ts
    interface Foo {
      bar(baz: number): void
    }
    ```
    
    ### Dependencies
    
    * update eslint-config-ipfs ([#1374](#1374)) ([5fadfb7](5fadfb7))
    semantic-release-bot committed Sep 30, 2023
    Configuration menu
    Copy the full SHA
    eac17f8 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. chore: fix linting errors (#1380)

    The ts doc checker does not like having the same interface in a file
    with the same method names.
    achingbrain authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    2918ba9 View commit details
    Browse the repository at this point in the history
  2. chore(release): 41.0.1 [skip ci]

    ## [41.0.1](v41.0.0...v41.0.1) (2023-10-06)
    
    ### Trivial Changes
    
    * fix linting errors ([#1380](#1380)) ([2918ba9](2918ba9))
    semantic-release-bot committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    dabd450 View commit details
    Browse the repository at this point in the history
  3. fix: add package to eslint parser options (#1379)

    To support linting a file using the nearest config add `package: true`
    to the default parser options.
    achingbrain authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    eb9f72f View commit details
    Browse the repository at this point in the history
  4. chore(release): 41.0.2 [skip ci]

    ## [41.0.2](v41.0.1...v41.0.2) (2023-10-06)
    
    ### Bug Fixes
    
    * add package to eslint parser options ([#1379](#1379)) ([eb9f72f](eb9f72f))
    semantic-release-bot committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    60f34fb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fc3b4e1 View commit details
    Browse the repository at this point in the history
  6. chore(release): 41.0.3 [skip ci]

    ## [41.0.3](v41.0.2...v41.0.3) (2023-10-06)
    
    ### Bug Fixes
    
    * eslint option is project not package ([fc3b4e1](fc3b4e1))
    semantic-release-bot committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    aa032c7 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Configuration menu
    Copy the full SHA
    46cc114 View commit details
    Browse the repository at this point in the history
  2. chore(release): 41.0.4 [skip ci]

    ## [41.0.4](v41.0.3...v41.0.4) (2023-10-10)
    
    ### Bug Fixes
    
    * set bail defaults correctly ([#1382](#1382)) ([46cc114](46cc114))
    semantic-release-bot committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    1c93163 View commit details
    Browse the repository at this point in the history
Loading