transloadit 3.1.1 → 3.1.2
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/.gitattributes +4 -1
- data/CHANGELOG.md +6 -0
- data/CONTRIBUTING.md +7 -4
- data/chameleon.jpg +0 -0
- data/lib/transloadit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5b731d1993f71f5eed4e04c06a57bb5e74aa1df9b91bf0af31fee5957da71f1
|
|
4
|
+
data.tar.gz: b191d41e32ec32d1c08824897c394a3ecd567a871338814315c9e66a6ad3157a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf2ba9d4356a6872af095bc41ce0162901de894aaa018a2a144d3109c4c718ee4328b748536515a80f18c85d1a9d3ca7f650ca7f9d8031c011fac3efde7def20
|
|
7
|
+
data.tar.gz: 8c984d38f260faf2690b00527fb1afc897cd515140ab2e8639de1b3bc45581e566c7f6c8cc7dddb04210fe344b4a939373d0f351932343f249cbf57ed2479785
|
data/.gitattributes
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
### 3.1.2 / 2025-10-29
|
|
2
|
+
|
|
3
|
+
- Compress e2e fixture asset to keep gem size close to previous releases (kvz)
|
|
4
|
+
- Ensure binary assets (images/audio) are marked via `.gitattributes` to avoid line ending mangling (kvz)
|
|
5
|
+
- Document GitHub release helper and add RubyGems publish script (kvz)
|
|
6
|
+
|
|
1
7
|
### 3.1.1 / 2025-10-28
|
|
2
8
|
|
|
3
9
|
- Add optional live end-to-end upload harness and CI job for parity verification, defaulted in Docker tests (kvz)
|
data/CONTRIBUTING.md
CHANGED
|
@@ -71,8 +71,8 @@ The test uploads `chameleon.jpg`, resizes it, and asserts on a real assembly res
|
|
|
71
71
|
2. Run the full test suite (including Docker, parity, and e2e checks as needed).
|
|
72
72
|
3. Commit the release changes and tag:
|
|
73
73
|
```bash
|
|
74
|
-
git commit -am "Release
|
|
75
|
-
git tag -a vX.Y.Z -m "Release
|
|
74
|
+
git commit -am "Release vX.Y.Z"
|
|
75
|
+
git tag -a vX.Y.Z -m "Release vX.Y.Z"
|
|
76
76
|
```
|
|
77
77
|
4. Push the commit and tag:
|
|
78
78
|
```bash
|
|
@@ -83,7 +83,11 @@ The test uploads `chameleon.jpg`, resizes it, and asserts on a real assembly res
|
|
|
83
83
|
```bash
|
|
84
84
|
GEM_HOST_API_KEY=... ./scripts/notify-registry.sh
|
|
85
85
|
```
|
|
86
|
-
6.
|
|
86
|
+
6. Publish the GitHub release notes:
|
|
87
|
+
```bash
|
|
88
|
+
gh release create vX.Y.Z --title "vX.Y.Z" --notes "$(ruby -e 'puts File.read("CHANGELOG.md")[/^### #{ARGV[0].dump.gsub(/\"/, "\\\"")}/, /\A### /m] || "")'"
|
|
89
|
+
```
|
|
90
|
+
Adjust the notes if needed before publishing.
|
|
87
91
|
|
|
88
92
|
### RubyGems Credentials
|
|
89
93
|
|
|
@@ -92,4 +96,3 @@ The test uploads `chameleon.jpg`, resizes it, and asserts on a real assembly res
|
|
|
92
96
|
- Export the token as `GEM_HOST_API_KEY` in your environment before running `./scripts/notify-registry.sh`. The script refuses to run if the variable is missing.
|
|
93
97
|
|
|
94
98
|
That’s it! Thank you for contributing.
|
|
95
|
-
|
data/chameleon.jpg
CHANGED
|
Binary file
|
data/lib/transloadit/version.rb
CHANGED