Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
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/js-ipfs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: [email protected]
Choose a base ref
...
head repository: ipfs/js-ipfs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: [email protected]
Choose a head ref
  • 9 commits
  • 431 files changed
  • 3 contributors

Commits on Aug 17, 2021

  1. Copy the full SHA
    4b82caf View commit details

Commits on Aug 20, 2021

  1. chore: upgrade unixfs (#3827)

    Upgrades to new ESM unixfs.  The new version doesn't export the `Dir` and `ShardedDir` classes so just copy the relevant parts into the codebase.
    achingbrain authored Aug 20, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4afd24a View commit details

Commits on Aug 25, 2021

  1. chore: move examples to external repo (#3821)

    - Removes all the examples from this repository
    - Change CI to execute the test examples from external repo (https://github.com/ipfs-examples/js-ipfs-examples.git)
    - Update `.md` files and add links to point to the new examples org/repos
    - Remove scripts related with example tests
    oliveriosousa authored Aug 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1806bb2 View commit details
  2. chore: update uint8arrays in every package (#3774)

    Co-authored-by: Alex Potsides <[email protected]>
    vasco-santos and achingbrain authored Aug 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bd08efe View commit details
  3. chore: use npm7 workspaces instead of lerna bootstrap (#3565)

    It's much faster!  npm@7 is required so people will need to upgrade
    if they are running node 14.  Node 15 comes with npm@7 so all good
    there.
    
    ```
    npm7
    
    real	2m30.996s
    user	8m11.495s
    sys	0m48.380sit
    
    lerna
    
    real	4m19.727s
    user	4m36.371s
    sys	0m51.310s
    ```
    achingbrain authored Aug 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e2f3cad View commit details
  4. fix: grpc server may not be enabled (#3834)

    Do not try to interrogate properties of the gRPC server without first
    checking that it's enabled
    achingbrain authored Aug 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    533845e View commit details
  5. Copy the full SHA
    bc5fe78 View commit details
  6. Copy the full SHA
    9dc6f39 View commit details
  7. Copy the full SHA
    6ad2b40 View commit details
Showing 431 changed files with 1,054 additions and 13,363 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/bundlesize.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ jobs:
runs-on: ubuntu-latest # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md
strategy:
matrix:
node-version: [16.x]
project:
- packages/ipfs
- packages/ipfs-core
@@ -20,10 +19,9 @@ jobs:
- packages/ipfs-message-port-client
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
node-version: '16'
- uses: actions/checkout@v2
- run: npm install
- name: Bundlesize ${{ matrix.project }}
7 changes: 2 additions & 5 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
project:
- packages/ipfs
- packages/ipfs-cli
@@ -28,10 +27,9 @@ jobs:
- packages/ipfs-message-port-server
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
node-version: '16'
- name: Install dependencies
run: npm install
- name: Build types
@@ -40,4 +38,3 @@ jobs:
uses: gozala/typescript-error-reporter-action@v1.0.8
with:
project: ${{ matrix.project }}

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ logs
npm-debug.log*
package-lock.json
yarn.lock
tsconfig-types.aegir.json

# Coverage directory used by tools like istanbul
coverage
Loading