Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EventHub/Updates #150

Merged
merged 4 commits into from
Aug 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ingest-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
NODE_VERSION: 14.17


jobs:
security:
Expand All @@ -24,7 +25,7 @@ jobs:
matrix:
STAGES: [dev]
steps:
- uses: actions/setup-node@v2.1.5
- uses: actions/setup-node@v2.3.0
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down Expand Up @@ -65,7 +66,7 @@ jobs:
needs: security
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2.1.5
- uses: actions/setup-node@v2.3.0
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ingest-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
matrix:
STAGES: [dev]
steps:
- uses: actions/setup-node@v2.1.5
- uses: actions/setup-node@v2.3.0
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.3] - 2021-07-27

### Changed

- Update project dependencies

## [1.1.2] - 2021-07-20

### Changed

- Fix for `dev` and `beta` deployment
- Update project dependencies

## [1.1.1] - 2021-06-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "European Union Public License 1.2",
"url": "https://spdx.org/licenses/EUPL-1.2.html"
},
"version": "1.1.2"
"version": "1.1.3"
},
"externalDocs": {
"description": "ARD-Eventhub Documentation",
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ info:
license:
name: European Union Public License 1.2
url: 'https://spdx.org/licenses/EUPL-1.2.html'
version: 1.1.2
version: 1.1.3
externalDocs:
description: ARD-Eventhub Documentation
url: 'https://swrlab.github.io/ard-eventhub/'
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ard-eventhub",
"version": "1.1.2",
"version": "1.1.3",
"description": "ARD system to distribute real-time (live) metadata for primarily radio broadcasts.",
"main": "./src/ingest/index.js",
"scripts": {
Expand All @@ -20,15 +20,15 @@
"author": "SWR Audio Lab <[email protected]>",
"license": "EUPL-1.2",
"dependencies": {
"@google-cloud/datastore": "^6.4.3",
"@google-cloud/pubsub": "^2.15.1",
"@google-cloud/secret-manager": "^3.7.2",
"@google-cloud/datastore": "^6.4.7",
"@google-cloud/pubsub": "^2.16.1",
"@google-cloud/secret-manager": "^3.9.0",
"compression": "^1.7.4",
"dd-trace": "^0.35.0",
"dd-trace": "^1.1.0",
"express": "4.17.1",
"express-openapi-validator": "^4.12.14",
"firebase-admin": "^9.10.0",
"google-auth-library": "^7.1.2",
"express-openapi-validator": "^4.12.15",
"firebase-admin": "^9.11.0",
"google-auth-library": "^7.4.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"node-crc": "^1.3.2",
Expand All @@ -45,12 +45,12 @@
"chai-http": "^4.3.0",
"docsify-cli": "^4.4.3",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint": "^7.32.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-swr": "0.0.5",
"license-compliance": "^1.2.1",
"mocha": "^9.0.1",
"nodemon": "^2.0.9",
"license-compliance": "^1.2.2",
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"engines": {
Expand Down
Loading