Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for loading templates from the file system or from an embedded representation in the app's binary. #171

Merged
merged 23 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dc096ce
feat(forge): Add FileLoader abstraction to load files from a the file…
lquerel May 23, 2024
04e3889
chore(test): Test most of the registry sub-commands.
lquerel May 24, 2024
ac0e457
chore(test): Test diagnostic init
lquerel May 24, 2024
8066f3f
Merge branch 'main' into embedded-diag-templates
lquerel May 24, 2024
ebe1a90
feat(forge): Add overload mechanism support in EmbeddedFileLoader.
lquerel May 24, 2024
1c260a5
chore(test): Improve test coverage
lquerel May 24, 2024
2a34b43
chore(test): Improve test coverage
lquerel May 25, 2024
7ce0330
chore(test): Improve test coverage
lquerel May 26, 2024
03e654c
chore(docker): Add default_diagnostic_templates
lquerel May 28, 2024
3dcce6f
chore(docker): Add log in Dockerfile to debug docker build issue
lquerel May 28, 2024
4753a09
chore(docker): Add log in Dockerfile to debug docker build issue
lquerel May 28, 2024
99e4ff2
chore(docker): Add log in Dockerfile to debug docker build issue
lquerel May 28, 2024
f32c7e3
chore(docker): Add log in Dockerfile to debug docker build issue
lquerel May 28, 2024
3d86ccd
chore(forge): Simplify FileLoader interface based on @jsuereth sugges…
lquerel May 28, 2024
3c3f368
chore(update_markdown): Add unit test to the registry update-markdown…
lquerel May 28, 2024
0d3dc79
chore(docker): Fix the dockerfile to embedded the default_diagnostic_…
lquerel May 28, 2024
84f556d
chore(check-external-types): Fix nightly version for check-external-t…
lquerel May 28, 2024
9b8e7a7
feat(forge): Move Send+Sync inside the TemplateEngine instead of in t…
lquerel May 28, 2024
37968ce
Merge branch 'main' into embedded-diag-templates
lquerel May 28, 2024
e241e08
chore(diagnostic): Generate diagnostics from CompoundErrors.
lquerel May 28, 2024
7bc1240
chore(diagnostic): Fix diagnostic report in weaver_semconv_gen
lquerel May 28, 2024
4b91adc
chore(fmt): Fix cargo fmt issue
lquerel May 28, 2024
1277731
chore(just): Fix just file
lquerel May 28, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
# cargo check-external-types is only available on this specific nightly
toolchain: nightly-2024-02-07
toolchain: nightly-2024-05-01
- uses: Swatinem/rust-cache@v2
- name: check-external-types
run: |
Expand Down
Loading
Loading