Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[LICENSE]
trim_trailing_whitespace = false
insert_final_newline = false
2 changes: 1 addition & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ header:
- '**/generated/*.rs'
- 'parse-rfd/parser/dist/index.js'

comment: on-failure
comment: on-failure
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* `POST /api-user` (create_api_user)
* `POST /api-user/{user_id}` (update_api_user)
* `POST /api-user/{user_id}/group` (add_api_user_to_group)
* `DELETE /api-user/{user_id}/group/{group_id}` (remove_api_user_from_group)
* `DELETE /api-user/{user_id}/group/{group_id}` (remove_api_user_from_group)

*Change Details:*

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Objects reference:
└─────────┘
```
Note: Scanner and Webhook operations that occur on the default branch do not use the branch name for
determining the RFD number to update. Instead they use the numeric portion of the
determining the RFD number to update. Instead they use the numeric portion of the
`rfd/{number}/README.adoc` path.

### Revisions
Expand Down
2 changes: 1 addition & 1 deletion parse-rfd/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
parser/dist/css
!parser/package.json
!parser/package-lock.json
!parser/package-lock.json
2 changes: 1 addition & 1 deletion parse-rfd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
uuid = { workspace = true }
2 changes: 1 addition & 1 deletion rfd-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/target

config.toml
config.toml
2 changes: 1 addition & 1 deletion rfd-github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ regex = { workspace = true }
rfd-data = { path = "../rfd-data" }
rfd-model = { path = "../rfd-model" }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing = { workspace = true }
2 changes: 1 addition & 1 deletion rfd-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ v-model = { workspace = true }

[dev-dependencies]
diesel_migrations = { version = "2.3.1", features = ["postgres"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-01-20-202736_rfd/down.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DROP TABLE rfd
DROP TABLE rfd
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-01-20-202736_rfd/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CREATE TABLE rfd (
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
deleted_at TIMESTAMPTZ
)
)
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-01-20-204405_rfd_pdf/down.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DROP TABLE rfd_pdf;
DROP TYPE RFD_PDF_SOURCE;
DROP TYPE RFD_PDF_SOURCE;
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-01-20-204405_rfd_pdf/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ CREATE TABLE rfd_pdf (
deleted_at TIMESTAMPTZ,

CONSTRAINT revision_links_unique UNIQUE (rfd_revision_id, source, link)
);
);
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-07-23-145951_job/down.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DROP TABLE IF EXISTS job;
DROP TABLE IF EXISTS job;
2 changes: 1 addition & 1 deletion rfd-model/migrations/2023-07-23-145951_job/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ CREATE TABLE job (
UNIQUE (sha, rfd)
);

CREATE INDEX jobs ON job (id, processed ASC, committed_at ASC, created_at ASC);
CREATE INDEX jobs ON job (id, processed ASC, committed_at ASC, created_at ASC);
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ALTER TABLE rfd DROP COLUMN visibility;

DROP TYPE RFD_VISIBILITY;
DROP TYPE RFD_VISIBILITY;
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE rfd_revision DROP COLUMN labels;
ALTER TABLE rfd_revision DROP COLUMN labels;
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE rfd_revision ADD COLUMN labels VARCHAR;
ALTER TABLE rfd_revision ADD COLUMN labels VARCHAR;
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DROP INDEX jobs_started;
DROP INDEX jobs_started;
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CREATE INDEX jobs_started ON job (id, started_at, processed ASC, committed_at ASC, created_at ASC);
CREATE INDEX jobs_started ON job (id, started_at, processed ASC, committed_at ASC, created_at ASC);
2 changes: 1 addition & 1 deletion rfd-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@
}
},
"version": "0.14.1"
}
}
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ serde_json = { workspace = true }
similar = { workspace = true }

[package.metadata.dist]
dist = false
dist = false
Loading