Skip to content

Commit f511f24

Browse files
committed
dependencies updated
1 parent db0d680 commit f511f24

File tree

6 files changed

+420
-233
lines changed

6 files changed

+420
-233
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@ on: [push]
44

55
jobs:
66
build:
7-
8-
runs-on: ubuntu-latest
9-
7+
runs-on: self-hosted
108
strategy:
119
max-parallel: 1
1210
matrix:
13-
node-version: [12.x, 14.x]
14-
11+
node-version: [16.x, 18.x]
1512
steps:
1613
- uses: actions/checkout@v2
1714
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on: workflow_dispatch
33

44
jobs:
55
publish:
6-
runs-on: ubuntu-latest
6+
runs-on: self-hosted
77
steps:
88
- name: Checkout sources
99
uses: actions/checkout@v2
10-
- name: Use Node.js 14
10+
- name: Use Node.js 16
1111
uses: actions/setup-node@v2
1212
with:
13-
node-version: 14
13+
node-version: 16
1414
registry-url: https://registry.npmjs.org/
1515
- name: Install dependencies
1616
run: npm ci

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 1.5.1
4+
5+
Dependencies updated
6+
37
### 1.5.0
48

59
`ContentAttachments` fixes for all attachments. ([#23](https://github.com/MrRefactoring/confluence.js/issues/23) Thanks [Anton](https://github.com/tester22) for catching)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Usability, consistency, and performance are key focuses of confluence.js, and it
2020
- [Installation](#installation)
2121
- [Usage](#usage)
2222
- [Authentication](#authentication)
23-
- [Basic](#basic-authenticationhttpsdeveloperatlassiancomcloudconfluencebasic-auth-for-rest-apis)
24-
- [OAuth 2.0](#oauth-20httpsdeveloperatlassiancomcloudconfluenceoauth-2-3lo-apps)
25-
- [JWT](#jwthttpsdeveloperatlassiancomcloudconfluenceunderstanding-jwt)
23+
- [Basic](#basic-authentication)
24+
- [OAuth 2.0](#oauth-20)
25+
- [JWT](#jwt)
2626
- [Personal access token](#personal-access-token)
2727
- [Your first request and using algorithm](#your-first-request-and-using-algorithm)
2828
- [Decreasing Webpack bundle size](#decreasing-webpack-bundle-size)

0 commit comments

Comments
 (0)