Skip to content

Commit 7781517

Browse files
committed
Merge branch 'main' into feat/rbac
2 parents 5c0b665 + bbc0a5d commit 7781517

File tree

405 files changed

+12033
-6626
lines changed

Some content is hidden

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

405 files changed

+12033
-6626
lines changed

.config/dictionaries/project.dic

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
aarch
22
abcz
33
ABNF
4+
abnfb
45
addrr
56
addrs
67
adminer
@@ -12,10 +13,12 @@ asyncio
1213
Attributes
1314
auditability
1415
Auliffe
16+
autonat
1517
auxdata
1618
babystep
1719
backpressure
1820
bech
21+
Behaviour
1922
bimap
2023
bindgen
2124
bkioshn
@@ -43,11 +46,13 @@ childs
4346
Chotivichit
4447
chrono
4548
cids
49+
cidv
4650
ciphertext
4751
ciphertexts
4852
Coap
4953
codegen
5054
codepoints
55+
connexa
5156
coti
5257
coverallsapp
5358
cpus
@@ -62,6 +67,7 @@ Datelike
6267
DBSTATUS
6368
dbsync
6469
dcbor
70+
dcutr
6571
decompressor
6672
delegators
6773
devnet
@@ -73,14 +79,17 @@ dockerhub
7379
docstrings
7480
doctests
7581
Dominik
82+
dorny
7683
dotenv
7784
dotenvy
7885
dotglob
7986
drep
8087
dreps
8188
Earthfile
8289
elgamal
90+
encryptiondecryption
8391
encryptor
92+
endfilter
8493
Errno
8594
Eternl
8695
evalv
@@ -141,6 +150,7 @@ jormungandr
141150
Jörmungandr
142151
jsonschema
143152
Justfile
153+
keypair
144154
kiduri
145155
labelloc
146156
lcov
@@ -161,6 +171,9 @@ localizable
161171
logcall
162172
lookaside
163173
ltail
174+
ltdoc
175+
ltend
176+
ltstart
164177
maindbname
165178
mapref
166179
markdownlint
@@ -172,6 +185,7 @@ MDLINTS
172185
mdns
173186
MEMMAP
174187
memx
188+
Merkle
175189
Metadatum
176190
metno
177191
mgrybyk
@@ -191,7 +205,10 @@ moka
191205
MPMC
192206
msvc
193207
Multiaddr
208+
multibase
209+
multicodec
194210
multiera
211+
multihash
195212
mutlisig
196213
mypy
197214
nanos
@@ -245,14 +262,17 @@ pytype
245262
qpsg
246263
qrcode
247264
quic
265+
rafal
248266
rankdir
249267
rapidoc
250268
readlinkat
251269
redoc
270+
rejectattr
252271
REMOVEDIR
253272
renameat
254273
Replayability
255274
Repr
275+
reqs
256276
reqwest
257277
retriggering
258278
ristretto
@@ -278,6 +298,7 @@ scanstatus
278298
Sched
279299
scrollability
280300
seckey
301+
selectattr
281302
Signdata
282303
sitedocs
283304
skiplist
@@ -326,6 +347,7 @@ utimensat
326347
UTXO
327348
uuidv4
328349
uuidv7
350+
varint
329351
venv
330352
vitss
331353
Vkey

.github/workflows/ci.yml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,39 @@ permissions:
1616
pull-requests: write
1717

1818
jobs:
19+
paths-filter:
20+
runs-on: ubuntu-latest
21+
outputs:
22+
docs: ${{ steps.filter.outputs.docs }}
23+
not-only-docs: ${{ steps.filter.outputs.not-only-docs }}
24+
steps:
25+
- uses: actions/checkout@v5
26+
- uses: dorny/paths-filter@v3
27+
id: filter
28+
with:
29+
filters: |
30+
docs:
31+
- 'docs/**'
32+
- '.config/dictionaries/project.dic'
33+
not-only-docs:
34+
- '!((docs/**)|.config/dictionaries/project.dic)'
35+
36+
docs-only:
37+
if: ${{ needs.paths-filter.outputs.docs == 'true' && needs.paths-filter.outputs.not-only-docs != 'true' }}
38+
needs: [paths-filter]
39+
uses: input-output-hk/catalyst-forge/.github/workflows/release.yml@ci/v1.10.0
40+
with:
41+
releases: '[{"project":"./docs","name":"docs"}]'
42+
forge_version: 0.21.0
43+
1944
ci:
20-
if: ${{ !github.event.pull_request.draft }}
21-
uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0
45+
if: ${{ !github.event.pull_request.draft && needs.paths-filter.outputs.not-only-docs == 'true'}}
46+
needs: [paths-filter]
47+
uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.10.0
2248
with:
23-
forge_version: 0.20.0
49+
forge_version: 0.21.0
2450

