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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca52e1b7e6072849c3dccb1ec8b2b80fb261e024891d2ac032406d4ce5726ef4
4
- data.tar.gz: d54c3eee7c729e02198e2876e9c9cd5de62c893e2a68f10d221051c04d6535cc
3
+ metadata.gz: bf3c1130520f3f918f80f213d1fc0bee1416c677d97ae3e9fe076538bd20bb92
4
+ data.tar.gz: 9dd97924ac70c9b76d151c1fead90902a10900da36186e4ab7439aacaec94dbd
5
5
  SHA512:
6
- metadata.gz: e5153e47e7112e8ce324e4b06fb91584a36207a6ffa999ca7b15e5d7ebfe015dcdd38cc41a4f211b59bea5300f36205ca2347058ece6477473c1977b7398ae8a
7
- data.tar.gz: b545c258a47dbea0c8f992d548fea245bd3bf34fe223e93c82443f0f9cb447c6ef1e833ab21f13061a39a2f34a0050f9d2a8e9e9335e1a25b39b21fd0d0d5c14
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Exwiw
4
- VERSION = "0.4.2"
4
+ VERSION = "0.4.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exwiw
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shia