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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c48cbed2048f296ca130e4cbb69790fea92b7a02fab75f4aa9c0e6811b89063e
4
- data.tar.gz: 2b9752757ce8a2575cb6b3c446a19aec436c4003e715869e835e8906fb768b85
3
+ metadata.gz: b5b731d1993f71f5eed4e04c06a57bb5e74aa1df9b91bf0af31fee5957da71f1
4
+ data.tar.gz: b191d41e32ec32d1c08824897c394a3ecd567a871338814315c9e66a6ad3157a
5
5
  SHA512:
6
- metadata.gz: 2d05074cb025387b2f805c14797ff93b9abd5b28f77b51bc7a6a69811d66deb2dad2260a0ad6f0ad7ea5ff4313e076d1867332528a5b136f6694267d56987eee
7
- data.tar.gz: e078c99468b14f03ddc1f1c48a7abab1f92492194d8fc17bb6208a696f0a0cfb9a638a4002f7a4905ef9cd714e6ba0159f4f7f6e275693527478d5ea1ff3eae6
6
+ metadata.gz: bf2ba9d4356a6872af095bc41ce0162901de894aaa018a2a144d3109c4c718ee4328b748536515a80f18c85d1a9d3ca7f650ca7f9d8031c011fac3efde7def20
7
+ data.tar.gz: 8c984d38f260faf2690b00527fb1afc897cd515140ab2e8639de1b3bc45581e566c7f6c8cc7dddb04210fe344b4a939373d0f351932343f249cbf57ed2479785
data/.gitattributes CHANGED
@@ -1,2 +1,5 @@
1
1
  *.jpg binary
2
-
2
+ *.jpeg binary
3
+ *.png binary
4
+ *.mp3 binary
5
+ *.flac binary
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 X.Y.Z"
75
- git tag -a vX.Y.Z -m "Release X.Y.Z"
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. Draft a GitHub release from the new tag and publish the generated notes.
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
@@ -1,3 +1,3 @@
1
1
  class Transloadit
2
- VERSION = "3.1.1"
2
+ VERSION = "3.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transloadit
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Touset