Skip to content

Commit bf69afb

Browse files
authored
Merge pull request #191 from EdurtIO/develop
Release notes for 1.18.0
2 parents 74db9a1 + 62eb2e8 commit bf69afb

83 files changed

Lines changed: 1808 additions & 510 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
8+
- package-ecosystem: "npm"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
schedule:
9+
- cron: '39 13 * * 0'
10+
11+
jobs:
12+
analyze:
13+
name: Analyze
14+
runs-on: ubuntu-latest
15+
permissions:
16+
actions: read
17+
contents: read
18+
security-events: write
19+
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
language: [ 'javascript', 'TypeScript' ]
24+
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v3
28+
29+
# Initializes the CodeQL tools for scanning.
30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v2
32+
with:
33+
languages: ${{ matrix.language }}
34+
35+
- name: Autobuild
36+
uses: github/codeql-action/autobuild@v2
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Dependency Review'
2+
on: [ pull_request ]
3+
4+
permissions:
5+
contents: read
6+
7+
jobs:
8+
dependency-review:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: 'Checkout Repository'
12+
uses: actions/checkout@v3
13+
- name: 'Dependency Review'
14+
uses: actions/dependency-review-action@v1

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ DBM can query data from any SQL-speaking datastore or data engine (ClickHouse an
7474
Here are some of the major database solutions that are supported:
7575

7676
<p align="center">
77-
<img src="./src/shared/assets/integrate/clickhouse.png" alt="clickhouse" border="0" width="133" height="34" />
78-
<img src="./src/shared/assets/integrate/trino.png" alt="trino" border="0" width="46" height="46"/>
79-
<img src="./src/shared/assets/integrate/presto.png" alt="presto" border="0" width="152" height="46"/>
77+
<img src="./src/shared/assets/integrate/clickhouse.png" alt="ClickHouse" border="0" width="133" height="34" />
78+
<img src="./src/shared/assets/integrate/trino.png" alt="Trino" border="0" width="46" height="46"/>
79+
<img src="./src/shared/assets/integrate/presto.png" alt="Presto" border="0" width="152" height="46"/>
80+
<img src="./src/shared/assets/integrate/mysql.png" alt="MySQL" border="0" width="auto" height="50"/>
8081
</p>
8182

8283
## Features

SECURITY.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
| Version | Supported |
9+
|----------| ------------------ |
10+
| > 1.18.0 | :white_check_mark: |
11+
| < 1.18.0 | :x: |
12+
13+
## Reporting a Vulnerability
14+
15+
If you find a software vulnerability, please submit Issues. We will fix it after review. It will generally be fixed in the next version!
157 KB
Loading
214 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
31.2 KB
Loading
136 KB
Loading

0 commit comments

Comments
 (0)