exwiw 0.4.2 → 0.4.3
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 +6 -0
- data/lib/exwiw/adapter/mysql_adapter.rb +1 -0
- data/lib/exwiw/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: bf3c1130520f3f918f80f213d1fc0bee1416c677d97ae3e9fe076538bd20bb92
|
|
4
|
+
data.tar.gz: 9dd97924ac70c9b76d151c1fead90902a10900da36186e4ab7439aacaec94dbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45e71e45d5978ca9336b138a274759acecd1d0e50eb25826015269fb25238185642281002812e03f6f861e0c82d34b6c7d35fbf632f2d2a4ac67e9d376821dd4
|
|
7
|
+
data.tar.gz: 3f2e7e35e5ed34704b6be40190a4a2f435d14078602fb22f6bfaec7f8f8655b3cdbf3838927d0c995a38dc526e9a0b31432f8aefa85ebcb20856a1bb5655b091
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.4.3] - 2026-06-05
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- MySQL: `mysqldump` no longer fails with `Access denied; you need (at least one of) the PROCESS privilege(s)` on RDS and other managed MySQL instances where the DB user lacks `PROCESS`. The `--no-tablespaces` flag is now always passed, skipping the tablespace query that requires the privilege. Both MySQL and MariaDB support the flag.
|
|
10
|
+
|
|
5
11
|
## [0.4.2] - 2026-06-05
|
|
6
12
|
|
|
7
13
|
### Fixed
|
|
@@ -55,6 +55,7 @@ module Exwiw
|
|
|
55
55
|
'--skip-add-drop-table',
|
|
56
56
|
'--skip-comments',
|
|
57
57
|
'--skip-set-charset',
|
|
58
|
+
'--no-tablespaces', # skip tablespace query that requires PROCESS privilege (unavailable on managed MySQL like RDS)
|
|
58
59
|
*gtid_flags,
|
|
59
60
|
'--compact',
|
|
60
61
|
@connection_config.database_name,
|
data/lib/exwiw/version.rb
CHANGED