Skip to content

Commit bcca1a1

Browse files
Re-fork as digitalcredentials/jsonld v9.0.0.
1 parent 5367858 commit bcca1a1

File tree

4 files changed

+18
-49
lines changed

4 files changed

+18
-49
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
node-version: [18.x]
11+
node-version: [20.x]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Use Node.js ${{ matrix.node-version }}
@@ -23,7 +23,7 @@ jobs:
2323
timeout-minutes: 10
2424
strategy:
2525
matrix:
26-
node-version: [14.x, 16.x, 18.x, 20.x]
26+
node-version: [20.x]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- name: Use Node.js ${{ matrix.node-version }}
@@ -41,7 +41,7 @@ jobs:
4141
timeout-minutes: 10
4242
strategy:
4343
matrix:
44-
node-version: [16.x]
44+
node-version: [20.x]
4545
bundler: [webpack, browserify]
4646
steps:
4747
- uses: actions/checkout@v3
@@ -57,42 +57,5 @@ jobs:
5757
run: npm run test-karma
5858
env:
5959
BUNDLER: ${{ matrix.bundler }}
60-
build:
61-
runs-on: ubuntu-latest
62-
timeout-minutes: 10
63-
strategy:
64-
matrix:
65-
node-version: [16.x]
66-
steps:
67-
- uses: actions/checkout@v3
68-
- name: Use Node.js ${{ matrix.node-version }}
69-
uses: actions/setup-node@v3
70-
with:
71-
node-version: ${{ matrix.node-version }}
72-
- run: npm install
73-
- name: Run build
74-
run: npm run build
75-
coverage:
76-
needs: [test-node, test-karma]
77-
runs-on: ubuntu-latest
78-
timeout-minutes: 10
79-
strategy:
80-
matrix:
81-
node-version: [18.x]
82-
steps:
83-
- uses: actions/checkout@v3
84-
- name: Use Node.js ${{ matrix.node-version }}
85-
uses: actions/setup-node@v3
86-
with:
87-
node-version: ${{ matrix.node-version }}
88-
- name: Install
89-
run: npm install
90-
- name: Fetch test suites
91-
run: npm run fetch-test-suites
92-
- name: Generate coverage report
93-
run: npm run coverage-ci
94-
- name: Upload coverage to Codecov
95-
uses: codecov/codecov-action@v1
96-
with:
97-
file: ./coverage/lcov.info
98-
fail_ci_if_error: true
60+
61+

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# jsonld ChangeLog
1+
# @digitalcredentials/jsonld ChangeLog
2+
3+
## 9.0.0 -
4+
5+
### Changed
6+
- **BREAKING**: Re-fork as `@digitalcredentials/jsonld` (to fix upstream http-client export error).
7+
- Use `@digitalcredentials/[email protected]` fork.
28

39
## 8.3.2 - 2023-12-06
410

lib/documentLoaders/node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const {LINK_HEADER_CONTEXT} = require('../constants');
99
const JsonLdError = require('../JsonLdError');
1010
const RequestQueue = require('../RequestQueue');
1111
const {prependBase} = require('../url');
12-
const {httpClient} = require('@digitalbazaar/http-client');
12+
const {httpClient} = require('@digitalcredentials/http-client');
1313

1414
/**
1515
* Creates a built-in node document loader.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "jsonld",
2+
"name": "@digitalcredentials/jsonld",
33
"version": "8.3.3-0",
44
"description": "A JSON-LD Processor and API implementation in JavaScript.",
5-
"homepage": "https://github.com/digitalbazaar/jsonld.js",
5+
"homepage": "https://github.com/digitalcredentials/jsonld.js",
66
"author": {
77
"name": "Digital Bazaar, Inc.",
88
"email": "[email protected]",
@@ -14,10 +14,10 @@
1414
],
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/digitalbazaar/jsonld.js"
17+
"url": "https://github.com/digitalcredentials/jsonld.js"
1818
},
1919
"bugs": {
20-
"url": "https://github.com/digitalbazaar/jsonld.js/issues",
20+
"url": "https://github.com/digitalcredentials/jsonld.js/issues",
2121
"email": "[email protected]"
2222
},
2323
"license": "BSD-3-Clause",
@@ -29,7 +29,7 @@
2929
"lib/**/*.js"
3030
],
3131
"dependencies": {
32-
"@digitalbazaar/http-client": "^3.4.1",
32+
"@digitalcredentials/http-client": "^5.0.1",
3333
"canonicalize": "^1.0.1",
3434
"lru-cache": "^6.0.0",
3535
"rdf-canonize": "^3.4.0"

0 commit comments

Comments
 (0)