Skip to content

Commit

Permalink
* (bluefox) Updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Jul 19, 2024
1 parent a8ddd83 commit faaedac
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 21 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 18.x

- name: Install Dependencies
run: npm i
Expand Down Expand Up @@ -94,18 +90,15 @@ jobs:
github.event_name == 'push' &&
startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 18.x

- name: Extract the version and commit body from the tag
id: extract_release
Expand Down Expand Up @@ -140,7 +133,7 @@ jobs:
tag_name: ${{ github.ref }}
release_name: Release v${{ steps.extract_release.outputs.VERSION }}
draft: false
# Prerelease versions create prereleases on Github
# Prerelease versions create pre-releases on GitHub
prerelease: ${{ contains(steps.extract_release.outputs.VERSION, '-') }}
body: ${{ steps.extract_release.outputs.BODY }}

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![Translation status](https://weblate.iobroker.net/widgets/adapters/-/simple-api/svg-badge.svg)](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
[![Downloads](https://img.shields.io/npm/dm/iobroker.simple-api.svg)](https://www.npmjs.com/package/iobroker.simple-api)

This is RESTFul interface to read the objects and states from ioBroker and to write/control the states over HTTP Get/Post requests.
This is a RESTFul interface to read the objects and states from ioBroker and to write/control the states over HTTP Get/Post requests.

**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.

Expand Down Expand Up @@ -588,6 +588,9 @@ If no data source was specified or the noHistory parameter is passed, then only
### **WORK IN PROGRESS**
-->
## Changelog
### **WORK IN PROGRESS**
* (bluefox) Updated packages

### 2.8.0 (2024-05-23)
* (foxriver76) ported to `@iobroker/webserver`

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
"url": "https://github.com/ioBroker/ioBroker.simple-api"
},
"dependencies": {
"@iobroker/adapter-core": "^3.1.4",
"@iobroker/testing": "^4.1.3",
"@iobroker/adapter-core": "^3.1.6",
"@iobroker/webserver": "^1.0.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
"@alcalzone/release-script-plugin-iobroker": "^3.6.0",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/adapter-dev": "^1.2.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"@iobroker/testing": "^4.1.3",
"@alcalzone/release-script": "^3.7.3",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-dev": "^1.3.0",
"chai": "^4.4.1",
"mocha": "^10.6.0",
"request": "^2.88.2"
},
"bugs": {
Expand Down

0 comments on commit faaedac

Please sign in to comment.