platformos-check 0.4.14 → 0.5.1

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: 6e71a05c1655cf1a33b9290f29812cfefffaf5c221a953536f28cd46588f604d
4
- data.tar.gz: ecc1f13f479711da984373e405f59b5ae55c6c558eef8dc172c1d1d9670ea4e6
3
+ metadata.gz: bfaba6a8864f5fc74fe885299d8b5a43b2ec3fcc5d512175cda95b7fab20f699
4
+ data.tar.gz: c50f55aa20d70f0538f4b01a604bbd2c5b94a021e503ba02151ec0ccd795c2aa
5
5
  SHA512:
6
- metadata.gz: 496da6087ec91931dec08e7a3939a0b02e0eb43051dd59f7e363a11989be1d59d097380d50628168b088728a86edd978a738e42f0d27207842312767da7f8d87
7
- data.tar.gz: 5786d06421eefbc59bcd2c7a5eba753db923875f89c170e6918b3a46f2db94bc22a99bb723125ffe382633b93b7e60b6046af9e7f2ba62c69f6f6d6271164839
6
+ metadata.gz: 2f4cc5d4a68e71a9b9eb2b0187dbd8bffd8d87d489c97ac792795c3a43dfaaf3f6d82e4f57dd8dfdab64ca345a6934641cf222d96a43026955dccc15652ea53e
7
+ data.tar.gz: f940c2ef299be4368baf06fdf8e62b2b5c5c59318112e7245f9b4a4c1ad9f21b64929a3a4f8d5da9aa8aa2f6ecd6eaf55d4edf79e54d554f9fcfad561feabeae
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ v0.5.1 / 2025-08-20
2
+ ==================
3
+
4
+ * Fix: Translation checks sometimes crashed
5
+ * Fix: Autocorrection for translation files will work correctly now
6
+ * Improvement: Do not remove unused modules files, as this might silently introduce breaking changes
7
+
8
+ v0.5.0 / 2025-08-20
9
+ ==================
10
+
11
+ * Add support for {% transaction %} and {% rollback %} tags
12
+ * Upgrade Liquid dependency to the newest version to enhance compatiblity with platformOS runtime
13
+
1
14
  v0.4.14 / 2024-10-11
2
15
  ==================
3
16
 
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:**