Hello community,

here is the log from the commit of package platformsh-cli for openSUSE:Factory 
checked in at 2017-07-27 11:13:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/platformsh-cli (Old)
 and      /work/SRC/openSUSE:Factory/.platformsh-cli.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "platformsh-cli"

Thu Jul 27 11:13:09 2017 rev:15 rq:512718 version:3.19.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/platformsh-cli/platformsh-cli.changes    
2017-07-07 10:17:54.182635680 +0200
+++ /work/SRC/openSUSE:Factory/.platformsh-cli.new/platformsh-cli.changes       
2017-07-27 11:13:45.400652654 +0200
@@ -1,0 +2,11 @@
+Thu Jul 27 02:20:19 UTC 2017 - [email protected]
+
+- Update to version 3.19.0:
+  * Fix description of --no-visible-runtime option
+  * Make default_domain writable from project:info
+  * Document saving tunnel info to the relationships variable
+  * Add -u option to push command (#609)
+  * Tiny text change (after commit 7866dd4)
+  * Release v3.19.0
+
+-------------------------------------------------------------------

Old:
----
  platformsh-cli-3.18.0.tar.xz

New:
----
  platformsh-cli-3.19.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ platformsh-cli.spec ++++++
--- /var/tmp/diff_new_pack.eISx05/_old  2017-07-27 11:13:46.048561133 +0200
+++ /var/tmp/diff_new_pack.eISx05/_new  2017-07-27 11:13:46.048561133 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           platformsh-cli
-Version:        3.18.0
+Version:        3.19.0
 Release:        0
 Summary:        Tool for managing Platform.sh services from the command line
 # See licenses.txt for dependency licenses.

++++++ _service ++++++
--- /var/tmp/diff_new_pack.eISx05/_old  2017-07-27 11:13:46.084556049 +0200
+++ /var/tmp/diff_new_pack.eISx05/_new  2017-07-27 11:13:46.084556049 +0200
@@ -2,7 +2,7 @@
   <service name="tar_scm" mode="disabled">
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
-    <param name="revision">refs/tags/v3.18.0</param>
+    <param name="revision">refs/tags/v3.19.0</param>
     <param name="url">git://github.com/platformsh/platformsh-cli.git</param>
     <param name="scm">git</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.eISx05/_old  2017-07-27 11:13:46.104553224 +0200
+++ /var/tmp/diff_new_pack.eISx05/_new  2017-07-27 11:13:46.108552659 +0200
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param name="url">git://github.com/platformsh/platformsh-cli.git</param>
-    <param 
name="changesrevision">ad46216524679c51cf9c762ff428a1c323264fd7</param>
+    <param 
name="changesrevision">8608f91adb3f1f721a9ff418aa27276c718f68eb</param>
   </service>
 </servicedata>

++++++ platformsh-cli-3.18.0.tar.xz -> platformsh-cli-3.19.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/platformsh-cli-3.18.0/config.yaml 
new/platformsh-cli-3.19.0/config.yaml
--- old/platformsh-cli-3.18.0/config.yaml       2017-07-05 20:36:52.000000000 
+0200
+++ new/platformsh-cli-3.19.0/config.yaml       2017-07-18 17:24:27.000000000 
+0200
@@ -1,7 +1,7 @@
 # Metadata about the CLI application itself.
 application:
   name: 'Platform.sh CLI'
-  version: '3.18.0'
+  version: '3.19.0'
   executable: 'platform'
   package_name: 'platformsh/cli'
   installer_url: 'https://platform.sh/cli/installer'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/platformsh-cli-3.18.0/src/Command/Environment/EnvironmentPushCommand.php 
new/platformsh-cli-3.19.0/src/Command/Environment/EnvironmentPushCommand.php
--- 
old/platformsh-cli-3.18.0/src/Command/Environment/EnvironmentPushCommand.php    
    2017-07-05 20:36:52.000000000 +0200
+++ 
new/platformsh-cli-3.19.0/src/Command/Environment/EnvironmentPushCommand.php    
    2017-07-18 17:24:27.000000000 +0200
@@ -24,6 +24,7 @@
             ->addOption('force', 'f', InputOption::VALUE_NONE, 'Allow 
non-fast-forward updates')
             ->addOption('force-with-lease', null, InputOption::VALUE_NONE, 
'Allow non-fast-forward updates, if the remote-tracking branch is up to date')
             ->addOption('no-wait', null, InputOption::VALUE_NONE, 'After 
pushing, do not wait for build or deploy')
+            ->addOption('set-upstream', 'u', InputOption::VALUE_NONE, 'Set the 
target environment as the upstream for the source branch')
             ->addOption('activate', null, InputOption::VALUE_NONE, 'Activate 
the environment after pushing')
             ->addOption('parent', null, InputOption::VALUE_REQUIRED, 'Set a 
new environment parent (only used with --activate)');
         $this->addProjectOption()
@@ -133,7 +134,7 @@
             $this->config()->get('detection.git_remote_name'),
             $source . ':refs/heads/' . $target,
         ];
-        foreach (['force', 'force-with-lease'] as $option) {
+        foreach (['force', 'force-with-lease', 'set-upstream'] as $option) {
             if ($input->getOption($option)) {
                 $gitArgs[] = '--' . $option;
             }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/platformsh-cli-3.18.0/src/Command/Project/ProjectInfoCommand.php 
new/platformsh-cli-3.19.0/src/Command/Project/ProjectInfoCommand.php
--- old/platformsh-cli-3.18.0/src/Command/Project/ProjectInfoCommand.php        
2017-07-05 20:36:52.000000000 +0200
+++ new/platformsh-cli-3.19.0/src/Command/Project/ProjectInfoCommand.php        
2017-07-18 17:24:27.000000000 +0200
@@ -153,7 +153,10 @@
      */
     protected function getType($property)
     {
-        $writableProperties = ['title' => 'string'];
+        $writableProperties = [
+            'title' => 'string',
+            'default_domain' => 'string',
+        ];
 
         return isset($writableProperties[$property]) ? 
$writableProperties[$property] : false;
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/platformsh-cli-3.18.0/src/Command/Project/Variable/ProjectVariableSetCommand.php
 
new/platformsh-cli-3.19.0/src/Command/Project/Variable/ProjectVariableSetCommand.php
--- 
old/platformsh-cli-3.18.0/src/Command/Project/Variable/ProjectVariableSetCommand.php
        2017-07-05 20:36:52.000000000 +0200
+++ 
new/platformsh-cli-3.19.0/src/Command/Project/Variable/ProjectVariableSetCommand.php
        2017-07-18 17:24:27.000000000 +0200
@@ -21,7 +21,7 @@
             ->addArgument('value', InputArgument::REQUIRED, 'The variable 
value')
             ->addOption('json', null, InputOption::VALUE_NONE, 'Mark the value 
as JSON')
             ->addOption('no-visible-build', null, InputOption::VALUE_NONE, 'Do 
not expose this variable at build time')
-            ->addOption('no-visible-runtime', null, InputOption::VALUE_NONE, 
'Do not e\Expose this variable at deploy and runtime')
+            ->addOption('no-visible-runtime', null, InputOption::VALUE_NONE, 
'Do not expose this variable at runtime')
             ->setDescription('Set a variable for a project');
         $this->addProjectOption()
              ->addNoWaitOption();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/platformsh-cli-3.18.0/src/Command/Tunnel/TunnelOpenCommand.php 
new/platformsh-cli-3.19.0/src/Command/Tunnel/TunnelOpenCommand.php
--- old/platformsh-cli-3.18.0/src/Command/Tunnel/TunnelOpenCommand.php  
2017-07-05 20:36:52.000000000 +0200
+++ new/platformsh-cli-3.19.0/src/Command/Tunnel/TunnelOpenCommand.php  
2017-07-18 17:24:27.000000000 +0200
@@ -149,10 +149,16 @@
 
         if (!$error) {
             $executable = $this->config()->get('application.executable');
+            $variable = $this->config()->get('service.env_prefix') . 
'RELATIONSHIPS';
             $this->stdErr->writeln('');
             $this->stdErr->writeln("List tunnels with: <info>$executable 
tunnels</info>");
             $this->stdErr->writeln("View tunnel details with: 
<info>$executable tunnel:info</info>");
             $this->stdErr->writeln("Close tunnels with: <info>$executable 
tunnel:close</info>");
+            $this->stdErr->writeln('');
+            $this->stdErr->writeln(
+                "Save encoded tunnel details to the $variable variable using:"
+                . "\n  <info>export $variable=\"$($executable tunnel:info 
--encode)\"</info>"
+            );
         }
 
         $processManager->killParent($error);

++++++ platformsh-cli-vendor.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/autoload.php new/vendor/autoload.php
--- old/vendor/autoload.php     2017-07-06 21:51:51.280562438 +0200
+++ new/vendor/autoload.php     2017-07-27 04:20:29.062179883 +0200
@@ -4,4 +4,4 @@
 
 require_once __DIR__ . '/composer/autoload_real.php';
 
-return ComposerAutoloaderInit1b142da1e54741a648482d7b2a715fea::getLoader();
+return ComposerAutoloaderInit02166adf9488991e8ec36bfe80c7524a::getLoader();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/composer/autoload_real.php 
new/vendor/composer/autoload_real.php
--- old/vendor/composer/autoload_real.php       2017-07-06 21:51:51.280562438 
+0200
+++ new/vendor/composer/autoload_real.php       2017-07-27 04:20:29.062179883 
+0200
@@ -2,7 +2,7 @@
 
 // autoload_real.php @generated by Composer
 
-class ComposerAutoloaderInit1b142da1e54741a648482d7b2a715fea
+class ComposerAutoloaderInit02166adf9488991e8ec36bfe80c7524a
 {
     private static $loader;
 
@@ -19,15 +19,15 @@
             return self::$loader;
         }
 
-        
spl_autoload_register(array('ComposerAutoloaderInit1b142da1e54741a648482d7b2a715fea',
 'loadClassLoader'), true, true);
+        
spl_autoload_register(array('ComposerAutoloaderInit02166adf9488991e8ec36bfe80c7524a',
 'loadClassLoader'), true, true);
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
-        
spl_autoload_unregister(array('ComposerAutoloaderInit1b142da1e54741a648482d7b2a715fea',
 'loadClassLoader'));
+        
spl_autoload_unregister(array('ComposerAutoloaderInit02166adf9488991e8ec36bfe80c7524a',
 'loadClassLoader'));
 
         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') 
&& (!function_exists('zend_loader_file_encoded') || 
!zend_loader_file_encoded());
         if ($useStaticLoader) {
             require_once __DIR__ . '/autoload_static.php';
 
-            
call_user_func(\Composer\Autoload\ComposerStaticInit1b142da1e54741a648482d7b2a715fea::getInitializer($loader));
+            
call_user_func(\Composer\Autoload\ComposerStaticInit02166adf9488991e8ec36bfe80c7524a::getInitializer($loader));
         } else {
             $map = require __DIR__ . '/autoload_namespaces.php';
             foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@
         $loader->register(true);
 
         if ($useStaticLoader) {
-            $includeFiles = 
Composer\Autoload\ComposerStaticInit1b142da1e54741a648482d7b2a715fea::$files;
+            $includeFiles = 
Composer\Autoload\ComposerStaticInit02166adf9488991e8ec36bfe80c7524a::$files;
         } else {
             $includeFiles = require __DIR__ . '/autoload_files.php';
         }
         foreach ($includeFiles as $fileIdentifier => $file) {
-            composerRequire1b142da1e54741a648482d7b2a715fea($fileIdentifier, 
$file);
+            composerRequire02166adf9488991e8ec36bfe80c7524a($fileIdentifier, 
$file);
         }
 
         return $loader;
     }
 }
 
-function composerRequire1b142da1e54741a648482d7b2a715fea($fileIdentifier, 
$file)
+function composerRequire02166adf9488991e8ec36bfe80c7524a($fileIdentifier, 
$file)
 {
     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
         require $file;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/composer/autoload_static.php 
new/vendor/composer/autoload_static.php
--- old/vendor/composer/autoload_static.php     2017-07-06 21:51:51.280562438 
+0200
+++ new/vendor/composer/autoload_static.php     2017-07-27 04:20:29.062179883 
+0200
@@ -4,7 +4,7 @@
 
 namespace Composer\Autoload;
 
-class ComposerStaticInit1b142da1e54741a648482d7b2a715fea
+class ComposerStaticInit02166adf9488991e8ec36bfe80c7524a
 {
     public static $files = array (
         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . 
'/symfony/polyfill-mbstring/bootstrap.php',
@@ -183,9 +183,9 @@
     public static function getInitializer(ClassLoader $loader)
     {
         return \Closure::bind(function () use ($loader) {
-            $loader->prefixLengthsPsr4 = 
ComposerStaticInit1b142da1e54741a648482d7b2a715fea::$prefixLengthsPsr4;
-            $loader->prefixDirsPsr4 = 
ComposerStaticInit1b142da1e54741a648482d7b2a715fea::$prefixDirsPsr4;
-            $loader->classMap = 
ComposerStaticInit1b142da1e54741a648482d7b2a715fea::$classMap;
+            $loader->prefixLengthsPsr4 = 
ComposerStaticInit02166adf9488991e8ec36bfe80c7524a::$prefixLengthsPsr4;
+            $loader->prefixDirsPsr4 = 
ComposerStaticInit02166adf9488991e8ec36bfe80c7524a::$prefixDirsPsr4;
+            $loader->classMap = 
ComposerStaticInit02166adf9488991e8ec36bfe80c7524a::$classMap;
 
         }, null, ClassLoader::class);
     }


Reply via email to