Skip to content

Releases: RocketsGraphQL/rgraph

Rocketgraph v0.3.0 stable release - Logging

16 Aug 09:52
Compare
Choose a tag to compare

🎁 New Features

This is the v0.3.0 release of Rocketgraph. We introduce Postgres logging:

  • 🦾 pgAudit installed by default on every Project instance
  • ⛈️ Run complex queries, set a timeframe and generate logs that match them
  • 🪄 Select from a range of query templates to automatically generate log queries for you
  • 👨‍💻 Use our code editor and Cloudwatch logs syntax to easily generate your Postgres logs.
  • ⚡A demo for Postgres logger configured on my own Rocketgraph instance for demonstration.
  • 🤓 Blogs and demo videos to get you started
  • 🕵️ Support for private repos for serverless functions
  • 🧨 Support for deploying lambda functions from local

😎 Brand new Dashboard for Logging

Checkout the demo here: https://rocketgraph.io/logger-demo

Kapture 2023-08-16 at 13 58 23

You can select from a range of Query templates. For example query all the DROP commands in last 5 minutes:

Area

🤖 Usage

To use it, you'll need to enable to extension.

Login to your RDS Postgres using psql like so:

psql postgresql://postgres:[email protected]:5432/postgres

Provided in your Rocketgraph dashboard

Create a role:

CREATE ROLE rds_pgaudit; 

Then set log level:

ALTER DATABASE postgres set pgaudit.log="ALL"; 

And enable extension:

CREATE EXTENSION pgAudit;

Sleek look for serverless dashboard

new_serverless_look

🎃 Resources

🤖Improvements

Rocketgraph Stable release

02 Aug 10:30
Compare
Choose a tag to compare

📢 What’s new?

This is the first stable release of Rocketgraph. It comes with the following features:

  • 🔒 Authentication using email/password
  • 👬 Authentication using social logins
  • 🪄 Authentication using OTP and magic link
  • ⛈️ Server-less functions: Bring your own code and run it as thin AWS lambdas.
  • 👨‍💻 Your code will be automatically picked up from your Github commits by our Github bot and deployed as Lambdas
  • 🦾 AWS RDS support

💻 Brand new Dashboard look

Kapture 2023-08-02 at 13 30 38

  • ⌛ Progress dashboard page that shows the booting stage of the project. While you can browse through an array of resources to get started
  • 🎮 Hasura Console with randomly generated password to increase security.
  • 🗄️ Postgres Database with randomly generated password. You can psql into your db.
  • 🤩 AWS RDS support with 20GB Postgres data
  • ⚡ Serverless dashboard. Shows all the commits of the repository that you have given access to.
  • ⚙️ Settings dashboard. You can integrate social logins, OTP and magic link logins here.

🎉 Hasura batteries

🌮 Rocketgraph JS SDKs and react-apollo

🔍 Other minor improvements

Examples, readme and docs added

05 Jul 07:16
6167c2a
Compare
Choose a tag to compare