platformos-check 0.4.13 → 0.5.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3d6f6042c319fcddd4ffcfd7448d2f1fa23f77e7f10839b1cc77b667bfe5b13
4
- data.tar.gz: b151f8a69281c760f476ac5d1e849a079691f2607f54093e03f3dd64e7b985aa
3
+ metadata.gz: 87750a9bb6317c1b7fb382de652f0bf597efe5ecc690075fd068aeacbd9b25d7
4
+ data.tar.gz: 2816b06fba3d839be067bcab08e6309ec08699af2b0a98f4bb916fb48b12f8af
5
5
  SHA512:
6
- metadata.gz: 377ff80d76ac4a465bca202d949193ea7b4f836df04068be7eece864eb74e17823e008f983831cd8e259a532e3c1b93d83b210480c3c1ebb8440e113598ce498
7
- data.tar.gz: 34c02ebc74de8ac8d9bd193f502b7ebef6de635df4eb87bdb3a2454bafab841896008a8b5e67a8057ec770b08d9fad5f1e9a24e056bed65f7699c1d819ea9839
6
+ metadata.gz: da3fbb685fb3fcf1564cfea3f6a0f59e059b625c1c826631449f42cbd16083f618ad11bac47539423e8cd376829cd87c732083468a42778353aa57da093d54a8
7
+ data.tar.gz: 690398f5f7998a00401208f06c6429193b526dbacbb1bc36bb9766c7cb9ef95d82e13259e05282ba3d3d15e1f864ac333c565d492a2846b24d4473ed847c2390
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ v0.5.0 / 2025-08-20
2
+ ==================
3
+
4
+ * Add support for {% transaction %} and {% rollback %} tags
5
+ * Upgrade Liquid dependency to the newest version to enhance compatiblity with platformOS runtime
6
+
7
+ v0.4.14 / 2024-10-11
8
+ ==================
9
+
10
+ * Add support for module overwrite
11
+
1
12
  v0.4.13 / 2024-10-07
2
13
  ==================
3
14
 
data/CONTRIBUTING.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Contributing to platformOS Check
2
2
 
3
+ We appreciate and welcome all contributions!
4
+
3
5
  ## Standards
4
6
 
5
7
  * Checks should do one thing, and do it well.
@@ -9,13 +11,24 @@
9
11
  * Be consistent. Write clean code that follows the [Ruby community standards](https://github.com/bbatsov/ruby-style-guide).
10
12
  * Code should be generic and reusable.
11
13
 
12
- ## How to contribute
13
-
14
- 1. Fork it (https://github.com/Platform-OS/platformos-lsp).
15
- 2. Create your feature branch (`git checkout -b my-new-feature`).
16
- 3. Commit your changes (`git commit -am 'Add some feature'`).
17
- 4. Push to the branch (`git push origin my-new-feature`).
18
- 5. Create a new Pull Request.
14
+ ## How to Contribute
15
+
16
+ Follow these steps to contribute to the project:
17
+
18
+ 1. **Fork the Repository**: Start by forking the project repository to your GitHub account. Click here to fork: [platformos-check fork](https://github.com/Platform-OS/platformos-check/fork).
19
+ 2. **Create a Feature Branch**: Create a branch for your new feature:
20
+ ```bash
21
+ git checkout -b my-new-feature
22
+ ```
23
+ 3. **Commit Changes**: Commit your changes to your branch:
24
+ ```bash
25
+ git commit -am 'Add some feature'
26
+ ```
27
+ 4. **Push to GitHub**: Push your changes to your GitHub repository:
28
+ ```bash
29
+ git push origin my-new-feature
30
+ ```
31
+ 5. **Submit a Pull Request**: Go to the original project repository and submit a pull request from your feature branch.
19
32
 
20
33
  ## Run Language Server
21
34
 
data/RELEASING.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Releasing platformOS Check
2
2
 
3
- Follow these steps to release a new version of latformOS Check:
3
+ Follow these steps to release a new version of platformOS Check:
4
4
 
5
5
  1. **Versioning**: Refer to the [Semantic Versioning page](http://semver.org) to determine the appropriate version number for the new release based on the changes made.
6
6
 
data/TROUBLESHOOTING.md CHANGED
@@ -8,8 +8,8 @@ The following error can cause Language Server to crash:
8
8
 
9
9
  **Error Message:**
10
10
  ```bash
11
- Calling `DidYouMean::SPELL_CHECKERS.merge!(error_name => spell_checker)' has been deprecated. Please call `DidYouMean.correct_error(error_name, spell_checker)' instead.
12
- /Users/johndoe/.gem/ruby/3.1.2/gems/bundler-2.2.22/lib/bundler/spec_set.rb:91:in `block in materialize': Could not find ruby-prof-0.18.0 in any of the sources (Bundler::GemNotFound)
11
+ Calling `DidYouMean::SPELL_CHECKERS.merge!(error_name => spell_checker)` has been deprecated. Please call `DidYouMean.correct_error(error_name, spell_checker)` instead.
12
+ /Users/johndoe/.gem/ruby/3.1.2/gems/bundler-2.2.22/lib/bundler/spec_set.rb:91:in `block in materialize`: Could not find ruby-prof-0.18.0 in any of the sources (Bundler::GemNotFound)
13
13
  ```
14
14
 
15
15
  **Solution:**