2551
test_reporting:
2652
if: ${{ !github.event.pull_request.draft }}
27-
needs: ci
53+
needs: [ci]
2854
uses: ./.github/workflows/generate-allure-report.yml

.markdownlint.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
// MD007/ul-indent - Unordered list indentation
2828
"MD007": {
2929
// Spaces for indent
30-
"indent": 2,
30+
"indent": 4,
3131
// Whether to indent the first level of the list
3232
"start_indented": false,
3333
// Spaces for first level indent (when start_indented is set)
34-
"start_indent": 2
34+
"start_indent": 4
3535
},
3636
// MD009/no-trailing-spaces - Trailing spaces
3737
"MD009": {

CONTRIBUTING.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
First off, thanks for taking the time to contribute! ❤️
44

55
* [Contributing to Catalyst Libs](#contributing-to-catalyst-libs)
6-
* [Code of Conduct](#code-of-conduct)
7-
* [I Have a Question](#i-have-a-question)
8-
* [I Want To Contribute](#i-want-to-contribute)
9-
* [Reporting Bugs](#reporting-bugs)
10-
* [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11-
* [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12-
* [Suggesting Enhancements](#suggesting-enhancements)
13-
* [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14-
* [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15-
* [Your First Code Contribution](#your-first-code-contribution)
16-
* [Improving The Documentation](#improving-the-documentation)
17-
* [Style guides](#style-guides)
18-
* [Rust](#rust)
19-
* [Dart](#dart)
20-
* [Flutter](#flutter)
21-
* [Commit Messages](#commit-messages)
6+
* [Code of Conduct](#code-of-conduct)
7+
* [I Have a Question](#i-have-a-question)
8+
* [I Want To Contribute](#i-want-to-contribute)
9+
* [Reporting Bugs](#reporting-bugs)
10+
* [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11+
* [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12+
* [Suggesting Enhancements](#suggesting-enhancements)
13+
* [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14+
* [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15+
* [Your First Code Contribution](#your-first-code-contribution)
16+
* [Improving The Documentation](#improving-the-documentation)
17+
* [Style guides](#style-guides)
18+
* [Rust](#rust)
19+
* [Dart](#dart)
20+
* [Flutter](#flutter)
21+
* [Commit Messages](#commit-messages)
2222

2323
All types of contributions are encouraged and valued.
2424
Please make sure to read the relevant section before making your contribution.
@@ -75,11 +75,11 @@ Please complete the following steps in advance to help us fix any potential bug
7575
* Also make sure to search the internet (including Stack Overflow)
7676
to see if users outside the GitHub community have discussed the issue.
7777
* Collect information about the bug:
78-
* Stack trace (Traceback)
79-
* OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
80-
* Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
81-
* Possibly your input and the output
82-
* Can you reliably reproduce the issue?
78+
* Stack trace (Traceback)
79+
* OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
80+
* Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
81+
* Possibly your input and the output
82+
* Can you reliably reproduce the issue?
8383
And can you also reproduce it with older versions?
8484

8585
#### How Do I Submit a Good Bug Report?

Earthfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.27 AS mdlint-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.27 AS cspell-ci
5-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.27 AS python-ci
6-
IMPORT github.com/input-output-hk/catalyst-ci:v3.5.27 AS cat-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.6.1 AS mdlint-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.6.1 AS cspell-ci
5+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.1 AS python-ci
6+
IMPORT github.com/input-output-hk/catalyst-ci:v3.6.0 AS cat-ci
77

88
FROM debian:stable-slim
99

@@ -48,6 +48,8 @@ repo-docs:
4848
# are linted equally.
4949
# Its also fast.
5050
check-python:
51+
FROM python-ci+python-base
52+
5153
DO python-ci+LINT_PYTHON
5254

5355
# Sync standard configs.

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# Catalyst Libs
22

3+
[![Documentation](https://img.shields.io/badge/Documentation-read-blue)](https://docs.dev.projectcatalyst.io/libs/main/#)
4+
35
<!-- markdownlint-disable MD029 -->
46

57
Welcome to the Catalyst Libs mono repo, where we manage and maintain the interconnected Rust crates,
68
Dart and Flutter packages, and other libraries that make up the Catalyst project.
79

810
* [Catalyst Libs](#catalyst-libs)
9-
* [Overview](#overview)
10-
* [Getting Started](#getting-started)
11-
* [Contributing](#contributing)
12-
* [License](#license)
11+
* [Overview](#overview)
12+
* [Getting Started](#getting-started)
13+
* [Contributing](#contributing)
14+
* [License](#license)
1315

1416
## Overview
1517

docs/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.27 AS docs-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.1 AS docs-ci
44

55
IMPORT .. AS repo
66

docs/src/architecture/08_concepts/catalyst_docs/.pages

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)