platformos-check 0.4.10 → 0.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build_for_windows.yml +57 -0
- data/CHANGELOG.md +14 -0
- data/build/windows/build.sh +3 -2
- data/data/platformos_liquid/documentation/filters.json +1 -1
- data/data/platformos_liquid/documentation/latest.json +1 -1
- data/data/platformos_liquid/documentation/tags.json +1 -1
- data/lib/platformos_check/app_file.rb +12 -0
- data/lib/platformos_check/checks/missing_template.rb +19 -26
- data/lib/platformos_check/graphql_file.rb +10 -6
- data/lib/platformos_check/language_server/completion_providers/filter_completion_provider.rb +1 -1
- data/lib/platformos_check/language_server/handler.rb +1 -0
- data/lib/platformos_check/version.rb +1 -1
- metadata +4 -4
- data/build/windows/lsp.exe +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5795a4dfbd11ce9650dd968756ebf8762eab1528fc41a2bb968eeb6b7bfc061
|
4
|
+
data.tar.gz: ba6029d4a33bd1d91e600ec33aeebd9de2660567188073dfe64db36b39415ea7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffa173e4a4441e4d49da110129c3c964c74c2b011da9d45e4b51f4385eec43d2aa374f03754c048ec58ff8e934924f38b36f94bfd4a61e3b873324a489886ed5
|
7
|
+
data.tar.gz: 7c96d26c1b529b670fa316dd7202f23888dd6ffd711d9249a14bfbea516528ca9793ff3a44a80e1b032b682080bf99d190e6a11d8c8a56f2a84b236a025bd9af
|
@@ -0,0 +1,57 @@
|
|
1
|
+
name: Build LSP for windows
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
# push:
|
6
|
+
# branches:
|
7
|
+
# - main
|
8
|
+
push:
|
9
|
+
tags:
|
10
|
+
- '*'
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
build:
|
14
|
+
runs-on: windows-latest
|
15
|
+
permissions:
|
16
|
+
contents: write
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- name: Checkout code
|
20
|
+
uses: actions/checkout@v2
|
21
|
+
|
22
|
+
- name: Setup Ruby 3.2
|
23
|
+
uses: ruby/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: 3.2
|
26
|
+
|
27
|
+
- name: Install dependencies
|
28
|
+
run: |
|
29
|
+
cd build/windows
|
30
|
+
gem install ocran
|
31
|
+
bundle install
|
32
|
+
|
33
|
+
- name: Run build script
|
34
|
+
shell: bash
|
35
|
+
run: |
|
36
|
+
cd build/windows
|
37
|
+
./build.sh
|
38
|
+
ls
|
39
|
+
|
40
|
+
- name: Release
|
41
|
+
uses: ncipollo/release-action@v1
|
42
|
+
with:
|
43
|
+
artifacts: "build/windows/lsp.exe"
|
44
|
+
body: "New windows release"
|
45
|
+
|
46
|
+
# - name: Release
|
47
|
+
# uses: softprops/action-gh-release@v1
|
48
|
+
# with:
|
49
|
+
# tag_name: ${{ github.ref }}
|
50
|
+
# name: Release ${{ github.ref }}
|
51
|
+
# body: |
|
52
|
+
# New windows version
|
53
|
+
# draft: true
|
54
|
+
# prerelease: true
|
55
|
+
# files: |
|
56
|
+
# build/windows/lsp.exe
|
57
|
+
#
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
v0.4.12 / 2024-04-13
|
2
|
+
==================
|
3
|
+
|
4
|
+
* Suggest filters with input_type 'untyped'
|
5
|
+
|
6
|
+
v0.4.11 / 2024-03-11
|
7
|
+
==================
|
8
|
+
|
9
|
+
* Do not throw parse error for empty GraphQL file
|
10
|
+
* enable MissingTemplate Check in single file mode
|
11
|
+
* report if file is blank in MissingTemplate check
|
12
|
+
* add support for background tag in MissingTemplate check
|
13
|
+
|
14
|
+
|
1
15
|
v0.4.10 / 2024-02-19
|
2
16
|
==================
|
3
17
|
|
data/build/windows/build.sh
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
#!/usr/bin/env
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
# --gem-file /c/Ruby32-x64/bin/etc/ssl \
|
2
4
|
|
3
5
|
ocran run.rb --output lsp.exe --add-all-core --gemfile ./Gemfile --no-dep-run --gem-full --gem-full=platformos-check --console \
|
4
|
-
--gem-file /c/Ruby32-x64/bin/etc/ssl \
|
5
6
|
--dll ruby_builtin_dlls/libyaml-0-2.dll \
|
6
7
|
--dll ruby_builtin_dlls/zlib1.dll \
|
7
8
|
--dll ruby_builtin_dlls/libssl-3-x64.dll \
|