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: webtorrent/http-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: webtorrent/http-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.0
Choose a head ref
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Sep 11, 2019

  1. Add "chromeapp" field to package.json

    I'm attempting to make a defacto standard for specifying Chrome App dependency substitutions using the "chromeapp" field in `package.json`.
    
    The "chromeapp" field is just like the "browser" field in `package.json` (see spec here: https://github.com/defunctzombie/package-browser-field-spec) except it's intended for Chrome App targets instead of a generic browser target.
    
    Specifically, since Chrome Apps can use raw sockets, we want to replace 'net' and 'dgram' with 'chrome-net' and 'chrome-dgram', respectively.
    feross committed Sep 11, 2019
    Copy the full SHA
    62b7004 View commit details

Commits on Jan 14, 2022

  1. feat: webtorrent org, semantic release

    Diego Rodríguez Baquero committed Jan 14, 2022
    Copy the full SHA
    65665fd View commit details
  2. fix: add semantic release config

    Diego Rodríguez Baquero committed Jan 14, 2022

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    c524325 View commit details
  3. chore(release): 1.3.0

    # [1.3.0](v1.2.0...v1.3.0) (2022-01-14)
    
    ### Bug Fixes
    
    * add semantic release config ([c524325](c524325))
    
    ### Features
    
    * webtorrent org, semantic release ([65665fd](65665fd))
    semantic-release-bot committed Jan 14, 2022

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    b881e8e View commit details
Showing with 60 additions and 3 deletions.
  1. +36 −0 .github/workflows/release.yml
  2. +11 −0 CHANGELOG.md
  3. +13 −3 package.json
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release

on:
push:
branches:
- master

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm i
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# [1.3.0](https://github.com/webtorrent/http-node/compare/v1.2.0...v1.3.0) (2022-01-14)


### Bug Fixes

* add semantic release config ([c524325](https://github.com/webtorrent/http-node/commit/c524325db9efdf082760ebf01c672863cfea87a1))


### Features

* webtorrent org, semantic release ([65665fd](https://github.com/webtorrent/http-node/commit/65665fddc31bb12883702d8ac2b4743be1da0f4c))
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
{
"name": "http-node",
"version": "1.2.0",
"name": "@webtorrent/http-node",
"version": "1.3.0",
"description": "Node.js http as a standalone package",
"repository": {
"type": "git",
"url": "git://github.com/jscissr/http-node.git"
"url": "git://github.com/webtorrent/http-node.git"
},
"main": "http.js",
"license": "MIT",
"chromeapp": {
"net": "chrome-net"
},
"dependencies": {
"freelist": "^1.0.3",
"http-parser-js": "^0.4.3"
},
"author": {
"name": "Jan Schär",
"email": "jscissr@gmail.com"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "^1.0.7",
"semantic-release": "^18.0.1"
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}