Skip to content

Commit

Permalink
Bump for 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GogoVega committed Oct 26, 2024
1 parent cad8fd4 commit 9c8b7bc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change log

## 0.7.0

### Breaking Changes

- Set required version of Node.js to >=18

### Changes

- Bump `@gogovega/firebase-config-node` from 0.1.5 to 0.2.0
- Only don't wait signout for Firestore and add a safety delay ([#12](https://github.com/GogoVega/Firebase-Config-Node/pull/12))
- Set required version of Node.js to >=18
- Set required version of Node-RED to >=3

## 0.6.0

### Breaking Changes
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
![demo nodes](./assets/images/demo-flow.gif)

> [!CAUTION]
> **BREAKING CHANGES**: If you are updating to 0.6, please read the [migration procedure](https://github.com/GogoVega/node-red-contrib-firebase-realtime-database/wiki/migration-wizard).
> **BREAKING CHANGES**: v0.7.0: the required version of Node.js is now >=18
> [!CAUTION]
> **BREAKING CHANGES**: If you are updating to v0.6, please read the [migration procedure](https://github.com/GogoVega/node-red-contrib-firebase-realtime-database/wiki/migration-wizard).
## What is it?

Expand Down Expand Up @@ -82,7 +85,7 @@ cd ~/.node-red
npm install @gogovega/node-red-contrib-firebase-realtime-database --omit=dev
```

Remember to restart Node RED after using either method.
Remember to restart Node RED after using either method.

## Authentication Methods

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gogovega/node-red-contrib-firebase-realtime-database",
"version": "0.6.0",
"version": "0.7.0",
"description": "Node-RED nodes to communicate with Google Firebase Realtime Databases",
"main": "build/nodes/load-config.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/migration/config-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { NodeAPI } from "node-red";
*
* @internal
*/
const requiredVersion = [0, 1, 5];
const requiredVersion = [0, 2, 0];

/**
* Cache system to not read files multiple times.
Expand Down

0 comments on commit 9c8b7bc

Please sign in to comment.