wordmove 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74eafcd0b3d4f911c3bc2f3513141b76aa071d5f
4
- data.tar.gz: b98925e2826b67a0fbf94e4f3c3225d3a38ec148
3
+ metadata.gz: 514a3ea8b6b0be24cce32ed4daf1cc53b585bc74
4
+ data.tar.gz: 592055eb9ae5933843d88bffc4637755b8844ca9
5
5
  SHA512:
6
- metadata.gz: f61ef5c479a7cdd71d5891e6b43eb2a3d1643b3c83e3aa40a96e001f1df6a38fd099424f10207e157ebd31f699ee10ff9c89251c645e98d59e750f8e59067198
7
- data.tar.gz: f3a8b4331b963e3d40a6f240ea62b380c8925f6b54fd3f99403e4512d5dbb5c29814feec8de5a9f044e2ae21a1e33b4749c3d669a01d1d4461da5cb09faddb47
6
+ metadata.gz: eb00f9fb8ad4ce0d761c0c7256db23d54b2bed92029fc3388f7912dc86e47ca4935e6be15204a4dc46a3f5b79ebf2a8b1528d060208f786468a5831010be2766
7
+ data.tar.gz: 20ea63b6eb34253405aa8a3c094d213216ace5db6a286138942a1dea9c1be608939c01acaddda6d386559c6e256fc52725f3027c46fe463c53975c7744101919
@@ -1,47 +1 @@
1
- # 2.1.3
2
-
3
- - bugfix #402
4
-
5
- # 2.1.0
6
-
7
- ## Features
8
-
9
- - SqlAdapter::Wpcli
10
-
11
- # 2.0.0
12
-
13
- ## Features
14
- - Implemented compression of sql files before and after transfers
15
- - Implemented compression of sql backup files inside wp-content
16
- - Implemented support to mu-plugins directory
17
- - Updated `dump.php` library to support database VIEWS
18
- - Added `--debug` option: do not automatically delete FTP dumps file so you can inspect errors (if any)
19
- - Better support for large dbs import
20
- - Allow ruby code in `Movefile` (`erb`)
21
- - Added ability to pass mysqldump options via `mysqldump_options` in `Movefile`
22
-
23
-
24
- ## Bugfixes
25
- - Ignore php error for `date()` while dumping database via FTP
26
- - Better escape for Windows paths
27
- - Show a warning if no `Movefile` found
28
- - Fix ruby warnings for `PATH` module
29
- - Fix FTP dump bug introduced in `1.3.1`
30
-
31
- ## Thanks to
32
-
33
- @amchoukir @ChuckMac @connormckelvey @delphaber @dsgnr @esad @inamoth @JimmY2K
34
- @kenchan0130 @matjack1 @miya0001 @Mte90 @mukkoo @pioneerskiees @spanndemic
35
- @StefanoOrdine @tiojoca @xrmx
36
-
37
- # 1.3.1 (yanked)
38
- - Fix typo in dump.php.erb
39
-
40
- # 1.3.0
41
- - Fix UTF-8 encoding issue when `wordmove init` with a wrong .sample file
42
- - Fix problem with ftp password and special chars
43
- - Fix duplicated wordpress tree in languages folder (ftp only)
44
- - Update db import / export php libraries
45
- - Add `--version` option
46
- - Required ruby version ~> 2.0
47
- - Updated test suite with rspec 3.x
1
+ see https://github.com/welaika/wordmove/releases
@@ -31,14 +31,14 @@ And to update:
31
31
 
32
32
  ## Peer dependencies
33
33
 
34
- Wordmove just acts as automation glue bewtween tools you already have and love. These are its peer dependencies which you need to have installed and in your $PATH:
34
+ Wordmove just acts as automation glue between tools you already have and love. These are its peer dependencies which you need to have installed and in your $PATH:
35
35
 
36
36
  | Program | Actions | Mandatory? |
37
37
  | ------- | ---------------------------- | ------------------------------- |
38
38
  | rsync | Mirror files and dirs | Yes for SSH connections |
39
39
  | mysql | Import database | Yes |
40
40
  | mysqldump | Dump database | Yes |
41
- | wp-cli | Adapt database | Yes by defalut, but configurable|
41
+ | wp-cli | Adapt database | Yes by default, but configurable|
42
42
  | lftp | all | Yes, for FTP connections |
43
43
 
44
44
  ## Usage
@@ -283,7 +283,7 @@ made with ❤️ and ☕️ by [weLaika](https://dev.welaika.com)
283
283
 
284
284
  (The MIT License)
285
285
 
286
- Copyright © 2013-2018 weLaika
286
+ Copyright © 2013-2019 weLaika
287
287
 
288
288
  Permission is hereby granted, free of charge, to any person obtaining a copy of
289
289
  this software and associated documentation files (the ‘Software’), to deal in
@@ -18,3 +18,13 @@ mapping:
18
18
  mysqldump_options:
19
19
  port:
20
20
  charset:
21
+ paths:
22
+ type: map
23
+ mapping:
24
+ wp_content:
25
+ wp_config:
26
+ uploads:
27
+ plugins:
28
+ mu_plugins:
29
+ themes:
30
+ languages:
@@ -1,3 +1,3 @@
1
1
  module Wordmove
2
- VERSION = "4.0.0".freeze
2
+ VERSION = "4.0.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wordmove
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Verna
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2019-01-06 00:00:00.000000000 Z
15
+ date: 2019-04-12 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activesupport