Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into beta
Browse files Browse the repository at this point in the history
* origin/main:
  chore(minor): release 1.15.0 [skip ci]
  • Loading branch information
0-vortex committed Oct 17, 2022
2 parents a58c4f9 + 73d53e8 commit 2c5ab02
Show file tree
Hide file tree
Showing 8 changed files with 115 additions and 7 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,32 @@

> All notable changes to this project will be documented in this file
## [1.15.0](https://github.com/open-sauced/api.opensauced.pizza/compare/v1.14.0...v1.15.0) (2022-10-17)


### 🤖 Build System

* implement minimal pino logger ([b991dad](https://github.com/open-sauced/api.opensauced.pizza/commit/b991dad01692fc137df53ba8b296111b0c76e4c3))


### 🍕 Features

* implement http and database logging capabilities ([3a662d0](https://github.com/open-sauced/api.opensauced.pizza/commit/3a662d0f9351264fd0d960a24666c0861d92015d)), closes [#37](https://github.com/open-sauced/api.opensauced.pizza/issues/37)


### 🧑‍💻 Code Refactoring

* correct http timestamp logging ([3782b21](https://github.com/open-sauced/api.opensauced.pizza/commit/3782b21f4039d6cb8728bad67b68a39a0d45527b))
* correct type dependencies ([9895327](https://github.com/open-sauced/api.opensauced.pizza/commit/9895327a05b6a2dde5dd0161401cffc79f5e79d4))
* improve sql logging and slow query timeout ([5385049](https://github.com/open-sauced/api.opensauced.pizza/commit/53850492591abf5c702db26145c2ed9c3e09bc67))
* make logging beautiful everywhere ([99ac2c6](https://github.com/open-sauced/api.opensauced.pizza/commit/99ac2c6e85afbf2c48174cc2e7fdeb18466f0084))


### 🎨 Styles

* add fastify express middleware adapter linting ([fc74284](https://github.com/open-sauced/api.opensauced.pizza/commit/fc7428489ebd0f86d46492fa98f7aa26b546a517))
* remove extraneous console.logs ([e3d7bd7](https://github.com/open-sauced/api.opensauced.pizza/commit/e3d7bd71471c0c56e57372cbd0477aa9d351f270))

## [1.15.0-beta.2](https://github.com/open-sauced/api.opensauced.pizza/compare/v1.15.0-beta.1...v1.15.0-beta.2) (2022-10-13)


Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.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
@@ -1,6 +1,6 @@
{
"name": "@open-sauced/api.opensauced.pizza",
"version": "1.15.0-beta.2",
"version": "1.15.0",
"keywords": [],
"description": "API dot Open Sauced is NestJS and SupaBase powered OAS3 backend designed to remove client complexity and provide a structured graph of all @open-sauced integrations",
"author": "TED Vortex <ted.vortex@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion public/diagram.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions supabase/diagrams/README.md
Expand Up @@ -16,6 +16,7 @@
| [public.private_access_tokens](public.private_access_tokens.md) | 6 | | BASE TABLE |
| [public.users_to_repos_submissions](public.users_to_repos_submissions.md) | 7 | | BASE TABLE |
| [public.users_to_repos_stargazers](public.users_to_repos_stargazers.md) | 6 | | BASE TABLE |
| [public.users_to_repos_insights](public.users_to_repos_insights.md) | 3 | | BASE TABLE |

## Relations

Expand Down
31 changes: 31 additions & 0 deletions supabase/diagrams/public.users_to_repos_insights.md
@@ -0,0 +1,31 @@
# public.users_to_repos_insights

## Description

## Columns

| Name | Type | Default | Nullable | Children | Parents | Comment |
| ---------- | ------------------------ | ------- | -------- | -------- | ------- | ------- |
| id | bigint | | false | | | |
| created_at | timestamp with time zone | now() | true | | | |
| repo_id | bigint | | true | | | |

## Constraints

| Name | Type | Definition |
| ---------------------------- | ----------- | ---------------- |
| users_to_repos_insights_pkey | PRIMARY KEY | PRIMARY KEY (id) |

## Indexes

| Name | Definition |
| ---------------------------- | --------------------------------------------------------------------------------------------------- |
| users_to_repos_insights_pkey | CREATE UNIQUE INDEX users_to_repos_insights_pkey ON public.users_to_repos_insights USING btree (id) |

## Relations

![er](public.users_to_repos_insights.svg)

---

> Generated by [tbls](https://github.com/k1LoW/tbls)
32 changes: 32 additions & 0 deletions supabase/diagrams/public.users_to_repos_insights.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 21 additions & 3 deletions supabase/diagrams/schema.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2c5ab02

Please sign in to comment.