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: v38.1.8
Choose a base ref
...
head repository: ipfs/aegir
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v39.0.5
Choose a head ref
  • 19 commits
  • 65 files changed
  • 4 contributors

Commits on Apr 27, 2023

  1. feat!: check for unused dependencies by default (#1177)

    To make the dependency check more thorough, check for unused deps by default.
    
    ---------
    
    Co-authored-by: Alex Potsides <[email protected]>
    mpetrunic and achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6b01e36 View commit details
  2. deps: bump eslint-config-ipfs from 3.1.7 to 4.0.0 (#1229)

    * deps: bump eslint-config-ipfs from 3.1.7 to 4.0.0
    
    Bumps [eslint-config-ipfs](https://github.com/ipfs/eslint-config-ipfs) from 3.1.7 to 4.0.0.
    - [Release notes](https://github.com/ipfs/eslint-config-ipfs/releases)
    - [Changelog](https://github.com/ipfs/eslint-config-ipfs/blob/main/CHANGELOG.md)
    - [Commits](ipfs/eslint-config-ipfs@v3.1.7...v4.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: eslint-config-ipfs
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * chore: fix linting
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: achingbrain <[email protected]>
    dependabot[bot] and achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d03ce94 View commit details
  3. deps(dev): bump electron from 23.2.4 to 24.1.2 (#1240)

    Bumps [electron](https://github.com/electron/electron) from 23.2.4 to 24.1.2.
    - [Release notes](https://github.com/electron/electron/releases)
    - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
    - [Commits](electron/electron@v23.2.4...v24.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: electron
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a53d306 View commit details
  4. deps: bump semantic-release from 20.1.3 to 21.0.1 (#1223)

    Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 20.1.3 to 21.0.1.
    - [Release notes](https://github.com/semantic-release/semantic-release/releases)
    - [Commits](semantic-release/semantic-release@v20.1.3...v21.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: semantic-release
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7806e55 View commit details
  5. deps: bump @semantic-release/npm from 9.0.2 to 10.0.3 (#1233)

    Bumps [@semantic-release/npm](https://github.com/semantic-release/npm) from 9.0.2 to 10.0.3.
    - [Release notes](https://github.com/semantic-release/npm/releases)
    - [Commits](semantic-release/npm@v9.0.2...v10.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: "@semantic-release/npm"
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fd02d90 View commit details
  6. chore(release): 39.0.0 [skip ci]

    ## [39.0.0](v38.1.8...v39.0.0) (2023-04-27)
    
    ### ⚠ BREAKING CHANGES
    
    * check for unused dependencies by default (#1177)
    
    ### Features
    
    * check for unused dependencies by default ([#1177](#1177)) ([6b01e36](6b01e36))
    
    ### Dependencies
    
    * bump @semantic-release/npm from 9.0.2 to 10.0.3 ([#1233](#1233)) ([fd02d90](fd02d90))
    * bump eslint-config-ipfs from 3.1.7 to 4.0.0 ([#1229](#1229)) ([d03ce94](d03ce94))
    * bump semantic-release from 20.1.3 to 21.0.1 ([#1223](#1223)) ([7806e55](7806e55))
    * **dev:** bump electron from 23.2.4 to 24.1.2 ([#1240](#1240)) ([a53d306](a53d306))
    semantic-release-bot committed Apr 27, 2023
    Copy the full SHA
    abd1a33 View commit details
  7. fix: allow top level await (#1196)

    Update TS config to use target/module "ES2022" to allow compiling .ts files that use top level await.
    
    Depending on features used this can produce code incompatible with node 15 and below - see https://kangax.github.io/compat-table/es2016plus/ - we only officially support [Current and Active LTS](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md#supported-versions) (18/19 at the time of writing) so all good here I think.
    achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e76b978 View commit details
  8. deps: bump typedoc-plugin-mdn-links from 2.0.2 to 3.0.3 (#1209)

    Bumps [typedoc-plugin-mdn-links](https://github.com/Gerrit0/typedoc-plugin-mdn-links) from 2.0.2 to 3.0.3.
    - [Release notes](https://github.com/Gerrit0/typedoc-plugin-mdn-links/releases)
    - [Commits](Gerrit0/typedoc-plugin-mdn-links@v2.0.2...v3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: typedoc-plugin-mdn-links
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    536a111 View commit details
  9. chore(release): 39.0.1 [skip ci]

    ## [39.0.1](v39.0.0...v39.0.1) (2023-04-27)
    
    ### Bug Fixes
    
    * allow top level await ([#1196](#1196)) ([e76b978](e76b978))
    
    ### Dependencies
    
    * bump typedoc-plugin-mdn-links from 2.0.2 to 3.0.3 ([#1209](#1209)) ([536a111](536a111))
    semantic-release-bot committed Apr 27, 2023
    Copy the full SHA
    1221361 View commit details
  10. deps: bump rimraf from 3.0.2 to 5.0.0 (#1230)

    * deps: bump rimraf from 3.0.2 to 5.0.0
    
    Bumps [rimraf](https://github.com/isaacs/rimraf) from 3.0.2 to 5.0.0.
    - [Release notes](https://github.com/isaacs/rimraf/releases)
    - [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
    - [Commits](isaacs/rimraf@v3.0.2...v5.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: rimraf
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * chore: update to new api
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Alex Potsides <[email protected]>
    dependabot[bot] and achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c761502 View commit details
  11. fix: print useful dep-check message (#1248)

    Format the dep-check error message to make it easier to read.
    achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2473ae3 View commit details
  12. chore(release): 39.0.2 [skip ci]

    ## [39.0.2](v39.0.1...v39.0.2) (2023-04-27)
    
    ### Bug Fixes
    
    * print useful dep-check message ([#1248](#1248)) ([2473ae3](2473ae3))
    
    ### Dependencies
    
    * bump rimraf from 3.0.2 to 5.0.0 ([#1230](#1230)) ([c761502](c761502))
    semantic-release-bot committed Apr 27, 2023
    Copy the full SHA
    f0be0fc View commit details
  13. deps: bump p-map from 5.5.0 to 6.0.0 (#1249)

    Bumps [p-map](https://github.com/sindresorhus/p-map) from 5.5.0 to 6.0.0.
    - [Release notes](https://github.com/sindresorhus/p-map/releases)
    - [Commits](sindresorhus/p-map@v5.5.0...v6.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: p-map
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    584ceca View commit details
  14. deps: bump minimatch from 5.1.6 to 9.0.0 (#1232)

    * deps: bump minimatch from 5.1.6 to 9.0.0
    
    Bumps [minimatch](https://github.com/isaacs/minimatch) from 5.1.6 to 9.0.0.
    - [Release notes](https://github.com/isaacs/minimatch/releases)
    - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
    - [Commits](isaacs/minimatch@v5.1.6...v9.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: minimatch
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * fix: update to new minimatch exports
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: achingbrain <[email protected]>
    dependabot[bot] and achingbrain authored Apr 27, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    07150fc View commit details
  15. chore(release): 39.0.3 [skip ci]

    ## [39.0.3](v39.0.2...v39.0.3) (2023-04-27)
    
    ### Dependencies
    
    * bump minimatch from 5.1.6 to 9.0.0 ([#1232](#1232)) ([07150fc](07150fc))
    * bump p-map from 5.5.0 to 6.0.0 ([#1249](#1249)) ([584ceca](584ceca))
    semantic-release-bot committed Apr 27, 2023
    Copy the full SHA
    8acdfe9 View commit details

Commits on May 3, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dd91980 View commit details
  2. chore(release): 39.0.4 [skip ci]

    ## [39.0.4](v39.0.3...v39.0.4) (2023-05-03)
    
    ### Bug Fixes
    
    * use semantic-release-monorepo fork ([#1252](#1252)) ([dd91980](dd91980))
    semantic-release-bot committed May 3, 2023
    Copy the full SHA
    d0749be View commit details
  3. fix: downgrade @semantic-release/npm to cjs version (#1253)

    semantic release and all associated plugins need to be updated to
    esm to avoid mixed cjs/esm imports.
    achingbrain authored May 3, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4b4b77b View commit details
  4. chore(release): 39.0.5 [skip ci]

    ## [39.0.5](v39.0.4...v39.0.5) (2023-05-03)
    
    ### Bug Fixes
    
    * downgrade @semantic-release/npm to cjs version ([#1253](#1253)) ([4b4b77b](4b4b77b))
    semantic-release-bot committed May 3, 2023
    Copy the full SHA
    cf690fc View commit details
Loading