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.0
Choose a head ref
  • 2 commits
  • 8 files changed
  • 2 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
Loading