migflow 0.2.1 → 0.2.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/CHANGELOG.md +5 -0
- data/app/controllers/migflow/static_controller.rb +1 -0
- data/lib/migflow/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: 012fe80fa7f62c207288c4ceef538501c183d19894320a96dec797571d23470b
|
|
4
|
+
data.tar.gz: 13fbba968d1a19f618673e69c06c9df475f5b1a4c9ead12b0d10de38c012e22f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 341eea85492c25ac9a5118d947496ac8dcad2e78302591bd4f50c83fe392c968ff2fa7bf6497cf9bd818301b3f59d8525113d82dc58ce5b210e63070a864b79f
|
|
7
|
+
data.tar.gz: '019754ee7ff40de379f153e5eb52697f488ce86515ba9f07812c13654020d7c69858ad16ed4faea0faabb4cc7ec85b3c7aa1f66ab88306342298afda1dac7e24'
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.2] - 2026-04-30
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `ActionController::InvalidCrossOriginRequest` raised when the browser loads `app.js` via a `<script>` tag. Rails' same-origin JavaScript protection was firing on the `StaticController` asset responses; forgery protection is now skipped since these are public static assets.
|
|
14
|
+
|
|
10
15
|
## [0.2.1] - 2026-04-29
|
|
11
16
|
|
|
12
17
|
### Fixed
|
data/lib/migflow/version.rb
CHANGED